PEERSTORE cleanup and api test
[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 plugin library name
37  */
38 char *db_lib_name;
39
40 /**
41  * Database handle
42  */
43 static struct GNUNET_PEERSTORE_PluginFunctions *db;
44
45 /**
46  * Task run during shutdown.
47  *
48  * @param cls unused
49  * @param tc unused
50  */
51 static void
52 shutdown_task (void *cls,
53                const struct GNUNET_SCHEDULER_TaskContext *tc)
54 {
55   if(NULL != db_lib_name)
56   {
57     GNUNET_break (NULL == GNUNET_PLUGIN_unload (db_lib_name, db));
58     GNUNET_free (db_lib_name);
59     db_lib_name = NULL;
60   }
61 }
62
63
64 /**
65  * A client disconnected.  Remove all of its data structure entries.
66  *
67  * @param cls closure, NULL
68  * @param client identification of the client
69  */
70 static void
71 handle_client_disconnect (void *cls,
72                           struct GNUNET_SERVER_Client
73                           * client)
74 {
75 }
76
77 /**
78  * Handle a store request from client
79  *
80  * @param cls unused
81  * @param client identification of the client
82  * @param message the actual message
83  */
84 void handle_store (void *cls,
85     struct GNUNET_SERVER_Client *client,
86     const struct GNUNET_MessageHeader *message)
87 {
88   struct StoreRequestMessage *sreqm;
89   struct GNUNET_SERVER_TransmitContext *tc;
90   struct StoreResponseMessage *sresm;
91   uint16_t msg_size;
92   char *sub_system;
93
94   msg_size = ntohs(message->size);
95   GNUNET_break_op(msg_size > sizeof(struct GNUNET_MessageHeader) + sizeof(struct StoreRequestMessage));
96   sreqm = (struct StoreRequestMessage *)&message[1];
97   sub_system = (char *)&sreqm[1];
98   GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Received a store request (size: %lu) for sub system `%s' and peer `%s'\n",
99       msg_size,
100       sub_system,
101       GNUNET_i2s (&sreqm->peer));
102   //TODO: do the actual storage
103 }
104
105 /**
106  * Peerstore service runner.
107  *
108  * @param cls closure
109  * @param server the initialized server
110  * @param c configuration to use
111  */
112 static void
113 run (void *cls,
114      struct GNUNET_SERVER_Handle *server,
115      const struct GNUNET_CONFIGURATION_Handle *c)
116 {
117   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
118       {&handle_store, NULL, GNUNET_MESSAGE_TYPE_PEERSTORE_STORE, 0},
119       {NULL, NULL, 0, 0}
120   };
121   char *database;
122
123   cfg = c;
124   if (GNUNET_OK !=
125         GNUNET_CONFIGURATION_get_value_string (cfg, "peerstore", "DATABASE",
126                                                &database))
127     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No database backend configured\n");
128
129   else
130   {
131     GNUNET_asprintf (&db_lib_name, "libgnunet_plugin_peerstore_%s", database);
132     db = GNUNET_PLUGIN_load(db_lib_name, (void *) cfg);
133     GNUNET_free(database);
134   }
135   if(NULL == db)
136           GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Could not load database backend `%s'\n", db_lib_name);
137   else
138   {
139     GNUNET_SERVER_add_handlers (server, handlers);
140     GNUNET_SERVER_disconnect_notify (server,
141              &handle_client_disconnect,
142              NULL);
143   }
144   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
145                                 &shutdown_task,
146                                 NULL);
147 }
148
149
150 /**
151  * The main function for the peerstore service.
152  *
153  * @param argc number of arguments from the command line
154  * @param argv command line arguments
155  * @return 0 ok, 1 on error
156  */
157 int
158 main (int argc, char *const *argv)
159 {
160   return (GNUNET_OK ==
161           GNUNET_SERVICE_run (argc,
162                               argv,
163                               "peerstore",
164                               GNUNET_SERVICE_OPTION_NONE,
165                               &run, NULL)) ? 0 : 1;
166 }
167
168 /* end of gnunet-service-peerstore.c */