361f76e4a0f3f2a256803a93fd235a036a222288
[oweals/gnunet.git] / src / datastore / datastore_api.c
1 /*
2      This file is part of GNUnet
3      (C) 2004, 2005, 2006, 2007, 2009 Christian Grothoff (and other contributing authors)
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 2, 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 datastore/datastore_api.c
23  * @brief Management for the datastore for files stored on a GNUnet node
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_datastore_service.h"
28 #include "datastore.h"
29
30 /**
31  * Handle to the datastore service.  Followed
32  * by 65536 bytes used for storing messages.
33  */
34 struct GNUNET_DATASTORE_Handle
35 {
36
37   /**
38    * Our configuration.
39    */
40   struct GNUNET_CONFIGURATION_Handle *cfg;
41
42   /**
43    * Our scheduler.
44    */
45   struct GNUNET_SCHEDULER_Handle *sched;
46
47   /**
48    * Current connection to the datastore service.
49    */
50   struct GNUNET_CLIENT_Connection *client;
51
52   /**
53    * Current response processor (NULL if we are not waiting for a
54    * response).  The specific type depends on the kind of message we
55    * just transmitted.
56    */
57   void *response_proc;
58   
59   /**
60    * Closure for response_proc.
61    */
62   void *response_proc_cls;
63
64   /**
65    * Timeout for the current operation.
66    */
67   struct GNUNET_TIME_Absolute timeout;
68
69   /**
70    * Number of bytes in the message following
71    * this struct, 0 if we have no request pending.
72    */
73   size_t message_size;
74
75 };
76
77
78 /**
79  * Connect to the datastore service.
80  *
81  * @param cfg configuration to use
82  * @param sched scheduler to use
83  * @return handle to use to access the service
84  */
85 struct GNUNET_DATASTORE_Handle *GNUNET_DATASTORE_connect (struct
86                                                           GNUNET_CONFIGURATION_Handle
87                                                           *cfg,
88                                                           struct
89                                                           GNUNET_SCHEDULER_Handle
90                                                           *sched)
91 {
92   struct GNUNET_CLIENT_Connection *c;
93   struct GNUNET_DATASTORE_Handle *h;
94   
95   c = GNUNET_CLIENT_connect (sched, "datastore", cfg);
96   if (c == NULL)
97     return NULL; /* oops */
98   h = GNUNET_malloc (sizeof(struct GNUNET_DATASTORE_Handle) + 
99                      GNUNET_SERVER_MAX_MESSAGE_SIZE);
100   h->client = c;
101   h->cfg = cfg;
102   h->sched = sched;
103   return h;
104 }
105
106
107 /**
108  * Transmit DROP message to datastore service.
109  */
110 static size_t
111 transmit_drop (void *cls,
112                size_t size, void *buf)
113 {
114   struct GNUNET_DATASTORE_Handle *h = cls;
115   struct GNUNET_MessageHeader *hdr;
116   
117   if (buf == NULL)
118     {
119       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
120                   _("Failed to transmit request to drop database.\n"));
121       GNUNET_DATASTORE_disconnect (h, GNUNET_NO);
122       return 0;
123     }
124   GNUNET_assert (size >= sizeof(struct GNUNET_MessageHeader));
125   hdr = buf;
126   hdr->size = htons(sizeof(struct GNUNET_MessageHeader));
127   hdr->type = htons(GNUNET_MESSAGE_TYPE_DATASTORE_DROP);
128   GNUNET_DATASTORE_disconnect (h, GNUNET_NO);
129   return sizeof(struct GNUNET_MessageHeader);
130 }
131
132
133 /**
134  * Disconnect from the datastore service (and free
135  * associated resources).
136  *
137  * @param h handle to the datastore
138  * @param drop set to GNUNET_YES to delete all data in datastore (!)
139  */
140 void GNUNET_DATASTORE_disconnect (struct GNUNET_DATASTORE_Handle *h,
141                                   int drop)
142 {
143   GNUNET_assert (0 == h->message_size);
144   GNUNET_assert (NULL == h->response_proc);
145   if ( (GNUNET_YES == drop) &&
146        (h->client != NULL) )
147     {
148       if (NULL != 
149           GNUNET_CLIENT_notify_transmit_ready (h->client,
150                                                sizeof(struct GNUNET_MessageHeader),
151                                                GNUNET_TIME_UNIT_MINUTES,
152                                                &transmit_drop,
153                                                h))
154         return;
155       GNUNET_break (0);
156     }
157   if (h->client != NULL)
158     GNUNET_CLIENT_disconnect (h->client);
159   GNUNET_free (h);
160 }
161
162
163 /**
164  * Type of a function to call when we receive a message
165  * from the service.  This specific function is used
166  * to handle messages of type "struct StatusMessage".
167  *
168  * @param cls closure
169  * @param msg message received, NULL on timeout or fatal error
170  */
171 static void 
172 with_status_response_handler (void *cls,
173                               const struct
174                               GNUNET_MessageHeader * msg)
175 {
176   struct GNUNET_DATASTORE_Handle *h = cls;
177   GNUNET_DATASTORE_ContinuationWithStatus cont = h->response_proc;
178   const struct StatusMessage *sm;
179   const char *emsg;
180   int status;
181
182   if (msg == NULL)
183     {
184       h->response_proc = NULL;
185       GNUNET_CLIENT_disconnect (h->client);
186       h->client = GNUNET_CLIENT_connect (h->sched, "datastore", h->cfg);
187       cont (h->response_proc_cls, 
188             GNUNET_SYSERR,
189             _("Timeout trying to read response from datastore service\n"));       
190       return;
191     }
192   if ( (ntohs(msg->size) < sizeof(struct StatusMessage)) ||
193        (ntohs(msg->type) != GNUNET_MESSAGE_TYPE_DATASTORE_STATUS) ) 
194     {
195       GNUNET_break (0);
196       h->response_proc = NULL;
197       GNUNET_CLIENT_disconnect (h->client);
198       h->client = GNUNET_CLIENT_connect (h->sched, "datastore", h->cfg);
199       cont (h->response_proc_cls, 
200             GNUNET_SYSERR,
201             _("Error reading response from datastore service\n"));
202       return;
203     }
204   sm = (const struct StatusMessage*) msg;
205   status = ntohl(sm->status);
206   emsg = NULL;
207   if (ntohs(msg->size) > sizeof(struct StatusMessage))
208     {
209       emsg = (const char*) &sm[1];
210       if (emsg[ntohs(msg->size) - sizeof(struct StatusMessage) - 1] != '\0')
211         {
212           GNUNET_break (0);
213           emsg = _("Invalid error message received from datastore service");
214         }
215     }  
216   if ( (status == GNUNET_SYSERR) &&
217        (emsg == NULL) )
218     {
219       GNUNET_break (0);
220       emsg = _("Invalid error message received from datastore service");
221     }
222   h->response_proc = NULL;
223 #if DEBUG_DATASTORE
224   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
225               "Received status %d/%s\n",
226               status,
227               emsg);
228 #endif
229   cont (h->response_proc_cls, 
230         status,
231         emsg);
232 }
233
234
235 /**
236  * Transmit message to datastore service and then
237  * read a status message.
238  *
239  * @param cls closure with handle to datastore
240  * @param size number of bytes we can transmit at most
241  * @param buf where to write transmission, NULL on
242  *        timeout
243  * @return number of bytes copied to buf
244  */
245 static size_t
246 transmit_get_status (void *cls,
247                      size_t size,
248                      void *buf)
249 {
250   struct GNUNET_DATASTORE_Handle *h = cls;
251   GNUNET_DATASTORE_ContinuationWithStatus cont = h->response_proc;
252   uint16_t msize;
253
254   if (buf == NULL)
255     {
256       h->message_size = 0;
257       h->response_proc = NULL;
258       cont (h->response_proc_cls, 
259             GNUNET_SYSERR,
260             gettext_noop ("Error transmitting message to datastore service.\n"));
261       return 0;
262     }
263   msize = h->message_size;
264   GNUNET_assert (msize <= size);
265   memcpy (buf, &h[1], msize);
266 #if DEBUG_DATASTORE
267   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
268               "Transmitted %u byte message to datastore service, now waiting for status.\n",
269               msize);
270 #endif
271   h->message_size = 0;
272   GNUNET_CLIENT_receive (h->client,
273                          &with_status_response_handler,
274                          h,
275                          GNUNET_TIME_absolute_get_remaining (h->timeout));
276   return msize;
277 }
278
279
280 /**
281  * Helper function that will initiate the
282  * transmission of a message to the datastore
283  * service.  The message must already be prepared
284  * and stored in the buffer at the end of the
285  * handle.  The message must be of a type that
286  * expects a "StatusMessage" in response.
287  *
288  * @param h handle to the service with prepared message
289  * @param cont function to call with result
290  * @param cont_cls closure
291  * @param timeout timeout for the operation
292  */
293 static void
294 transmit_for_status (struct GNUNET_DATASTORE_Handle *h,
295                      GNUNET_DATASTORE_ContinuationWithStatus cont,
296                      void *cont_cls,
297                      struct GNUNET_TIME_Relative timeout)
298 {
299   const struct GNUNET_MessageHeader *hdr;
300   uint16_t msize;
301
302   GNUNET_assert (cont != NULL);
303   hdr = (const struct GNUNET_MessageHeader*) &h[1];
304   msize = ntohs(hdr->size);
305 #if DEBUG_DATASTORE
306   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
307               "Transmitting %u byte message of type %u to datastore service\n",
308               msize,
309               ntohs(hdr->type));
310 #endif
311   GNUNET_assert (h->response_proc == NULL);
312   h->response_proc = cont;
313   h->response_proc_cls = cont_cls;
314   h->timeout = GNUNET_TIME_relative_to_absolute (timeout);
315   h->message_size = msize;
316   if (NULL == GNUNET_CLIENT_notify_transmit_ready (h->client,
317                                                    msize,
318                                                    timeout,
319                                                    &transmit_get_status,
320                                                    h))
321     {
322       GNUNET_break (0);
323       h->response_proc = NULL;
324       h->message_size = 0;
325       cont (cont_cls,
326             GNUNET_SYSERR,
327             gettext_noop ("Not ready to transmit request to datastore service"));
328     }
329 }
330
331
332 /**
333  * Store an item in the datastore.  If the item is already present,
334  * the priorities are summed up and the higher expiration time and
335  * lower anonymity level is used.
336  *
337  * @param h handle to the datastore
338  * @param key key for the value
339  * @param size number of bytes in data
340  * @param data content stored
341  * @param type type of the content
342  * @param priority priority of the content
343  * @param anonymity anonymity-level for the content
344  * @param expiration expiration time for the content
345  * @param timeout timeout for the operation
346  * @param cont continuation to call when done
347  * @param cont_cls closure for cont
348  */
349 void
350 GNUNET_DATASTORE_put (struct GNUNET_DATASTORE_Handle *h,
351                       int rid,
352                       const GNUNET_HashCode * key,
353                       uint32_t size,
354                       const void *data,
355                       uint32_t type,
356                       uint32_t priority,
357                       uint32_t anonymity,
358                       struct GNUNET_TIME_Absolute expiration,
359                       struct GNUNET_TIME_Relative timeout,
360                       GNUNET_DATASTORE_ContinuationWithStatus cont,
361                       void *cont_cls)
362 {
363   struct DataMessage *dm;
364   size_t msize;
365
366 #if DEBUG_DATASTORE
367   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
368               "Asked to put %u bytes of data\n",
369               size);
370 #endif
371   msize = sizeof(struct DataMessage) + size;
372   GNUNET_assert (msize <= GNUNET_SERVER_MAX_MESSAGE_SIZE);
373   dm = (struct DataMessage*) &h[1];
374   dm->header.type = htons(GNUNET_MESSAGE_TYPE_DATASTORE_PUT);
375   dm->header.size = htons(msize);
376   dm->rid = htonl(rid);
377   dm->size = htonl(size);
378   dm->type = htonl(type);
379   dm->priority = htonl(priority);
380   dm->anonymity = htonl(anonymity);
381   dm->uid = GNUNET_htonll(0);
382   dm->expiration = GNUNET_TIME_absolute_hton(expiration);
383   dm->key = *key;
384   memcpy (&dm[1], data, size);
385   transmit_for_status (h, cont, cont_cls, timeout);
386 }
387
388
389 /**
390  * Reserve space in the datastore.  This function should be used
391  * to avoid "out of space" failures during a longer sequence of "put"
392  * operations (for example, when a file is being inserted).
393  *
394  * @param h handle to the datastore
395  * @param amount how much space (in bytes) should be reserved (for content only)
396  * @param entries how many entries will be created (to calculate per-entry overhead)
397  * @param cont continuation to call when done; "success" will be set to
398  *             a positive reservation value if space could be reserved.
399  * @param cont_cls closure for cont
400  * @param timeout how long to wait at most for a response
401  */
402 void
403 GNUNET_DATASTORE_reserve (struct GNUNET_DATASTORE_Handle *h,
404                           uint64_t amount,
405                           uint32_t entries,
406                           GNUNET_DATASTORE_ContinuationWithStatus cont,
407                           void *cont_cls,
408                           struct GNUNET_TIME_Relative timeout)
409 {
410   struct ReserveMessage *rm;
411
412   rm = (struct ReserveMessage*) &h[1];
413   rm->header.type = htons(GNUNET_MESSAGE_TYPE_DATASTORE_RESERVE);
414   rm->header.size = htons(sizeof (struct ReserveMessage));
415   rm->entries = htonl(entries);
416   rm->amount = GNUNET_htonll(amount);
417   transmit_for_status (h, cont, cont_cls, timeout);
418 }
419
420
421 /**
422  * Signal that all of the data for which a reservation was made has
423  * been stored and that whatever excess space might have been reserved
424  * can now be released.
425  *
426  * @param h handle to the datastore
427  * @param rid reservation ID (value of "success" in original continuation
428  *        from the "reserve" function).
429  * @param cont continuation to call when done
430  * @param cont_cls closure for cont
431  * @param timeout how long to wait at most for a response
432  */
433 void
434 GNUNET_DATASTORE_release_reserve (struct GNUNET_DATASTORE_Handle *h,
435                                   int rid,
436                                   GNUNET_DATASTORE_ContinuationWithStatus cont,
437                                   void *cont_cls,
438                                   struct GNUNET_TIME_Relative timeout)
439 {
440   struct ReleaseReserveMessage *rrm;
441
442   rrm = (struct ReleaseReserveMessage*) &h[1];
443   rrm->header.type = htons(GNUNET_MESSAGE_TYPE_DATASTORE_RELEASE_RESERVE);
444   rrm->header.size = htons(sizeof (struct ReleaseReserveMessage));
445   rrm->rid = htonl(rid);
446   transmit_for_status (h, cont, cont_cls, timeout);
447 }
448
449
450 /**
451  * Update a value in the datastore.
452  *
453  * @param h handle to the datastore
454  * @param uid identifier for the value
455  * @param priority how much to increase the priority of the value
456  * @param expiration new expiration value should be MAX of existing and this argument
457  * @param cont continuation to call when done
458  * @param cont_cls closure for cont
459  * @param timeout how long to wait at most for a response
460  */
461 void
462 GNUNET_DATASTORE_update (struct GNUNET_DATASTORE_Handle *h,
463                          unsigned long long uid,
464                          uint32_t priority,
465                          struct GNUNET_TIME_Absolute expiration,
466                          GNUNET_DATASTORE_ContinuationWithStatus cont,
467                          void *cont_cls,
468                          struct GNUNET_TIME_Relative timeout)
469 {
470   struct UpdateMessage *um;
471
472   um = (struct UpdateMessage*) &h[1];
473   um->header.type = htons(GNUNET_MESSAGE_TYPE_DATASTORE_UPDATE);
474   um->header.size = htons(sizeof (struct UpdateMessage));
475   um->priority = htonl(priority);
476   um->expiration = GNUNET_TIME_absolute_hton(expiration);
477   um->uid = GNUNET_htonll(uid);
478   transmit_for_status (h, cont, cont_cls, timeout);
479 }
480
481
482
483
484 /**
485  * Type of a function to call when we receive a message
486  * from the service.  This specific function is used
487  * to handle messages of type "struct DataMessage".
488  *
489  * @param cls closure
490  * @param msg message received, NULL on timeout or fatal error
491  */
492 static void 
493 with_result_response_handler (void *cls,
494                               const struct
495                               GNUNET_MessageHeader * msg)
496 {
497   static struct GNUNET_TIME_Absolute zero;
498   struct GNUNET_DATASTORE_Handle *h = cls;
499   GNUNET_DATASTORE_Iterator cont = h->response_proc;
500   const struct DataMessage *dm;
501   size_t msize;
502
503   if (msg == NULL)
504     {
505       h->response_proc = NULL;
506       GNUNET_CLIENT_disconnect (h->client);
507       h->client = GNUNET_CLIENT_connect (h->sched, "datastore", h->cfg);
508       cont (h->response_proc_cls, 
509             NULL, 0, NULL, 0, 0, 0, zero, 0);
510       return;
511     }
512   if (ntohs(msg->type) == GNUNET_MESSAGE_TYPE_DATASTORE_DATA_END) 
513     {
514       GNUNET_break (ntohs(msg->size) == sizeof(struct GNUNET_MessageHeader));
515       h->response_proc = NULL;
516 #if DEBUG_DATASTORE
517       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
518                   "Received end of result set\n");
519 #endif
520       cont (h->response_proc_cls, 
521             NULL, 0, NULL, 0, 0, 0, zero, 0);
522       return;
523     }
524   if ( (ntohs(msg->size) < sizeof(struct DataMessage)) ||
525        (ntohs(msg->type) != GNUNET_MESSAGE_TYPE_DATASTORE_DATA) ) 
526     {
527       GNUNET_break (0);
528       GNUNET_CLIENT_disconnect (h->client);
529       h->client = GNUNET_CLIENT_connect (h->sched, "datastore", h->cfg);
530       h->response_proc = NULL;
531       cont (h->response_proc_cls, 
532             NULL, 0, NULL, 0, 0, 0, zero, 0);
533       return;
534     }
535   dm = (const struct DataMessage*) msg;
536   msize = ntohl(dm->size);
537   if (ntohs(msg->size) != msize + sizeof(struct DataMessage))
538     {
539       GNUNET_break (0);
540       GNUNET_CLIENT_disconnect (h->client);
541       h->client = GNUNET_CLIENT_connect (h->sched, "datastore", h->cfg);
542       h->response_proc = NULL;
543       cont (h->response_proc_cls, 
544             NULL, 0, NULL, 0, 0, 0, zero, 0);
545       return;
546     }
547 #if DEBUG_DATASTORE
548   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
549               "Received result %llu with type %u and size %u with key %s\n",
550               (unsigned long long) GNUNET_ntohll(dm->uid),
551               ntohl(dm->type),
552               msize,
553               GNUNET_h2s(&dm->key));
554 #endif
555   cont (h->response_proc_cls, 
556         &dm->key,
557         msize,
558         &dm[1],
559         ntohl(dm->type),
560         ntohl(dm->priority),
561         ntohl(dm->anonymity),
562         GNUNET_TIME_absolute_ntoh(dm->expiration),      
563         GNUNET_ntohll(dm->uid));
564   GNUNET_CLIENT_receive (h->client,
565                          &with_result_response_handler,
566                          h,
567                          GNUNET_TIME_absolute_get_remaining (h->timeout));
568 }
569
570
571 /**
572  * Transmit message to datastore service and then
573  * read a result message.
574  *
575  * @param cls closure with handle to datastore
576  * @param size number of bytes we can transmit at most
577  * @param buf where to write transmission, NULL on
578  *        timeout
579  * @return number of bytes copied to buf
580  */
581 static size_t
582 transmit_get_result (void *cls,
583                      size_t size,
584                      void *buf)
585 {
586   struct GNUNET_DATASTORE_Handle *h = cls;
587   GNUNET_DATASTORE_ContinuationWithStatus cont = h->response_proc;
588   uint16_t msize;
589
590   if (buf == NULL)
591     {
592       h->response_proc = NULL;
593       h->message_size = 0;
594       cont (h->response_proc_cls, 
595             GNUNET_SYSERR,
596             gettext_noop ("Error transmitting message to datastore service.\n"));
597       return 0;
598     }
599   msize = h->message_size;
600   GNUNET_assert (msize <= size);
601   memcpy (buf, &h[1], msize);
602 #if DEBUG_DATASTORE
603   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
604               "Transmitted %u byte message to datastore service, now waiting for result.\n",
605               msize);
606 #endif
607   h->message_size = 0;
608   GNUNET_CLIENT_receive (h->client,
609                          &with_result_response_handler,
610                          h,
611                          GNUNET_TIME_absolute_get_remaining (h->timeout));
612   return msize;
613 }
614
615
616 /**
617  * Helper function that will initiate the
618  * transmission of a message to the datastore
619  * service.  The message must already be prepared
620  * and stored in the buffer at the end of the
621  * handle.  The message must be of a type that
622  * expects a "DataMessage" in response.
623  *
624  * @param h handle to the service with prepared message
625  * @param cont function to call with result
626  * @param cont_cls closure
627  * @param timeout timeout for the operation
628  */
629 static void
630 transmit_for_result (struct GNUNET_DATASTORE_Handle *h,
631                      GNUNET_DATASTORE_Iterator cont,
632                      void *cont_cls,
633                      struct GNUNET_TIME_Relative timeout)
634 {
635   static struct GNUNET_TIME_Absolute zero;
636   const struct GNUNET_MessageHeader *hdr;
637   uint16_t msize;
638
639   GNUNET_assert (cont != NULL);
640   hdr = (const struct GNUNET_MessageHeader*) &h[1];
641   msize = ntohs(hdr->size);
642 #if DEBUG_DATASTORE
643   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
644               "Transmitting %u byte message of type %u to datastore service\n",
645               msize,
646               ntohs(hdr->type));
647 #endif
648   GNUNET_assert (h->response_proc == NULL);
649   h->response_proc = cont;
650   h->response_proc_cls = cont_cls;
651   h->timeout = GNUNET_TIME_relative_to_absolute (timeout);
652   h->message_size = msize;
653   if (NULL == GNUNET_CLIENT_notify_transmit_ready (h->client,
654                                                    msize,
655                                                    timeout,
656                                                    &transmit_get_result,
657                                                    h))
658     {
659       GNUNET_break (0);
660       h->response_proc = NULL;
661       h->message_size = 0;
662       cont (h->response_proc_cls, 
663             NULL, 0, NULL, 0, 0, 0, zero, 0);
664     }
665 }
666
667
668 /**
669  * Iterate over the results for a particular key
670  * in the datastore.
671  *
672  * @param h handle to the datastore
673  * @param key maybe NULL (to match all entries)
674  * @param type desired type, 0 for any
675  * @param iter function to call on each matching value;
676  *        will be called once with a NULL value at the end
677  * @param iter_cls closure for iter
678  * @param timeout how long to wait at most for a response
679  */
680 void
681 GNUNET_DATASTORE_get (struct GNUNET_DATASTORE_Handle *h,
682                       const GNUNET_HashCode * key,
683                       uint32_t type,
684                       GNUNET_DATASTORE_Iterator iter, void *iter_cls,
685                       struct GNUNET_TIME_Relative timeout)
686 {
687   struct GetMessage *gm;
688
689   gm = (struct GetMessage*) &h[1];
690   gm->header.type = htons(GNUNET_MESSAGE_TYPE_DATASTORE_GET);
691   gm->type = htonl(type);
692   if (key != NULL)
693     {
694       gm->header.size = htons(sizeof (struct GetMessage));
695       gm->key = *key;
696     }
697   else
698     {
699       gm->header.size = htons(sizeof (struct GetMessage) - sizeof(GNUNET_HashCode));
700     }
701   transmit_for_result (h, iter, iter_cls, timeout);
702 }
703
704
705 /**
706  * Get a random value from the datastore.
707  *
708  * @param h handle to the datastore
709  * @param iter function to call on a random value; it
710  *        will be called exactly once; if no values
711  *        are available, the value will be NULL.
712  * @param iter_cls closure for iter
713  * @param timeout how long to wait at most for a response
714  */
715 void
716 GNUNET_DATASTORE_get_random (struct GNUNET_DATASTORE_Handle *h,
717                              GNUNET_DATASTORE_Iterator iter, void *iter_cls,
718                              struct GNUNET_TIME_Relative timeout)
719 {
720   struct GNUNET_MessageHeader *m;
721
722   m = (struct GNUNET_MessageHeader*) &h[1];
723   m->type = htons(GNUNET_MESSAGE_TYPE_DATASTORE_GET_RANDOM);
724   m->size = htons(sizeof (struct GNUNET_MessageHeader));
725   transmit_for_result (h, iter, iter_cls, timeout);
726 }
727
728
729 /**
730  * Explicitly remove some content from the database.
731  *
732  * @param h handle to the datastore
733  * @param key key for the value
734  * @param size number of bytes in data
735  * @param data content stored
736  * @param cont continuation to call when done
737  * @param cont_cls closure for cont
738  * @param timeout how long to wait at most for a response
739  */
740 void
741 GNUNET_DATASTORE_remove (struct GNUNET_DATASTORE_Handle *h,
742                          const GNUNET_HashCode * key,
743                          uint32_t size, const void *data,
744                          GNUNET_DATASTORE_ContinuationWithStatus cont,
745                          void *cont_cls,
746                          struct GNUNET_TIME_Relative timeout)
747 {
748   struct DataMessage *dm;
749   size_t msize;
750
751   msize = sizeof(struct DataMessage) + size;
752   GNUNET_assert (msize <= GNUNET_SERVER_MAX_MESSAGE_SIZE);
753   dm = (struct DataMessage*) &h[1];
754   dm->header.type = htons(GNUNET_MESSAGE_TYPE_DATASTORE_REMOVE);
755   dm->header.size = htons(msize);
756   dm->rid = htonl(0);
757   dm->size = htonl(size);
758   dm->type = htonl(0);
759   dm->priority = htonl(0);
760   dm->anonymity = htonl(0);
761   dm->uid = GNUNET_htonll(0);
762   dm->expiration.value = 0;
763   dm->key = *key;
764   memcpy (&dm[1], data, size);
765   transmit_for_status (h, cont, cont_cls, timeout);
766 }
767
768
769 /* end of datastore_api.c */