aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_scalarproduct_service.h
blob: 9fc8dbd2ad79183372c4a129c18953074ec13c02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/*
      This file is part of GNUnet.
      (C) 2013 Christian Grothoff (and other contributing authors)

      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
      option) any later version.

      GNUnet is distributed in the hope that it will be useful, but
      WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      General Public License for more details.

      You should have received a copy of the GNU General Public License
      along with GNUnet; see the file COPYING.  If not, write to the
      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
      Boston, MA 02111-1307, USA.
 */

/**
 * @file include/gnunet_scalarproduct_service.h
 * @brief API to the scalarproduct service
 * @author Christian M. Fuchs
 * @author Gaurav Kukreja
 */
#ifndef GNUNET_SCALARPRODUCT_SERVICE_H
#define GNUNET_SCALARPRODUCT_SERVICE_H
#define GCRYPT_NO_DEPRECATED
// including gcrypt crashes netbeans after the next restart...
#include <gcrypt.h>

#ifdef __cplusplus
extern "C" {
#if 0                           /* keep Emacsens' auto-indent happy */
}
#endif
#endif

/**
 * Version of the scalarproduct API.
 */
#define GNUNET_SCALARPRODUCT_VERSION 0x00000042

/**
 * Message type passed from client to service 
 * to initiate a request or responder role
 */
struct GNUNET_SCALARPRODUCT_client_request {
  /**
   * GNUNET message header
   */
  struct GNUNET_MessageHeader header;

  /**
   * how many elements the vector in payload contains
   */
  uint16_t element_count GNUNET_PACKED; 

  /**
   * how many bytes the mask has
   */
  uint16_t mask_length GNUNET_PACKED;
  
  /**
   * the transaction/session key used to identify a session
   */
  struct GNUNET_HashCode key;

  /**
   * the identity of a remote peer we want to communicate with
   */
  struct GNUNET_PeerIdentity peer;

  /**
   * followed by long vector[element_count] | [unsigned char mask[mask_bytes]]
   */
};

/**
 * Message type passed from service client
 * to finalize a session as requester or responder
 */
struct GNUNET_SCALARPRODUCT_client_response {
  /**
   * GNUNET message header
   */
  struct GNUNET_MessageHeader header;

  /**
   * 0 if no product attached
   */
  uint32_t product_length GNUNET_PACKED;

  /**
   * the transaction/session key used to identify a session
   */
  struct GNUNET_HashCode key;

  /**
   * the identity of a remote peer we want to communicate with
   */
  struct GNUNET_PeerIdentity peer;

  /**
   * followed by product of length product_length (or nothing)
   */
};

enum GNUNET_SCALARPRODUCT_ResponseStatus {
  GNUNET_SCALARPRODUCT_Status_Success = 0,
  GNUNET_SCALARPRODUCT_Status_Failure,
  GNUNET_SCALARPRODUCT_Status_Timeout,
  GNUNET_SCALARPRODUCT_Status_InvalidResponse,
  GNUNET_SCALARPRODUCT_Status_ServiceDisconnected
};

struct GNUNET_SCALARPRODUCT_Handle {
  /**
   * Our configuration.
   */
  const struct GNUNET_CONFIGURATION_Handle *cfg;

  /**
   * Current connection to the scalarproduct service.
   */
  struct GNUNET_CLIENT_Connection *client;

  /**
   * Handle for statistics.
   */
  struct GNUNET_STATISTICS_Handle *stats;

  /**
   * Current head of priority queue.
   */
  struct GNUNET_SCALARPRODUCT_QueueEntry *queue_head;

  /**
   * Current tail of priority queue.
   */
  struct GNUNET_SCALARPRODUCT_QueueEntry *queue_tail;

  /**
   * Are we currently trying to receive from the service?
   */
  int in_receive;

  /**
   * Current transmit handle.
   */
  struct GNUNET_CLIENT_TransmitHandle *th;

  /**
   * TODO: What else should/could go here?
   */
};

