- cleanup dead code
[oweals/gnunet.git] / src / experimentation / gnunet-daemon-experimentation.c
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.c
23  * @brief experimentation daemon
24  * @author Christian Grothoff
25  * @author Matthias Wachs
26  */
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_core_service.h"
30 #include "gnunet_statistics_service.h"
31 #include "gnunet-daemon-experimentation.h"
32
33
34 /**
35  * Statistics handle shared between components
36  */
37 struct GNUNET_STATISTICS_Handle *GED_stats;
38
39
40 /**
41  * Configuration handle shared between components
42  */
43 struct GNUNET_CONFIGURATION_Handle *GED_cfg;
44
45
46 /**
47  * Task run during shutdown to stop all submodules of the experimentation daemon.
48  *
49  * @param cls unused
50  * @param tc unused
51  */
52 static void
53 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
54 {
55   GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Experimentation daemon shutting down ...\n"));
56
57   GED_scheduler_stop ();
58   GED_nodes_stop ();
59   GED_experiments_stop ();
60   GED_storage_stop ();
61   GED_capabilities_stop ();
62 }
63
64
65 /**
66  * Function starting all submodules of the experimentation daemon.
67  *
68  * @param cls always NULL
69  * @param args temaining command line arguments
70  * @param cfgfile configuration file used
71  * @param cfg configuration handle
72  */
73 static void
74 run (void *cls, char *const *args, const char *cfgfile,
75      const struct GNUNET_CONFIGURATION_Handle *cfg)
76 {
77         GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Experimentation daemon starting ...\n"));
78
79         GED_cfg = (struct GNUNET_CONFIGURATION_Handle *) cfg;
80         GED_stats = GNUNET_STATISTICS_create ("experimentation", cfg);
81         if (NULL == GED_stats)
82         {
83                 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Failed to create statistics!\n"));
84                 return;
85         }
86
87         GED_capabilities_start ();
88
89         GED_storage_start ();
90
91         if (GNUNET_SYSERR == GED_experiments_start ())
92         {
93           GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
94           return;
95         }
96
97         GED_nodes_start ();
98   GED_scheduler_start ();
99   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
100                                 NULL);
101 }
102
103
104 /**
105  * The main function for the experimentation daemon.
106  *
107  * @param argc number of arguments from the command line
108  * @param argv command line arguments
109  * @return 0 ok, 1 on error
110  */
111 int
112 main (int argc, char *const *argv)
113 {
114   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
115     GNUNET_GETOPT_OPTION_END
116   };
117
118   return (GNUNET_OK ==
119           GNUNET_PROGRAM_run (argc, argv, "experimentation",
120                                                                                         _("GNUnet experimentation daemon"), options,
121                               &run, NULL)) ? 0 : 1;
122 }
123
124 /* end of gnunet-daemon-experimentation.c */