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

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