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