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