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

Private GIT Repository
7cb1efcb0883374084f9aeb872b5a2fad1bd96b6
[loba.git] / communicator.h
1 // Asynchronous communicator
2
3 #ifndef COMMUNICATOR_H
4 #define COMMUNICATOR_H
5
6 #include <list>
7 #include <msg/msg.h>
8 #include "hostdata.h"
9 #include "messages.h"
10 #include "synchro.h"
11
12 class communicator {
13 public:
14     communicator();
15     ~communicator();
16
17     // Send a message to the "dest" mailbox
18     void send(const char* dest, message* msg);
19
20     // Try to flush pending sending communications.
21     // If "wait" is true, blocks until success.
22     void flush(bool wait);
23
24     // Try to get a message.  Returns true on success.
25     // Parameter "timeout" may be 0 for non-blocking operation, -1 for
26     // infinite waiting, or any positive timeout.
27     bool recv(message*& msg, m_host_t& from, double timeout);
28
29 private:
30     // Myself
31     const hostdata* host;
32
33     // List of pending send communications
34     std::list<msg_comm_t> sent_comm;
35
36     // Queue of received messages
37     message_queue received;
38
39     // Handling of receiving thread
40     mutex_t receiver_mutex;
41     condition_t receiver_cond;
42     m_process_t receiver_thread;
43     static int receiver_wrapper(int, char* []);
44     void receiver();
45
46     // Used to chek if a communication is successfull before destroying it
47     static void comm_check_n_destroy(msg_comm_t comm);
48     // If comm is over, call comm_check_n_destroy(comm), and return true
49     static bool comm_test_n_destroy(msg_comm_t comm);
50 };
51
52 #endif // !COMMUNICATOR_H
53
54 // Local variables:
55 // mode: c++
56 // End: