applying LRN's patch to fix startup issue
[oweals/gnunet.git] / src / ats / test_ats_api_scheduling_init.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_api_scheduling_init.c
22  * @brief test automatic transport selection scheduling API init/shutdown
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25  *
26  */
27 #include "platform.h"
28 #include "gnunet_ats_service.h"
29 #include "gnunet_testing_lib.h"
30 #include "ats.h"
31 #include "test_ats_api_common.h"
32 /**
33  * Timeout task
34  */
35 static GNUNET_SCHEDULER_TaskIdentifier die_task;
36
37 /**
38  * Initial statistics get request handle
39  */
40 struct GNUNET_STATISTICS_GetHandle *initial_get;
41
42 /**
43  * Statistics handle
44  */
45 struct GNUNET_STATISTICS_Handle *stats;
46
47 /**
48  * Scheduling handle
49  */
50 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
51
52 /**
53  * Return value
54  */
55 static int ret;
56
57
58 static void end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
59
60 static int
61 stat_cb(void *cls, const char *subsystem,
62         const char *name, uint64_t value,
63         int is_persistent)
64 {
65
66   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ATS statistics: `%s' `%s' %llu\n",
67       subsystem,name, value);
68   if (0 == value)
69   {
70     GNUNET_SCHEDULER_add_now (&end, NULL);
71   }
72   return GNUNET_OK;
73 }
74
75 static int
76 dummy_stat (void *cls, const char *subsystem, const char *name, uint64_t value,
77             int is_persistent)
78 {
79   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Got dummy stat %s%s:%s = %llu\n",
80               is_persistent ? "!" : " ", subsystem, name, value);
81   return GNUNET_OK;
82 }
83
84 static void
85 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
86 {
87   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down\n");
88
89   if (die_task != GNUNET_SCHEDULER_NO_TASK)
90   {
91     GNUNET_SCHEDULER_cancel (die_task);
92     die_task = GNUNET_SCHEDULER_NO_TASK;
93   }
94
95   if (NULL != sched_ats)
96   {
97     GNUNET_ATS_scheduling_done (sched_ats);
98     sched_ats = NULL;
99   }
100
101   GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
102   if (NULL != stats)
103   {
104     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
105     stats = NULL;
106   }
107   ret = 0;
108 }
109
110 static void
111 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
112 {
113   die_task = GNUNET_SCHEDULER_NO_TASK;
114   end ( NULL, NULL);
115   ret = GNUNET_SYSERR;
116 }
117
118 static void
119 address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
120                     struct Session *session,
121                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
122                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
123                     const struct GNUNET_ATS_Information *atsi,
124                     uint32_t ats_count)
125 {
126   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Did not expect suggestion callback!\n");
127   GNUNET_SCHEDULER_add_now (&end_badly, NULL);
128   return;
129 }
130
131 static void
132 got_initial_value (void *cls, int success)
133 {
134   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
135
136   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Got initial value\n");
137
138   /* Connect to ATS scheduling */
139   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
140   GNUNET_CONFIGURATION_destroy (cfg);
141   if (sched_ats == NULL)
142   {
143     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
144     GNUNET_SCHEDULER_add_now (&end_badly, NULL);
145     return;
146   }
147 }
148
149 static void
150 run (void *cls,
151      const struct GNUNET_CONFIGURATION_Handle *cfg,
152      struct GNUNET_TESTING_Peer *peer)
153 {
154   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
155   stats = GNUNET_STATISTICS_create ("ats", cfg);
156   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
157
158   initial_get = GNUNET_STATISTICS_get (stats, "ats", "# addresses", TIMEOUT,
159                                        &got_initial_value, &dummy_stat,
160                                        GNUNET_CONFIGURATION_dup (cfg));
161 }
162
163
164 int
165 main (int argc, char *argv[])
166 {
167   ret = 0;
168   if (0 != GNUNET_TESTING_peer_run ("test-ats-api",
169                                     "test_ats_api.conf",
170                                     &run, NULL))
171     return 1;
172   return ret;
173 }
174
175 /* end of file test_ats_api_scheduling_init.c */