fixing doxygen
[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,
120                     const struct GNUNET_PeerIdentity *peer,
121                     const struct GNUNET_HELLO_Address *address,
122                     struct Session *session,
123                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
124                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
125                     const struct GNUNET_ATS_Information *atsi,
126                     uint32_t ats_count)
127 {
128   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Did not expect suggestion callback!\n");
129   GNUNET_SCHEDULER_add_now (&end_badly, NULL);
130   return;
131 }
132
133 static void
134 got_initial_value (void *cls, int success)
135 {
136   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
137
138   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Got initial value\n");
139
140   /* Connect to ATS scheduling */
141   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
142   GNUNET_CONFIGURATION_destroy (cfg);
143   if (sched_ats == NULL)
144   {
145     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
146     GNUNET_SCHEDULER_add_now (&end_badly, NULL);
147     return;
148   }
149 }
150
151 static void
152 run (void *cls,
153      const struct GNUNET_CONFIGURATION_Handle *cfg,
154      struct GNUNET_TESTING_Peer *peer)
155 {
156   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
157   stats = GNUNET_STATISTICS_create ("ats", cfg);
158   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
159
160   initial_get = GNUNET_STATISTICS_get (stats, "ats", "# addresses", TIMEOUT,
161                                        &got_initial_value, &dummy_stat,
162                                        GNUNET_CONFIGURATION_dup (cfg));
163 }
164
165
166 int
167 main (int argc, char *argv[])
168 {
169   ret = 0;
170   if (0 != GNUNET_TESTING_peer_run ("test-ats-api",
171                                     "test_ats_api.conf",
172                                     &run, NULL))
173     return 1;
174   return ret;
175 }
176
177 /* end of file test_ats_api_scheduling_init.c */