minor
[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-new.h"
30 #include "ats.h"
31
32 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
33 #define DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
34
35 static GNUNET_SCHEDULER_TaskIdentifier die_task;
36 static GNUNET_SCHEDULER_TaskIdentifier wait_task;
37
38 static struct GNUNET_ATS_SchedulingHandle *ats;
39
40 static int ret;
41
42 static void
43 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
44 {
45   die_task = GNUNET_SCHEDULER_NO_TASK;
46   if (GNUNET_SCHEDULER_NO_TASK != wait_task)
47   {
48     GNUNET_SCHEDULER_cancel (wait_task);
49     wait_task = GNUNET_SCHEDULER_NO_TASK;
50   }
51   if (ats != NULL)
52   {
53     GNUNET_ATS_scheduling_done (ats);
54     ats = NULL;
55   }
56   ret = 1;
57 }
58
59 static void
60 end_badly_now ()
61 {
62   if (die_task != GNUNET_SCHEDULER_NO_TASK)
63   {
64     GNUNET_SCHEDULER_cancel (die_task);
65     die_task = GNUNET_SCHEDULER_NO_TASK;
66   }
67   die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
68 }
69
70 static void
71 delay (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
72 {
73   static int v_delay = 5;
74   static int v_cur = 0;
75
76   if (v_cur < v_delay)
77   {
78     wait_task = GNUNET_SCHEDULER_NO_TASK;
79     wait_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &delay, NULL);
80     fprintf (stderr,".");
81     v_cur ++;
82     return;
83   }
84
85   fprintf (stderr,"\n");
86   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutdown ATS\n");
87   GNUNET_ATS_scheduling_done (ats);
88   ats = NULL;
89   if (die_task != GNUNET_SCHEDULER_NO_TASK)
90   {
91     GNUNET_SCHEDULER_cancel (die_task);
92     die_task = GNUNET_SCHEDULER_NO_TASK;
93   }
94   ret = 0;
95 }
96
97 static void
98 address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
99                     struct Session *session,
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   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Received address without asking for it!\n");
106   end_badly_now ();
107 }
108
109
110 static void
111 run (void *cls, 
112      const struct GNUNET_CONFIGURATION_Handle *cfg,
113      struct GNUNET_TESTING_Peer *peer)
114 {
115   ret = 1;
116   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
117
118   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Initializing ATS\n");
119   ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
120   if (ats == NULL)
121   {
122     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Failed to initialize ATS\n");
123     end_badly_now ();
124     return;
125   }
126   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Waiting for %llu sec\n", (long long unsigned int) DELAY.rel_value);
127   wait_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &delay, NULL);
128 }
129
130
131 int
132 main (int argc, char *argv[])
133 {
134   if (0 != GNUNET_TESTING_peer_run ("test_ats_api_scheduling_init",
135                                     "test_ats_api.conf",
136                                     &run, NULL))
137     return 1;
138   return ret;
139 }
140
141 /* end of file test_ats_api_scheduling_init.c */