no valgrind
[oweals/gnunet.git] / src / experimentation / gnunet-daemon-experimentation.h
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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 /**
22  * @file experimentation/gnunet-daemon-experimentation.h
23  * @brief experimentation daemon
24  * @author Christian Grothoff
25  * @author Matthias Wachs
26  */
27 #include "platform.h"
28 #include "gnunet_getopt_lib.h"
29 #include "gnunet_util_lib.h"
30 #include "gnunet_core_service.h"
31 #include "gnunet_statistics_service.h"
32
33
34 /**
35  * Timeout between request and expected response
36  */
37 #define EXP_RESPONSE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
38
39 /**
40  * Default experiment frequency
41  */
42 #define EXP_DEFAULT_EXP_FREQ GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 6)
43
44 /**
45  * Default experiment duration
46  */
47 #define EXP_DEFAULT_EXP_DUR GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
48
49 /**
50  * Statistics handle shared between components
51  */
52 extern struct GNUNET_STATISTICS_Handle *GSE_stats;
53
54
55 /**
56  * Configuration handle shared between components
57  */
58 extern struct GNUNET_CONFIGURATION_Handle *GSE_cfg;
59
60
61 /**
62  * Capability value shared between components
63  */
64 extern uint32_t GSE_node_capabilities;
65
66
67 extern uint32_t GSE_my_issuer_count;
68
69 extern struct Experimentation_Issuer *GSE_my_issuer;
70
71 /**
72  * Capabilities a node has or an experiment requires
73  */
74 enum GNUNET_EXPERIMENTATION_capabilities
75 {
76         NONE = 0,
77         PLUGIN_TCP = 1,
78         PLUGIN_UDP = 2,
79         PLUGIN_UNIX = 4,
80         PLUGIN_HTTP_CLIENT = 8,
81         PLUGIN_HTTP_SERVER = 16,
82         PLUGIN_HTTPS_CLIENT = 32,
83         PLUGIN_HTTPS_SERVER = 64,
84         PLUGIN_WLAN = 128,
85         HAVE_IPV6 = 256,
86         BEHIND_NAT = 512
87 };
88
89
90 /**
91  * Struct to store information about a specific experiment
92  */
93 struct Experiment
94 {
95         /* Header */
96         /* ----------------- */
97         char *name;
98
99         /* Experiment issuer */
100         struct GNUNET_PeerIdentity issuer;
101
102         /* Experiment version as timestamp of creation */
103         struct GNUNET_TIME_Absolute version;
104
105         /* Description */
106         char *description;
107
108         /* Required capabilities  */
109         uint32_t required_capabilities;
110
111         /* Experiment timing */
112         /* ----------------- */
113
114         /* When to start experiment */
115         struct GNUNET_TIME_Absolute start;
116
117         /* When to end experiment */
118         struct GNUNET_TIME_Absolute stop;
119
120         /* How often to run experiment */
121         struct GNUNET_TIME_Relative frequency;
122
123         /* How long to run each execution  */
124         struct GNUNET_TIME_Relative duration;
125
126
127         /* Experiment itself */
128         /* ----------------- */
129
130         /* TBD */
131 };
132
133
134 /**
135  * A experimentation node
136  */
137 struct Node
138 {
139         /**
140          * Peer id
141          */
142         struct GNUNET_PeerIdentity id;
143
144         /**
145          * Task for response timeout
146          */
147         GNUNET_SCHEDULER_TaskIdentifier timeout_task;
148
149         /**
150          * Core transmission handle
151          */
152         struct GNUNET_CORE_TransmitHandle *cth;
153
154         /**
155          * Node capabilities
156          */
157         uint32_t capabilities;
158
159         /* Experiment version as timestamp of creation */
160         struct GNUNET_TIME_Absolute version;
161
162         uint32_t issuer_count;
163
164         /**
165          * Array of fssuer ids
166          */
167         struct GNUNET_PeerIdentity *issuer_id;
168 };
169
170 struct Experimentation_Issuer
171 {
172         struct GNUNET_PeerIdentity issuer_id;
173 };
174
175 /**
176  * Experimentation request message
177  * Used to detect experimentation capability
178  *
179  * This struct is followed by issuer identities:
180  * (issuer_count * struct Experimentation_Request_Issuer)
181  *
182  */
183 struct Experimentation_Request
184 {
185         struct GNUNET_MessageHeader msg;
186
187         uint32_t capabilities;
188
189         uint32_t issuer_count;
190 };
191
192 /**
193  * Experimentation response message
194  * Sent if peer is running the daemon
195  *
196  * This struct is followed by issuer identities:
197  * (issuer_count * struct Experimentation_Request_Issuer)
198  */
199 struct Experimentation_Response
200 {
201         struct GNUNET_MessageHeader msg;
202
203         uint32_t capabilities;
204
205         uint32_t issuer_count;
206 };
207
208
209 /**
210  * Start the nodes management
211  */
212 void
213 GNUNET_EXPERIMENTATION_nodes_start ();
214
215
216 /**
217  * Stop the nodes management
218  */
219 void
220 GNUNET_EXPERIMENTATION_nodes_stop ();
221
222
223 /**
224  * Print a single capability value
225  *
226  * @param cap capability value
227  * @return the string to print
228  */
229 const char *
230 GNUNET_EXPERIMENTATION_capability_to_str (uint32_t cap);
231
232
233 /**
234  * Are the capabilities provided?
235  *
236  * @param have bitstring containing the provided capabilities
237  * @param desired bitstring containing the desired capabilities\
238  * @return GNUNET_YES or GNUNET_NO
239  */
240 int
241 GNUNET_EXPERIMENTATION_capabilities_have (uint32_t have, uint32_t desired);
242
243
244 /**
245  * Start the detecting capabilities
246  */
247 void
248 GNUNET_EXPERIMENTATION_capabilities_start ();
249
250
251 /**
252  * Stop the detecting capabilities
253  */
254 void
255 GNUNET_EXPERIMENTATION_capabilities_stop ();
256
257
258 /**
259  * Start experiments management
260  *
261  * @return GNUNET_YES or GNUNET_NO
262  */
263 int
264 GNUNET_EXPERIMENTATION_experiments_issuer_accepted (struct GNUNET_PeerIdentity *issuer_ID);
265
266
267 typedef void (*GNUNET_EXPERIMENTATION_experiments_get_cb) (struct Node *n, struct Experiment *e);
268
269 void
270 GNUNET_EXPERIMENTATION_experiments_get (struct Node *n,
271                                                                                                                                                                 struct GNUNET_PeerIdentity *issuer,
272                                                                                                                                                                 GNUNET_EXPERIMENTATION_experiments_get_cb get_cb);
273
274 /**
275  * Start experiments management
276  *
277  * @return GNUNET_OK on success, GNUNET_SYSERR on error
278  */
279 int
280 GNUNET_EXPERIMENTATION_experiments_start ();
281
282
283 /**
284  * Stop experiments management
285  */
286 void
287 GNUNET_EXPERIMENTATION_experiments_stop ();
288
289
290 /**
291  * Start the scheduler component
292  */
293 void
294 GNUNET_EXPERIMENTATION_scheduler_add (struct Experiment *e);
295
296 /**
297  * Start the scheduler component
298  */
299 void
300 GNUNET_EXPERIMENTATION_scheduler_start ();
301
302
303 /**
304  * Stop the scheduler component
305  */
306 void
307 GNUNET_EXPERIMENTATION_scheduler_stop ();
308
309
310 /**
311  * Start the storage component
312  */
313 void
314 GNUNET_EXPERIMENTATION_storage_start ();
315
316
317
318 /**
319  * Stop the storage component
320  */
321 void
322 GNUNET_EXPERIMENTATION_storage_stop ();
323
324
325 /* end of gnunet-daemon-experimentation.h */