blob: c7fc908ea7fd3dc3e96534c1c2af0c9653e9c877 [file] [log] [blame]
Benny Prijono4bac2c12008-05-11 18:12:16 +00001/* $Id$ */
2/*
Benny Prijono844653c2008-12-23 17:27:53 +00003 * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
4 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
Benny Prijono4bac2c12008-05-11 18:12:16 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#ifndef __PJ_ASYNCSOCK_H__
21#define __PJ_ASYNCSOCK_H__
22
23/**
24 * @file activesock.h
25 * @brief Active socket
26 */
27
28#include <pj/ioqueue.h>
29#include <pj/sock.h>
30
31
32PJ_BEGIN_DECL
33
34/**
35 * @defgroup PJ_ACTIVESOCK Active socket I/O
36 * @brief Active socket performs active operations on socket.
37 * @ingroup PJ_IO
38 * @{
39 *
40 * Active socket is a higher level abstraction to the ioqueue. It provides
41 * automation to socket operations which otherwise would have to be done
42 * manually by the applications. For example with socket recv(), recvfrom(),
43 * and accept() operations, application only needs to invoke these
44 * operation once, and it will be notified whenever data or incoming TCP
45 * connection (in the case of accept()) arrives.
46 */
47
48/**
49 * This opaque structure describes the active socket.
50 */
51typedef struct pj_activesock_t pj_activesock_t;
52
53/**
54 * This structure contains the callbacks to be called by the active socket.
55 */
56typedef struct pj_activesock_cb
57{
58 /**
59 * This callback is called when a data arrives as the result of
60 * pj_activesock_start_read().
61 *
62 * @param asock The active socket.
63 * @param data The buffer containing the new data, if any. If
64 * the status argument is non-PJ_SUCCESS, this
65 * argument may be NULL.
66 * @param size The length of data in the buffer.
67 * @param status The status of the read operation. This may contain
68 * non-PJ_SUCCESS for example when the TCP connection
69 * has been closed. In this case, the buffer may
70 * contain left over data from previous callback which
71 * the application may want to process.
72 * @param remainder If application wishes to leave some data in the
73 * buffer (common for TCP applications), it should
74 * move the remainder data to the front part of the
75 * buffer and set the remainder length here. The value
76 * of this parameter will be ignored for datagram
77 * sockets.
78 *
79 * @return PJ_TRUE if further read is desired, and PJ_FALSE
80 * when application no longer wants to receive data.
81 * Application may destroy the active socket in the
82 * callback and return PJ_FALSE here.
83 */
84 pj_bool_t (*on_data_read)(pj_activesock_t *asock,
85 void *data,
86 pj_size_t size,
87 pj_status_t status,
88 pj_size_t *remainder);
89 /**
90 * This callback is called when a packet arrives as the result of
91 * pj_activesock_start_recvfrom().
92 *
93 * @param asock The active socket.
94 * @param data The buffer containing the packet, if any. If
95 * the status argument is non-PJ_SUCCESS, this
96 * argument will be set to NULL.
97 * @param size The length of packet in the buffer. If
98 * the status argument is non-PJ_SUCCESS, this
99 * argument will be set to zero.
100 * @param src_addr Source address of the packet.
101 * @param addr_len Length of the source address.
102 * @param status This contains
103 *
104 * @return PJ_TRUE if further read is desired, and PJ_FALSE
105 * when application no longer wants to receive data.
106 * Application may destroy the active socket in the
107 * callback and return PJ_FALSE here.
108 */
109 pj_bool_t (*on_data_recvfrom)(pj_activesock_t *asock,
110 void *data,
111 pj_size_t size,
112 const pj_sockaddr_t *src_addr,
113 int addr_len,
114 pj_status_t status);
115
116 /**
117 * This callback is called when data has been sent.
118 *
119 * @param asock The active socket.
120 * @param send_key Key associated with the send operation.
121 * @param sent If value is positive non-zero it indicates the
122 * number of data sent. When the value is negative,
123 * it contains the error code which can be retrieved
124 * by negating the value (i.e. status=-sent).
125 *
126 * @return Application may destroy the active socket in the
127 * callback and return PJ_FALSE here.
128 */
129 pj_bool_t (*on_data_sent)(pj_activesock_t *asock,
130 pj_ioqueue_op_key_t *send_key,
131 pj_ssize_t sent);
132
133 /**
134 * This callback is called when new connection arrives as the result
135 * of pj_activesock_start_accept().
136 *
137 * @param asock The active socket.
138 * @param newsock The new incoming socket.
139 * @param src_addr The source address of the connection.
140 * @param addr_len Length of the source address.
141 *
142 * @return PJ_TRUE if further accept() is desired, and PJ_FALSE
143 * when application no longer wants to accept incoming
144 * connection. Application may destroy the active socket
145 * in the callback and return PJ_FALSE here.
146 */
147 pj_bool_t (*on_accept_complete)(pj_activesock_t *asock,
148 pj_sock_t newsock,
149 const pj_sockaddr_t *src_addr,
150 int src_addr_len);
151
152 /**
153 * This callback is called when pending connect operation has been
154 * completed.
155 *
156 * @param asock The active socket.
157 * @param status The connection result. If connection has been
158 * successfully established, the status will contain
159 * PJ_SUCCESS.
160 *
161 * @return Application may destroy the active socket in the
162 * callback and return PJ_FALSE here.
163 */
164 pj_bool_t (*on_connect_complete)(pj_activesock_t *asock,
165 pj_status_t status);
166
167} pj_activesock_cb;
168
169
170/**
171 * Settings that can be given during active socket creation. Application
172 * must initialize this structure with #pj_activesock_cfg_default().
173 */
174typedef struct pj_activesock_cfg
175{
176 /**
177 * Number of concurrent asynchronous operations that is to be supported
178 * by the active socket. This value only affects socket receive and
179 * accept operations -- the active socket will issue one or more
180 * asynchronous read and accept operations based on the value of this
181 * field. Setting this field to more than one will allow more than one
182 * incoming data or incoming connections to be processed simultaneously
183 * on multiprocessor systems, when the ioqueue is polled by more than
184 * one threads.
185 *
186 * The default value is 1.
187 */
188 unsigned async_cnt;
189
190 /**
191 * The ioqueue concurrency to be forced on the socket when it is
192 * registered to the ioqueue. See #pj_ioqueue_set_concurrency() for more
193 * info about ioqueue concurrency.
194 *
195 * When this value is -1, the concurrency setting will not be forced for
196 * this socket, and the socket will inherit the concurrency setting of
197 * the ioqueue. When this value is zero, the active socket will disable
198 * concurrency for the socket. When this value is +1, the active socket
199 * will enable concurrency for the socket.
200 *
201 * The default value is -1.
202 */
203 int concurrency;
204
Benny Prijono417d6052008-07-29 20:15:15 +0000205 /**
206 * If this option is specified, the active socket will make sure that
207 * asynchronous send operation with stream oriented socket will only
208 * call the callback after all data has been sent. This means that the
209 * active socket will automatically resend the remaining data until
210 * all data has been sent.
211 *
212 * Please note that when this option is specified, it is possible that
213 * error is reported after partial data has been sent. Also setting
214 * this will disable the ioqueue concurrency for the socket.
215 *
216 * Default value is 1.
217 */
218 pj_bool_t whole_data;
219
Benny Prijono4bac2c12008-05-11 18:12:16 +0000220} pj_activesock_cfg;
221
222
223/**
224 * Initialize the active socket configuration with the default values.
225 *
226 * @param cfg The configuration to be initialized.
227 */
228PJ_DECL(void) pj_activesock_cfg_default(pj_activesock_cfg *cfg);
229
230
231/**
232 * Create the active socket for the specified socket. This will register
233 * the socket to the specified ioqueue.
234 *
235 * @param pool Pool to allocate memory from.
236 * @param sock The socket handle.
237 * @param sock_type Specify socket type, either pj_SOCK_DGRAM() or
238 * pj_SOCK_STREAM(). The active socket needs this
239 * information to handle connection closure for
240 * connection oriented sockets.
241 * @param ioqueue The ioqueue to use.
242 * @param opt Optional settings. When this setting is not specifed,
243 * the default values will be used.
244 * @param cb Pointer to structure containing application
245 * callbacks.
Benny Prijonoea8e4362008-06-06 14:12:23 +0000246 * @param user_data Arbitrary user data to be associated with this
247 * active socket.
Benny Prijono4bac2c12008-05-11 18:12:16 +0000248 * @param p_asock Pointer to receive the active socket instance.
249 *
250 * @return PJ_SUCCESS if the operation has been successful,
251 * or the appropriate error code on failure.
252 */
253PJ_DECL(pj_status_t) pj_activesock_create(pj_pool_t *pool,
254 pj_sock_t sock,
255 int sock_type,
256 const pj_activesock_cfg *opt,
257 pj_ioqueue_t *ioqueue,
258 const pj_activesock_cb *cb,
Benny Prijonoea8e4362008-06-06 14:12:23 +0000259 void *user_data,
Benny Prijono4bac2c12008-05-11 18:12:16 +0000260 pj_activesock_t **p_asock);
261
262/**
263 * Create UDP socket descriptor, bind it to the specified address, and
264 * create the active socket for the socket descriptor.
265 *
266 * @param pool Pool to allocate memory from.
267 * @param addr Specifies the address family of the socket and the
268 * address where the socket should be bound to. If
269 * this argument is NULL, then AF_INET is assumed and
270 * the socket will be bound to any addresses and port.
271 * @param opt Optional settings. When this setting is not specifed,
272 * the default values will be used.
273 * @param cb Pointer to structure containing application
274 * callbacks.
Benny Prijonoea8e4362008-06-06 14:12:23 +0000275 * @param user_data Arbitrary user data to be associated with this
276 * active socket.
Benny Prijono4bac2c12008-05-11 18:12:16 +0000277 * @param p_asock Pointer to receive the active socket instance.
278 * @param bound_addr If this argument is specified, it will be filled with
279 * the bound address on return.
280 *
281 * @return PJ_SUCCESS if the operation has been successful,
282 * or the appropriate error code on failure.
283 */
284PJ_DECL(pj_status_t) pj_activesock_create_udp(pj_pool_t *pool,
285 const pj_sockaddr *addr,
286 const pj_activesock_cfg *opt,
287 pj_ioqueue_t *ioqueue,
288 const pj_activesock_cb *cb,
Benny Prijonoea8e4362008-06-06 14:12:23 +0000289 void *user_data,
Benny Prijono4bac2c12008-05-11 18:12:16 +0000290 pj_activesock_t **p_asock,
291 pj_sockaddr *bound_addr);
292
293
294/**
295 * Close the active socket. This will unregister the socket from the
296 * ioqueue and ultimately close the socket.
297 *
298 * @param asock The active socket.
299 *
300 * @return PJ_SUCCESS if the operation has been successful,
301 * or the appropriate error code on failure.
302 */
303PJ_DECL(pj_status_t) pj_activesock_close(pj_activesock_t *asock);
304
305
306/**
307 * Associate arbitrary data with the active socket. Application may
308 * inspect this data in the callbacks and associate it with higher
309 * level processing.
310 *
311 * @param asock The active socket.
312 * @param user_data The user data to be associated with the active
313 * socket.
314 *
315 * @return PJ_SUCCESS if the operation has been successful,
316 * or the appropriate error code on failure.
317 */
318PJ_DECL(pj_status_t) pj_activesock_set_user_data(pj_activesock_t *asock,
319 void *user_data);
320
321/**
322 * Retrieve the user data previously associated with this active
323 * socket.
324 *
325 * @param asock The active socket.
326 *
327 * @return The user data.
328 */
329PJ_DECL(void*) pj_activesock_get_user_data(pj_activesock_t *asock);
330
331
332/**
333 * Starts read operation on this active socket. This function will create
334 * \a async_cnt number of buffers (the \a async_cnt parameter was given
335 * in \a pj_activesock_create() function) where each buffer is \a buff_size
336 * long. The buffers are allocated from the specified \a pool. Once the
337 * buffers are created, it then issues \a async_cnt number of asynchronous
338 * \a recv() operations to the socket and returns back to caller. Incoming
339 * data on the socket will be reported back to application via the
340 * \a on_data_read() callback.
341 *
342 * Application only needs to call this function once to initiate read
343 * operations. Further read operations will be done automatically by the
344 * active socket when \a on_data_read() callback returns non-zero.
345 *
346 * @param asock The active socket.
347 * @param pool Pool used to allocate buffers for incoming data.
348 * @param buff_size The size of each buffer, in bytes.
349 * @param flags Flags to be given to pj_ioqueue_recv().
350 *
351 * @return PJ_SUCCESS if the operation has been successful,
352 * or the appropriate error code on failure.
353 */
354PJ_DECL(pj_status_t) pj_activesock_start_read(pj_activesock_t *asock,
355 pj_pool_t *pool,
356 unsigned buff_size,
357 pj_uint32_t flags);
358
359/**
Benny Prijonobd344ff2008-08-04 09:59:02 +0000360 * Same as #pj_activesock_start_read(), except that the application
361 * supplies the buffers for the read operation so that the acive socket
362 * does not have to allocate the buffers.
363 *
364 * @param asock The active socket.
365 * @param pool Pool used to allocate buffers for incoming data.
366 * @param buff_size The size of each buffer, in bytes.
367 * @param readbuf Array of packet buffers, each has buff_size size.
368 * @param flags Flags to be given to pj_ioqueue_recv().
369 *
370 * @return PJ_SUCCESS if the operation has been successful,
371 * or the appropriate error code on failure.
372 */
373PJ_DECL(pj_status_t) pj_activesock_start_read2(pj_activesock_t *asock,
374 pj_pool_t *pool,
375 unsigned buff_size,
376 void *readbuf[],
377 pj_uint32_t flags);
378
379/**
Benny Prijono4bac2c12008-05-11 18:12:16 +0000380 * Same as pj_activesock_start_read(), except that this function is used
381 * only for datagram sockets, and it will trigger \a on_data_recvfrom()
382 * callback instead.
383 *
384 * @param asock The active socket.
385 * @param pool Pool used to allocate buffers for incoming data.
386 * @param buff_size The size of each buffer, in bytes.
387 * @param flags Flags to be given to pj_ioqueue_recvfrom().
388 *
389 * @return PJ_SUCCESS if the operation has been successful,
390 * or the appropriate error code on failure.
391 */
392PJ_DECL(pj_status_t) pj_activesock_start_recvfrom(pj_activesock_t *asock,
393 pj_pool_t *pool,
394 unsigned buff_size,
395 pj_uint32_t flags);
396
397/**
Benny Prijonobd344ff2008-08-04 09:59:02 +0000398 * Same as #pj_activesock_start_recvfrom() except that the recvfrom()
399 * operation takes the buffer from the argument rather than creating
400 * new ones.
401 *
402 * @param asock The active socket.
403 * @param pool Pool used to allocate buffers for incoming data.
404 * @param buff_size The size of each buffer, in bytes.
405 * @param readbuf Array of packet buffers, each has buff_size size.
406 * @param flags Flags to be given to pj_ioqueue_recvfrom().
407 *
408 * @return PJ_SUCCESS if the operation has been successful,
409 * or the appropriate error code on failure.
410 */
411PJ_DECL(pj_status_t) pj_activesock_start_recvfrom2(pj_activesock_t *asock,
412 pj_pool_t *pool,
413 unsigned buff_size,
414 void *readbuf[],
415 pj_uint32_t flags);
416
417/**
Benny Prijono4bac2c12008-05-11 18:12:16 +0000418 * Send data using the socket.
419 *
420 * @param asock The active socket.
421 * @param send_key The operation key to send the data, which is useful
422 * if application wants to submit multiple pending
423 * send operations and want to track which exact data
424 * has been sent in the \a on_data_sent() callback.
425 * @param data The data to be sent. This data must remain valid
426 * until the data has been sent.
427 * @param size The size of the data.
428 * @param flags Flags to be given to pj_ioqueue_send().
429 *
430 *
431 * @return PJ_SUCCESS if data has been sent immediately, or
432 * PJ_EPENDING if data cannot be sent immediately. In
433 * this case the \a on_data_sent() callback will be
434 * called when data is actually sent. Any other return
435 * value indicates error condition.
436 */
437PJ_DECL(pj_status_t) pj_activesock_send(pj_activesock_t *asock,
438 pj_ioqueue_op_key_t *send_key,
439 const void *data,
440 pj_ssize_t *size,
441 unsigned flags);
442
443/**
444 * Send datagram using the socket.
445 *
446 * @param asock The active socket.
447 * @param send_key The operation key to send the data, which is useful
448 * if application wants to submit multiple pending
449 * send operations and want to track which exact data
450 * has been sent in the \a on_data_sent() callback.
451 * @param data The data to be sent. This data must remain valid
452 * until the data has been sent.
453 * @param size The size of the data.
454 * @param flags Flags to be given to pj_ioqueue_send().
455 * @param addr The destination address.
456 * @param addr_len The length of the address.
457 *
458 * @return PJ_SUCCESS if data has been sent immediately, or
459 * PJ_EPENDING if data cannot be sent immediately. In
460 * this case the \a on_data_sent() callback will be
461 * called when data is actually sent. Any other return
462 * value indicates error condition.
463 */
464PJ_DECL(pj_status_t) pj_activesock_sendto(pj_activesock_t *asock,
465 pj_ioqueue_op_key_t *send_key,
466 const void *data,
467 pj_ssize_t *size,
468 unsigned flags,
469 const pj_sockaddr_t *addr,
470 int addr_len);
471
Benny Prijono1dd54202008-07-25 10:45:34 +0000472#if PJ_HAS_TCP
Benny Prijono4bac2c12008-05-11 18:12:16 +0000473/**
474 * Starts asynchronous socket accept() operations on this active socket.
475 * Application must bind the socket before calling this function. This
476 * function will issue \a async_cnt number of asynchronous \a accept()
477 * operations to the socket and returns back to caller. Incoming
478 * connection on the socket will be reported back to application via the
479 * \a on_accept_complete() callback.
480 *
481 * Application only needs to call this function once to initiate accept()
482 * operations. Further accept() operations will be done automatically by
483 * the active socket when \a on_accept_complete() callback returns non-zero.
484 *
485 * @param asock The active socket.
486 * @param pool Pool used to allocate some internal data for the
487 * operation.
488 *
489 * @return PJ_SUCCESS if the operation has been successful,
490 * or the appropriate error code on failure.
491 */
492PJ_DECL(pj_status_t) pj_activesock_start_accept(pj_activesock_t *asock,
493 pj_pool_t *pool);
494
495/**
496 * Starts asynchronous socket connect() operation for this socket. Once
497 * the connection is done (either successfully or not), the
498 * \a on_connect_complete() callback will be called.
499 *
500 * @param asock The active socket.
501 * @param pool The pool to allocate some internal data for the
502 * operation.
503 * @param remaddr Remote address.
504 * @param addr_len Length of the remote address.
505 *
506 * @return PJ_SUCCESS if connection can be established immediately,
507 * or PJ_EPENDING if connection cannot be established
508 * immediately. In this case the \a on_connect_complete()
509 * callback will be called when connection is complete.
510 * Any other return value indicates error condition.
511 */
512PJ_DECL(pj_status_t) pj_activesock_start_connect(pj_activesock_t *asock,
513 pj_pool_t *pool,
514 const pj_sockaddr_t *remaddr,
515 int addr_len);
516
Benny Prijono1dd54202008-07-25 10:45:34 +0000517#endif /* PJ_HAS_TCP */
Benny Prijono4bac2c12008-05-11 18:12:16 +0000518
519/**
520 * @}
521 */
522
523PJ_END_DECL
524
525#endif /* __PJ_ASYNCSOCK_H__ */
526