:orphan: .. index:: pair: group; Macros for socket API remote calls .. _doxid-group__te__lib__rpcsock__macros: Macros for socket API remote calls ================================== .. toctree:: :hidden: Overview ~~~~~~~~ .. ref-code-block:: cpp :class: doxyrest-overview-code-block // macros #define :ref:`CHECK_RPC_ERRNO`(rpcs_, exp_errno_, err_msg_, args_...) #define :ref:`CHECK_RPC_ERRNO_NOEXIT`(rpcs_, exp_errno_, failed_, err_msg_, args_...) #define :ref:`CLEANUP_RPC_CLOSE`(rpcs_, sockd_) #define :ref:`CLEANUP_RPC_FTP_CLOSE`(rpcs_, sockd_) #define :ref:`CLEANUP_RPC_SIGACTION`(rpcs_, signum_, action_, old_handler_) #define :ref:`MACRO_ERROR_EXIT` #define :ref:`MACRO_TEST_ERROR` #define :ref:`RPC_CHECK_READABILITY`(rpcs_, sockd_, should_be_readable_) #define :ref:`RPC_CHECK_WRITABILITY`(rpcs_, sockd_, should_be_writable_) #define :ref:`RPC_CLOSE`(rpcs_, fd_) #define :ref:`RPC_FUNC_WITH_EXACT_RETVAL`(rpcs_, retval_, expect_, func_, args_...) #define :ref:`RPC_FUNC_WITH_PTR_RETVAL`(rpcs_, retval_, func_, args_...) #define :ref:`RPC_FUNC_WITH_PTR_RETVAL0`(rpcs_, retval_, func_) #define :ref:`RPC_FUNC_ZERO_RETVAL`(rpcs_, func_, args_...) #define :ref:`RPC_GET_READABILITY`(answer_, rpcs_, sockd_, timeout_) #define :ref:`RPC_GET_WRITABILITY`(answer_, rpcs_, sockd_, timeout_) #define :ref:`RPC_SEND`(sent_, rpcs_, sockd_, buf_, len_, flags_) #define :ref:`RPC_SENDTO`(sent_, rpcs_, sockd_, buf_, len_, flags_, addr_) #define :ref:`RPC_SOCKET_TO_FILE`(recv_, rpcs_, sockd_, file_name_, timeout_) #define :ref:`RPC_WRITE`(sent_, rpcs_, sockd_, buf_, len_) .. _details-group__te__lib__rpcsock__macros: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Macros ------ .. index:: pair: define; CHECK_RPC_ERRNO .. _doxid-group__te__lib__rpcsock__macros_1ga67b7affb29c430b8b164314e00210f8e: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define CHECK_RPC_ERRNO(rpcs_, exp_errno_, err_msg_, args_...) Check current value of errno on a particular RPC server against some expected value In case of failure it jumps to "cleanup" label .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs\_ - RPC server handle * - exp_errno\_ - Expected value of errno on the server * - err_msg\_ - Error message that should be used in case of failure * - args\_ - Arguments of err_msg\_ .. index:: pair: define; CHECK_RPC_ERRNO_NOEXIT .. _doxid-group__te__lib__rpcsock__macros_1gaa43954c74267daa4c46c1c727e9e8d17: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define CHECK_RPC_ERRNO_NOEXIT(rpcs_, exp_errno_, failed_, err_msg_, args_...) Check current value of errno on a particular RPC server against some expected value In case of failure it set failed\_ to ``true``, otherwise to ``false`` .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs\_ - RPC server handle * - exp_errno\_ - Expected value of errno on the server * - failed\_ - Variable to store result of checking (``true`` or ``false``) * - err_msg\_ - Error message that should be used in case of failure * - args\_ - Arguments of err_msg\_ .. index:: pair: define; CLEANUP_RPC_CLOSE .. _doxid-group__te__lib__rpcsock__macros_1ga943aa56253b50d1fedebbd800d624e93: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define CLEANUP_RPC_CLOSE(rpcs_, sockd_) Close a socket in cleanup part of the test If **cleanup_fd_leak_check** test behaviour is enabled, this macro will check closed FD with :ref:`rpc_fstat() `. If **cleanup_fd_close_enforce_libc** test behaviour is enabled, this macro will call libc version of :ref:`rpc_close() `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs\_ - RPC server handle * - sockd\_ - Socket descriptor to be closed .. index:: pair: define; CLEANUP_RPC_FTP_CLOSE .. _doxid-group__te__lib__rpcsock__macros_1ga22f8c4816e0727d5dc83ce8f0a4905c1: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define CLEANUP_RPC_FTP_CLOSE(rpcs_, sockd_) Close a FTP control socket in cleanup part of the test .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs\_ - RPC server handle * - sockd\_ - Socket descriptor to be closed .. index:: pair: define; CLEANUP_RPC_SIGACTION .. _doxid-group__te__lib__rpcsock__macros_1ga6d994db840fd5b3b1ffef1799505c1c3: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define CLEANUP_RPC_SIGACTION(rpcs_, signum_, action_, old_handler_) Restore signal action set before the test .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs\_ - RPC server handle * - signum\_ - Signal number * - action\_ - Signal action to restore * - old_handler\_ - Expected value of rpc_signal function, NULL if we do not want to check return value .. index:: pair: define; MACRO_ERROR_EXIT .. _doxid-group__te__lib__rpcsock__macros_1ga5db8087fef2629857b36874d2dad6ac1: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define MACRO_ERROR_EXIT Cleanup on test exit .. index:: pair: define; MACRO_TEST_ERROR .. _doxid-group__te__lib__rpcsock__macros_1ga8d8b27c4027800d9cc3b22e249b9962a: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define MACRO_TEST_ERROR exit code on test failure .. index:: pair: define; RPC_CHECK_READABILITY .. _doxid-group__te__lib__rpcsock__macros_1gacbefe7618fa1b008991d9fff6fb6f8df: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_CHECK_READABILITY(rpcs_, sockd_, should_be_readable_) Check readability of a particular socket. In case of failure it calls TEST_FAIL macro, otherwise it gets back just after the checking .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs\_ - RPC server handle * - sockd\_ - Socket to be checked on readabilty * - should_be_readable\_ - Whether it should be readable or not (it should be of type ``bool``) .. index:: pair: define; RPC_CHECK_WRITABILITY .. _doxid-group__te__lib__rpcsock__macros_1gaa81ae1573c5f38e6787067a8d3ac12cc: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_CHECK_WRITABILITY(rpcs_, sockd_, should_be_writable_) Check writability of a particular socket. In case of failure it calls TEST_FAIL macro, otherwise it gets back just after the checking .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs\_ - RPC server handle * - sockd\_ - Socket to be checked on writabilty * - should_be_writable\_ - Whether it should be writable or not (it should be of type ``bool``) .. index:: pair: define; RPC_CLOSE .. _doxid-group__te__lib__rpcsock__macros_1ga6aad18abf6a105344f8f9f58a49ed129: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_CLOSE(rpcs_, fd_) Close a file descriptor on a particular RPC server. ``fd_`` parameter is updated to -1 after successfull completion of the macro. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs\_ - RPC server handle * - fd\_ - file descriptor .. index:: pair: define; RPC_FUNC_WITH_EXACT_RETVAL .. _doxid-group__te__lib__rpcsock__macros_1gac136cf09f28ab4efa7d9a829e21014c4: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_FUNC_WITH_EXACT_RETVAL(rpcs_, retval_, expect_, func_, args_...) All the macros defined in the file expect user having in the calling context the following: * ``result`` variable of type ``int``; * ``cleanup`` label, which is responsible for freeing resources allocated or occuped in the test. Macro to check function 'func\_' on returning exactly specified value. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs\_ - RPC server * - retval\_ - return value (OUT) * - expect\_ - expected return value * - func\_ - RPC function name to call (without rpc\_ prefix) * - args\_ - a set of arguments pased to the function .. index:: pair: define; RPC_FUNC_WITH_PTR_RETVAL .. _doxid-group__te__lib__rpcsock__macros_1gaf3977b701131291e2ee29774241fb39e: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_FUNC_WITH_PTR_RETVAL(rpcs_, retval_, func_, args_...) REMOVE IT. Macro to check function 'func\_' on returning non NULL value .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs\_ - RPC server * - retval\_ - return value (OUT) * - func\_ - RPC function name to call (without rpc\_ prefix) * - args\_ - a set of arguments pased to the function .. index:: pair: define; RPC_FUNC_WITH_PTR_RETVAL0 .. _doxid-group__te__lib__rpcsock__macros_1ga6005dd0e54d65cce9ba02952b04c4c4b: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_FUNC_WITH_PTR_RETVAL0(rpcs_, retval_, func_) REMOVE IT. Macro to check function 'func\_' on returning non NULL value .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs\_ - RPC server * - retval\_ - return value (OUT) * - func\_ - RPC function name to call (without rpc\_ prefix) .. index:: pair: define; RPC_FUNC_ZERO_RETVAL .. _doxid-group__te__lib__rpcsock__macros_1ga221dacd3ed4a371c1f3cfb5aab56293d: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_FUNC_ZERO_RETVAL(rpcs_, func_, args_...) REMOVE IT. Macro to check function 'func\_' on returning zero value .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs\_ - RPC server * - func\_ - RPC function name to call (without rpc\_ prefix) * - args\_ - a set of arguments pased to the function .. index:: pair: define; RPC_GET_READABILITY .. _doxid-group__te__lib__rpcsock__macros_1gac9fbc3a982d542a160c1a75fc92769c0: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_GET_READABILITY(answer_, rpcs_, sockd_, timeout_) Get readability of a particular socket. In case of failure it calls TEST_FAIL macro, otherwise it gets back just after the checking .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - answer\_ - variable where stored is readable or not (it should be of type ``bool``) * - rpcs\_ - RPC server handle * - sockd\_ - Socket to be checked on readabilty * - timeout\_ - timeout in milliseconds .. index:: pair: define; RPC_GET_WRITABILITY .. _doxid-group__te__lib__rpcsock__macros_1gab8d8f20ccd5674b4de3fc3980f3966c1: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_GET_WRITABILITY(answer_, rpcs_, sockd_, timeout_) Get writability of a particular socket. In case of failure it calls TEST_FAIL macro, otherwise it gets back just after the checking .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - answer\_ - variable where stored is readable or not (it should be of type ``bool``) * - rpcs\_ - RPC server handle * - sockd\_ - Socket to be checked on writability * - timeout\_ - timeout in milliseconds .. index:: pair: define; RPC_SEND .. _doxid-group__te__lib__rpcsock__macros_1ga50edd19c922c5212133f7f16b09c950a: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_SEND(sent_, rpcs_, sockd_, buf_, len_, flags_) Call send() function on RPC server and check return value. In case of failure it jumps to "cleanup" label .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - sent\_ - Number of sent bytes (OUT) * - rpcs\_ - RPC server handle * - sockd\_ - Socket descriptor * - buf\_ - Buffer pointer * - len\_ - Length of the data to be sent * - flags\_ - Operation flags .. index:: pair: define; RPC_SENDTO .. _doxid-group__te__lib__rpcsock__macros_1ga4c23c1318194d4b4dae98187141fd2fc: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_SENDTO(sent_, rpcs_, sockd_, buf_, len_, flags_, addr_) Call sendto() function on RPC server and check return value. In case of failure it jumps to "cleanup" label .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - sent\_ - Number of sent bytes (OUT) * - rpcs\_ - RPC server handle * - sockd\_ - Socket descriptor * - buf\_ - Buffer pointer * - len\_ - Length of the data to be sent * - flags\_ - Operation flags * - addr\_ - Destination address .. index:: pair: define; RPC_SOCKET_TO_FILE .. _doxid-group__te__lib__rpcsock__macros_1gabdfcb0c40cdec7e38917496d7d6d6ec6: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_SOCKET_TO_FILE(recv_, rpcs_, sockd_, file_name_, timeout_) Call socket_to_file function on RPC server and check return value on errors. In case of failure it jumps to "cleanup" label .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - recv\_ - Number of received bytes (OUT) * - rpcs\_ - RPC server handle * - sockd\_ - Socket descriptor * - file_name\_ - File name where write received data * - timeout\_ - timeout in seconds .. index:: pair: define; RPC_WRITE .. _doxid-group__te__lib__rpcsock__macros_1ga0b811f1536ab050e4f6312dfc33a7ac6: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_WRITE(sent_, rpcs_, sockd_, buf_, len_) Call write() function on RPC server and check return value. In case of failure it jumps to "cleanup" label .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - sent\_ - Number of sent bytes (OUT) * - rpcs\_ - RPC server handle * - sockd\_ - Socket descriptor * - buf\_ - Buffer pointer * - len\_ - Length of the data to be sent