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