adding Ludo's gnunet-download-manager.scm back to SVN HEAD
[oweals/gnunet.git] / src / include / gnunet_core_service.h
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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_core_service.h
23  * @brief core service; this is the main API for encrypted P2P
24  *        communications
25  * @author Christian Grothoff
26  */
27
28 #ifndef GNUNET_CORE_SERVICE_H
29 #define GNUNET_CORE_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_util_lib.h"
40 #include "gnunet_transport_service.h"
41
42 /**
43  * Version number of GNUnet-core API.
44  */
45 #define GNUNET_CORE_VERSION 0x00000000
46
47
48 /**
49  * Opaque handle to the service.
50  */
51 struct GNUNET_CORE_Handle;
52
53
54 /**
55  * Method called whenever a given peer connects.
56  *
57  * @param cls closure
58  * @param peer peer identity this notification is about
59  * @param atsi performance data for the connection
60  * @param atsi_count number of records in 'atsi'
61  */
62 typedef void (*GNUNET_CORE_ConnectEventHandler) (void *cls,
63                                                  const struct
64                                                  GNUNET_PeerIdentity * peer,
65                                                  const struct
66                                                  GNUNET_ATS_Information * atsi,
67                                                  unsigned int atsi_count);
68
69
70 /**
71  * Method called whenever a peer disconnects.
72  *
73  * @param cls closure
74  * @param peer peer identity this notification is about
75  */
76 typedef void (*GNUNET_CORE_DisconnectEventHandler) (void *cls,
77                                                     const struct
78                                                     GNUNET_PeerIdentity * peer);
79
80
81 /**
82  * Functions with this signature are called whenever a message is
83  * received or transmitted.
84  *
85  * @param cls closure (set from GNUNET_CORE_connect)
86  * @param peer the other peer involved (sender or receiver, NULL
87  *        for loopback messages where we are both sender and receiver)
88  * @param message the actual message
89  * @param atsi performance data for the connection
90  * @param atsi_count number of records in 'atsi'
91  * @return GNUNET_OK to keep the connection open,
92  *         GNUNET_SYSERR to close it (signal serious error)
93  */
94 typedef int (*GNUNET_CORE_MessageCallback) (void *cls,
95                                             const struct GNUNET_PeerIdentity *
96                                             other,
97                                             const struct GNUNET_MessageHeader *
98                                             message,
99                                             const struct GNUNET_ATS_Information
100                                             * atsi, unsigned int atsi_count);
101
102
103 /**
104  * Message handler.  Each struct specifies how to handle on particular
105  * type of message received.
106  */
107 struct GNUNET_CORE_MessageHandler
108 {
109   /**
110    * Function to call for messages of "type".
111    */
112   GNUNET_CORE_MessageCallback callback;
113
114   /**
115    * Type of the message this handler covers.
116    */
117   uint16_t type;
118
119   /**
120    * Expected size of messages of this type.  Use 0 for variable-size.
121    * If non-zero, messages of the given type will be discarded if they
122    * do not have the right size.
123    */
124   uint16_t expected_size;
125
126 };
127
128
129 /**
130  * Function called after GNUNET_CORE_connect has succeeded (or failed
131  * for good).  Note that the private key of the peer is intentionally
132  * not exposed here; if you need it, your process should try to read
133  * the private key file directly (which should work if you are
134  * authorized...).
135  *
136  * @param cls closure
137  * @param server handle to the server, NULL if we failed
138  * @param my_identity ID of this peer, NULL if we failed
139  */
140 typedef void (*GNUNET_CORE_StartupCallback) (void *cls,
141                                              struct GNUNET_CORE_Handle * server,
142                                              const struct GNUNET_PeerIdentity *
143                                              my_identity);
144
145
146 /**
147  * Connect to the core service.  Note that the connection may complete
148  * (or fail) asynchronously.  This function primarily causes the given
149  * callback notification functions to be invoked whenever the
150  * specified event happens.  The maximum number of queued
151  * notifications (queue length) is per client but the queue is shared
152  * across all types of notifications.  So a slow client that registers
153  * for 'outbound_notify' also risks missing 'inbound_notify' messages.
154  * Certain events (such as connect/disconnect notifications) are not
155  * subject to queue size limitations.
156  *
157  * @param cfg configuration to use
158  * @param queue_size size of the per-peer message queue
159  * @param cls closure for the various callbacks that follow (including handlers in the handlers array)
160  * @param init callback to call on timeout or once we have successfully
161  *        connected to the core service; note that timeout is only meaningful if init is not NULL
162  * @param connects function to call on peer connect, can be NULL
163  * @param disconnects function to call on peer disconnect / timeout, can be NULL
164  * @param inbound_notify function to call for all inbound messages, can be NULL
165  *                note that the core is allowed to drop notifications about inbound
166  *                messages if the client does not process them fast enough (for this
167  *                notification type, a bounded queue is used)
168  * @param inbound_hdr_only set to GNUNET_YES if inbound_notify will only read the
169  *                GNUNET_MessageHeader and hence we do not need to give it the full message;
170  *                can be used to improve efficiency, ignored if inbound_notify is NULL
171  *                note that the core is allowed to drop notifications about inbound
172  *                messages if the client does not process them fast enough (for this
173  *                notification type, a bounded queue is used)
174  * @param outbound_notify function to call for all outbound messages, can be NULL;
175  *                note that the core is allowed to drop notifications about outbound
176  *                messages if the client does not process them fast enough (for this
177  *                notification type, a bounded queue is used)
178  * @param outbound_hdr_only set to GNUNET_YES if outbound_notify will only read the
179  *                GNUNET_MessageHeader and hence we do not need to give it the full message
180  *                can be used to improve efficiency, ignored if outbound_notify is NULL
181  *                note that the core is allowed to drop notifications about outbound
182  *                messages if the client does not process them fast enough (for this
183  *                notification type, a bounded queue is used)
184  * @param handlers callbacks for messages we care about, NULL-terminated
185  *                note that the core is allowed to drop notifications about inbound
186  *                messages if the client does not process them fast enough (for this
187  *                notification type, a bounded queue is used)
188  * @return handle to the core service (only useful for disconnect until 'init' is called),
189  *           NULL on error (in this case, init is never called)
190  */
191 struct GNUNET_CORE_Handle *
192 GNUNET_CORE_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
193                      unsigned int queue_size, void *cls,
194                      GNUNET_CORE_StartupCallback init,
195                      GNUNET_CORE_ConnectEventHandler connects,
196                      GNUNET_CORE_DisconnectEventHandler disconnects,
197                      GNUNET_CORE_MessageCallback inbound_notify,
198                      int inbound_hdr_only,
199                      GNUNET_CORE_MessageCallback outbound_notify,
200                      int outbound_hdr_only,
201                      const struct GNUNET_CORE_MessageHandler *handlers);
202
203
204 /**
205  * Disconnect from the core service.    This function can only
206  * be called *after* all pending 'GNUNET_CORE_notify_transmit_ready'
207  * requests have been explicitly cancelled.
208  *
209  * @param handle connection to core to disconnect
210  */
211 void
212 GNUNET_CORE_disconnect (struct GNUNET_CORE_Handle *handle);
213
214
215 /**
216  * Handle for a transmission request.
217  */
218 struct GNUNET_CORE_TransmitHandle;
219
220
221 /**
222  * Ask the core to call "notify" once it is ready to transmit the
223  * given number of bytes to the specified "target".   Must only be
224  * called after a connection to the respective peer has been
225  * established (and the client has been informed about this).
226  *
227  *
228  * @param handle connection to core service
229  * @param cork is corking allowed for this transmission?
230  * @param priority how important is the message?
231  * @param maxdelay how long can the message wait?
232  * @param target who should receive the message,
233  *        use NULL for this peer (loopback)
234  * @param notify_size how many bytes of buffer space does notify want?
235  * @param notify function to call when buffer space is available;
236  *        will be called with NULL on timeout or if the overall queue
237  *        for this peer is larger than queue_size and this is currently
238  *        the message with the lowest priority; will also be called
239  *        with 'NULL' buf if the peer disconnects; since the disconnect
240  *        signal will be emmitted even later, clients MUST cancel
241  *        all pending transmission requests DURING the disconnect
242  *        handler (unless they ensure that 'notify' never calls
243  *        'GNUNET_CORE_notify_transmit_ready').
244  * @param notify_cls closure for notify
245  * @return non-NULL if the notify callback was queued,
246  *         NULL if we can not even queue the request (insufficient
247  *         memory); if NULL is returned, "notify" will NOT be called.
248  */
249 struct GNUNET_CORE_TransmitHandle *
250 GNUNET_CORE_notify_transmit_ready (struct GNUNET_CORE_Handle *handle, int cork,
251                                    uint32_t priority,
252                                    struct GNUNET_TIME_Relative maxdelay,
253                                    const struct GNUNET_PeerIdentity *target,
254                                    size_t notify_size,
255                                    GNUNET_CONNECTION_TransmitReadyNotify notify,
256                                    void *notify_cls);
257
258
259 /**
260  * Cancel the specified transmission-ready notification.
261  *
262  * @param th handle that was returned by "notify_transmit_ready".
263  */
264 void
265 GNUNET_CORE_notify_transmit_ready_cancel (struct GNUNET_CORE_TransmitHandle
266                                           *th);
267
268
269
270
271
272 /**
273  * Iterate over all connected peers.  Calls peer_cb with each
274  * connected peer, and then once with NULL to indicate that all peers
275  * have been handled.  Normal users of the CORE API are not expected
276  * to use this function.  It is different in that it truly lists
277  * all connections, not just those relevant to the application.  This
278  * function is used by special applications for diagnostics.  This
279  * function is NOT part of the 'versioned', 'official' API.
280  *
281  * FIXME: we should probably make it possible to 'cancel' the
282  * operation...
283  *
284  * @param cfg configuration handle
285  * @param peer_cb function to call with the peer information
286  * @param cb_cls closure for peer_cb
287  * @return GNUNET_OK on success, GNUNET_SYSERR on errors
288  */
289 int
290 GNUNET_CORE_iterate_peers (const struct GNUNET_CONFIGURATION_Handle *cfg,
291                            GNUNET_CORE_ConnectEventHandler peer_cb,
292                            void *cb_cls);
293
294
295 /**
296  * Check if the given peer is currently connected and return information
297  * about the session if so.  This function is for special cirumstances
298  * (GNUNET_TESTING uses it), normal users of the CORE API are
299  * expected to track which peers are connected based on the
300  * connect/disconnect callbacks from GNUNET_CORE_connect.  This
301  * function is NOT part of the 'versioned', 'official' API.
302  *
303  * FIXME: we should probably make it possible to 'cancel' the
304  * operation...
305  *
306  * @param cfg configuration to use
307  * @param peer the specific peer to check for
308  * @param peer_cb function to call with the peer information
309  * @param cb_cls closure for peer_cb
310  * @return GNUNET_OK if iterating, GNUNET_SYSERR on error
311  */
312 int
313 GNUNET_CORE_is_peer_connected (const struct GNUNET_CONFIGURATION_Handle *cfg,
314                                struct GNUNET_PeerIdentity *peer,
315                                GNUNET_CORE_ConnectEventHandler peer_cb,
316                                void *cb_cls);
317
318
319 #if 0                           /* keep Emacsens' auto-indent happy */
320 {
321 #endif
322 #ifdef __cplusplus
323 }
324 #endif
325
326 /* ifndef GNUNET_CORE_SERVICE_H */
327 #endif
328 /* end of gnunet_core_service.h */