:orphan: .. index:: pair: group; TAPI for asynchronous I/O calls .. _doxid-group__te__lib__rpc__aio: TAPI for asynchronous I/O calls =============================== .. toctree:: :hidden: Overview ~~~~~~~~ .. ref-code-block:: cpp :class: doxyrest-overview-code-block // global functions rpc_aiocb_p :ref:`rpc_create_aiocb`(:ref:`rcf_rpc_server`* rpcs); void :ref:`rpc_delete_aiocb`(:ref:`rcf_rpc_server`* rpcs, rpc_aiocb_p cb); void :ref:`rpc_fill_aiocb`(:ref:`rcf_rpc_server`* rpcs, rpc_aiocb_p cb, int fildes, :ref:`rpc_lio_opcode` opcode, int reqprio, rpc_ptr buf, size_t nbytes, const :ref:`tarpc_sigevent`* sigevent); int :ref:`rpc_aio_read`(:ref:`rcf_rpc_server`* rpcs, rpc_aiocb_p cb); int :ref:`rpc_aio_write`(:ref:`rcf_rpc_server`* rpcs, rpc_aiocb_p cb); ssize_t :ref:`rpc_aio_return`(:ref:`rcf_rpc_server`* rpcs, rpc_aiocb_p cb); int :ref:`rpc_aio_error`(:ref:`rcf_rpc_server`* rpcs, rpc_aiocb_p cb); int :ref:`rpc_aio_cancel`(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_aiocb_p cb); int :ref:`rpc_aio_fsync`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_fcntl_flags` op, rpc_aiocb_p cb); int :ref:`rpc_aio_suspend`(:ref:`rcf_rpc_server`* rpcs, const rpc_aiocb_p* cblist, int n, const struct timespec* timeout); int :ref:`rpc_lio_listio`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_lio_mode` mode, const rpc_aiocb_p* cblist, int nent, const :ref:`tarpc_sigevent`* sigevent); // macros #define :ref:`CLEANUP_RPC_DELETE_AIOCB`(_rpcs, _cb) .. _details-group__te__lib__rpc__aio: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Global Functions ---------------- .. index:: pair: function; rpc_create_aiocb .. _doxid-group__te__lib__rpc__aio_1ga9f09ab8f216a0dcf9915fb633491f3df: .. ref-code-block:: cpp :class: doxyrest-title-code-block rpc_aiocb_p rpc_create_aiocb(:ref:`rcf_rpc_server`* rpcs) Allocate a AIO control block. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: AIO control block address, otherwise **NULL** is returned on error .. index:: pair: function; rpc_delete_aiocb .. _doxid-group__te__lib__rpc__aio_1ga1355517cb504bfcef0c826b7e12c80d5: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_delete_aiocb(:ref:`rcf_rpc_server`* rpcs, rpc_aiocb_p cb) Destroy a specified AIO control block. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - cb - control block to be deleted .. index:: pair: function; rpc_fill_aiocb .. _doxid-group__te__lib__rpc__aio_1gabbc6530e54d4f3c6e69f18ef43a8fb01: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_fill_aiocb(:ref:`rcf_rpc_server`* rpcs, rpc_aiocb_p cb, int fildes, :ref:`rpc_lio_opcode` opcode, int reqprio, rpc_ptr buf, size_t nbytes, const :ref:`tarpc_sigevent`* sigevent) Fill a specified AIO control block. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - cb - control block to be updated * - fildes - file descriptor * - opcode - lio_listio operation code * - reqprio - request priority * - buf - pre-allocated memory buffer * - nbytes - buffer length * - sigevent - notification mode description .. index:: pair: function; rpc_aio_read .. _doxid-group__te__lib__rpc__aio_1ga7dcc01a34384d24cb894145845a20b21: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_aio_read(:ref:`rcf_rpc_server`* rpcs, rpc_aiocb_p cb) Request asynchronous read operation. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - cb - control block .. rubric:: Returns: 0 (success) or -1 (failure) .. index:: pair: function; rpc_aio_write .. _doxid-group__te__lib__rpc__aio_1ga4f465afa1bc01e497ed448a123d3e793: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_aio_write(:ref:`rcf_rpc_server`* rpcs, rpc_aiocb_p cb) Request asynchronous write operation. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - cb - control block .. rubric:: Returns: 0 (success) or -1 (failure) .. index:: pair: function; rpc_aio_return .. _doxid-group__te__lib__rpc__aio_1ga0b977ff0dedb9ccabb8d7dd6d32cecb3: .. ref-code-block:: cpp :class: doxyrest-title-code-block ssize_t rpc_aio_return(:ref:`rcf_rpc_server`* rpcs, rpc_aiocb_p cb) Retrieve final return status for asynchronous I/O request. The function converting OS errno to OS-independent one is also applied to value returned by aio_return() on RPC server. The result of the conversion is stored as errno in RPC server structure. This is necessary to obtain correct aio_return() result when it is called for failre request. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - cb - control block .. rubric:: Returns: Return status of AIO request .. index:: pair: function; rpc_aio_error .. _doxid-group__te__lib__rpc__aio_1ga4c42529a7b7b9f9d7887046ffc7d13ec: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_aio_error(:ref:`rcf_rpc_server`* rpcs, rpc_aiocb_p cb) Get status of the asynchronous I/O request. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - cb - control block .. rubric:: Returns: OS-independent error code .. index:: pair: function; rpc_aio_cancel .. _doxid-group__te__lib__rpc__aio_1gad3b2a113d002b1a6cef9f0d3c32981bf: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_aio_cancel(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_aiocb_p cb) Cancel asynchronous I/O request(s) corresponding to the file descriptor. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - cb - control block or NULL (in this case all AIO requests are cancelled) * - AIO_CANCELED - all requests are successfully cancelled * - AIO_NOTCANCELED - at least one request is not cancelled * - AIO_ALLDONE - all requests are completed before this call * - -1 - error occurred .. rubric:: Returns: Status code .. index:: pair: function; rpc_aio_fsync .. _doxid-group__te__lib__rpc__aio_1ga999dbd7210181649433fc95fac08fa92: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_aio_fsync(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_fcntl_flags` op, rpc_aiocb_p cb) Do a sync on all outstanding asynchronous I/O operations associated with cb->aio_fildes. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - op - operation (RPC_O_SYNC or RPC_O_DSYNC) * - cb - control block with file descriptor and notification mode description .. rubric:: Returns: 0 (success) or -1 (failure) .. index:: pair: function; rpc_aio_suspend .. _doxid-group__te__lib__rpc__aio_1ga79cf63a2db5aec73611634305508e68f: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_aio_suspend(:ref:`rcf_rpc_server`* rpcs, const rpc_aiocb_p* cblist, int n, const struct timespec* timeout) Suspend the calling process until at least one of the asynchronous I/O requests in the list cblist of length n have completed, a signal is delivered, or timeout is not NULL and the time interval it indicates has passed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - cblist - list of control blocks corresponding to AIO requests * - n - number of elements in cblist * - timeout - timeout of NULL .. rubric:: Returns: 0 (success) or -1 (failure) .. index:: pair: function; rpc_lio_listio .. _doxid-group__te__lib__rpc__aio_1gad7a595e745a83e706053171762282e72: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_lio_listio(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_lio_mode` mode, const rpc_aiocb_p* cblist, int nent, const :ref:`tarpc_sigevent`* sigevent) Initiate a list of I/O requests with a single function call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - mode - if RPC_LIO_WAIT, return after completion of all requests; if RPC_LIO_NOWAIT, requrn after requests queueing * - cblist - list of control blocks corresponding to AIO requests * - nent - number of elements in cblist * - sigevent - notification mode description .. rubric:: Returns: 0 (success) or -1 (failure) Macros ------ .. index:: pair: define; CLEANUP_RPC_DELETE_AIOCB .. _doxid-group__te__lib__rpc__aio_1ga86c6f13d65002ca144897a957997c114: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define CLEANUP_RPC_DELETE_AIOCB(_rpcs, _cb) Delete AIO control block in cleanup part of the test. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - _rpcs - RPC server handle * - _cb - AIO control block