PEERSTORE initial commit
[oweals/gnunet.git] / src / peerstore / gnunet-service-peerstore.c
1 /*
2      This file is part of GNUnet.
3      (C) 
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 peerstore/gnunet-service-peerstore.c
23  * @brief peerstore service implementation
24  * @author Omar Tarabai
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "peerstore.h"
29
30 /**
31  * Our configuration.
32  */
33 static const struct GNUNET_CONFIGURATION_Handle *cfg;
34
35 /**
36  * Task run during shutdown.
37  *
38  * @param cls unused
39  * @param tc unused
40  */
41 static void
42 shutdown_task (void *cls,
43                const struct GNUNET_SCHEDULER_TaskContext *tc)
44 {
45 }
46
47
48 /**
49  * A client disconnected.  Remove all of its data structure entries.
50  *
51  * @param cls closure, NULL
52  * @param client identification of the client
53  */
54 static void
55 handle_client_disconnect (void *cls,
56                           struct GNUNET_SERVER_Client
57                           * client)
58 {
59 }
60
61 /**
62  * Process statistics requests.
63  *
64  * @param cls closure
65  * @param server the initialized server
66  * @param c configuration to use
67  */
68 static void
69 run (void *cls,
70      struct GNUNET_SERVER_Handle *server,
71      const struct GNUNET_CONFIGURATION_Handle *c)
72 {
73   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
74     {NULL, NULL, 0, 0}
75   };
76   char *database;
77   char *db_lib_name;
78
79   cfg = c;
80   if (GNUNET_OK !=
81         GNUNET_CONFIGURATION_get_value_string (cfg, "peerstore", "DATABASE",
82                                                &database))
83   {
84     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No database backend configured\n");
85     return;
86   }
87   GNUNET_asprintf (&db_lib_name, "libgnunet_plugin_peerstore_%s", database);
88
89   GNUNET_SERVER_add_handlers (server, handlers);
90   GNUNET_SERVER_disconnect_notify (server, 
91                                    &handle_client_disconnect,
92                                    NULL);
93   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
94                                 &shutdown_task,
95                                 NULL);
96 }
97
98
99 /**
100  * The main function for the peerstore service.
101  *
102  * @param argc number of arguments from the command line
103  * @param argv command line arguments
104  * @return 0 ok, 1 on error
105  */
106 int
107 main (int argc, char *const *argv)
108 {
109   return (GNUNET_OK ==
110           GNUNET_SERVICE_run (argc,
111                               argv,
112                               "peerstore",
113                               GNUNET_SERVICE_OPTION_NONE,
114                               &run, NULL)) ? 0 : 1;
115 }
116
117 /* end of gnunet-service-peerstore.c */