b0409d4b2679ebd737832cbba9abaab933b2c6ce
[oweals/gnunet.git] / src / include / gnunet_social_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_social_service.h
23  * @brief Social service; implements social functionality using the PSYC service.
24  * @author Gabor X Toth
25  * @author Christian Grothoff
26  */
27 #ifndef GNUNET_SOCIAL_SERVICE_H
28 #define GNUNET_SOCIAL_SERVICE_H
29
30 #ifdef __cplusplus
31 extern "C"
32 {
33 #if 0                           /* keep Emacsens' auto-indent happy */
34 }
35 #endif
36 #endif
37
38 #include "gnunet_util_lib.h"
39 #include "gnunet_psyc_lib.h"
40 #include "gnunet_psyc_service.h"
41 #include "gnunet_multicast_service.h"
42
43
44 /** 
45  * Version number of GNUnet Social API.
46  */
47 #define GNUNET_SOCIAL_VERSION 0x00000000
48
49 /** 
50  * Handle for our own presence in the network (we can of course have
51  * alter-egos).
52  */
53 struct GNUNET_SOCIAL_Ego;
54
55 /** 
56  * Handle for another user (who is likely pseudonymous) in the network.
57  */
58 struct GNUNET_SOCIAL_Nym;
59
60 /** 
61  * Handle for a place where social interactions happen.
62  */
63 struct GNUNET_SOCIAL_Place;
64
65 /** 
66  * Handle for a place that one of our egos hosts.
67  */
68 struct GNUNET_SOCIAL_Home;
69
70 /** 
71  * Handle to an implementation of try-and-slice.
72  */
73 struct GNUNET_SOCIAL_Slicer;
74
75
76 /** 
77  * Method called from SOCIAL upon receiving a message indicating a call
78  * to a @e method.
79  *
80  * @param cls Closure.
81  * @param full_method_name Original method name from PSYC (may be more
82  *        specific than the registered method name due to try-and-slice matching).
83
84  * @param message_id Unique message counter for this message
85  *                   (unique only in combination with the given sender for
86  *                    this channel).
87  * @param header_length Number of modifiers in header.
88  * @param header Modifiers present in the message. FIXME: use environment instead?
89  * @param data_offset Byte offset of @a data in the overall data of the method.
90  * @param data_size Number of bytes in @a data.
91  * @param data Data stream given to the method (might not be zero-terminated
92  *             if data is binary).
93  * @param flags Message flags indicating fragmentation status.
94  */
95 typedef int (*GNUNET_SOCIAL_Method)(void *cls,
96                                     const char *full_method_name,
97                                     uint64_t message_id,
98                                     size_t header_length,
99                                     GNUNET_PSYC_Modifier *header,
100                                     uint64_t data_offset,
101                                     size_t data_size,
102                                     const void *data,
103                                     enum GNUNET_PSYC_MessageFlags flags);
104
105
106 /** 
107  * Create a try-and-slice instance.
108  *
109  * @return A new try-and-slice construct.
110  */
111 struct GNUNET_SOCIAL_Slicer *
112 GNUNET_SOCIAL_slicer_create (void);
113
114
115 /** 
116  * Add a method to the try-and-slice instance.
117  *
118  * A slicer processes messages and calls methods that match a message. A match
119  * happens whenever the method name of a message starts with the method_name
120  * parameter given here.
121  *
122  * @param slicer The try-and-slice instance to extend.
123  * @param method_name Name of the given method, use empty string for default.
124  * @param method Method to invoke.
125  * @param method_cls Closure for method.
126  */
127 void
128 GNUNET_SOCIAL_slicer_add (struct GNUNET_SOCIAL_Slicer *slicer,
129                           const char *method_name,
130                           GNUNET_SOCIAL_Method method,
131                           void *method_cls);
132
133 /* FIXME: No slicer_remove for now, is it needed? */
134
135 /** 
136  * Destroy a given try-and-slice instance.
137  *
138  * @param slicer slicer to destroy
139  */
140 void
141 GNUNET_SOCIAL_slicer_destroy (struct GNUNET_SOCIAL_Slicer *slicer);
142
143
144 /** 
145  * Create an ego.
146  *
147  * Create an ego using the private key from the given file.  If the file does
148  * not exist, a fresh key is created.
149  *
150  * @param keyfile Name of the file with the private key for the ego,
151  *                NULL for ephemeral egos.
152  * @return Handle to the ego, NULL on error.
153  */
154 struct GNUNET_SOCIAL_Ego *
155 GNUNET_SOCIAL_ego_create (const char *keyfile);
156
157
158 /** 
159  * Destroy a handle to an ego.
160  *
161  * @param ego Ego to destroy.
162  */
163 void
164 GNUNET_SOCIAL_ego_destroy (struct GNUNET_SOCIAL_Ego *ego);
165
166
167 /** 
168  * Function called asking for nym to be admitted to the place.
169  *
170  * Should call either GNUNET_SOCIAL_home_admit() or
171  * GNUNET_SOCIAL_home_reject_entry() (possibly asynchronously).  If this owner
172  * cannot decide, it is fine to call neither function, in which case hopefully
173  * some other owner of the home exists that will make the decision. The @a nym
174  * reference remains valid until the #GNUNET_SOCIAL_FarewellCallback is invoked
175  * for it.
176  *
177  * @param cls Closure.
178  * @param nym Handle for the user who wants to join.
179  * @param header_length Number of modifiers in header.
180  * @param header Modifiers present in the message.
181  * @param msg_size Number of bytes in @a msg.
182  * @param msg Payload given on enter (e.g. a password).
183  */
184 typedef void (*GNUNET_SOCIAL_AnswerDoorCallback)(void *cls,
185                                                  struct GNUNET_SOCIAL_Nym *nym,
186                                                  size_t header_length,
187                                                  GNUNET_PSYC_Modifier *header,
188                                                  size_t msg_size,
189                                                  const void *msg);
190
191
192 /** 
193  * Function called when a @a nym leaves the place.
194  * 
195  * This is also called if the @a nym was never given permission to enter
196  * (i.e. the @a nym stopped asking to get in).
197  *
198  * @param cls Closure.
199  * @param nym Handle for the user who left.
200  * @param header_length Number of modifiers in header.
201  * @param header Modifiers present in the message.
202  */
203 typedef void (*GNUNET_SOCIAL_FarewellCallback)(void *cls,
204                                                struct GNUNET_SOCIAL_Nym *nym,
205                                                size_t header_length,
206                                                GNUNET_PSYC_Modifier *header);
207
208
209 /** 
210  * Enter a home where guests (nyms) can be hosted.
211  *
212  * A home is created upon first entering, and exists until
213  * GNUNET_SOCIAL_home_destroy() is called. It can also be left temporarily using
214  * GNUNET_SOCIAL_home_leave().
215  *
216  * @param cfg Configuration to contact the social service.
217  * @param home_keyfile File with the private key for the home,
218  *              created if the file does not exist;
219  *              pass NULL for ephemeral homes.
220  * @param join_policy What is our policy for allowing people in?
221  * @param ego Owner of the home (host).
222  * @param slicer Slicer to handle guests talking.
223  * @param listener_cb Function to handle new nyms that want to join.
224  * @param farewell_cb Function to handle departing nyms.
225  * @param cls Closure for @a listener_cb and @a farewell_cb.
226  * @return Handle for a new home.
227  */
228 struct GNUNET_SOCIAL_Home *
229 GNUNET_SOCIAL_home_enter (const struct GNUNET_CONFIGURATION_Handle *cfg,
230                           const char *home_keyfile,
231                           enum GNUNET_MULTICAST_JoinPolicy join_policy,
232                           struct GNUNET_SOCIAL_Ego *ego,
233                           struct GNUNET_SOCIAL_Slicer *slicer,
234                           GNUNET_SOCIAL_AnswerDoorCallback listener_cb,
235                           GNUNET_SOCIAL_FarewellCallback farewell_cb,
236                           void *cls);
237
238
239 /** 
240  * Admit @a nym to the @a home.
241  *
242  * The @a nym reference will remain valid until either the home is destroyed or
243  * @a nym leaves.
244  *
245  * @param home Home to allow @a nym to join.
246  * @param nym Handle for the entity that wants to join.
247  */
248 void
249 GNUNET_SOCIAL_home_admit (struct GNUNET_SOCIAL_Home *home,
250                           struct GNUNET_SOCIAL_Nym *nym);
251
252
253 /** 
254  * Throw @a nym out of the @a home.
255  *
256  * The @a nym reference will remain valid until the
257  * #GNUNET_SOCIAL_FarewellCallback is invoked,
258  * which should be very soon after this call.
259  *
260  * @param home Home to eject @a nym from.
261  * @param nym Handle for the entity to be ejected.
262  */
263 void
264 GNUNET_SOCIAL_home_eject (struct GNUNET_SOCIAL_Home *home,
265                           struct GNUNET_SOCIAL_Nym *nym);
266
267
268 /** 
269  * Refuse @a nym entry into the @a home.
270  *
271  * @param home Home to disallow @a nym to join.
272  * @param nym Handle for the entity that wanted to join.
273  * @param method Method name to invoke on caller.
274  * @param message_size Number of bytes in @a message for method.
275  * @param message Rejection message to send back.
276  *
277  * FIXME: allow setting variables as well for the message
278  */
279 void
280 GNUNET_SOCIAL_home_reject_entry (struct GNUNET_SOCIAL_Home *home,
281                                  struct GNUNET_SOCIAL_Nym *nym,
282                                  const char *method,
283                                  size_t message_size,
284                                  const void *message);
285
286
287 /** 
288  * Get the identity of a user.
289  *
290  * Suitable, for example, to be used with GNUNET_NAMESTORE_zone_to_name().
291  *
292  * @param nym Pseudonym to map to a cryptographic identifier.
293  * @param[out] identity Set to the identity of the nym (short hash of the public key).
294  */
295 void
296 GNUNET_SOCIAL_nym_get_identity (struct GNUNET_SOCIAL_Nym *nym,
297                                 struct GNUNET_CRYPTO_ShortHashCode *identity);
298
299
300 /** 
301  * Obtain the (cryptographic, binary) address for the home.
302  * 
303  * @param home Home to get the (public) address from.
304  * @param[out] crypto_address Address suitable for storing in GADS, i.e. in
305  *        'HEX.place' or within the respective GADS record type ("PLACE")
306  */
307 void
308 GNUNET_SOCIAL_home_get_address (struct GNUNET_SOCIAL_Home *home,
309                                 struct GNUNET_HashCode *crypto_address);
310
311
312
313 /** 
314  * Advertise @a home under @a name in the GADS zone of the @e ego.
315  *
316  * @param home The home to advertise.
317  * @param name The name to put in the zone.
318  * @param expiration_time Expiration time of the record, use 0 to remove the record.
319  */
320 void
321 GNUNET_SOCIAL_home_advertise (struct GNUNET_SOCIAL_Home *home,
322                               const char *name,
323                               GNUNET_TIME_Relative expiration_time);
324
325
326 /** 
327  * Handle for an announcement request.
328  */
329 struct GNUNET_SOCIAL_Announcement;
330
331
332 /** 
333  * Send a message to all nyms that are present in the home.
334  *
335  * This function is restricted to the home owner.  Nyms can only send requests
336  * to the home owner who can decide to relay it to other guests.
337  *
338  * @param home Home to address the announcement to.
339  * @param method_name Method to use for the announcement.
340  * @param notify Function to call to get the payload of the announcement.
341  * @param notify_cls Closure for @a notify.
342  * @return NULL on error (announcement already in progress?).
343  */
344 struct GNUNET_SOCIAL_Announcement *
345 GNUNET_SOCIAL_home_announce (struct GNUNET_SOCIAL_Home *home,
346                              const char *method_name,
347                              const struct GNUNET_ENV_Environment *env,
348                              GNUNET_CONNECTION_TransmitReadyNotify notify,
349                              void *notify_cls);
350
351
352 /** 
353  * Cancel announcement.
354  *
355  * @param a The announcement to cancel.
356  */
357 void
358 GNUNET_SOCIAL_home_announce_cancel (struct GNUNET_SOCIAL_Announcement *a);
359
360
361 /** 
362  * Convert our home to a place so we can access it via the place API.
363  *
364  * @param home Handle for the home.
365  * @return Place handle for the same home, valid as long as @a home is valid;
366  *         do NOT try to GNUNET_SOCIAL_place_leave() this place, it's your home!
367  */
368 struct GNUNET_SOCIAL_Place *
369 GNUNET_SOCIAL_home_get_place (struct GNUNET_SOCIAL_Home *home);
370
371
372 /** 
373  * Leave a home temporarily, visitors can stay.
374  *
375  * After leaving, handling of incoming messages are left to other clients of the
376  * social service, and stops after the last client exits.
377  *
378  * @param home Home to leave temporarily (handle becomes invalid).
379  */
380 void
381 GNUNET_SOCIAL_home_away (struct GNUNET_SOCIAL_Home *home);
382
383
384 /** 
385  * Destroy a home, all guests will be ejected.
386  *
387  * @param home Home to destroy.
388  */
389 void
390 GNUNET_SOCIAL_home_destroy (struct GNUNET_SOCIAL_Home *home);
391
392 /** 
393  * Request entry to a place (home hosted by someone else).
394  *
395  * @param cfg Configuration to contact the social service.
396  * @param ego Owner of the home (host).
397  * @param address Address of the place to enter (GADS name, i.e. 'room.friend.gads'),
398  *        if the name has the form 'HEX.place', GADS is not
399  *        used and HEX is assumed to be the hash of the public
400  *        key already; 'HEX.zkey' however would refer to
401  *        the 'PLACE' record in the GADS zone with the public key
402  *        'HEX'.
403  * @param msg_size Number of bytes in @a msg.
404  * @param msg Message to give to the enter callback.
405  * @param slicer Slicer to use for processing incoming requests from guests.
406  * @return NULL on errors, otherwise handle to the place.
407  */
408 struct GNUNET_SOCIAL_Place *
409 GNUNET_SOCIAL_place_enter (const struct GNUNET_CONFIGURATION_Handle *cfg,
410                            struct GNUNET_SOCIAL_Ego *ego,
411                            char *address,
412                            const struct GNUNET_ENV_Environment *env,
413                            size_t msg_size,
414                            const void *msg,
415                            struct GNUNET_SOCIAL_Slicer *slicer);
416
417 /** 
418  * Request entry to a place (home hosted by someone else).
419  *
420  * @param cfg Configuration to contact the social service.
421  * @param ego Owner of the home (host).
422  * @param crypto_address Public key of the place to enter.
423  * @param peer Peer to send request to.
424  * @param slicer Slicer to use for processing incoming requests from guests.
425  * @param msg_size Number of bytes in @a msg.
426  * @param msg Message to give to the enter callback.
427  * @return NULL on errors, otherwise handle to the place.
428  */
429 struct GNUNET_SOCIAL_Place *
430 GNUNET_SOCIAL_place_enter2 (const struct GNUNET_CONFIGURATION_Handle *cfg,
431                            struct GNUNET_SOCIAL_Ego *ego,
432                            struct GNUNET_HashCode *crypto_address,
433                            struct GNUNET_PeerIdentity *peer,
434                            struct GNUNET_SOCIAL_Slicer *slicer,
435                            const struct GNUNET_ENV_Environment *env,
436                            size_t msg_size,
437                            const void *msg);
438
439
440 struct GNUNET_SOCIAL_WatchHandle;
441
442 /** 
443  * Watch a place for changed objects.
444  *
445  * @param place Place to watch.
446  * @param object_filter Object prefix to match.
447  * @param state_cb Function to call when an object/state changes.
448  * @param state_cb_cls Closure for callback.
449  * 
450  * @return Handle that can be used to cancel watching.
451  */
452 struct GNUNET_SOCIAL_WatchHandle *
453 GNUNET_SOCIAL_place_watch (struct GNUNET_SOCIAL_Place *place,
454                            const char *object_filter,
455                            GNUNET_PSYC_StateCallback state_cb,
456                            void *state_cb_cls);
457
458
459 /** 
460  * Cancel watching a place for changed objects.
461  *
462  * @param wh Watch handle to cancel.
463  */
464 void
465 GNUNET_SOCIAL_place_watch_cancel (struct GNUNET_SOCIAL_WatchHandle *wh);
466
467
468 struct GNUNET_SOCIAL_LookHandle;
469
470 /** 
471  * Look at all objects in the place.
472  *
473  * @param place The place to look its objects at.
474  * @param state_cb Function to call for each object found.
475  * @param state_cb_cls Closure for callback function.
476  * 
477  * @return Handle that can be used to stop looking at objects.
478  */
479 struct GNUNET_SOCIAL_LookHandle *
480 GNUNET_SOCIAL_place_look (struct GNUNET_SOCIAL_Place *place,
481                           GNUNET_PSYC_StateCallback state_cb,
482                           void *state_cb_cls);
483
484
485 /** 
486  * Look at matching objects in the place.
487  *
488  * @param place The place to look its objects at.
489  * @param object_filter Only look at objects with names beginning with this filter value.
490  * @param state_cb Function to call for each object found.
491  * @param state_cb_cls Closure for callback function.
492  * 
493  * @return Handle that can be used to stop looking at objects.
494  */
495 struct GNUNET_SOCIAL_LookHandle *
496 GNUNET_SOCIAL_place_look_for (struct GNUNET_SOCIAL_Place *place,
497                               const char *object_filter,
498                               GNUNET_PSYC_StateCallback state_cb,
499                               void *state_cb_cls);
500
501
502 /** 
503  * Stop looking at objects.
504  *
505  * @param lh Look handle to stop.
506  */
507 void
508 GNUNET_SOCIAL_place_look_cancel (struct GNUNET_SOCIAL_LookHandle *lh);
509
510
511
512 /** 
513  * Look at a particular object in the place.
514  *
515  * @param place The place to look the object at.
516  * @param object_name Full name of the object.
517  * @param value_size Set to the size of the returned value.
518  * @return NULL if there is no such object at this place.
519  */
520 const void *
521 GNUNET_SOCIAL_place_look_at (struct GNUNET_SOCIAL_Place *place,
522                              const char *object_name,
523                              size_t *value_size);
524
525
526 /** 
527  * A talk request.
528  */
529 struct GNUNET_SOCIAL_TalkRequest;
530
531 /** 
532  * Talk to the host of the place.
533  *
534  * @param place Place where we want to talk to the host.
535  * @param method_name Method to invoke on the host.
536  * @param notify Function to use to get the payload for the method.
537  * @param notify_cls Closure for @a notify.
538  * @return NULL if we are already trying to talk to the host,
539  *         otherwise handle to cancel the request.
540  */
541 struct GNUNET_SOCIAL_TalkRequest *
542 GNUNET_SOCIAL_place_talk (struct GNUNET_SOCIAL_Place *place,
543                           const char *method_name,
544                           const struct GNUNET_ENV_Environment *env,
545                           GNUNET_CONNECTION_TransmitReadyNotify notify,
546                           void *notify_cls);
547
548
549 /** 
550  * Cancel talking to the host of the place.
551  *
552  * @param tr Talk request to cancel.
553  */
554 void
555 GNUNET_SOCIAL_place_talk_cancel (struct GNUNET_SOCIAL_TalkRequest *tr);
556
557
558 /** 
559  * A history lesson.
560  */
561 struct GNUNET_SOCIAL_HistoryLesson;
562
563 /** 
564  * Learn about the history of a place.
565  *
566  * Sends messages through the given slicer function where
567  * start_message_id <= message_id <= end_message_id.
568  *
569  * To get the latest message, use 0 for both the start and end message ID.
570  * 
571  * @param place Place we want to learn more about.
572  * @param start_message_id First historic message we are interested in.
573  * @param end_message_id Last historic message we are interested in (inclusive).
574  * @param slicer Slicer to use to process history.
575  *               FIXME: Needed? Could use the slicer of the place instead,
576  *                      receiving messages with the HISTORIC flag set.
577  * @return Handle to abort history lesson, never NULL (multiple lessons
578  *         at the same time are allowed).
579  */
580 struct GNUNET_SOCIAL_HistoryLesson *
581 GNUNET_SOCIAL_place_get_history (struct GNUNET_SOCIAL_Place *place,
582                                  uint64_t start_message_id,
583                                  uint64_t end_message_id,
584                                  struct GNUNET_SOCIAL_Slicer *slicer);
585
586
587 /** 
588  * Stop processing messages from the history lesson.
589  *
590  * Must also be called explicitly after all of the requested messages have been
591  * received.
592  *
593  * @param hist History lesson to cancel.
594  */
595 void
596 GNUNET_SOCIAL_place_get_history_cancel (struct GNUNET_SOCIAL_HistoryLesson *hist);
597
598
599 /** 
600  * Leave a place permanently.
601  *
602  * Notifies the owner of the place about leaving, and destroys the place handle.
603  * 
604  * @param place Place to leave permanently.
605  */
606 void
607 GNUNET_SOCIAL_place_leave (struct GNUNET_SOCIAL_Place *place);
608
609
610 /** 
611  * Leave a place temporarily.
612  *
613  * Stop following the conversation for the @a place and destroy the @a place
614  * handle.  Only affects the application calling this function, other clients of
615  * the service continue receiving the messages.
616  *
617  * @param place Place to leave temporarily.
618  */
619 void
620 GNUNET_SOCIAL_place_away (struct GNUNET_SOCIAL_Place *place);
621
622
623 #if 0                           /* keep Emacsens' auto-indent happy */
624 {
625 #endif
626 #ifdef __cplusplus
627 }
628 #endif
629
630 /* ifndef GNUNET_SOCIAL_SERVICE_H */
631 #endif
632 /* end of gnunet_social_service.h */