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

Private GIT Repository
Use a separate thread to handle incoming messages.
[loba.git] / communicator.h
1 // Asynchronous communicator
2
3 #ifndef COMMUNICATOR_H
4 #define COMMUNICATOR_H
5
6 #include <list>
7 #include <queue>
8 #include <string>
9 #include <msg/msg.h>
10 #include "hostdata.h"
11
12 class message {
13 public:
14     enum message_type { INFO, CREDIT, LOAD, CTRL_CLOSE, DATA_CLOSE };
15
16     message(message_type t, double a): type(t), amount(a) { }
17
18     message_type get_type() const       { return type;   }
19     double get_amount() const           { return amount; }
20
21     std::string to_string();
22
23 private:
24     message_type type;
25     double amount;
26 };
27
28 class communicator {
29 public:
30     communicator();
31     ~communicator();
32
33     // Send a message to the "dest" mailbox
34     void send(const char* dest, message* msg);
35
36     // Try to get a message.  Returns true on success.
37     // If "wait" is true, blocks until success.
38     bool recv(message*& msg, m_host_t& from, bool wait);
39
40     // Try to flush pending sending communications.
41     // If "wait" is true, blocks until success.
42     void flush(bool wait);
43
44 private:
45     // Myself
46     const hostdata* host;
47
48     // Used to synchronize main and receiver thread 
49     xbt_mutex_t mutex;
50     xbt_cond_t cond;
51
52     // List of pending send communications
53     std::list<msg_comm_t> sent_comm;
54     static const int send_count_before_flush;
55     int send_counter;
56
57     // Queue of received messages
58     std::queue<m_task_t> received;
59
60     // Control channel for receiving
61     m_task_t    ctrl_task;          // receive buffer
62     msg_comm_t  ctrl_comm;          // receive communication
63
64     // Data channel for receiving
65     m_task_t    data_task;          // receive buffer
66     msg_comm_t  data_comm;          // receive communication
67
68     const char* get_ctrl_mbox() const   { return host->get_ctrl_mbox(); }
69     const char* get_data_mbox() const   { return host->get_data_mbox(); }
70
71     // Handling of receiving thread
72     m_process_t receiver_process;
73     static int receiver_wrapper(int, char* []);
74     int receiver();
75
76     // Used to test if a communication is over, and to destroy it if it is
77     static bool comm_test_n_destroy(msg_comm_t comm);
78 };
79
80 #endif // !COMMUNICATOR_H
81
82 // Local variables:
83 // mode: c++
84 // End: