PEERSTORE api fix
[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   //create a fake response for testing
104   char *response = "This is a response";
105   uint16_t resp_size = strlen(response);
106   tc = GNUNET_SERVER_transmit_context_create (client);
107   msg_size = sizeof(struct StoreResponseMessage) + resp_size;
108   sresm = malloc(msg_size);
109   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Sending a response to client of size: %u, response size: %u\n", msg_size, resp_size);
110   sresm->header.type = htons(GNUNET_MESSAGE_TYPE_PEERSTORE_STORE_RESULT);
111   sresm->header.size = htons(msg_size);
112   sresm->success = htons(GNUNET_NO);
113   sresm->emsg_size = htons(resp_size);
114   char *msg_ptr = (char *)&sresm[1];
115   memcpy(msg_ptr, response, resp_size);
116   GNUNET_SERVER_transmit_context_append_message(tc, (struct GNUNET_MessageHeader *)sresm);
117   GNUNET_SERVER_transmit_context_run (tc, GNUNET_TIME_UNIT_FOREVER_REL);
118 }
119
120 /**
121  * Peerstore service runner.
122  *
123  * @param cls closure
124  * @param server the initialized server
125  * @param c configuration to use
126  */
127 static void
128 run (void *cls,
129      struct GNUNET_SERVER_Handle *server,
130      const struct GNUNET_CONFIGURATION_Handle *c)
131 {
132   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
133       {&handle_store, NULL, GNUNET_MESSAGE_TYPE_PEERSTORE_STORE, 0},
134       {NULL, NULL, 0, 0}
135   };
136   char *database;
137
138   cfg = c;
139   if (GNUNET_OK !=
140         GNUNET_CONFIGURATION_get_value_string (cfg, "peerstore", "DATABASE",
141                                                &database))
142     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No database backend configured\n");
143
144   else
145   {
146     GNUNET_asprintf (&db_lib_name, "libgnunet_plugin_peerstore_%s", database);
147     db = GNUNET_PLUGIN_load(db_lib_name, (void *) cfg);
148     GNUNET_free(database);
149   }
150   if(NULL == db)
151           GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Could not load database backend `%s'\n", db_lib_name);
152   else
153   {
154     GNUNET_SERVER_add_handlers (server, handlers);
155     GNUNET_SERVER_disconnect_notify (server,
156              &handle_client_disconnect,
157              NULL);
158   }
159   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
160                                 &shutdown_task,
161                                 NULL);
162 }
163
164
165 /**
166  * The main function for the peerstore service.
167  *
168  * @param argc number of arguments from the command line
169  * @param argv command line arguments
170  * @return 0 ok, 1 on error
171  */
172 int
173 main (int argc, char *const *argv)
174 {
175   return (GNUNET_OK ==
176           GNUNET_SERVICE_run (argc,
177                               argv,
178                               "peerstore",
179                               GNUNET_SERVICE_OPTION_NONE,
180                               &run, NULL)) ? 0 : 1;
181 }
182
183 /* end of gnunet-service-peerstore.c */