X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/f29b38ef2a056daa14bbfda2fce78063faa773d4..f4125505064e3ff346b31ab9e48f894672e5a7a7:/communicator.h diff --git a/communicator.h b/communicator.h index ca0d3b2..c18b662 100644 --- a/communicator.h +++ b/communicator.h @@ -7,24 +7,47 @@ #include #include +class message { +public: + enum message_type { INFO, CREDIT, LOAD, CLOSE }; + + message(message_type t, double a): type(t), amount(a) { } + + message_type get_type() const { return type; } + double get_amount() const { return amount; } + +private: + message_type type; + double amount; +}; + class communicator { public: communicator(); ~communicator(); - void send(m_task_t task, const char *dest); - void send(m_task_t task, const std::string& dest); - m_task_t recv(); - int sent_count(); + void send(const char* dest, message* msg); + bool recv(message*& msg, m_host_t& from); -private: - typedef std::list comm_list; - comm_list sent_comm; - char* recv_mbox; - msg_comm_t recv_comm; - m_task_t recv_task; + int send_backlog(); - void send_acknowledge(); +private: + // List of pending send communications + std::list sent_comm; + + // Control channel for receiving + std::string ctrl_mbox; + msg_comm_t ctrl_comm; + m_task_t ctrl_task; + + // Data channel for receiving + std::string data_mbox; + msg_comm_t data_comm; + m_task_t data_task; + + const char* get_ctrl_mbox() const { return ctrl_mbox.c_str(); } + const char* get_data_mbox() const { return data_mbox.c_str(); } + void flush_sent(); }; #endif // !COMMUNICATOR_H