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

Private GIT Repository
modification to fairstrategy
[loba.git] / process.h
1 #ifndef PROCESS_H
2 #define PROCESS_H
3
4 #define USE_UNORDERED_MAP 1
5 //#undef USE_UNORDERED_MAP
6
7 #include <vector>
8 #ifdef USE_UNORDERED_MAP
9 #  include <tr1/unordered_map>
10 #  define MAP_TEMPLATE std::tr1::unordered_map
11 #else
12 #  include <map>
13 #  define MAP_TEMPLATE std::map
14 #endif
15 #include <msg/msg.h>
16 #include "communicator.h"
17 #include "neighbor.h"
18
19 class process {
20 public:
21     static double get_total_load_init() { return total_load_init; }
22     static double get_total_load_exit() { return total_load_exit; }
23
24     process(int argc, char* argv[]);
25     virtual ~process();
26
27     int run();
28
29 protected:
30     typedef std::vector<neighbor> neigh_type;
31     typedef std::vector<neighbor*> pneigh_type;
32
33     pneigh_type pneigh;         // list of pointers to neighbors that
34                                 // we are free to reorder
35
36     // Returns the sum of "to_send" for all neighbors.
37     double sum_of_to_send() const;
38     // Print with given priority what we know about our neighbors' loads
39     void print_loads(e_xbt_log_priority_t logp = xbt_log_priority_info);
40
41 private:
42     static double total_load_init;
43     static double total_load_exit;
44
45     typedef MAP_TEMPLATE<m_host_t, neighbor*> rev_neigh_type;
46     neigh_type neigh;           // list of neighbors (do not alter
47                                 // after construction!)
48     rev_neigh_type rev_neigh;   // map m_host_t -> neighbor
49
50     communicator comm;          // communicator for this process
51     int ctrl_close_pending;     // number of "close" messages to wait
52                                 // on ctrl channel
53     int data_close_pending;     // number of "close" messages to wait
54                                 // on data channel
55
56     unsigned iter;              // counter of iterations
57
58     double prev_load_broadcast; // used to ensure that we do not send
59                                 // a same information messages
60     double load;                // current load
61     double expected_load;       // expected load in bookkeeping mode
62
63     // The load balancing algorithm comes here...
64     // Parameter "my_load" is the load to take into account for myself
65     // (may be load or expected load).
66     // Returns the total load sent to neighbors.
67     virtual double load_balance(double my_load);
68
69     // Virtually do some computation
70     void compute();
71
72     // Send procedures, with helpers for bookkeeping mode or not
73     void send1_no_bookkeeping(neighbor& nb);
74     void send1_bookkeeping(neighbor& nb);
75     void send();
76
77     // Receive procedure: wait (or not) for a message to come.
78     // Returns false if some "close" message was received, returns true
79     // otherwise.
80     enum recv_wait_mode { NO_WAIT = 0, WAIT, WAIT_FOR_CLOSE };
81     bool receive(recv_wait_mode wait);
82
83     // Finalize sends a "close" message to each neighbor and wait for
84     // all of them to answer.
85     void finalize1(neighbor& nb);
86     void finalize();
87
88
89 };
90
91 #endif // !PROCESS_H
92
93 // Local variables:
94 // mode: c++
95 // End: