- functionality for "for all peers" constraints
[oweals/gnunet.git] / src / ats / gnunet-service-ats_addresses_mlp.h
1 /*
2      This file is part of GNUnet.
3      (C) 2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file ats/gnunet-service-ats_addresses_mlp.h
23  * @brief ats mlp problem solver
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_statistics_service.h"
29 #include "gnunet-service-ats_addresses.h"
30 #if HAVE_LIBGLPK
31 #include "glpk.h"
32 #endif
33
34 #ifndef GNUNET_SERVICE_ATS_ADDRESSES_MLP_H
35 #define GNUNET_SERVICE_ATS_ADDRESSES_MLP_H
36
37 #define VERBOSE GNUNET_EXTRA_LOGGING
38 #define DEBUG_MLP GNUNET_EXTRA_LOGGING
39
40 #define MLP_MAX_EXEC_DURATION   GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 3)
41 #define MLP_MAX_ITERATIONS      INT_MAX
42
43 struct ATS_Peer
44 {
45   struct ATS_Peer *next;
46   struct ATS_Peer *prev;
47
48   struct GNUNET_PeerIdentity id;
49
50   struct ATS_Address *head;
51   struct ATS_Address *tail;
52 };
53
54 /**
55  * MLP Handle
56  */
57 struct GAS_MLP_Handle
58 {
59   /**
60    * Statistics handle
61    */
62   struct GNUNET_STATISTICS_Handle *stats;
63
64   /**
65    * GLPK (MLP) problem object
66    */
67 #if HAVE_LIBGLPK
68   glp_prob *prob;
69 #else
70   void *prob;
71 #endif
72
73   /**
74    * GLPK LP control parameter
75    */
76   glp_smcp control_param_lp;
77
78   /**
79    * GLPK LP control parameter
80    */
81   glp_iocp control_param_mlp;
82
83   /**
84    * Solves the task in an regular interval
85    */
86   GNUNET_SCHEDULER_TaskIdentifier mlp_task;
87
88   /**
89    * Interval between scheduled problem solving
90    */
91   struct GNUNET_TIME_Relative exec_interval;
92
93   /**
94    * Maximum execution time per problem solving
95    */
96   struct GNUNET_TIME_Relative max_exec_duration;
97
98   /**
99    * Maximum number of LP iterations per problem solving
100    */
101   unsigned int max_iterations;
102
103   /* state information */
104
105   /**
106    * Do we need to use the LP presolver?
107    *
108    * If the problem addresses were added or removed and the last basis was we
109    * need to use the presolver.
110    * presolver_required == GNUNET_YES
111    *
112    * If values were modified, we can reuse a valid basis
113    * presolver_required == GNUNET_NO
114    */
115   int presolver_required;
116
117   /* statistics */
118
119   /**
120    * Time of last execution
121    */
122   struct GNUNET_TIME_Absolute last_execution;
123
124
125   /**
126    * How often was the LP problem solved
127    */
128   unsigned int lp_solved;
129
130   /**
131    * total duration of all lp solver executions
132    */
133   uint64_t lp_total_duration;
134
135   /**
136    * How often was the MLP problem solved
137    */
138   unsigned int mlp_solved;
139
140   /**
141    * total duration of all mlp solver executions
142    */
143   uint64_t mlp_total_duration;
144
145   unsigned int addr_in_problem;
146
147   /* Information about the problem */
148
149   struct ATS_Peer *peer_head;
150   struct ATS_Peer *peer_tail;
151
152   /* current problem matrix */
153   /* row index array */
154   int *ia;
155   /* column index array */
156   int *ja;
157   /* column index array */
158   double *ar;
159   /* current size of the constraint matrix |indices| */
160   unsigned int cm_size;
161   unsigned int ci;
162
163   /* Row index constraint 4: minimum connections */
164   unsigned int r_c4;
165
166   /* column index Diversity (D) column */
167   int c_d;
168   double co_D;
169
170   /* column index Utilization (U) column */
171   int c_u;
172   double co_U;
173
174   /* column index Proportionality (R) column */
175   int c_r;
176   double co_R;
177
178   /* ATS Quality metrics
179    * array with GNUNET_ATS_QualityPropertiesCount elements
180    * contains mapping to GNUNET_ATS_Property*/
181   int q[GNUNET_ATS_QualityPropertiesCount];
182
183   /* column index quality metrics  */
184   int c_q[GNUNET_ATS_QualityPropertiesCount];
185
186   /* quality metric coefficients*/
187   double co_Q[GNUNET_ATS_QualityPropertiesCount];
188
189   /* number of quality metrics */
190   int m;
191
192   /* minimum bandwidth assigned to an address */
193   unsigned int b_min;
194
195   /* minimum number of addresses with bandwidth assigned */
196   unsigned int n_min;
197 };
198
199
200 /**
201  * Address specific MLP information
202  */
203 struct MLP_information
204 {
205   /* bandwidth column index */
206   signed int c_b;
207
208   /* address usage column */
209   signed int c_n;
210
211   /* row indexes */
212
213   /* constraint 1: bandwidth capping */
214   unsigned int r_c1;
215
216   /* constraint 3: minimum bandwidth */
217   unsigned int r_c3;
218 };
219
220
221 /**
222  * Init the MLP problem solving component
223  *
224  * @param cfg configuration handle
225  * @param stats the GNUNET_STATISTICS handle
226  * @param max_duration maximum numbers of iterations for the LP/MLP Solver
227  * @param max_iterations maximum time limit for the LP/MLP Solver
228  * @return struct GAS_MLP_Handle * on success, NULL on fail
229  */
230 struct GAS_MLP_Handle *
231 GAS_mlp_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
232               const struct GNUNET_STATISTICS_Handle *stats,
233               struct GNUNET_TIME_Relative max_duration,
234               unsigned int max_iterations);
235
236
237 /**
238  * Updates a single address in the MLP problem
239  *
240  * If the address did not exist before in the problem:
241  * The MLP problem has to be recreated and the problem has to be resolved
242  *
243  * Otherwise the addresses' values can be updated and the existing base can
244  * be reused
245  *
246  * @param mlp the MLP Handle
247  * @param addresses the address hashmap
248  * @param address the address to update
249  */
250 void
251 GAS_mlp_address_update (struct GAS_MLP_Handle *mlp, struct GNUNET_CONTAINER_MultiHashMap * addresses, struct ATS_Address *address);
252
253
254 /**
255  * Deletes a single address in the MLP problem
256  *
257  * The MLP problem has to be recreated and the problem has to be resolved
258  *
259  * @param mlp the MLP Handle
260  * @param addresses the address hashmap
261  * @param address the address to delete
262  */
263 void
264 GAS_mlp_address_delete (struct GAS_MLP_Handle *mlp, struct GNUNET_CONTAINER_MultiHashMap * addresses, struct ATS_Address *address);
265
266
267 /**
268  * Deletes a single address in the MLP problem
269  *
270  * @param mlp the MLP Handle
271  * @param addresses the address hashmap
272  * @param address the address to change the preference
273  */
274 void
275 GAS_mlp_address_change_preference (struct GAS_MLP_Handle *mlp, struct GNUNET_CONTAINER_MultiHashMap * addresses, struct ATS_Address *address);
276
277
278 /**
279  * Shutdown the MLP problem solving component
280  */
281 void
282 GAS_mlp_done ();
283
284 #endif
285 /* end of gnunet-service-ats_addresses_mlp.h */