typedef void (*GNUNET_SCALARPRODUCT_ResponseMessageHandler) (void *cls,
        const struct GNUNET_MessageHeader *msg,
        enum GNUNET_SCALARPRODUCT_ResponseStatus status);

/**
 * Continuation called to notify client about result of the
 * operation.
 *
 * @param cls closure
 * @param success GNUNET_SYSERR on failure (including timeout/queue drop)
 *                GNUNET_NO if content was already there
 *                GNUNET_YES (or other positive value) on success
 * @param msg NULL on success, otherwise an error message
 */
typedef void (*GNUNET_SCALARPRODUCT_ContinuationWithStatus) (void *cls,
        const struct GNUNET_HashCode * key,
        enum GNUNET_SCALARPRODUCT_ResponseStatus status);
/**
 * Process a datum that was stored in the scalarproduct.
 * 
 * @param cls closure
 * @param key Sessioon key
 * @param peer PeerID of the peer with whom the scalar product was calculated.
 * @param status Status of the request
 * @param size Size of the received message
 * @param data Pointer to the data
 * @param type Type of data
 */
typedef void (*GNUNET_SCALARPRODUCT_DatumProcessor) (void *cls,
        const struct GNUNET_HashCode * key,
        const struct GNUNET_PeerIdentity * peer,
        enum GNUNET_SCALARPRODUCT_ResponseStatus status,
        const struct GNUNET_SCALARPRODUCT_client_response *msg);

/**
 * Request the Scalar Product Evaluation
 * 
 * @param h handle to the master context
 * @param key Session key - unique to the requesting client
 * @param peer PeerID of the other peer
 * @param element_count Number of elements in the vector
 * @param mask_bytes number of bytes in the mask
 * @param elements Array of elements of the vector
 * @param mask Array of the mask
 * @param timeout Relative timeout for the operation
 * @param cont Callback function
 * @param cont_cls Closure for the callback function
 */
struct GNUNET_SCALARPRODUCT_QueueEntry *
GNUNET_SCALARPRODUCT_request(struct GNUNET_SCALARPRODUCT_Handle *h,
        const struct GNUNET_HashCode * key,
        const struct GNUNET_PeerIdentity *peer,
        uint16_t element_count,
        uint16_t mask_bytes,
        int32_t * elements, const unsigned char * mask,
        struct GNUNET_TIME_Relative timeout,
        GNUNET_SCALARPRODUCT_DatumProcessor cont,
        void *cont_cls);

/**
 * Called by the responder client to prepare response
 * 
 * @param h handle to the master context
 * @param key Session key - unique to the requesting client
 * @param element_count Number of elements in the vector
 * @param mask_bytes number of bytes in the mask
 * @param elements Array of elements of the vector
 * @param mask Array of the mask
 * @param timeout Relative timeout for the operation
 * @param cont Callback function
 * @param cont_cls Closure for the callback function
 */
struct GNUNET_SCALARPRODUCT_QueueEntry *
GNUNET_SCALARPRODUCT_prepare_response(struct GNUNET_SCALARPRODUCT_Handle *h,
        const struct GNUNET_HashCode * key,
        uint16_t element_count,
        int32_t* elements,
        struct GNUNET_TIME_Relative timeout,
        GNUNET_SCALARPRODUCT_ContinuationWithStatus cont,
        void *cont_cls);

/**
 * Connect to the scalarproduct service.
 *
 * @param cfg configuration to use
 * @return handle to use to access the service
 */
struct GNUNET_SCALARPRODUCT_Handle *
GNUNET_SCALARPRODUCT_connect(const struct GNUNET_CONFIGURATION_Handle * cfg);

/**
 * Disconnect from the scalarproduct service.
 * 
 * @param h handle to the scalarproduct
 */
void
GNUNET_SCALARPRODUCT_disconnect(struct GNUNET_SCALARPRODUCT_Handle * h);


#if 0                           /* keep Emacsens' auto-indent happy */
{
#endif
#ifdef __cplusplus
}
#endif

#endif