-fix rps config
[oweals/gnunet.git] / src / rps / rps_api.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 rps/rps_api.c
23  * @brief API for rps
24  * @author Julius Bünger
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "rps.h"
29 #include "gnunet_rps_service.h"
30
31 /**
32  * Handler to handle requests from a client.
33  */
34 struct GNUNET_RPS_Handle
35 {
36   /**
37    * The handle to the client configuration.
38    */
39   const struct GNUNET_CONFIGURATION_Handle *cfg;
40
41   /**
42    * The connection to the client.
43    */
44   struct GNUNET_CLIENT_Connection *conn;
45
46   /**
47    * The message queue to the client.
48    */
49   struct GNUNET_MQ_Handle *mq;
50 };
51
52 /**
53  * Handler to single requests from the client.
54  */
55 struct GNUNET_RPS_Request_Handle
56 {
57   /**
58    * The client issuing the request.
59    */
60   struct GNUNET_RPS_Handle *h;
61
62   /**
63    * The nuber of the request.
64    */
65   uint64_t n;
66
67   /**
68    * The callback to be called when we receive an answer.
69    */
70   GNUNET_RPS_NotifyReadyCB ready_cb;
71
72   /**
73    * The closure for the callback.
74    */
75   void *ready_cb_cls;
76 };
77
78 /**
79  * Array of Request_Handles.
80  */
81 struct GNUNET_RPS_Request_Handle *req_handlers = NULL;
82
83 /**
84  * Current length of req_handlers.
85  */
86 unsigned int req_handlers_size = 0;
87
88 /**
89  * Struct used to pack the callback, its closure (provided by the caller)
90  * and the connection handler to the service to pass it to a callback function.
91  */
92 struct cb_cls_pack
93 {
94   /**
95    * Callback provided by the client
96    */
97   GNUNET_RPS_NotifyReadyCB cb;
98
99   /**
100    * Closure provided by the client
101    */
102   void *cls;
103
104   /**
105    * Handle to the service connection
106    */
107  struct GNUNET_CLIENT_Connection *service_conn;
108 };
109
110
111
112
113 /**
114  * This function is called, when the service replies to our request.
115  * It calls the callback the caller gave us with the provided closure
116  * and disconnects afterwards.
117  *
118  * @param cls the closure
119  * @param message the message
120  */
121   static void
122 handle_reply (void *cls,
123               const struct GNUNET_MessageHeader *message)
124 {
125   struct GNUNET_RPS_CS_ReplyMessage *msg;
126   //struct cb_cls_pack *pack;
127   //struct GNUNET_RPS_Handle *h;
128   struct GNUNET_PeerIdentity *peers;
129   struct GNUNET_RPS_Request_Handle *rh;
130
131   /* Give the peers back */
132   msg = (struct GNUNET_RPS_CS_ReplyMessage *) message;
133   //pack = (struct cb_cls_pack *) cls;
134   //h = (struct GNUNET_RPS_Handle *) cls;
135   peers = (struct GNUNET_PeerIdentity *) &msg[1];
136   rh = &req_handlers[msg->n];
137   rh->ready_cb((rh)->ready_cb_cls, msg->num_peers, peers);
138
139   /* Disconnect */
140   //GNUNET_CLIENT_disconnect(pack->service_conn);
141 }
142
143 /**
144  */
145   static void
146 mq_error_handler(void *cls, enum GNUNET_MQ_Error error)
147 {
148   //TODO LOG
149 }
150
151 /**
152  * Request n random peers.
153  *
154  * @param cfg the configuration to use.
155  * @param n number of peers requesting.
156  * @param cb a callback function called when the peers are ready
157  * @param cls a closure given to the callback function
158  */
159   struct GNUNET_RPS_Request_Handle *
160 GNUNET_RPS_request_peers_single_call (const struct GNUNET_CONFIGURATION_Handle *cfg,
161                           uint64_t n,
162                           GNUNET_RPS_NotifyReadyCB ready_cb,
163                           void *cls)
164 {
165   //struct GNUNET_CLIENT_Connection *service_conn;
166   //static const struct GNUNET_MQ_MessageHandler mq_handlers[] = {
167   //  {&handle_reply, GNUNET_MESSAGE_TYPE_RPS_CS_REPLY, 0},
168   //  GNUNET_MQ_HANDLERS_END
169   //};
170   //struct cb_cls_pack *pack;
171   //struct GNUNET_MQ_Handle *mq;
172   //struct GNUNET_MQ_Envelope *ev;
173   //struct GNUNET_RPS_CS_RequestMessage *msg;
174   struct GNUNET_RPS_Handle *h;
175   struct GNUNET_RPS_Request_Handle *rh;
176
177   /* Connect to the service */
178   h = GNUNET_RPS_connect(cfg);
179   //h = GNUNET_new(struct GNUNET_RPS_Handle);
180   //h->conn = GNUNET_CLIENT_connect("rps", cfg);
181   //rh = GNUNET_new(struct GNUNET_RPS_Request_Handle);
182   ////pack = GNUNET_malloc(sizeof(struct cb_cls_pack));
183   ////pack->cb = ready_cb;
184   ////pack->cls = cls;
185   ////pack->service_conn = service_conn;
186   //mq = GNUNET_MQ_queue_for_connection_client(service_conn,
187   //                                           mq_handlers,
188   //                                           mq_error_handler, // TODO implement
189   //                                           h);
190
191   /* Send the request to the service */
192   rh = GNUNET_RPS_request_peers(h, n, ready_cb, cls);
193   //ev = GNUNET_MQ_msg(msg, GNUNET_MESSAGE_TYPE_RPS_CS_REQUEST);
194   //msg->num_peers = GNUNET_htonll(n);
195   //GNUNET_MQ_send(mq, ev);
196   //GNUNET_CLIENT_disconnect(service_conn);
197   //rh = GNUNET_new(struct GNUNET_RPS_Request_Handle);
198   GNUNET_RPS_disconnect(h);
199   return rh;
200 }
201
202 /**
203  * Connect to the rps service
204  */
205   struct GNUNET_RPS_Handle *
206 GNUNET_RPS_connect( const struct GNUNET_CONFIGURATION_Handle *cfg )
207 {
208   struct GNUNET_RPS_Handle *h;
209   //struct GNUNET_RPS_Request_Handle *rh;
210   static const struct GNUNET_MQ_MessageHandler mq_handlers[] = {
211     {&handle_reply, GNUNET_MESSAGE_TYPE_RPS_CS_REPLY, 0},
212     GNUNET_MQ_HANDLERS_END
213   };
214
215   h = GNUNET_new(struct GNUNET_RPS_Handle);
216   //h->cfg = GNUNET_new(struct GNUNET_CONFIGURATION_Handle);
217   //*h->cfg = *cfg;
218   h->cfg = cfg; // FIXME |^
219   h->conn = GNUNET_CLIENT_connect("rps", cfg);
220   h->mq = GNUNET_MQ_queue_for_connection_client(h->conn,
221                                                 mq_handlers,
222                                                 mq_error_handler, // TODO implement
223                                                 h);
224
225
226   return h;
227 }
228
229 /**
230  * Request n random peers.
231  */
232   struct GNUNET_RPS_Request_Handle *
233 GNUNET_RPS_request_peers (struct GNUNET_RPS_Handle *h, uint64_t n,
234                           GNUNET_RPS_NotifyReadyCB ready_cb,
235                           void *cls)
236 {
237   struct GNUNET_RPS_Request_Handle *rh;
238   struct GNUNET_MQ_Envelope *ev;
239   struct GNUNET_RPS_CS_RequestMessage *msg;
240
241   // assert func != NULL
242   rh = GNUNET_new(struct GNUNET_RPS_Request_Handle);
243   rh->h = h;
244   rh->n = req_handlers_size; // TODO ntoh
245   rh->ready_cb = ready_cb;
246   rh->ready_cb_cls = cls;
247
248   GNUNET_array_append(req_handlers, req_handlers_size, *rh);
249   //memcpy(&req_handlers[req_handlers_size-1], rh, sizeof(struct GNUNET_RPS_Request_Handle));
250
251   ev = GNUNET_MQ_msg(msg, GNUNET_MESSAGE_TYPE_RPS_CS_REQUEST);
252   msg->num_peers = GNUNET_htonll(n);
253   msg->n = rh->n;
254   GNUNET_MQ_send(h->mq, ev);
255   return rh;
256 }
257
258 /**
259  * Cancle an issued request.
260  */
261   void
262 GNUNET_RPS_request_cancel ( struct GNUNET_RPS_Request_Handle *rh )
263 {
264   // TODO
265 }
266
267 /**
268  * Disconnect to the rps service
269  */
270   void
271 GNUNET_RPS_disconnect ( struct GNUNET_RPS_Handle *h )
272 {
273   if ( NULL != h->conn ) {
274     GNUNET_CLIENT_disconnect(h->conn);
275   }
276 }
277
278
279 /* end of rps_api.c */