:orphan: .. index:: pair: group; Engine and TA files management .. _doxid-group__ts__tapi__file: Engine and TA files management ============================== .. toctree:: :hidden: Overview ~~~~~~~~ Functions for convinient work with the files on the engine and TA. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // global functions char* :ref:`tapi_file_make_name`(:ref:`te_string`* dest); char* :ref:`tapi_file_make_custom_pathname`(:ref:`te_string`* dest, const char* dirname, const char* suffix); char* :ref:`tapi_file_make_pathname`(:ref:`te_string`* dest); char* :ref:`tapi_file_join_pathname`(:ref:`te_string`* dest, const char* dirname, const char* path, const char* suffix); char* :ref:`tapi_file_resolve_ta_pathname`(:ref:`te_string`* dest, const char* ta, :ref:`tapi_cfg_base_ta_dir` base_dir, const char* relname); char* :ref:`tapi_file_generate_name`(void); char* :ref:`tapi_file_generate_pathname`(void); char* :ref:`tapi_file_create_pattern`(size_t len, char c); char* :ref:`tapi_file_create`(size_t len, char* buf, bool random); :ref:`te_errno` :ref:`tapi_file_create_ta`(const char* ta, const char* filename, const char* fmt, ...); :ref:`te_errno` :ref:`te_errno` :ref:`tapi_file_create_ta_r`(const char* ta, const char* lfile, const char* rfile, const char* fmt, ...); :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`tapi_file_read_ta`(const char* ta, const char* filename, char** pbuf); :ref:`te_errno` :ref:`tapi_file_append_ta`(const char* ta, const char* filename, const char* fmt, ...); :ref:`te_errno` :ref:`te_errno` :ref:`tapi_file_copy_ta`(const char* ta_src, const char* src, const char* ta_dst, const char* dst); :ref:`te_errno` :ref:`tapi_file_expand_kvpairs`(const char* ta, const char* template, const char* posargs[TE_EXPAND_MAX_POS_ARGS], const te_kvpair_h* kvpairs, const char* filename_fmt, ...); :ref:`te_errno` :ref:`tapi_file_ta_unlink_fmt`(const char* ta, const char* path_fmt, ...); .. _details-group__ts__tapi__file: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Functions for convinient work with the files on the engine and TA. Copyright (C) 2004-2022 OKTET Labs Ltd. All rights reserved. Global Functions ---------------- .. index:: pair: function; tapi_file_make_name .. _doxid-group__ts__tapi__file_1ga0d396944e07839d53c9da46be4bc89d3: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* tapi_file_make_name(:ref:`te_string`* dest) Generate a unique basename for a file. If ``dest`` is ``NULL``, a fresh string is allocated and returned. The name is appended to the string contents. That way it is easier to construct derived pathnames and similar stuff. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dest - The string to hold the name or ``NULL``. .. rubric:: Returns: the pointer to the contents of ``dest`` or a heap-allocated buffer .. index:: pair: function; tapi_file_make_custom_pathname .. _doxid-group__ts__tapi__file_1ga76bb3454f4bbdb87f64ce5dce30cc3ed: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* tapi_file_make_custom_pathname(:ref:`te_string`* dest, const char* dirname, const char* suffix) Generate a unique pathname for a file on the Engine side. If ``dest`` is ``NULL``, a fresh string is allocated and returned. The name is appended to the string contents. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dest - The string to hold the name or ``NULL``. * - dirname - Directory component (may be ``NULL``, in which case a relative name is generated) * - suffix - A custom suffix to add to a generated pathname (may be ``NULL``). .. rubric:: Returns: the pointer to the contents of ``dest`` or a heap-allocated buffer .. index:: pair: function; tapi_file_make_pathname .. _doxid-group__ts__tapi__file_1ga1347e957488cdcd186eff5ca11fca3c8: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* tapi_file_make_pathname(:ref:`te_string`* dest) Generate a unique pathname for a file on the Engine side. If ``dest`` is ``NULL``, a fresh string is allocated and returned. The name is appended to the string contents. ``TE_TMP`` env variable must be set. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dest - The string to hold the name or ``NULL``. .. rubric:: Returns: the pointer to the contents of ``dest`` or a heap-allocated buffer .. index:: pair: function; tapi_file_join_pathname .. _doxid-group__ts__tapi__file_1gaf6283469a925e41b0770ba13d8860a74: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* tapi_file_join_pathname(:ref:`te_string`* dest, const char* dirname, const char* path, const char* suffix) Construct a pathname from parts. If ``path`` is not ``NULL``, uses :ref:`te_file_join_filename() ` to construct a complete filename. Otherwise, it behaves like :ref:`tapi_file_make_custom_pathname() `, generating a unique filename under ``dirname``. If ``path`` is not ``NULL``, it may be either a relative or an absolute pathname. In the latter case ``dirname`` is ignored. If ``dest`` is ``NULL``, a fresh string is allocated and returned. The name is appended to the string contents. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dest - The string to hold the name or ``NULL``. * - dirname - Directory name (may be ``NULL``) * - path - Pathname (absolute, relative or ``NULL``) * - suffix - A suffix to append to a pathname (may be ``NULL``). .. rubric:: Returns: the pointer to the contents of ``dest`` or a heap-allocated buffer .. index:: pair: function; tapi_file_resolve_ta_pathname .. _doxid-group__ts__tapi__file_1gadb0436913c946bb69ca3167203cc2a79: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* tapi_file_resolve_ta_pathname(:ref:`te_string`* dest, const char* ta, :ref:`tapi_cfg_base_ta_dir` base_dir, const char* relname) Resolve a pathname relative to one of the agent directories. :ref:`te_file_join_filename() ` is used for resolving, so pathname components need not exist and symlinks are not resolved. If ``dest`` is ``NULL``, a fresh string is allocated and returned. The name is appended to the string contents. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dest - The string to hold the name or ``NULL``. * - ta - Agent name. * - base_dir - Agent base directory. * - relname - Relative filename. .. rubric:: Returns: the pointer to the contents of ``dest`` or a heap-allocated buffer .. rubric:: See also: :ref:`tapi_cfg_base_get_ta_dir() ` .. index:: pair: function; tapi_file_generate_name .. _doxid-group__ts__tapi__file_1ga698e2477e79c32d636e8743009421458: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* tapi_file_generate_name(void) Generate unique basename for file. Deprecated The function returns a pointer to a static buffer, so it is inherently unreliable. Use :ref:`tapi_file_make_name() ` instead. .. rubric:: Returns: generated name .. index:: pair: function; tapi_file_generate_pathname .. _doxid-group__ts__tapi__file_1ga271f771e013ab5f90d46ecf6a0c92d35: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* tapi_file_generate_pathname(void) Generate unique pathname for file on the engine. Deprecated The function returns a pointer to a static buffer, so it is inherently unreliable. Use :ref:`tapi_file_make_pathname() ` instead. .. rubric:: Returns: generated name .. index:: pair: function; tapi_file_create_pattern .. _doxid-group__ts__tapi__file_1ga8e2979f5506b9aa2c15faf00ae9e8047: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* tapi_file_create_pattern(size_t len, char c) Create file in the TE temporary directory. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - len - file length * - c - file content pattern .. rubric:: Returns: name (memory is allocated) of the file or ``NULL`` in the case of failure .. index:: pair: function; tapi_file_create .. _doxid-group__ts__tapi__file_1ga64f476fcf6865f0e8c423aba60f7b390: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* tapi_file_create(size_t len, char* buf, bool random) Create file in the TE temporary directory with the specified content. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - len - file length * - buf - buffer with the file content * - random - if ``true``, fill buffer with random data .. rubric:: Returns: name (memory is allocated) of the file or ``NULL`` in the case of failure .. index:: pair: function; tapi_file_create_ta .. _doxid-group__ts__tapi__file_1gabddb7868aa8fff6653b6822d9d76ab0d: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_file_create_ta(const char* ta, const char* filename, const char* fmt, ...) Create file in the specified directory on the TA. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ta - Test Agent name * - filename - pathname of the file * - fmt - format string for the file content .. rubric:: Returns: Status code .. index:: pair: function; tapi_file_create_ta_r .. _doxid-group__ts__tapi__file_1gada1845103b28dfe6cd9835d8d0673b2e: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` tapi_file_create_ta_r(const char* ta, const char* lfile, const char* rfile, const char* fmt, ...) Create local file, copy it to TA, remove local file. The function does the same thing as :ref:`tapi_file_create_ta() `, but it creates local file with specified name instead of using automatically generated name. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ta - Test Agent name * - lfile - pathname of the local file * - rfile - pathname of the file on TA * - fmt - format string for the file content .. rubric:: Returns: Status code .. index:: pair: function; tapi_file_read_ta .. _doxid-group__ts__tapi__file_1ga9ca3619f8c764204c0923196180de9cb: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` tapi_file_read_ta(const char* ta, const char* filename, char** pbuf) Read file content from the TA. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ta - Test Agent name * - filename - pathname of the file * - pbuf - location for buffer allocated by the routine .. rubric:: Returns: Status code .. index:: pair: function; tapi_file_append_ta .. _doxid-group__ts__tapi__file_1gaf3b2168873f67211d3dd527bb3a1549a: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_file_append_ta(const char* ta, const char* filename, const char* fmt, ...) Like :ref:`tapi_file_create_ta() `, but it appends data to the file. If the file does not exist, it is created. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ta - Test Agent name * - filename - pathname of the file * - fmt - format string for the file content .. rubric:: Returns: Status code .. index:: pair: function; tapi_file_copy_ta .. _doxid-group__ts__tapi__file_1ga78f70d903a9bb82ed1da5943a26806e1: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` tapi_file_copy_ta(const char* ta_src, const char* src, const char* ta_dst, const char* dst) Copy file from the one TA to other or between the Engine and an agent. Todo Currently the function does not support copying files on the Engine locally, so both ``ta_src`` and ``ta_dst`` cannot be ``NULL`` at the same time. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ta_src - source Test Agent (``NULL`` if the source is the Engine) * - src - source file name * - ta_dst - destination Test Agent (``NULL`` if the source is the Engine) * - dst - destination file name .. rubric:: Returns: Status code .. index:: pair: function; tapi_file_expand_kvpairs .. _doxid-group__ts__tapi__file_1ga7422c9f54f5eedb06f0df3d1794f5f4e: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_file_expand_kvpairs(const char* ta, const char* template, const char* posargs[TE_EXPAND_MAX_POS_ARGS], const te_kvpair_h* kvpairs, const char* filename_fmt, ...) Generate a file by expanding references in ``template``. The expansion is done with :ref:`te_string_expand_kvpairs() ` using ``posargs`` for positional argument references and ``kvpairs`` for named variable references. If ``ta`` is not ``NULL``, the file is copied to a given agent; otherwise it is created locally on the Engine host. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ta - Test Agent name (may be ``NULL``, then Engine is assumed) * - template - file content template * - posargs - array of positional arguments (may be ``NULL``) * - kvpairs - kvpairs of named variables * - filename_fmt - format string of a generated pathname * - ... - arguments .. rubric:: Returns: status code .. index:: pair: function; tapi_file_ta_unlink_fmt .. _doxid-group__ts__tapi__file_1ga8c5a4bfbd53ee381a0021b3017fdf93a: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_file_ta_unlink_fmt(const char* ta, const char* path_fmt, ...) Unlink file on the TA. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ta - Test Agent name * - path_fmt - Format string to make path to be deleted .. rubric:: Returns: Status code.