changes to test
[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, addresses, 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 static const double *
131 get_preferences_cb (void *cls, const struct GNUNET_PeerIdentity *id)
132 {
133         return GAS_normalization_get_preferences (id);
134 }
135
136
137 static void
138 bandwidth_changed_cb (void *cls, struct ATS_Address *address)
139 {
140         static int cb_p0 = GNUNET_NO;
141         static int cb_p1 = GNUNET_NO;
142
143         unsigned long long in = ntohl(address->assigned_bw_in.value__);
144         unsigned long long out = ntohl(address->assigned_bw_out.value__);
145
146   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MLP suggests for peer `%s' address `%s':`%s' in %llu out %llu \n",
147                 GNUNET_i2s(&address->peer),
148                 address->plugin,
149                 address->addr,
150                 in, out);
151
152   if ((in > 0) && (out > 0) &&
153                 (0 == memcmp(&p[0], &address->peer, sizeof (address->peer))))
154         cb_p0 ++;
155
156   if ((in > 0) && (out > 0) &&
157                 (0 == memcmp(&p[1], &address->peer, sizeof (address->peer))))
158         cb_p1 ++;
159
160   if ((1 == cb_p0) && (1 == cb_p1))
161                 GNUNET_SCHEDULER_add_now (&end_correctly, NULL);
162   else if ((1 < cb_p0) || (1 < cb_p1))
163   {
164                 GNUNET_break (0);
165                 GNUNET_SCHEDULER_add_now (&end_badly, NULL);
166   }
167 }
168
169
170 static void
171 check (void *cls, char *const *args, const char *cfgfile,
172        const struct GNUNET_CONFIGURATION_Handle *cfg)
173 {
174   int quotas[GNUNET_ATS_NetworkTypeCount] = GNUNET_ATS_NetworkType;
175   unsigned long long  quotas_in[GNUNET_ATS_NetworkTypeCount];
176   unsigned long long  quotas_out[GNUNET_ATS_NetworkTypeCount];
177   struct GNUNET_ATS_Information ats;
178
179 #if !HAVE_LIBGLPK
180   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "GLPK not installed!");
181   ret = 1;
182   return;
183 #endif
184
185   timeout_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
186
187   stats = GNUNET_STATISTICS_create("ats", cfg);
188   if (NULL == stats)
189   {
190         GNUNET_break (0);
191     end_now (1);
192     return;
193   }
194
195   /* Load quotas */
196   if (GNUNET_ATS_NetworkTypeCount != load_quotas (cfg, quotas_out, quotas_in,
197                         GNUNET_ATS_NetworkTypeCount))
198   {
199         GNUNET_break (0);
200       end_now (1);
201       return;
202   }
203   GAS_normalization_start (NULL, NULL);
204   /* Setup address hashmap */
205   addresses = GNUNET_CONTAINER_multihashmap_create (10, GNUNET_NO);
206
207   /* Init MLP solver */
208   mlp  = GAS_mlp_init (cfg, stats, quotas, quotas_out, quotas_in,
209                 GNUNET_ATS_NetworkTypeCount, &bandwidth_changed_cb, NULL, &get_preferences_cb, NULL);
210   if (NULL == mlp)
211   {
212         GNUNET_break (0);
213       end_now (1);
214       return;
215   }
216   mlp->mlp_auto_solve = GNUNET_NO;
217
218   /* Create peer 0 */
219   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p[0].hashPubKey))
220   {
221       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
222       end_now (1);
223       return;
224   }
225
226   /* Create peer 1 */
227   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID1, &p[1].hashPubKey))
228   {
229       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
230       end_now (1);
231       return;
232   }
233
234   /* Create address 0 */
235   address[0] = create_address (&p[0], "test_plugin0", "test_addr0", strlen("test_addr0")+1, 0);
236   if (NULL == address[0])
237   {
238         GNUNET_break (0);
239       end_now (1);
240       return;
241   }
242   GNUNET_CONTAINER_multihashmap_put (addresses, &p[0].hashPubKey, address[0],
243                 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
244   /* Adding address 0 */
245   GAS_mlp_address_add (mlp, addresses, address[0], GNUNET_ATS_NET_UNSPECIFIED);
246
247   /* Create address 1 */
248   address[1] = create_address (&p[0], "test_plugin1", "test_addr1", strlen("test_addr1")+1, 0);
249   if (NULL == address[1])
250   {
251         GNUNET_break (0);
252       end_now (1);
253       return;
254   }
255   GNUNET_CONTAINER_multihashmap_put (addresses, &p[0].hashPubKey, address[1],
256                 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
257   /* Adding address 1*/
258   GAS_mlp_address_add (mlp, addresses, address[1], GNUNET_ATS_NET_UNSPECIFIED);
259
260
261   /* Create address 3 */
262   address[2] = create_address (&p[1], "test_plugin2", "test_addr2", strlen("test_addr2")+1, 0);
263   if (NULL == address[2])
264   {
265         GNUNET_break (0);
266       end_now (1);
267       return;
268   }
269   GNUNET_CONTAINER_multihashmap_put (addresses, &p[1].hashPubKey, address[2],
270                 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
271   /* Adding address 3*/
272   GAS_mlp_address_add (mlp, addresses, address[2], GNUNET_ATS_NET_UNSPECIFIED);
273
274
275   /* Updating address 0*/
276   ats.type =  htonl (GNUNET_ATS_NETWORK_TYPE);
277   ats.value = htonl (GNUNET_ATS_NET_WAN);
278   GAS_mlp_address_update (mlp, addresses, address[0], 1, GNUNET_NO, &ats, 1);
279
280   /* Retrieving preferred address for peer and wait for callback */
281   GAS_mlp_get_preferred_address (mlp, addresses, &p[0]);
282   GAS_mlp_get_preferred_address (mlp, addresses, &p[1]);
283
284   mlp->write_mip_mps = GNUNET_NO;
285   mlp->write_mip_sol = GNUNET_NO;
286
287   GAS_mlp_solve_problem (mlp, addresses);
288 }
289
290
291 int
292 main (int argc, char *argv[])
293 {
294
295   static char *const argv2[] = { "test_ats_mlp",
296     "-c",
297     "test_ats_mlp.conf",
298     "-L", "WARNING",
299     NULL
300   };
301
302   static struct GNUNET_GETOPT_CommandLineOption options[] = {
303     GNUNET_GETOPT_OPTION_END
304   };
305
306   GNUNET_PROGRAM_run ((sizeof (argv2) / sizeof (char *)) - 1, argv2,
307                       "test_ats_mlp", "nohelp", options,
308                       &check, NULL);
309
310
311   return ret;
312 }
313
314 /* end of file test_ats_api_bandwidth_consumption.c */