multicast, psyc, psycstore, client_manager fixes
[oweals/gnunet.git] / src / include / gnunet_peerstore_service.h
1 /*
2       This file is part of GNUnet
3       Copyright (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., 51 Franklin Street, Fifth Floor,
18       Boston, MA 02110-1301, USA.
19  */
20
21 /**
22  * @file include/gnunet_peerstore_service.h
23  * @brief API to the peerstore service
24  * @author Omar Tarabai
25  */
26 #ifndef GNUNET_PEERSTORE_SERVICE_H
27 #define GNUNET_PEERSTORE_SERVICE_H
28
29 #include "platform.h"
30 #include "gnunet_util_lib.h"
31
32 #ifdef __cplusplus
33 extern "C"
34 {
35 #if 0                           /* keep Emacsens' auto-indent happy */
36 }
37 #endif
38 #endif
39
40 /**
41  * Options for storing values in PEERSTORE
42  */
43 enum GNUNET_PEERSTORE_StoreOption
44 {
45
46   /**
47    * Possibly store multiple values under given key.
48    */
49   GNUNET_PEERSTORE_STOREOPTION_MULTIPLE = 0,
50
51   /**
52    * Delete any previous values for the given key before
53    * storing the given value.
54    */
55   GNUNET_PEERSTORE_STOREOPTION_REPLACE = 1
56
57 };
58
59 /**
60  * Handle to the peerstore service.
61  */
62 struct GNUNET_PEERSTORE_Handle;
63
64 /**
65  * Context for a store request
66  */
67 struct GNUNET_PEERSTORE_StoreContext;
68
69 /**
70  * Single PEERSTORE record
71  */
72 struct GNUNET_PEERSTORE_Record
73 {
74
75   /**
76    * Responsible sub system string
77    */
78   char *sub_system;
79
80   /**
81    * Peer Identity
82    */
83   struct GNUNET_PeerIdentity *peer;
84
85   /**
86    * Record key string
87    */
88   char *key;
89
90   /**
91    * Record value BLOB
92    */
93   void *value;
94
95   /**
96    * Size of @e value BLOB
97    */
98   size_t value_size;
99
100   /**
101    * Expiry time of entry
102    */
103   struct GNUNET_TIME_Absolute *expiry;
104
105   /**
106    * Client from which this record originated
107    */
108   struct GNUNET_SERVER_Client *client;
109 };
110
111
112 /**
113  * Continuation called with a status result.
114  *
115  * @param cls closure
116  * @param success #GNUNET_OK or #GNUNET_SYSERR
117  */
118 typedef void
119 (*GNUNET_PEERSTORE_Continuation)(void *cls, int success);
120
121 /**
122  * Function called by PEERSTORE for each matching record.
123  *
124  * @param cls closure
125  * @param record peerstore record information
126  * @param emsg error message, or NULL if no errors
127  * @return #GNUNET_YES to continue iterating, #GNUNET_NO to stop
128  */
129 typedef int
130 (*GNUNET_PEERSTORE_Processor) (void *cls,
131                                const struct GNUNET_PEERSTORE_Record *record,
132                                const char *emsg);
133
134 /**
135  * Connect to the PEERSTORE service.
136  *
137  * @return NULL on error
138  */
139 struct GNUNET_PEERSTORE_Handle *
140 GNUNET_PEERSTORE_connect (const struct GNUNET_CONFIGURATION_Handle *cfg);
141
142
143 /**
144  * Disconnect from the PEERSTORE service. Any pending ITERATE and WATCH requests
145  * will be canceled.
146  * Any pending STORE requests will depend on @e snyc_first flag.
147  *
148  * @param h handle to disconnect
149  * @param sync_first send any pending STORE requests before disconnecting
150  */
151 void
152 GNUNET_PEERSTORE_disconnect (struct GNUNET_PEERSTORE_Handle *h,
153                              int sync_first);
154
155
156 /**
157  * Store a new entry in the PEERSTORE.
158  * Note that stored entries can be lost in some cases
159  * such as power failure.
160  *
161  * @param h Handle to the PEERSTORE service
162  * @param sub_system name of the sub system
163  * @param peer Peer Identity
164  * @param key entry key
165  * @param value entry value BLOB
166  * @param size size of @e value
167  * @param expiry absolute time after which the entry is (possibly) deleted
168  * @param options options specific to the storage operation
169  * @param cont Continuation function after the store request is sent
170  * @param cont_cls Closure for @a cont
171  */
172 struct GNUNET_PEERSTORE_StoreContext *
173 GNUNET_PEERSTORE_store (struct GNUNET_PEERSTORE_Handle *h,
174                         const char *sub_system,
175                         const struct GNUNET_PeerIdentity *peer,
176                         const char *key,
177                         const void *value,
178                         size_t size,
179                         struct GNUNET_TIME_Absolute expiry,
180                         enum GNUNET_PEERSTORE_StoreOption options,
181                         GNUNET_PEERSTORE_Continuation cont,
182                         void *cont_cls);
183
184
185 /**
186  * Cancel a store request
187  *
188  * @param sc Store request context
189  */
190 void
191 GNUNET_PEERSTORE_store_cancel (struct GNUNET_PEERSTORE_StoreContext *sc);
192
193
194 /**
195  * Iterate over records matching supplied key information
196  *
197  * @param h handle to the PEERSTORE service
198  * @param sub_system name of sub system
199  * @param peer Peer identity (can be NULL)
200  * @param key entry key string (can be NULL)
201  * @param timeout time after which the iterate request is canceled
202  * @param callback function called with each matching record, all NULL's on end
203  * @param callback_cls closure for @a callback
204  */
205 struct GNUNET_PEERSTORE_IterateContext *
206 GNUNET_PEERSTORE_iterate (struct GNUNET_PEERSTORE_Handle *h,
207                           const char *sub_system,
208                           const struct GNUNET_PeerIdentity *peer,
209                           const char *key,
210                           struct GNUNET_TIME_Relative timeout,
211                           GNUNET_PEERSTORE_Processor callback,
212                           void *callback_cls);
213
214
215 /**
216  * Cancel an iterate request
217  * Please do not call after the iterate request is done
218  *
219  * @param ic Iterate request context as returned by GNUNET_PEERSTORE_iterate()
220  */
221 void
222 GNUNET_PEERSTORE_iterate_cancel (struct GNUNET_PEERSTORE_IterateContext *ic);
223
224
225 /**
226  * Request watching a given key
227  * User will be notified with any new values added to key.
228  *
229  * @param h handle to the PEERSTORE service
230  * @param sub_system name of sub system
231  * @param peer Peer identity
232  * @param key entry key string
233  * @param callback function called with each new value
234  * @param callback_cls closure for @a callback
235  * @return Handle to watch request
236  */
237 struct GNUNET_PEERSTORE_WatchContext *
238 GNUNET_PEERSTORE_watch (struct GNUNET_PEERSTORE_Handle *h,
239                         const char *sub_system,
240                         const struct GNUNET_PeerIdentity *peer,
241                         const char *key,
242                         GNUNET_PEERSTORE_Processor callback,
243                         void *callback_cls);
244
245
246 /**
247  * Cancel a watch request
248  *
249  * @param wc handle to the watch request
250  */
251 void
252 GNUNET_PEERSTORE_watch_cancel (struct GNUNET_PEERSTORE_WatchContext *wc);
253
254 #if 0                           /* keep Emacsens' auto-indent happy */
255 {
256 #endif
257 #ifdef __cplusplus
258 }
259 #endif
260
261 #endif