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

Private GIT Repository
Define process::lb_load(), and use it.
[loba.git] / neighbor.h
1 #ifndef NEIGHBOR_H
2 #define NEIGHBOR_H
3
4 #include <utility>
5 #include <xbt/log.h>
6 #include "hostdata.h"
7
8 class neighbor {
9 public:
10     neighbor(const char* hostname);
11     ~neighbor();
12
13     // returns name, ctrl or data mbox
14     const char* get_name() const        { return host->get_name();      }
15     const char* get_ctrl_mbox() const   { return host->get_ctrl_mbox(); }
16     const char* get_data_mbox() const   { return host->get_data_mbox(); }
17
18     // Getter and setter for load
19     double get_load() const             { return load;    }
20     void set_load(double amount)        { load = amount;  }
21     void add_load(double amount)        { load += amount; }
22
23     // Getter and setter for debt
24     double get_debt() const             { return debt;   }
25     void set_debt(double amount)        { debt = amount; }
26
27     // Getter and setter for to_send
28     double get_to_send() const          { return to_send;    }
29     void set_to_send(double amount)     { to_send = amount;  }
30     void add_to_send(double amount)     { to_send += amount; }
31
32     // Prints its name and load on given category, with given
33     // priority.  If verbose is true, prints debt and to_send too.
34     void print(bool verbose = false,
35                e_xbt_log_priority_t logp = xbt_log_priority_info,
36                xbt_log_category_t cat = _XBT_LOGV(default)) const;
37
38 private:
39     const hostdata* host;       // pointer to this neighbor's hostdata
40
41     double load;                // the load information we know for it
42     double debt;                // the load we had to send to it, but
43                                 // that we have not currently sent
44                                 // (in bookkeeping mode)
45
46     double to_send;             // the load we have to send to it
47 };
48
49 #endif // !NEIGHBOR_H
50
51 // Local variables:
52 // mode: c++
53 // End: