blob: 1ebb5a2e6d7632a6ae4dfb842893ff98f5fa4ab8 [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
Sauw Mingbe3771a2010-08-27 06:46:29 +0000305#if defined(PJ_IPHONE_OS_HAS_MULTITASKING_SUPPORT) && \
306 PJ_IPHONE_OS_HAS_MULTITASKING_SUPPORT!=0
307/**
308 * Set iPhone OS background mode setting. Setting to 1 will enable TCP
309 * active socket to receive incoming data when application is in the
310 * background. Setting to 0 will disable it. Default value of this
311 * setting is PJ_ACTIVESOCK_TCP_IPHONE_OS_BG.
312 *
313 * @param asock The active socket.
314 * @param val The value of background mode setting.
315 *
316 */
317PJ_DECL(void) pj_activesock_set_iphone_os_bg(pj_activesock_t *asock,
318 int val);
319#endif
Benny Prijono4bac2c12008-05-11 18:12:16 +0000320
321/**
322 * Associate arbitrary data with the active socket. Application may
323 * inspect this data in the callbacks and associate it with higher
324 * level processing.
325 *
326 * @param asock The active socket.
327 * @param user_data The user data to be associated with the active
328 * socket.
329 *
330 * @return PJ_SUCCESS if the operation has been successful,
331 * or the appropriate error code on failure.
332 */
333PJ_DECL(pj_status_t) pj_activesock_set_user_data(pj_activesock_t *asock,
334 void *user_data);
335
336/**
337 * Retrieve the user data previously associated with this active
338 * socket.
339 *
340 * @param asock The active socket.
341 *
342 * @return The user data.
343 */
344PJ_DECL(void*) pj_activesock_get_user_data(pj_activesock_t *asock);
345
346
347/**
348 * Starts read operation on this active socket. This function will create
349 * \a async_cnt number of buffers (the \a async_cnt parameter was given
350 * in \a pj_activesock_create() function) where each buffer is \a buff_size
351 * long. The buffers are allocated from the specified \a pool. Once the
352 * buffers are created, it then issues \a async_cnt number of asynchronous
353 * \a recv() operations to the socket and returns back to caller. Incoming
354 * data on the socket will be reported back to application via the
355 * \a on_data_read() callback.
356 *
357 * Application only needs to call this function once to initiate read
358 * operations. Further read operations will be done automatically by the
359 * active socket when \a on_data_read() callback returns non-zero.
360 *
361 * @param asock The active socket.
362 * @param pool Pool used to allocate buffers for incoming data.
363 * @param buff_size The size of each buffer, in bytes.
364 * @param flags Flags to be given to pj_ioqueue_recv().
365 *
366 * @return PJ_SUCCESS if the operation has been successful,
367 * or the appropriate error code on failure.
368 */
369PJ_DECL(pj_status_t) pj_activesock_start_read(pj_activesock_t *asock,
370 pj_pool_t *pool,
371 unsigned buff_size,
372 pj_uint32_t flags);
373
374/**
Benny Prijonobd344ff2008-08-04 09:59:02 +0000375 * Same as #pj_activesock_start_read(), except that the application
376 * supplies the buffers for the read operation so that the acive socket
377 * does not have to allocate the buffers.
378 *
379 * @param asock The active socket.
380 * @param pool Pool used to allocate buffers for incoming data.
381 * @param buff_size The size of each buffer, in bytes.
382 * @param readbuf Array of packet buffers, each has buff_size size.
383 * @param flags Flags to be given to pj_ioqueue_recv().
384 *
385 * @return PJ_SUCCESS if the operation has been successful,
386 * or the appropriate error code on failure.
387 */
388PJ_DECL(pj_status_t) pj_activesock_start_read2(pj_activesock_t *asock,
389 pj_pool_t *pool,
390 unsigned buff_size,
391 void *readbuf[],
392 pj_uint32_t flags);
393
394/**
Benny Prijono4bac2c12008-05-11 18:12:16 +0000395 * Same as pj_activesock_start_read(), except that this function is used
396 * only for datagram sockets, and it will trigger \a on_data_recvfrom()
397 * callback instead.
398 *
399 * @param asock The active socket.
400 * @param pool Pool used to allocate buffers for incoming data.
401 * @param buff_size The size of each buffer, in bytes.
402 * @param flags Flags to be given to pj_ioqueue_recvfrom().
403 *
404 * @return PJ_SUCCESS if the operation has been successful,
405 * or the appropriate error code on failure.
406 */
407PJ_DECL(pj_status_t) pj_activesock_start_recvfrom(pj_activesock_t *asock,
408 pj_pool_t *pool,
409 unsigned buff_size,
410 pj_uint32_t flags);
411
412/**
Benny Prijonobd344ff2008-08-04 09:59:02 +0000413 * Same as #pj_activesock_start_recvfrom() except that the recvfrom()
414 * operation takes the buffer from the argument rather than creating
415 * new ones.
416 *
417 * @param asock The active socket.
418 * @param pool Pool used to allocate buffers for incoming data.
419 * @param buff_size The size of each buffer, in bytes.
420 * @param readbuf Array of packet buffers, each has buff_size size.
421 * @param flags Flags to be given to pj_ioqueue_recvfrom().
422 *
423 * @return PJ_SUCCESS if the operation has been successful,
424 * or the appropriate error code on failure.
425 */
426PJ_DECL(pj_status_t) pj_activesock_start_recvfrom2(pj_activesock_t *asock,
427 pj_pool_t *pool,
428 unsigned buff_size,
429 void *readbuf[],
430 pj_uint32_t flags);
431
432/**
Benny Prijono4bac2c12008-05-11 18:12:16 +0000433 * Send data using the socket.
434 *
435 * @param asock The active socket.
436 * @param send_key The operation key to send the data, which is useful
437 * if application wants to submit multiple pending
438 * send operations and want to track which exact data
439 * has been sent in the \a on_data_sent() callback.
440 * @param data The data to be sent. This data must remain valid
441 * until the data has been sent.
442 * @param size The size of the data.
443 * @param flags Flags to be given to pj_ioqueue_send().
444 *
445 *
446 * @return PJ_SUCCESS if data has been sent immediately, or
447 * PJ_EPENDING if data cannot be sent immediately. In
448 * this case the \a on_data_sent() callback will be
449 * called when data is actually sent. Any other return
450 * value indicates error condition.
451 */
452PJ_DECL(pj_status_t) pj_activesock_send(pj_activesock_t *asock,
453 pj_ioqueue_op_key_t *send_key,
454 const void *data,
455 pj_ssize_t *size,
456 unsigned flags);
457
458/**
459 * Send datagram using the socket.
460 *
461 * @param asock The active socket.
462 * @param send_key The operation key to send the data, which is useful
463 * if application wants to submit multiple pending
464 * send operations and want to track which exact data
465 * has been sent in the \a on_data_sent() callback.
466 * @param data The data to be sent. This data must remain valid
467 * until the data has been sent.
468 * @param size The size of the data.
469 * @param flags Flags to be given to pj_ioqueue_send().
470 * @param addr The destination address.
471 * @param addr_len The length of the address.
472 *
473 * @return PJ_SUCCESS if data has been sent immediately, or
474 * PJ_EPENDING if data cannot be sent immediately. In
475 * this case the \a on_data_sent() callback will be
476 * called when data is actually sent. Any other return
477 * value indicates error condition.
478 */
479PJ_DECL(pj_status_t) pj_activesock_sendto(pj_activesock_t *asock,
480 pj_ioqueue_op_key_t *send_key,
481 const void *data,
482 pj_ssize_t *size,
483 unsigned flags,
484 const pj_sockaddr_t *addr,
485 int addr_len);
486
Benny Prijono1dd54202008-07-25 10:45:34 +0000487#if PJ_HAS_TCP
Benny Prijono4bac2c12008-05-11 18:12:16 +0000488/**
489 * Starts asynchronous socket accept() operations on this active socket.
490 * Application must bind the socket before calling this function. This
491 * function will issue \a async_cnt number of asynchronous \a accept()
492 * operations to the socket and returns back to caller. Incoming
493 * connection on the socket will be reported back to application via the
494 * \a on_accept_complete() callback.
495 *
496 * Application only needs to call this function once to initiate accept()
497 * operations. Further accept() operations will be done automatically by
498 * the active socket when \a on_accept_complete() callback returns non-zero.
499 *
500 * @param asock The active socket.
501 * @param pool Pool used to allocate some internal data for the
502 * operation.
503 *
504 * @return PJ_SUCCESS if the operation has been successful,
505 * or the appropriate error code on failure.
506 */
507PJ_DECL(pj_status_t) pj_activesock_start_accept(pj_activesock_t *asock,
508 pj_pool_t *pool);
509
510/**
511 * Starts asynchronous socket connect() operation for this socket. Once
512 * the connection is done (either successfully or not), the
513 * \a on_connect_complete() callback will be called.
514 *
515 * @param asock The active socket.
516 * @param pool The pool to allocate some internal data for the
517 * operation.
518 * @param remaddr Remote address.
519 * @param addr_len Length of the remote address.
520 *
521 * @return PJ_SUCCESS if connection can be established immediately,
522 * or PJ_EPENDING if connection cannot be established
523 * immediately. In this case the \a on_connect_complete()
524 * callback will be called when connection is complete.
525 * Any other return value indicates error condition.
526 */
527PJ_DECL(pj_status_t) pj_activesock_start_connect(pj_activesock_t *asock,
528 pj_pool_t *pool,
529 const pj_sockaddr_t *remaddr,
530 int addr_len);
531
Benny Prijono1dd54202008-07-25 10:45:34 +0000532#endif /* PJ_HAS_TCP */
Benny Prijono4bac2c12008-05-11 18:12:16 +0000533
534/**
535 * @}
536 */
537
538PJ_END_DECL
539
540#endif /* __PJ_ASYNCSOCK_H__ */
541