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

Private GIT Repository
Ongoing work on process logic...
[loba.git] / neighbor.h
1 #ifndef NEIGHBOR_H
2 #define NEIGHBOR_H
3
4 #include <utility>
5 #include "hostdata.h"
6
7 class neighbor {
8 public:
9     neighbor(const char* hostname);
10     ~neighbor();
11
12     // returns name, ctrl or data mbox
13     const char* get_name() const        { return host->get_name(); }
14     const char* get_ctrl_mbox() const   { return host->get_ctrl_mbox(); }
15     const char* get_data_mbox() const   { return host->get_data_mbox(); }
16
17     // Getter and setter for load
18     double get_load() const             { return load;   }
19     void set_load(double amount)        { load = amount; }
20
21     // Getter and setter for debt
22     double get_debt() const             { return debt;   }
23     void set_debt(double amount)        { debt = amount; }
24
25     // Getter and setter for to_send
26     double get_to_send() const          { return to_send;   }
27     void set_to_send(double amount)     { to_send = amount; }
28
29 private:
30     const hostdata* host;       // pointer to this neighbor's hostdata
31
32     double load;                // the load information we know for it
33     double debt;                // the load we had to send to it, but
34                                 // that we have not currently sent
35                                 // (in bookkeeping mode)
36
37     double to_send;             // the load we have to send to it
38 };
39
40 #endif // !NEIGHBOR_H
41
42 // Local variables:
43 // mode: c++
44 // End: