1e59c02c9a64aff22c5841256f51d439ff3b98ec
[oweals/gnunet.git] / src / include / gnunet_set_service.h
1 /*
2       This file is part of GNUnet
3       (C) 2013 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 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 include/gnunet_set_service.h
23  * @brief two-peer set operations
24  * @author Florian Dold
25  * @author Christian Grothoff
26  */
27
28 #ifndef GNUNET_SET_SERVICE_H
29 #define GNUNET_SET_SERVICE_H
30
31 #ifdef __cplusplus
32 extern "C"
33 {
34 #if 0                           /* keep Emacsens' auto-indent happy */
35 }
36 #endif
37 #endif
38
39 #include "gnunet_common.h"
40 #include "gnunet_time_lib.h"
41 #include "gnunet_configuration_lib.h"
42
43
44 /**
45  * Maximum size of a context message for set operation requests.
46  */
47 #define GNUNET_SET_CONTEXT_MESSAGE_MAX_SIZE ((1<<16) - 1024)
48
49
50 /**
51  * Opaque handle to a set.
52  */
53 struct GNUNET_SET_Handle;
54
55 /**
56  * Opaque handle to a set operation request from another peer.
57  */
58 struct GNUNET_SET_Request;
59
60 /**
61  * Opaque handle to a listen operation.
62  */
63 struct GNUNET_SET_ListenHandle;
64
65 /**
66  * Opaque handle to a set operation.
67  */
68 struct GNUNET_SET_OperationHandle;
69
70
71 /**
72  * The operation that a set set supports.
73  */
74 enum GNUNET_SET_OperationType
75 {
76   /**
77    * A purely local set that does not support any
78    * operation.
79    */
80   GNUNET_SET_OPERATION_NONE,
81
82   /**
83    * Set intersection, only return elements that are in both sets.
84    */
85   GNUNET_SET_OPERATION_INTERSECTION,
86
87   /**
88    * Set union, return all elements that are in at least one of the sets.
89    */
90   GNUNET_SET_OPERATION_UNION
91 };
92
93 /**
94  * Status for the result callback
95  */
96 enum GNUNET_SET_Status
97 {
98   /**
99    * Everything went ok.
100    */
101   GNUNET_SET_STATUS_OK,
102
103   /**
104    * There was a timeout.
105    */
106   GNUNET_SET_STATUS_TIMEOUT,
107
108   /**
109    * The other peer refused to to the operation with us,
110    * or something went wrong.
111    */
112   GNUNET_SET_STATUS_FAILURE,
113
114   /**
115    * Success, all elements have been returned (but the other
116    * peer might still be receiving some from us, so we are not done).
117    */
118   GNUNET_SET_STATUS_HALF_DONE,
119
120   /**
121    * Success, all elements have been sent (and received).
122    */
123   GNUNET_SET_STATUS_DONE
124 };
125
126
127 /**
128  * The way results are given to the client.
129  */
130 enum GNUNET_SET_ResultMode
131 {
132   /**
133    * Client gets every element in the resulting set.
134    */
135   GNUNET_SET_RESULT_FULL,
136   /**
137    * Client gets only elements that have been added to the set.
138    * Only works with set union.
139    */
140   GNUNET_SET_RESULT_ADDED,
141   /**
142    * Client gets only elements that have been removed from the set.
143    * Only works with set intersection.
144    */
145   GNUNET_SET_RESULT_REMOVED
146 };
147
148
149 /**
150  * Element stored in a set.
151  */
152 struct GNUNET_SET_Element
153 {
154   /**
155    * Number of bytes in the buffer pointed to by data.
156    */
157   uint16_t size;
158
159   /**
160    * Application-specific element type.
161    */
162   uint16_t type;
163
164   /**
165    * Actual data of the element
166    */
167   const void *data;
168 };
169
170
171 /**
172  * Continuation used for some of the set operations
173  *
174  * @param cls closure
175  */
176 typedef void (*GNUNET_SET_Continuation) (void *cls);
177
178
179 /**
180  * Callback for set operation results. Called for each element
181  * in the result set.
182  *
183  * @param cls closure
184  * @param element a result element, only valid if status is GNUNET_SET_STATUS_OK
185  * @param status see enum GNUNET_SET_Status
186  */
187 typedef void (*GNUNET_SET_ResultIterator) (void *cls,
188                                            const struct GNUNET_SET_Element *element,
189                                            enum GNUNET_SET_Status status);
190
191 /**
192  * Iterator for set elements.
193  *
194  * @param cls closure
195  * @param element the element
196  * @return GNUNET_YES to continue iterating, GNUNET_NO to stop.
197  */
198 typedef int (*GNUNET_SET_ElementIterator) (void *cls,
199                                            const struct GNUNET_SET_Element *element);
200
201
202 /**
203  * Called when another peer wants to do a set operation with the
204  * local peer. If a listen error occurs, the 'request' is NULL.
205  *
206  * @param cls closure
207  * @param other_peer the other peer
208  * @param context_msg message with application specific information from
209  *        the other peer
210  * @param request request from the other peer, use GNUNET_SET_accept
211  *        Will be NULL if the listener failed.
212  *        to accept it, otherwise the request will be refused
213  *        Note that we can't just return value from the listen callback,
214  *        as it is also necessary to specify the set we want to do the
215  *        operation with, whith sometimes can be derived from the context
216  *        message. It's necessary to specify the timeout.
217  */
218 typedef void
219 (*GNUNET_SET_ListenCallback) (void *cls,
220                               const struct GNUNET_PeerIdentity *other_peer,
221                               const struct GNUNET_MessageHeader *context_msg,
222                               struct GNUNET_SET_Request *request);
223
224
225
226 /**
227  * Create an empty set, supporting the specified operation.
228  *
229  * @param cfg configuration to use for connecting to the
230  *        set service
231  * @param op operation supported by the set
232  *        Note that the operation has to be specified
233  *        beforehand, as certain set operations need to maintain
234  *        data structures spefific to the operation
235  * @return a handle to the set
236  */
237 struct GNUNET_SET_Handle *
238 GNUNET_SET_create (const struct GNUNET_CONFIGURATION_Handle *cfg,
239                    enum GNUNET_SET_OperationType op);
240
241
242 /**
243  * Add an element to the given set.
244  * After the element has been added (in the sense of being
245  * transmitted to the set service), cont will be called.
246  * Calls to add_element can be queued
247  *
248  * @param set set to add element to
249  * @param element element to add to the set
250  * @param cont continuation called after the element has been added
251  * @param cont_cls closure for cont
252  * @return GNUNET_OK on success, GNUNET_SYSERR if the
253  *         set is invalid (e.g. the set service crashed)
254  */
255 int
256 GNUNET_SET_add_element (struct GNUNET_SET_Handle *set,
257                         const struct GNUNET_SET_Element *element,
258                         GNUNET_SET_Continuation cont,
259                         void *cont_cls);
260
261
262 /**
263  * Remove an element to the given set.
264  * After the element has been removed (in the sense of the
265  * request being transmitted to the set service), cont will be called.
266  * Calls to remove_element can be queued
267  *
268  * @param set set to remove element from
269  * @param element element to remove from the set
270  * @param cont continuation called after the element has been removed
271  * @param cont_cls closure for cont
272  * @return GNUNET_OK on success, GNUNET_SYSERR if the
273  *         set is invalid (e.g. the set service crashed)
274  */
275 int
276 GNUNET_SET_remove_element (struct GNUNET_SET_Handle *set,
277                            const struct GNUNET_SET_Element *element,
278                            GNUNET_SET_Continuation cont,
279                            void *cont_cls);
280
281
282 /**
283  * Destroy the set handle, and free all associated resources.
284  */
285 void
286 GNUNET_SET_destroy (struct GNUNET_SET_Handle *set);
287
288
289 /**
290  * Prepare a set operation to be evaluated with another peer.
291  * The evaluation will not start until the client provides
292  * a local set with GNUNET_SET_commit.
293  *
294  * @param other_peer peer with the other set
295  * @param app_id hash for the application using the set
296  * @param context_msg additional information for the request
297  * @param salt salt used for the set operation; sometimes set operations
298  *        fail due to hash collisions, using a different salt for each operation
299  *        makes it harder for an attacker to exploit this
300  * @param result_mode specified how results will be returned,
301  *        see 'GNUNET_SET_ResultMode'.
302  * @param result_cb called on error or success
303  * @param result_cls closure for result_cb
304  * @return a handle to cancel the operation
305  */
306 struct GNUNET_SET_OperationHandle *
307 GNUNET_SET_prepare (const struct GNUNET_PeerIdentity *other_peer,
308                     const struct GNUNET_HashCode *app_id,
309                     const struct GNUNET_MessageHeader *context_msg,
310                     uint16_t salt,
311                     enum GNUNET_SET_ResultMode result_mode,
312                     GNUNET_SET_ResultIterator result_cb,
313                     void *result_cls);
314
315
316 /**
317  * Wait for set operation requests for the given application id
318  * 
319  * @param cfg configuration to use for connecting to
320  *            the set service
321  * @param operation operation we want to listen for
322  * @param app_id id of the application that handles set operation requests
323  * @param listen_cb called for each incoming request matching the operation
324  *                  and application id
325  * @param listen_cls handle for listen_cb
326  * @return a handle that can be used to cancel the listen operation
327  */
328 struct GNUNET_SET_ListenHandle *
329 GNUNET_SET_listen (const struct GNUNET_CONFIGURATION_Handle *cfg,
330                    enum GNUNET_SET_OperationType op_type,
331                    const struct GNUNET_HashCode *app_id,
332                    GNUNET_SET_ListenCallback listen_cb,
333                    void *listen_cls);
334
335
336 /**
337  * Cancel the given listen operation.
338  *
339  * @param lh handle for the listen operation
340  */
341 void
342 GNUNET_SET_listen_cancel (struct GNUNET_SET_ListenHandle *lh);
343
344
345 /**
346  * Accept a request we got via GNUNET_SET_listen.  Must be called during
347  * GNUNET_SET_listen, as the 'struct GNUNET_SET_Request' becomes invalid
348  * afterwards.
349  * Call GNUNET_SET_commit to provide the local set to use for the operation,
350  * and to begin the exchange with the remote peer. 
351  *
352  * @param request request to accept
353  * @param result_mode specified how results will be returned,
354  *        see 'GNUNET_SET_ResultMode'.
355  * @param result_cb callback for the results
356  * @param result_cls closure for result_cb
357  * @return a handle to cancel the operation
358  */
359 struct GNUNET_SET_OperationHandle *
360 GNUNET_SET_accept (struct GNUNET_SET_Request *request,
361                    enum GNUNET_SET_ResultMode result_mode,
362                    GNUNET_SET_ResultIterator result_cb,
363                    void *result_cls);
364
365
366 /**
367  * Commit a set to be used with a set operation.
368  * This function is called once we have fully constructed
369  * the set that we want to use for the operation.  At this
370  * time, the P2P protocol can then begin to exchange the
371  * set information and call the result callback with the
372  * result information.
373  *
374  * @param oh handle to the set operation 
375  * @param set the set to use for the operation
376  * @return GNUNET_OK on success, GNUNET_SYSERR if the
377  *         set is invalid (e.g. the set service crashed)
378  */
379 int
380 GNUNET_SET_commit (struct GNUNET_SET_OperationHandle *oh,
381                    struct GNUNET_SET_Handle *set);
382
383
384 /**
385  * Cancel the given set operation.
386  * May not be called after the operation's GNUNET_SET_ResultIterator has been
387  * called with a status that indicates error, timeout or done.
388  *
389  * @param oh set operation to cancel
390  */
391 void
392 GNUNET_SET_operation_cancel (struct GNUNET_SET_OperationHandle *oh);
393
394
395 /**
396  * Iterate over all elements in the given set.
397  * Note that this operation involves transferring every element of the set
398  * from the service to the client, and is thus costly.
399  *
400  * @param set the set to iterate over
401  * @param iter the iterator to call for each element
402  * @param cls closure for 'iter'
403  * @return GNUNET_YES if every element was iterated over, GNUNET_NO
404  *         if the iterator prematurely stopped, GNUNET_SYSERR if the set
405  *         is invalid (e.g. the server crashed, disconnected)
406  */
407 int
408 GNUNET_SET_iterate (struct GNUNET_SET_Handle *set, GNUNET_SET_ElementIterator iter, void *cls);
409
410
411 #if 0                           /* keep Emacsens' auto-indent happy */
412 {
413 #endif
414 #ifdef __cplusplus
415 }
416 #endif
417
418 #endif