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

Private GIT Repository
ea096d60e974f33ab909cb3cf38dbcfa27f2c624
[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, CTRL_CLOSE, DATA_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, bool wait);
31     void wait_for_sent();
32
33     void next_close_on_ctrl_is_last();
34     void next_close_on_data_is_last();
35
36     int send_backlog();
37
38 private:
39     // List of pending send communications
40     std::list<msg_comm_t> sent_comm;
41
42     // Control channel for receiving
43     std::string ctrl_mbox;
44     msg_comm_t  ctrl_comm;
45     m_task_t    ctrl_task;
46     bool        ctrl_close_is_last;
47
48     // Data channel for receiving
49     std::string data_mbox;
50     msg_comm_t  data_comm;
51     m_task_t    data_task;
52     bool        data_close_is_last;
53
54     const char* get_ctrl_mbox() const   { return ctrl_mbox.c_str(); }
55     const char* get_data_mbox() const   { return data_mbox.c_str(); }
56     static bool comm_test_n_destroy(msg_comm_t& comm);
57     void flush_sent();
58 };
59
60 #endif // !COMMUNICATOR_H
61
62 // Local variables:
63 // mode: c++
64 // End: