fixing shutdown
[oweals/gnunet.git] / src / ats / test_ats_mlp.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010,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  * @file ats/test_ats_mlp.c
22  * @brief basic test for the MLP solver
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25
26  */
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_statistics_service.h"
30 #include "gnunet_ats_service.h"
31 #include "gnunet-service-ats-solver_mlp.h"
32 #include "gnunet-service-ats_normalization.h"
33 #include "gnunet_ats_service.h"
34 #include "test_ats_api_common.h"
35
36 /**
37  * Return value
38  */
39 static int ret;
40
41 /**
42  * MLP solver handle
43  */
44 struct GAS_MLP_Handle *mlp;
45
46
47 /**
48  * Statistics handle
49  */
50 struct GNUNET_STATISTICS_Handle * stats;
51
52 /**
53  * Hashmap containing addresses
54  */
55 struct GNUNET_CONTAINER_MultiHashMap * addresses;
56
57 /**
58  * Peer
59  */
60 struct GNUNET_PeerIdentity p[2];
61
62 /**
63  * ATS Address
64  */
65 struct ATS_Address *address[3];
66
67 /**
68  * Timeout task
69  */
70 GNUNET_SCHEDULER_TaskIdentifier timeout_task;
71
72
73 int addr_it (void *cls,
74              const struct GNUNET_HashCode * key,
75              void *value)
76 {
77         struct ATS_Address *address = (struct ATS_Address *) value;
78         GAS_mlp_address_delete (mlp, address, GNUNET_NO);
79         GNUNET_CONTAINER_multihashmap_remove (addresses, key, value);
80   GNUNET_free (address);
81         return GNUNET_OK;
82 }
83
84
85 static void
86 end_now (int res)
87 {
88         if (GNUNET_SCHEDULER_NO_TASK != timeout_task)
89         {
90                         GNUNET_SCHEDULER_cancel (timeout_task);
91                         timeout_task = GNUNET_SCHEDULER_NO_TASK;
92         }
93   if (NULL != stats)
94   {
95           GNUNET_STATISTICS_destroy(stats, GNUNET_NO);
96           stats = NULL;
97   }
98   if (NULL != addresses)
99   {
100                 GNUNET_CONTAINER_multihashmap_iterate (addresses, &addr_it, NULL);
101                 GNUNET_CONTAINER_multihashmap_destroy (addresses);
102                 addresses = NULL ;
103   }
104   if (NULL != mlp)
105   {
106                 GAS_mlp_done (mlp);
107                 mlp = NULL;
108   }
109   GAS_normalization_stop ();
110         ret = res;
111 }
112
113 static void
114 end_correctly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
115 {
116   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Test ending with success\n"));
117         end_now (0);
118 }
119
120 static void
121 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
122 {
123         GNUNET_break (0);
124         timeout_task = GNUNET_SCHEDULER_NO_TASK;
125   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Test ending with timeout\n"));
126         end_now (1);
127 }
128
129
130 const double *
131 get_preferences_cb (void *cls, const struct GNUNET_PeerIdentity *id)
132 {
133         return GAS_normalization_get_preferences (id);
134 }
135
136 const double *
137 get_property_cb (void *cls, const struct ATS_Address *address)
138 {
139         return GAS_normalization_get_properties ((struct ATS_Address *) address);
140 }
141
142 static void
143 normalized_property_changed_cb (void *cls,
144                                                                                                                  struct ATS_Address *peer,
145                                                                                                                  uint32_t type,
146                                                                                                                  double prop_rel)
147 {
148          /* TODO */
149 }
150
151
152 static void
153 bandwidth_changed_cb (void *cls, struct ATS_Address *address)
154 {
155         static int cb_p0 = GNUNET_NO;
156         static int cb_p1 = GNUNET_NO;
157
158         unsigned long long in = ntohl(address->assigned_bw_in.value__);
159         unsigned long long out = ntohl(address->assigned_bw_out.value__);
160
161   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MLP suggests for peer `%s' address `%s':`%s' in %llu out %llu \n",
162                 GNUNET_i2s(&address->peer),
163                 address->plugin,
164                 address->addr,
165                 in, out);
166
167   if ((in > 0) && (out > 0) &&
168                 (0 == memcmp(&p[0], &address->peer, sizeof (address->peer))))
169         cb_p0 ++;
170
171   if ((in > 0) && (out > 0) &&
172                 (0 == memcmp(&p[1], &address->peer, sizeof (address->peer))))
173         cb_p1 ++;
174
175   if ((1 == cb_p0) && (1 == cb_p1))
176                 GNUNET_SCHEDULER_add_now (&end_correctly, NULL);
177   else if ((1 < cb_p0) || (1 < cb_p1))
178   {
179                 GNUNET_break (0);
180                 GNUNET_SCHEDULER_add_now (&end_badly, NULL);
181   }
182 }
183
184
185 static void
186 check (void *cls, char *const *args, const char *cfgfile,
187        const struct GNUNET_CONFIGURATION_Handle *cfg)
188 {
189   int quotas[GNUNET_ATS_NetworkTypeCount] = GNUNET_ATS_NetworkType;
190   unsigned long long  quotas_in[GNUNET_ATS_NetworkTypeCount];
191   unsigned long long  quotas_out[GNUNET_ATS_NetworkTypeCount];
192
193 #if !HAVE_LIBGLPK
194   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "GLPK not installed!");
195   ret = 1;
196   return;
197 #endif
198
199   timeout_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
200
201   stats = GNUNET_STATISTICS_create("ats", cfg);
202   if (NULL == stats)
203   {
204         GNUNET_break (0);
205     end_now (1);
206     return;
207   }
208
209   /* Load quotas */
210   if (GNUNET_ATS_NetworkTypeCount != load_quotas (cfg, quotas_out, quotas_in,
211                         GNUNET_ATS_NetworkTypeCount))
212   {
213         GNUNET_break (0);
214       end_now (1);
215       return;
216   }
217   GAS_normalization_start (NULL, NULL, &normalized_property_changed_cb, NULL);
218   /* Setup address hashmap */
219   addresses = GNUNET_CONTAINER_multihashmap_create (10, GNUNET_NO);
220
221   /* Init MLP solver */
222   mlp  = GAS_mlp_init (cfg, stats, addresses,
223                 quotas, quotas_out, quotas_in,
224                 GNUNET_ATS_NetworkTypeCount,
225                 &bandwidth_changed_cb, NULL,
226                 &get_preferences_cb, NULL,
227                 &get_property_cb, NULL);
228   if (NULL == mlp)
229   {
230         GNUNET_break (0);
231       end_now (1);
232       return;
233   }
234   mlp->mlp_auto_solve = GNUNET_NO;
235
236   /* Create peer 0 */
237   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p[0].hashPubKey))
238   {
239       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
240       end_now (1);
241       return;
242   }
243
244   /* Create peer 1 */
245   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID1, &p[1].hashPubKey))
246   {
247       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
248       end_now (1);
249       return;
250   }
251
252   /* Create address 0 */
253   address[0] = create_address (&p[0], "test_plugin0", "test_addr0", strlen("test_addr0")+1, 0);
254   if (NULL == address[0])
255   {
256         GNUNET_break (0);
257       end_now (1);
258       return;
259   }
260   GNUNET_CONTAINER_multihashmap_put (addresses, &p[0].hashPubKey, address[0],
261                 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
262   /* Adding address 0 */
263   GAS_mlp_address_add (mlp, address[0], GNUNET_ATS_NET_UNSPECIFIED);
264
265   /* Create address 1 */
266   address[1] = create_address (&p[0], "test_plugin1", "test_addr1", strlen("test_addr1")+1, 0);
267   if (NULL == address[1])
268   {
269         GNUNET_break (0);
270       end_now (1);
271       return;
272   }
273   GNUNET_CONTAINER_multihashmap_put (addresses, &p[0].hashPubKey, address[1],
274                 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
275   /* Adding address 1*/
276   GAS_mlp_address_add (mlp, address[1], GNUNET_ATS_NET_UNSPECIFIED);
277
278
279   /* Create address 3 */
280   address[2] = create_address (&p[1], "test_plugin2", "test_addr2", strlen("test_addr2")+1, 0);
281   if (NULL == address[2])
282   {
283         GNUNET_break (0);
284       end_now (1);
285       return;
286   }
287   GNUNET_CONTAINER_multihashmap_put (addresses, &p[1].hashPubKey, address[2],
288                 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
289   /* Adding address 3*/
290   GAS_mlp_address_add (mlp, address[2], GNUNET_ATS_NET_UNSPECIFIED);
291
292
293   /* Updating address 0*/
294   GAS_mlp_address_change_network(mlp, address[0], GNUNET_ATS_NET_UNSPECIFIED, GNUNET_ATS_NET_WAN);
295
296   /* Retrieving preferred address for peer and wait for callback */
297   GAS_mlp_get_preferred_address (mlp, &p[0]);
298   GAS_mlp_get_preferred_address (mlp, &p[1]);
299
300   mlp->write_mip_mps = GNUNET_NO;
301   mlp->write_mip_sol = GNUNET_NO;
302
303   GAS_mlp_solve_problem (mlp);
304 }
305
306
307 int
308 main (int argc, char *argv[])
309 {
310
311   static char *const argv2[] = { "test_ats_mlp",
312     "-c",
313     "test_ats_mlp.conf",
314     "-L", "WARNING",
315     NULL
316   };
317
318   static struct GNUNET_GETOPT_CommandLineOption options[] = {
319     GNUNET_GETOPT_OPTION_END
320   };
321
322   GNUNET_PROGRAM_run ((sizeof (argv2) / sizeof (char *)) - 1, argv2,
323                       "test_ats_mlp", "nohelp", options,
324                       &check, NULL);
325
326
327   return ret;
328 }
329
330 /* end of file test_ats_api_bandwidth_consumption.c */