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