]> AND Private Git Repository - loba.git/blob - communicator.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
c18b662410b7614c4e6d8877d3b44c1aa8967c21
[loba.git] / communicator.h
1 // Asynchronous communicator
2
3 #ifndef COMMUNICATOR_H
4 #define COMMUNICATOR_H
5
6 #include <list>
7 #include <string>
8 #include <msg/msg.h>
9
10 class message {
11 public:
12     enum message_type { INFO, CREDIT, LOAD, CLOSE };
13
14     message(message_type t, double a): type(t), amount(a) { }
15
16     message_type get_type() const       { return type;   }
17     double get_amount() const           { return amount; }
18
19 private:
20     message_type type;
21     double amount;
22 };
23
24 class communicator {
25 public:
26     communicator();
27     ~communicator();
28
29     void send(const char* dest, message* msg);
30     bool recv(message*& msg, m_host_t& from);
31
32     int send_backlog();
33
34 private:
35     // List of pending send communications
36     std::list<msg_comm_t> sent_comm;
37
38     // Control channel for receiving
39     std::string ctrl_mbox;
40     msg_comm_t  ctrl_comm;
41     m_task_t    ctrl_task;
42
43     // Data channel for receiving
44     std::string data_mbox;
45     msg_comm_t  data_comm;
46     m_task_t    data_task;
47
48     const char* get_ctrl_mbox() const   { return ctrl_mbox.c_str(); }
49     const char* get_data_mbox() const   { return data_mbox.c_str(); }
50     void flush_sent();
51 };
52
53 #endif // !COMMUNICATOR_H
54
55 // Local variables:
56 // mode: c++
57 // End: