-fix config, shutdown issue
[oweals/gnunet.git] / src / ats / test_ats_api_performance_list_all_addresses.c
1 /*
2  This file is part of GNUnet.
3  Copyright (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_api_performance_list_addresses.c
22  * @brief test performance API's address listing feature
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25  */
26 #include "platform.h"
27 #include "gnunet_ats_service.h"
28 #include "gnunet_testing_lib.h"
29 #include "ats.h"
30
31 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
32
33 static struct GNUNET_SCHEDULER_Task * die_task;
34
35 /**
36  * Statistics handle
37  */
38 static struct GNUNET_STATISTICS_Handle *stats;
39
40 /**
41  * Configuration handle
42  */
43 static struct GNUNET_CONFIGURATION_Handle *cfg;
44
45 /**
46  * ATS scheduling handle
47  */
48 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
49
50 /**
51  * ATS performance handle
52  */
53 static struct GNUNET_ATS_PerformanceHandle *perf_ats;
54
55 static struct GNUNET_ATS_AddressListHandle* phal;
56
57 static int ret;
58
59 struct Address
60 {
61   char *plugin;
62   size_t plugin_len;
63
64   void *addr;
65   size_t addr_len;
66
67   struct GNUNET_ATS_Information *ats;
68   int ats_count;
69
70   void *session;
71 };
72
73 struct PeerContext
74 {
75   struct GNUNET_PeerIdentity id;
76
77   struct Address *addr;
78 };
79
80 static struct PeerContext p[2];
81
82 static struct Address p0_addresses[2];
83 static struct Address p1_addresses[2];
84
85 static struct GNUNET_HELLO_Address p0_ha[2];
86 static struct GNUNET_HELLO_Address p1_ha[2];
87
88
89 static void
90 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
91
92 static void
93 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
94
95
96 static void
97 ats_perf_cb (void *cls,
98              const struct GNUNET_HELLO_Address *address,
99              int address_active,
100              struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
101              struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
102              const struct GNUNET_ATS_Information *ats,
103              uint32_t ats_count)
104 {
105   static int counter = 0;
106
107   fprintf (stderr, "HERE!\n");
108   if (NULL == address)
109   {
110     phal = 0;
111     if (4 == counter)
112     {
113       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Done!\n");
114       GNUNET_SCHEDULER_add_now (end, NULL);
115     }
116     else
117     {
118       GNUNET_break (0);
119       GNUNET_SCHEDULER_shutdown ();
120     }
121     return;
122   }
123   counter++;
124 }
125
126
127 static int
128 stat_cb(void *cls, const char *subsystem,
129         const char *name, uint64_t value,
130         int is_persistent)
131 {
132
133   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
134               "ATS statistics: `%s' `%s' %llu\n",
135               subsystem,name, value);
136   if (4 == value)
137   {
138     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
139                 "All addresses added, connecting to performance\n");
140     if (NULL == (perf_ats = GNUNET_ATS_performance_init (cfg, NULL, NULL)))
141     {
142       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
143                   "Failed to connect to performance API\n");
144       GNUNET_SCHEDULER_add_now (end_badly, NULL);
145     }
146     phal = GNUNET_ATS_performance_list_addresses (perf_ats,
147                                                   NULL,
148                                                   GNUNET_YES,
149                                                   &ats_perf_cb, NULL);
150   }
151   return GNUNET_OK;
152 }
153
154
155 static void
156 address_suggest_cb (void *cls,
157                     const struct GNUNET_PeerIdentity *peer,
158                     const struct GNUNET_HELLO_Address *address,
159                     struct Session *session,
160                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
161                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
162 {
163   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
164               "Did not expect suggestion callback!\n");
165   GNUNET_SCHEDULER_add_now (&end_badly, NULL);
166 }
167
168
169 static void
170 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
171 {
172   die_task = NULL;
173   end ( NULL, NULL);
174   ret = GNUNET_SYSERR;
175 }
176
177
178 static void
179 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
180 {
181   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
182              "Shutting down\n");
183   if (die_task != NULL )
184   {
185     GNUNET_SCHEDULER_cancel (die_task);
186     die_task = NULL;
187   }
188
189   if (NULL != sched_ats)
190   {
191     GNUNET_ATS_scheduling_done (sched_ats);
192     sched_ats = NULL;
193   }
194
195   if (phal != NULL )
196   {
197     GNUNET_ATS_performance_list_addresses_cancel (phal);
198     phal = NULL;
199   }
200
201   if (perf_ats != NULL )
202   {
203     GNUNET_ATS_performance_done (perf_ats);
204     perf_ats = NULL;
205   }
206
207   GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
208   if (NULL != stats)
209   {
210     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
211     stats = NULL;
212   }
213
214
215   GNUNET_free_non_null(p0_addresses[0].addr);
216   GNUNET_free_non_null(p0_addresses[1].addr);
217   GNUNET_free_non_null(p1_addresses[0].addr);
218   GNUNET_free_non_null(p1_addresses[1].addr);
219
220   ret = 0;
221 }
222
223
224 static void
225 run (void *cls,
226      const struct GNUNET_CONFIGURATION_Handle *mycfg,
227      struct GNUNET_TESTING_Peer *peer)
228 {
229   ret = 1;
230   cfg = (struct GNUNET_CONFIGURATION_Handle *) mycfg;
231   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL );
232
233   stats = GNUNET_STATISTICS_create ("ats", cfg);
234   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
235
236   /* set up peer 0 */
237   memset (&p[0].id, '1', sizeof (p[0].id));
238   p0_addresses[0].plugin = "test";
239   p0_addresses[0].session = NULL;
240   p0_addresses[0].addr = GNUNET_strdup ("test_p0_a0");
241   p0_addresses[0].addr_len = strlen (p0_addresses[0].addr) + 1;
242
243   p0_ha[0].address = p0_addresses[0].addr;
244   p0_ha[0].address_length = p0_addresses[0].addr_len;
245   p0_ha[0].peer = p[0].id;
246   p0_ha[0].transport_name = p0_addresses[0].plugin;
247
248   p0_addresses[1].plugin = "test";
249   p0_addresses[1].session = NULL;
250   p0_addresses[1].addr = GNUNET_strdup ("test_p0_a1");
251   p0_addresses[1].addr_len = strlen (p0_addresses[1].addr) + 1;
252
253   p0_ha[1].address = p0_addresses[1].addr;
254   p0_ha[1].address_length = p0_addresses[1].addr_len;
255   p0_ha[1].peer = p[0].id;
256   p0_ha[1].transport_name = p0_addresses[1].plugin;
257
258   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Created peer 0: `%s'\n",
259       GNUNET_i2s (&p[0].id));
260
261   memset (&p[1].id, '2', sizeof (p[1].id));
262   p1_addresses[0].plugin = "test";
263   p1_addresses[0].session = NULL;
264   p1_addresses[0].addr = GNUNET_strdup ("test_p1_a0");
265   p1_addresses[0].addr_len = strlen (p1_addresses[0].addr) + 1;
266
267   p1_ha[0].address = p1_addresses[0].addr;
268   p1_ha[0].address_length = p1_addresses[0].addr_len;
269   p1_ha[0].peer = p[1].id;
270   p1_ha[0].transport_name = p1_addresses[0].plugin;
271
272   p1_addresses[1].plugin = "test";
273   p1_addresses[1].session = NULL;
274   p1_addresses[1].addr = GNUNET_strdup ("test_p1_a1");
275   p1_addresses[1].addr_len = strlen (p1_addresses[1].addr) + 1;
276
277   p1_ha[1].address = p1_addresses[1].addr;
278   p1_ha[1].address_length = p1_addresses[1].addr_len;
279   p1_ha[1].peer = p[1].id;
280   p1_ha[1].transport_name = p1_addresses[1].plugin;
281
282   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
283              "Created peer 1: `%s'\n",
284              GNUNET_i2s (&p[1].id));
285
286   /* Add addresses */
287   sched_ats = GNUNET_ATS_scheduling_init (cfg,
288                                           &address_suggest_cb, NULL);
289   if (sched_ats == NULL )
290   {
291     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
292     GNUNET_SCHEDULER_add_now (&end_badly, NULL);
293     return;
294   }
295
296   GNUNET_ATS_address_add (sched_ats, &p0_ha[0], NULL, NULL, 0);
297   GNUNET_ATS_address_add (sched_ats, &p0_ha[1], NULL, NULL, 0);
298
299   GNUNET_ATS_address_add (sched_ats, &p1_ha[0], NULL, NULL, 0);
300   GNUNET_ATS_address_add (sched_ats, &p1_ha[1], NULL, NULL, 0);
301 }
302
303 int
304 main (int argc, char *argv[])
305 {
306   if (0
307       != GNUNET_TESTING_peer_run ("test_ats_api_performance",
308           "test_ats_api.conf", &run, NULL ))
309     return 1;
310   return ret;
311 }
312
313 /* end of file test_ats_api_performance_list_addresses.c */