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