-added configuration parameter
[oweals/gnunet.git] / src / include / gnunet_stream_lib.h
1 /*
2      This file is part of GNUnet.
3      (C) 2011, 2012 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_stream_lib.h
23  * @brief stream handling using mesh API
24  * @author Sree Harsha Totakura
25  */
26
27 #ifndef GNUNET_STREAM_LIB_H
28 #define GNUNET_STREAM_LIB_H
29
30 #ifdef __cplusplus
31 extern "C" 
32 {
33 #if 0
34 }
35 #endif
36 #endif
37
38 #include "gnunet_util_lib.h"
39 #include "gnunet_mesh_service.h"
40
41 /**
42  * Stream status 
43  */
44 enum GNUNET_STREAM_Status
45   {
46     /**
47      * All previous read/write operations are successfully done
48      */
49     GNUNET_STREAM_OK = 0,
50
51     /**
52      * A timeout occured while reading/writing the stream
53      */
54     GNUNET_STREAM_TIMEOUT = 1,
55
56     /**
57      * Other side has shutdown the socket for this type of operation
58      * (reading/writing)
59      */
60     GNUNET_STREAM_SHUTDOWN = 2,
61
62     /**
63      * A serious error occured while operating on this stream
64      */
65     GNUNET_STREAM_SYSERR = 3
66   };
67
68 /**
69  * Opaque handler for stream
70  */
71 struct GNUNET_STREAM_Socket;
72
73 /**
74  * Functions of this type will be called when a stream is established
75  *
76  * @param cls the closure from GNUNET_STREAM_open
77  * @param socket socket to use to communicate with the other side (read/write)
78  */
79 typedef void (*GNUNET_STREAM_OpenCallback) (void *cls,
80                                             struct GNUNET_STREAM_Socket *socket);
81
82
83 /**
84  * Options for the stream.
85  */
86 enum GNUNET_STREAM_Option
87   {
88     /**
89      * End of the option list.
90      */
91     GNUNET_STREAM_OPTION_END = 0,
92
93     /**
94      * Option to set the initial retransmission timeout (when do we retransmit
95      * a packet that did not yield an acknowledgement for the first time?).  
96      * Repeated retransmissions will then use an exponential back-off.
97      * Takes a 'struct GNUNET_TIME_Relative' as the only argument.  A value
98      * of '0' means to use the round-trip time (plus a tiny grace period);
99      * this is also the default.
100      */
101     GNUNET_STREAM_OPTION_INITIAL_RETRANSMIT_TIMEOUT
102   };
103
104
105 /**
106  * Tries to open a stream to the target peer
107  *
108  * @param cfg configuration to use
109  * @param target the target peer to which the stream has to be opened
110  * @param app_port the application port number which uniquely identifies this
111  *            stream
112  * @param open_cb this function will be called after stream has be established 
113  * @param open_cb_cls the closure for open_cb
114  * @param ... options to the stream, terminated by GNUNET_STREAM_OPTION_END
115  * @return if successful it returns the stream socket; NULL if stream cannot be
116  *         opened 
117  */
118 struct GNUNET_STREAM_Socket *
119 GNUNET_STREAM_open (const struct GNUNET_CONFIGURATION_Handle *cfg,
120                     const struct GNUNET_PeerIdentity *target,
121                     GNUNET_MESH_ApplicationType app_port,
122                     GNUNET_STREAM_OpenCallback open_cb,
123                     void *open_cb_cls,
124                     ...);
125
126
127 /**
128  * Shutdown the stream for reading or writing (man 2 shutdown).
129  *
130  * @param socket the stream socket
131  * @param how SHUT_RD, SHUT_WR or SHUT_RDWR 
132  */
133 void
134 GNUNET_STREAM_shutdown (struct GNUNET_STREAM_Socket *socket,
135                         int how);
136
137
138 /**
139  * Closes the stream
140  *
141  * @param socket the stream socket
142  */
143 void
144 GNUNET_STREAM_close (struct GNUNET_STREAM_Socket *socket);
145
146
147 /**
148  * Functions of this type are called upon new stream connection from other peers
149  *
150  * @param cls the closure from GNUNET_STREAM_listen
151  * @param socket the socket representing the stream
152  * @param initiator the identity of the peer who wants to establish a stream
153  *            with us
154  * @return GNUNET_OK to keep the socket open, GNUNET_SYSERR to close the
155  *             stream (the socket will be invalid after the call)
156  */
157 typedef int (*GNUNET_STREAM_ListenCallback) (void *cls,
158                                              struct GNUNET_STREAM_Socket *socket,
159                                              const struct 
160                                              GNUNET_PeerIdentity *initiator);
161
162
163 /**
164  * A socket for listening.
165  */
166 struct GNUNET_STREAM_ListenSocket;
167
168 /**
169  * Listens for stream connections for a specific application ports
170  *
171  * @param cfg the configuration to use
172  * @param app_port the application port for which new streams will be accepted
173  * @param listen_cb this function will be called when a peer tries to establish
174  *            a stream with us
175  * @param listen_cb_cls closure for listen_cb
176  * @return listen socket, NULL for any error
177  */
178 struct GNUNET_STREAM_ListenSocket *
179 GNUNET_STREAM_listen (const struct GNUNET_CONFIGURATION_Handle *cfg,
180                       GNUNET_MESH_ApplicationType app_port,
181                       GNUNET_STREAM_ListenCallback listen_cb,
182                       void *listen_cb_cls);
183
184
185 /**
186  * Closes the listen socket
187  *
188  * @param socket the listen socket
189  */
190 void
191 GNUNET_STREAM_listen_close (struct GNUNET_STREAM_ListenSocket *socket);
192
193
194 /**
195  * Functions of this signature are called whenever writing operations
196  * on a stream are executed
197  *
198  * @param cls the closure from GNUNET_STREAM_write
199  * @param status the status of the stream at the time this function is called
200  * @param size the number of bytes written
201  */
202 typedef void (*GNUNET_STREAM_CompletionContinuation) (void *cls,
203                                                       enum GNUNET_STREAM_Status
204                                                       status,
205                                                       size_t size);
206
207
208 /**
209  * Handle to cancel IO operations.
210  */
211 struct GNUNET_STREAM_IOHandle;
212
213
214 /**
215  * Tries to write the given data to the stream
216  *
217  * @param socket the socket representing a stream
218  * @param data the data buffer from where the data is written into the stream
219  * @param size the number of bytes to be written from the data buffer
220  * @param timeout the timeout period
221  * @param write_cont the function to call upon writing some bytes into the stream
222  * @param write_cont_cls the closure
223  * @return handle to cancel the operation
224  */
225 struct GNUNET_STREAM_IOHandle *
226 GNUNET_STREAM_write (struct GNUNET_STREAM_Socket *socket,
227                      const void *data,
228                      size_t size,
229                      struct GNUNET_TIME_Relative timeout,
230                      GNUNET_STREAM_CompletionContinuation write_cont,
231                      void *write_cont_cls);
232
233
234 /**
235  * Functions of this signature are called whenever data is available from the
236  * stream.
237  *
238  * @param cls the closure from GNUNET_STREAM_read
239  * @param status the status of the stream at the time this function is called
240  * @param data traffic from the other side
241  * @param size the number of bytes available in data read 
242  * @return number of bytes of processed from 'data' (any data remaining should be
243  *         given to the next time the read processor is called).
244  */
245 typedef size_t (*GNUNET_STREAM_DataProcessor) (void *cls,
246                                                enum GNUNET_STREAM_Status status,
247                                                const void *data,
248                                                size_t size);
249
250
251 /**
252  * Tries to read data from the stream
253  *
254  * @param socket the socket representing a stream
255  * @param timeout the timeout period
256  * @param proc function to call with data (once only)
257  * @param proc_cls the closure for proc
258  * @return handle to cancel the operation
259  */
260 struct GNUNET_STREAM_IOHandle *
261 GNUNET_STREAM_read (const struct GNUNET_STREAM_Socket *socket,
262                     struct GNUNET_TIME_Relative timeout,
263                     GNUNET_STREAM_DataProcessor proc,
264                     void *proc_cls);
265
266
267 /**
268  * Cancel pending read or write operation.
269  *
270  * @param ioh handle to operation to cancel
271  */
272 void
273 GNUNET_STREAM_io_cancel (struct GNUNET_STREAM_IOHandle *ioh);
274
275
276 #if 0
277 {
278 #endif
279 #ifdef __cplusplus
280 }
281 #endif
282
283 #endif  /* STREAM_PROTOCOL_H */