:orphan: .. index:: pair: group; DUT serial console access .. _doxid-group__tapi__conf__serial: DUT serial console access ========================= .. toctree:: :hidden: struct_tapi_serial.rst Overview ~~~~~~~~ Definition of API for communicating with DUT via serial console. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef struct :ref:`tapi_serial` :ref:`tapi_serial`; typedef :ref:`tapi_serial`* :ref:`tapi_serial_handle`; // structs struct :ref:`tapi_serial`; // global functions :ref:`te_errno` :ref:`tapi_serial_open_rpcs`(:ref:`rcf_rpc_server`* rpcs, const char* console_name, :ref:`tapi_serial_handle`* p_handle); :ref:`te_errno` :ref:`tapi_serial_close`(:ref:`tapi_serial_handle` handle); :ref:`te_errno` :ref:`tapi_serial_force_rw`(:ref:`tapi_serial_handle` handle); :ref:`te_errno` :ref:`tapi_serial_spy`(:ref:`tapi_serial_handle` handle); :ref:`te_errno` :ref:`tapi_serial_send_str`(:ref:`tapi_serial_handle` handle, const char* fmt, ...); :ref:`te_errno` :ref:`te_errno` :ref:`tapi_serial_send_cmd`(:ref:`tapi_serial_handle` handle, const char* fmt, ...); :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`tapi_serial_send_enter`(:ref:`tapi_serial_handle` handle); :ref:`te_errno` :ref:`tapi_serial_send_ctrl_c`(:ref:`tapi_serial_handle` handle); :ref:`te_errno` :ref:`tapi_serial_flush`(:ref:`tapi_serial_handle` handle, size_t amount); :ref:`te_errno` :ref:`tapi_serial_read`(:ref:`tapi_serial_handle` handle, char* buffer, size_t* buffer_len, int timeout_ms); :ref:`te_errno` :ref:`tapi_serial_check_pattern`(:ref:`tapi_serial_handle` handle, int* offset, const char* fmt, ...); :ref:`te_errno` :ref:`te_errno` :ref:`tapi_serial_wait_pattern`(:ref:`tapi_serial_handle` handle, int* offset, int timeout_ms, const char* fmt, ...); // macros #define :ref:`TAPI_SERIAL_DEFAULT_USER` .. _details-group__tapi__conf__serial: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Definition of API for communicating with DUT via serial console. Copyright (C) 2018-2022 OKTET Labs Ltd. All rights reserved. Typedefs -------- .. index:: pair: typedef; tapi_serial .. _doxid-group__tapi__conf__serial_1ga0718a89103e6206dec3637233599488e: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_serial` tapi_serial Session data. It's assumed that the structure may contain TA name, RPC server handle, file descriptor of the session. .. index:: pair: typedef; tapi_serial_handle .. _doxid-group__tapi__conf__serial_1ga30657b7d278e99274527ad6c46797c63: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef :ref:`tapi_serial`* tapi_serial_handle Session handle Global Functions ---------------- .. index:: pair: function; tapi_serial_open_rpcs .. _doxid-group__tapi__conf__serial_1gafd1d63e04a98b75406b0d25f05a42b24: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_serial_open_rpcs(:ref:`rcf_rpc_server`* rpcs, const char* console_name, :ref:`tapi_serial_handle`* p_handle) Open new serial console session using existing RPC server on the Test Agent that serves DUT console. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - console_name - Console name in Configurator tree * - p_handle - New session handle location .. rubric:: Returns: Status code. .. index:: pair: function; tapi_serial_close .. _doxid-group__tapi__conf__serial_1ga1d2f5549e4cd222ab753fe8bb77f76ac: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_serial_close(:ref:`tapi_serial_handle` handle) Close serial console session. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - Session handle .. rubric:: Returns: Status code. .. index:: pair: function; tapi_serial_force_rw .. _doxid-group__tapi__conf__serial_1ga025fea92ebff5ff33ebf5a364e7e6452: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_serial_force_rw(:ref:`tapi_serial_handle` handle) Force rw access to the console. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - Session handle .. rubric:: Returns: Status code. .. index:: pair: function; tapi_serial_spy .. _doxid-group__tapi__conf__serial_1gabd5b6dbc77bdd6e6bfdefc7c43d482cf: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_serial_spy(:ref:`tapi_serial_handle` handle) Disable rw access to the console. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - Session handle .. rubric:: Returns: Status code. .. index:: pair: function; tapi_serial_send_str .. _doxid-group__tapi__conf__serial_1ga471d76964f712bd6d15612d5756159b9: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_serial_send_str(:ref:`tapi_serial_handle` handle, const char* fmt, ...) Write string to the console (without LF at the end). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - Session handle * - fmt - printf-like format for the string .. rubric:: Returns: Status code. .. index:: pair: function; tapi_serial_send_cmd .. _doxid-group__tapi__conf__serial_1ga6e0d2745e11db2979de03648710d7f74: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` tapi_serial_send_cmd(:ref:`tapi_serial_handle` handle, const char* fmt, ...) Send command and "Enter" (LF) to the console. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - Session handle * - fmt - printf-like format for the command .. rubric:: Returns: Status code. .. index:: pair: function; tapi_serial_send_enter .. _doxid-group__tapi__conf__serial_1ga0f5261786af51064c9d665370e4eb077: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` tapi_serial_send_enter(:ref:`tapi_serial_handle` handle) Send "Enter" (LF) to the console. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - Session handle .. rubric:: Returns: Status code. .. index:: pair: function; tapi_serial_send_ctrl_c .. _doxid-group__tapi__conf__serial_1gaef7389ef9f492c37aa69429cd1f2accf: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_serial_send_ctrl_c(:ref:`tapi_serial_handle` handle) Send "Ctrl+C" (break) to the console. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - Session handle .. rubric:: Returns: Status code. .. index:: pair: function; tapi_serial_flush .. _doxid-group__tapi__conf__serial_1gaefcd4e457235310583536eece324544b: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_serial_flush(:ref:`tapi_serial_handle` handle, size_t amount) Flush console session input buffer on the Test Agent (data is dropped). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - Session handle * - amount - Amount of data to drop or ``0`` to drop all .. rubric:: Returns: Status code. .. index:: pair: function; tapi_serial_read .. _doxid-group__tapi__conf__serial_1ga99deb760374bf01543771df3fe221abe: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_serial_read(:ref:`tapi_serial_handle` handle, char* buffer, size_t* buffer_len, int timeout_ms) Read data from the console. Note, that ``'\0'`` is not put to the buffer after data. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - Session handle * - buffer - Input buffer * - buffer_len - On input: buffer length; on output: length of data written * - timeout_ms - Timeout of the operation in milliseconds, ``-1`` to block until data are received or error occurs .. rubric:: Returns: Status code. .. index:: pair: function; tapi_serial_check_pattern .. _doxid-group__tapi__conf__serial_1ga7d377fb57d3b797dc6bb619854da864a: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_serial_check_pattern(:ref:`tapi_serial_handle` handle, int* offset, const char* fmt, ...) Check that data matching specified pattern (regular expression) are located in console session input buffer on the Test Agent. The data may be read after that by :ref:`tapi_serial_read() ` .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - Session handle * - offset - If not ``NULL``, is filled by offset of the first match * - fmt - printf-like format for the pattern .. rubric:: Returns: Status code. .. index:: pair: function; tapi_serial_wait_pattern .. _doxid-group__tapi__conf__serial_1ga21d1599506634fbc05df2f4fd4b466cc: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` tapi_serial_wait_pattern(:ref:`tapi_serial_handle` handle, int* offset, int timeout_ms, const char* fmt, ...) Wait until data matching specified pattern (regular expression) appear in console session input buffer on the Test Agent. The data may be read after that by :ref:`tapi_serial_read() ` .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - Session handle * - offset - If not ``NULL``, is filled by offset of the first match * - timeout_ms - Timeout of the operation in milliseconds * - fmt - printf-like format for the pattern .. rubric:: Returns: Status code. Macros ------ .. index:: pair: define; TAPI_SERIAL_DEFAULT_USER .. _doxid-group__tapi__conf__serial_1gac3167187d339e086e5e80c546e4e177a: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TAPI_SERIAL_DEFAULT_USER Default console user