-ftbfs
[oweals/gnunet.git] / src / set / gnunet-service-set.h
index d60b5f4776e1ad93277cf57120efac473ae62659..f26ff3fc356bee09162e027d689e1d830ecaa57c 100644 (file)
@@ -4,7 +4,7 @@
 
       GNUnet is free software; you can redistribute it and/or modify
       it under the terms of the GNU General Public License as published
-      by the Free Software Foundation; either version 2, or (at your
+      by the Free Software Foundation; either version 3, or (at your
       option) any later version.
 
       GNUnet is distributed in the hope that it will be useful, but
 #define GNUNET_SERVICE_SET_H_PRIVATE
 
 #include "platform.h"
-#include "gnunet_common.h"
+#include "gnunet_util_lib.h"
 #include "gnunet_protocols.h"
 #include "gnunet_applications.h"
-#include "gnunet_util_lib.h"
 #include "gnunet_core_service.h"
-#include "gnunet_mesh2_service.h"
+#include "gnunet_mesh_service.h"
 #include "gnunet_set_service.h"
 #include "set.h"
 
 
-/* FIXME: cfuchs */
-struct IntersectionState;
+/**
+ * Implementation-specific set state.
+ * Used as opaque pointer, and specified further
+ * in the respective implementation.
+ */
+struct SetState;
 
 
 /**
- * Extra state required for set union.
+ * Implementation-specific set operation.
+ * Used as opaque pointer, and specified further
+ * in the respective implementation.
  */
-struct UnionState;
+struct OperationState;
+
 
-struct UnionEvaluateOperation;
+/* forward declarations */
+struct Set;
+struct TunnelContext;
+struct ElementEntry;
 
 
 /**
- * A set that supports a specific operation
- * with other peers.
+ * Detail information about an operation.
  */
-struct Set
+struct OperationSpecification
 {
   /**
-   * Client that owns the set.
-   * Only one client may own a set.
+   * The type of the operation.
    */
-  struct GNUNET_SERVER_Client *client;
+  enum GNUNET_SET_OperationType operation;
 
   /**
-   * Message queue for the client
+   * The remove peer we evaluate the operation with
    */
-  struct GNUNET_MQ_Handle *client_mq;
+  struct GNUNET_PeerIdentity peer;
 
   /**
-   * Type of operation supported for this set
+   * Application ID for the operation, used to distinguish
+   * multiple operations of the same type with the same peer.
    */
-  uint32_t operation; // use enum from API
+  struct GNUNET_HashCode app_id;
 
   /**
-   * Sets are held in a doubly linked list.
+   * Context message, may be NULL.
    */
-  struct Set *next;
+  struct GNUNET_MessageHeader *context_msg;
 
   /**
-   * Sets are held in a doubly linked list.
+   * Salt to use for the operation.
    */
-  struct Set *prev;
+  uint32_t salt;
+
+  /**
+   * ID used to identify responses to a client.
+   */
+  uint32_t client_request_id;
 
   /**
-   * Appropriate state for each type of
-   * operation.
+   * Set associated with the operation, NULL until the spec has been associated
+   * with a set.
    */
-  union {
-    struct IntersectionState *i;
-    struct UnionState *u;
-  } state;
+  struct Set *set;
 };
 
 
+
+
+/**
+ * Signature of functions that create the implementation-specific
+ * state for a set supporting a specific operation.
+ *
+ * @return a set state specific to the supported operation
+ */
+typedef struct SetState *(*CreateImpl) (void);
+
+
+/**
+ * Signature of functions that implement the add/remove functionality
+ * for a set supporting a specific operation.
+ *
+ * @param set implementation-specific set state
+ * @param msg element message from the client
+ */
+typedef void (*AddRemoveImpl) (struct SetState *state, struct ElementEntry *ee);
+
+
+/**
+ * Signature of functions that handle disconnection
+ * of the remote peer.
+ *
+ * @param op the set operation, contains implementation-specific data
+ */
+typedef void (*PeerDisconnectImpl) (struct OperationState *op);
+
+
+/**
+ * Signature of functions that implement the destruction of the
+ * implementation-specific set state.
+ *
+ * @param state the set state, contains implementation-specific data
+ */
+typedef void (*DestroySetImpl) (struct SetState *state);
+
+
+/**
+ * Signature of functions that implement the creation of set operations
+ * (currently evaluate and accept).
+ *
+ * @param spec specification of the set operation to be created
+ * @param tunnel the tunnel with the other peer
+ * @param tc tunnel context
+ */
+typedef void (*OpCreateImpl) (struct OperationSpecification *spec,
+                              struct GNUNET_MESH_Tunnel *tunnel,
+                              struct TunnelContext *tc);
+
+
+/**
+ * Signature of functions that implement the message handling for
+ * the different set operations.
+ *
+ * @param op operation state
+ * @param msg received message
+ * @return GNUNET_OK on success, GNUNET_SYSERR to
+ *         destroy the operation and the tunnel
+ */
+typedef int (*MsgHandlerImpl) (struct OperationState *op,
+                               const struct GNUNET_MessageHeader *msg);
+
+typedef void (*CancelImpl) (struct SetState *set,
+                            uint32_t request_id);
+
+
 /**
- * A listener is inhabited by a client, and
- * waits for evaluation requests from remote peers.
+ * Signature of functions that implement sending all the set's
+ * elements to the client.
+ *
+ * @param set set that should be iterated over
  */
-struct Listener
+typedef void (*IterateImpl) (struct Set *set);
+
+
+/**
+ * Dispatch table for a specific set operation.
+ * Every set operation has to implement the callback
+ * in this struct.
+ */
+struct SetVT
 {
   /**
-   * Listeners are held in a doubly linked list.
+   * Callback for the set creation.
    */
-  struct Listener *next;
+  CreateImpl create;
 
   /**
-   * Listeners are held in a doubly linked list.
+   * Callback for element insertion
    */
-  struct Listener *prev;
+  AddRemoveImpl add;
 
   /**
-   * Client that owns the listener.
-   * Only one client may own a listener.
+   * Callback for element removal.
    */
-  struct GNUNET_SERVER_Client *client;
+  AddRemoveImpl remove;
 
   /**
-   * Message queue for the client
+   * Callback for accepting a set operation request
    */
-  struct GNUNET_MQ_Handle *client_mq;
+  OpCreateImpl accept;
 
   /**
-   * Type of operation supported for this set
+   * Callback for starting evaluation with a remote peer.
    */
-  enum GNUNET_SET_OperationType operation;
+  OpCreateImpl evaluate;
 
   /**
-   * Application id of intereset for this listener.
+   * Callback for destruction of the set state.
    */
-  struct GNUNET_HashCode app_id;
-};
+  DestroySetImpl destroy_set;
 
+  /**
+   * Callback for handling operation-specific messages.
+   */
+  MsgHandlerImpl msg_handler;
 
-/**
- * Peer that has connected to us, but is not yet evaluating a set operation.
- * Once the peer has sent a request, and the client has
- * accepted or rejected it, this information will be deleted.
- */
-struct Incoming
-{
   /**
-   * Incoming peers are held in a linked list
+   * Callback for handling the remote peer's
+   * disconnect.
    */
-  struct Incoming *next;
+  PeerDisconnectImpl peer_disconnect;
 
   /**
-   * Incoming peers are held in a linked list
+   * Callback for canceling an operation by
+   * its ID.
    */
-  struct Incoming *prev;
+  CancelImpl cancel;
 
   /**
-   * Tunnel context, stores information about
-   * the tunnel and its peer.
+   * Callback for iterating over all set elements.
    */
-  struct TunnelContext *tc;
+  IterateImpl iterate;
+};
 
+
+/**
+ * Information about an element element in the set.
+ * All elements are stored in a hash-table
+ * from their hash-code to their 'struct Element',
+ * so that the remove and add operations are reasonably
+ * fast.
+ */
+struct ElementEntry
+{
   /**
-   * GNUNET_YES if the incoming peer has sent
-   * an operation request (and we are waiting
-   * for the client to ack/nack), GNUNET_NO otherwise.
+   * The actual element. The data for the element
+   * should be allocated at the end of this struct.
    */
-  int received_request;
+  struct GNUNET_SET_Element element;
 
   /**
-   * App code, set once the peer has
-   * requested an operation
+   * Hash of the element.
+   * Will be used to derive the different IBF keys
+   * for different salts.
    */
-  struct GNUNET_HashCode app_id;
+  struct GNUNET_HashCode element_hash;
 
   /**
-   * Context message, set once the peer
-   * has requested an operation.
+   * Generation the element was added by the client.
+   * Operations of earlier generations will not consider the element.
    */
-  struct GNUNET_MessageHeader *context_msg;
+  unsigned int generation_added;
 
   /**
-   * Salt the peer has requested to use for the
-   * operation
+   * GNUNET_YES if the element has been removed in some generation.
    */
-  uint16_t salt;
+  int removed;
 
   /**
-   * Operation the other peer wants to do
+   * Generation the element was removed by the client.
+   * Operations of later generations will not consider the element.
+   * Only valid if is_removed is GNUNET_YES.
    */
-  enum GNUNET_SET_OperationType operation;
+  unsigned int generation_removed;
 
   /**
-   * Unique request id for the request from
-   * a remote peer, sent to the client, which will
-   * accept or reject the request.
+   * GNUNET_YES if the element is a remote element, and does not belong
+   * to the operation's set.
    */
-  uint32_t accept_id;
+  int remote;
 };
 
 
-enum TunnelContextType {
-  CONTEXT_INCOMING,
-  CONTEXT_OPERATION_UNION,
-  CONTEXT_OPERATION_INTERSECTION,
-};
-
 /**
- * Information about a tunnel we are connected to.
- * Used as tunnel context with mesh.
+ * A set that supports a specific operation
+ * with other peers.
  */
-struct TunnelContext
+struct Set
 {
   /**
-   * The mesh tunnel that has this context
+   * Client that owns the set.
+   * Only one client may own a set.
    */
-  struct GNUNET_MESH_Tunnel *tunnel;
+  struct GNUNET_SERVER_Client *client;
 
   /**
-   * The peer on the other side.
+   * Message queue for the client
    */
-  struct GNUNET_PeerIdentity peer;
+  struct GNUNET_MQ_Handle *client_mq;
 
   /**
-   * Handle to the message queue for the tunnel.
+   * Type of operation supported for this set
    */
-  struct GNUNET_MQ_Handle *mq;
+  enum GNUNET_SET_OperationType operation;
 
   /**
-   * Type of the tunnel.
+   * Virtual table for this set.
+   * Determined by the operation type of this set.
    */
-  enum TunnelContextType type;
+  const struct SetVT *vt;
 
   /**
-   * State associated with the tunnel, dependent on
-   * tunnel type.
+   * Sets are held in a doubly linked list.
    */
-  void *data;
-};
-
-
-
-/**
- * Configuration of the local peer
- */
-extern const struct GNUNET_CONFIGURATION_Handle *configuration;
-
-extern struct GNUNET_MESH_Handle *mesh;
-
-
-/**
- * Create a new set supporting the union operation
- *
- * @return the newly created set
- */
-struct Set *
-_GSS_union_set_create (void);
-
-
-/**
- * Evaluate a union operation with
- * a remote peer.
- *
- * @param m the evaluate request message from the client
- * @param set the set to evaluate the operation with
- */
-void
-_GSS_union_evaluate (struct GNUNET_SET_EvaluateMessage *m, struct Set *set);
-
+  struct Set *next;
 
-/**
- * Add the element from the given element message to the set.
- *
- * @param m message with the element
- * @param set set to add the element to
- */
-void
-_GSS_union_add (struct GNUNET_SET_ElementMessage *m, struct Set *set);
+  /**
+   * Sets are held in a doubly linked list.
+   */
+  struct Set *prev;
 
+  /**
+   * Implementation-specific state.
+   */
+  struct SetState *state;
 
-/**
- * Remove the element given in the element message from the set.
- * Only marks the element as removed, so that older set operations can still exchange it.
- *
- * @param m message with the element
- * @param set set to remove the element from
- */
-void
-_GSS_union_remove (struct GNUNET_SET_ElementMessage *m, struct Set *set);
+  /**
+   * Current state of iterating elements for the client.
+   * NULL if we are not currently iterating.
+   */
+  struct GNUNET_CONTAINER_MultiHashMapIterator *iter;
 
+  /**
+   * Maps 'struct GNUNET_HashCode' to 'struct ElementEntry'.
+   */
+  struct GNUNET_CONTAINER_MultiHashMap *elements;
 
-/**
- * Destroy a set that supports the union operation
- *
- * @param set the set to destroy, must be of type GNUNET_SET_OPERATION_UNION
- */
-void
-_GSS_union_set_destroy (struct Set *set);
+  /**
+   * Current generation, that is, number of
+   * previously executed operations on this set
+   */
+  unsigned int current_generation;
+};
 
 
 /**
- * Accept an union operation request from a remote peer
- *
- * @param m the accept message from the client
- * @param set the set of the client
- * @param incoming information about the requesting remote peer
+ * Information about a tunnel we are connected to.
+ * Used as tunnel context with mesh.
  */
-void
-_GSS_union_accept (struct GNUNET_SET_AcceptRejectMessage *m, struct Set *set,
-                   struct Incoming *incoming);
-
+struct TunnelContext
+{
+  /**
+   * V-Table for the operation belonging
+   * to the tunnel contest.
+   */
+  const struct SetVT *vt;
 
-/**
- * Destroy a union operation, and free all resources
- * associated with it.
- *
- * @param eo the union operation to destroy
- */
-void
-_GSS_union_operation_destroy (struct UnionEvaluateOperation *eo);
+  /**
+   * Implementation-specific operation state.
+   */
+  struct OperationState *op;
+};
 
 
 /**
- * Dispatch messages for a union operation.
- *
- * @param cls closure
- * @param tunnel mesh tunnel
- * @param tunnel_ctx tunnel context
- * @param mh message to process
- * @return ???
+ * Get the table with implementing functions for
+ * set union.
  */
-int
-_GSS_union_handle_p2p_message (void *cls,
-                               struct GNUNET_MESH_Tunnel *tunnel,
-                               void **tunnel_ctx,
-                               const struct GNUNET_MessageHeader *mh);
+const struct SetVT *
+_GSS_union_vt (void);
 
 
 #endif