towards PEERSTORE file plugin
[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  * Database handle
37  */
38 static struct GNUNET_PEERSTORE_PluginFunctions *db;
39
40 /**
41  * Task run during shutdown.
42  *
43  * @param cls unused
44  * @param tc unused
45  */
46 static void
47 shutdown_task (void *cls,
48                const struct GNUNET_SCHEDULER_TaskContext *tc)
49 {
50 }
51
52
53 /**
54  * A client disconnected.  Remove all of its data structure entries.
55  *
56  * @param cls closure, NULL
57  * @param client identification of the client
58  */
59 static void
60 handle_client_disconnect (void *cls,
61                           struct GNUNET_SERVER_Client
62                           * client)
63 {
64 }
65
66 /**
67  * Process statistics requests.
68  *
69  * @param cls closure
70  * @param server the initialized server
71  * @param c configuration to use
72  */
73 static void
74 run (void *cls,
75      struct GNUNET_SERVER_Handle *server,
76      const struct GNUNET_CONFIGURATION_Handle *c)
77 {
78   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
79     {NULL, NULL, 0, 0}
80   };
81   char *database;
82   char *db_lib_name;
83
84   cfg = c;
85   if (GNUNET_OK !=
86         GNUNET_CONFIGURATION_get_value_string (cfg, "peerstore", "DATABASE",
87                                                &database))
88     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No database backend configured\n");
89
90   else
91   {
92     GNUNET_asprintf (&db_lib_name, "libgnunet_plugin_peerstore_%s", database);
93     db = GNUNET_PLUGIN_load(db_lib_name, (void *) cfg);
94     GNUNET_free(database);
95   }
96   if(NULL == db)
97           GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Could not load database backend `%s'\n", db_lib_name);
98   else
99   {
100     GNUNET_SERVER_add_handlers (server, handlers);
101     GNUNET_SERVER_disconnect_notify (server,
102              &handle_client_disconnect,
103              NULL);
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 peerstore 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   return (GNUNET_OK ==
122           GNUNET_SERVICE_run (argc,
123                               argv,
124                               "peerstore",
125                               GNUNET_SERVICE_OPTION_NONE,
126                               &run, NULL)) ? 0 : 1;
127 }
128
129 /* end of gnunet-service-peerstore.c */