small API change: do no longer pass rarely needed GNUNET_SCHEDULER_TaskContext to...
[oweals/gnunet.git] / src / dht / gnunet-service-wdht.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009, 2010, 2011 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file dht/gnunet-service-xdht.c
23  * @brief GNUnet DHT service
24  * @author Christian Grothoff
25  * @author Nathan Evans
26  */
27
28 #include "platform.h"
29 #include "gnunet_block_lib.h"
30 #include "gnunet_util_lib.h"
31 #include "gnunet_transport_service.h"
32 #include "gnunet_hello_lib.h"
33 #include "gnunet_dht_service.h"
34 #include "gnunet_statistics_service.h"
35 #include "gnunet-service-wdht.h"
36 #include "gnunet-service-wdht_clients.h"
37 #include "gnunet-service-wdht_datacache.h"
38 #include "gnunet-service-wdht_neighbours.h"
39 #include "gnunet-service-wdht_nse.h"
40
41
42
43 /**
44  * Handle for the statistics service.
45  */
46 struct GNUNET_STATISTICS_Handle *GDS_stats;
47
48 /**
49  * Our handle to the BLOCK library.
50  */
51 struct GNUNET_BLOCK_Context *GDS_block_context;
52
53 /**
54  * The configuration the DHT service is running with
55  */
56 const struct GNUNET_CONFIGURATION_Handle *GDS_cfg;
57
58
59 /**
60  * Task run during shutdown.
61  *
62  * @param cls unused
63  */
64 static void
65 shutdown_task (void *cls)
66 {
67   GDS_NEIGHBOURS_done ();
68   GDS_DATACACHE_done ();
69   GDS_NSE_done ();
70   if (GDS_block_context != NULL)
71   {
72     GNUNET_BLOCK_context_destroy (GDS_block_context);
73     GDS_block_context = NULL;
74   }
75   if (GDS_stats != NULL)
76   {
77     GNUNET_STATISTICS_destroy (GDS_stats, GNUNET_YES);
78     GDS_stats = NULL;
79   }
80 }
81
82
83 /**
84  * Process dht requests.
85  *
86  * @param cls closure
87  * @param server the initialized server
88  * @param c configuration to use
89  */
90 static void
91 run (void *cls, struct GNUNET_SERVER_Handle *server,
92      const struct GNUNET_CONFIGURATION_Handle *c)
93 {
94   GDS_cfg = c;
95   GDS_block_context = GNUNET_BLOCK_context_create (GDS_cfg);
96   GDS_stats = GNUNET_STATISTICS_create ("dht", GDS_cfg);
97   GDS_NSE_init ();
98   GDS_DATACACHE_init ();
99   GDS_CLIENTS_init (server);
100   if (GNUNET_OK != GDS_NEIGHBOURS_init ())
101   {
102     shutdown_task (NULL);
103     return;
104   }
105   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
106                                 &shutdown_task,
107                                 NULL);
108 }
109
110
111 /**
112  * The main function for the dht service.
113  *
114  * @param argc number of arguments from the command line
115  * @param argv command line arguments
116  * @return 0 ok, 1 on error
117  */
118 int
119 main (int argc, char *const *argv)
120 {
121   int ret;
122
123   ret =
124       (GNUNET_OK ==
125        GNUNET_SERVICE_run (argc, argv, "wdht",
126                            GNUNET_SERVICE_OPTION_NONE, &run,
127                            NULL)) ? 0 : 1;
128   GDS_CLIENTS_done ();
129   return ret;
130 }
131
132 /* end of gnunet-service-wdht.c */