:orphan: .. index:: pair: group; Dynamic strings .. _doxid-group__te__tools__te__string: Dynamic strings =============== .. toctree:: :hidden: group_te_tools_te_substring.rst enum_te_string_uri_escape_mode.rst struct_te_string.rst Overview ~~~~~~~~ Helper functions to work with strings. :ref:`More...` | :ref:`Substring manipulation API` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef void() :target:`te_string_free_func`(struct te_string *str); typedef struct :ref:`te_string` :ref:`te_string`; typedef enum :ref:`te_string_uri_escape_mode` :ref:`te_string_uri_escape_mode`; typedef void :ref:`te_string_generic_escape_fn`( te_string *str, char c ); typedef :ref:`te_errno` :ref:`te_string_line_handler_fn`( char *line, void *user ); // enums enum :ref:`te_string_uri_escape_mode`; // structs struct :ref:`te_string`; // global variables te_string_free_func :target:`te_string_free_heap`; // global functions static void :ref:`te_string_reset`(:ref:`te_string`* str); static void :ref:`te_string_move`(char** dest, :ref:`te_string`* src); :ref:`te_errno` :ref:`te_string_reserve`(:ref:`te_string`* str, size_t size); static const char* :ref:`te_string_value`(const :ref:`te_string`* str); :ref:`te_errno` :ref:`te_string_append`(:ref:`te_string`* str, const char* fmt, ...); :ref:`te_errno` :ref:`te_string_append_va`(:ref:`te_string`* str, const char* fmt, va_list ap); :ref:`te_errno` :ref:`te_string_append_chk`(:ref:`te_string`* str, const char* fmt, ...); :ref:`te_errno` :ref:`te_string_append_va_chk`(:ref:`te_string`* str, const char* fmt, va_list ap); :ref:`te_errno` :ref:`te_string_append_buf`(:ref:`te_string`* str, const char* buf, size_t len); :ref:`te_errno` :ref:`te_string_append_shell_args_as_is`(:ref:`te_string`* str, ...); :ref:`te_errno` :ref:`te_string_append_shell_arg_as_is`(:ref:`te_string`* str, const char* arg); void :ref:`te_string_append_escape_uri`(:ref:`te_string`* str, :ref:`te_string_uri_escape_mode` mode, const char* arg); :ref:`te_errno` :ref:`te_string_join_vec`(:ref:`te_string`* str, const :ref:`te_vec`* strvec, const char* sep); void :ref:`te_string_join_uri_path`(:ref:`te_string`* str, const :ref:`te_vec`* strvec); void :ref:`te_string_build_uri`(:ref:`te_string`* str, const char* scheme, const char* userinfo, const char* host, uint16_t port, const char* path, const char* query, const char* frag); void :ref:`te_string_generic_escape`(:ref:`te_string`* str, const char* input, const char* esctable[static UINT8_MAX+1], :ref:`te_string_generic_escape_fn`* ctrl_esc, :ref:`te_string_generic_escape_fn`* nonascii_esc); void :ref:`te_string_encode_base64`(:ref:`te_string`* str, size_t len, const uint8_t bytes[len], bool url_safe); :ref:`te_errno` :ref:`te_string_decode_base64`(:ref:`te_string`* str, const char* base64str); char* :ref:`te_string_fmt_va`(const char* fmt, va_list ap); char* :ref:`te_string_fmt`(const char* fmt, ...); char void :ref:`te_string_cut`(:ref:`te_string`* str, size_t len); void :ref:`te_string_cut_beginning`(:ref:`te_string`* str, size_t len); void :ref:`te_string_chop`(:ref:`te_string`* str, const char* trail); void :ref:`te_string_add_centered`(:ref:`te_string`* str, const char* src, size_t padlen, char padchar); :ref:`te_errno` :ref:`te_string_process_lines`(:ref:`te_string`* buffer, bool complete_lines, :ref:`te_string_line_handler_fn`* callback, void* user_data); void :ref:`te_string_free`(:ref:`te_string`* str); char* :ref:`raw2string`(const uint8_t* data, size_t size); :ref:`te_errno` :ref:`te_string_replace_all_substrings`(:ref:`te_string`* str, const char* new, const char* old); :ref:`te_errno` :ref:`te_string_replace_substring`(:ref:`te_string`* str, const char* new, const char* old); // macros #define :ref:`TE_STRING_BUF_INIT`(buf_) #define :ref:`TE_STRING_EXT_BUF_INIT`(buf_, size_) #define :ref:`TE_STRING_GROW_FACTOR` #define :ref:`TE_STRING_GROW_FACTOR_EXP_LIMIT` #define :ref:`TE_STRING_INIT` #define :ref:`TE_STRING_INIT_LEN` #define :ref:`TE_STRING_INIT_RESERVE`(reserved_size_) #define :ref:`TE_STRING_INIT_RESERVE_FREE`(reserved_size_, free_func_) #define :ref:`TE_STRING_INIT_STATIC`(_size) .. _details-group__te__tools__te__string: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Helper functions to work with strings. Copyright (C) 2004-2023 OKTET Labs Ltd. All rights reserved. Typedefs -------- .. index:: pair: typedef; te_string .. _doxid-group__te__tools__te__string_1gabdb894b57ed0e094795020669fe70573: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`te_string` te_string TE string type. .. index:: pair: typedef; te_string_uri_escape_mode .. _doxid-group__te__tools__te__string_1gae2f79b3b3bfa023696893befabfe3a44: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef enum :ref:`te_string_uri_escape_mode` te_string_uri_escape_mode URI escaping modes suitable for various parts of URI. .. index:: pair: typedef; te_string_generic_escape_fn .. _doxid-group__te__tools__te__string_1ga2eac4d7e439950df2804c233ef4918c8: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef void te_string_generic_escape_fn( te_string *str, char c ) Type for character escaping functions. A function is expected to append some representation of ``c`` to ``str``. The representation is allowed to be empty, i.e. the function may swallow some input characters. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - c - input character .. index:: pair: typedef; te_string_line_handler_fn .. _doxid-group__te__tools__te__string_1gab1b3f81f1ec7ad72f86c0a12de4770f9: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef :ref:`te_errno` te_string_line_handler_fn( char *line, void *user ) Function type for handlers called by :ref:`te_string_process_lines() `. The function may freely modify ``line``, but it must treat it as a pointer to a local buffer, that is it must not try to free() or realloc() it, nor store it outside of the scope. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - line - Line buffer without a newline terminator. * - user - User data. * - TE_EOK - :ref:`te_string_process_lines() ` will stop immediately and return success to the caller. .. rubric:: Returns: Status code. Global Functions ---------------- .. index:: pair: function; te_string_reset .. _doxid-group__te__tools__te__string_1gaf964df817f428c3e08c1562c734d6e56: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void te_string_reset(:ref:`te_string`* str) Reset TE string (mark its empty). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string. .. index:: pair: function; te_string_move .. _doxid-group__te__tools__te__string_1ga707699b94ebbaee509ffe308039be849: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void te_string_move(char** dest, :ref:`te_string`* src) Safely move the string content to a pointer variable. te_strings are regularly used as temporary containers, with the resulting data being passed upstream as a plain character pointer. The function ensures that the pointer won't be freed by an accidental :ref:`te_string_free() ` etc. The function must not be used with an external-buffer te_strings it is a logic error: the function does transfer the ownership of the memory but an external-buffer :ref:`te_string ` does *not* own the memory .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dest - Location of a destination pointer * - src - Source string .. index:: pair: function; te_string_reserve .. _doxid-group__te__tools__te__string_1gad3588745e055c565818f498ffb87eb79: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_reserve(:ref:`te_string`* str, size_t size) Reserve space for at least ``size`` elements in ``str`` string (including null byte at the end). If there is a room already for the number of elements specified by ``size``, no action would be performed. The function never returns an error. Its return type is not void for legacy reasons. New code should never check the return value. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string. * - size - Number of elements to to have a room for in a string .. rubric:: Returns: 0 .. index:: pair: function; te_string_value .. _doxid-group__te__tools__te__string_1ga55421431918c8501d137d678fbcdd9a3: .. ref-code-block:: cpp :class: doxyrest-title-code-block static const char* te_string_value(const :ref:`te_string`* str) Get value of TE string. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - Pointer to TE string .. rubric:: Returns: Pointer to null-terminated sequence of characters. If ``str`` is ``NULL`` or its internal buffer is not allocated, pointer to empty string is returned. .. index:: pair: function; te_string_append .. _doxid-group__te__tools__te__string_1ga40a0d01589bad1f9d71190b0eb2649e4: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_append(:ref:`te_string`* str, const char* fmt, ...) Format arguments according to ``fmt`` and append the result to the string. The function never returns an error. Its return type is not void for legacy reasons. New code should never check the return value. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - fmt - Format string * - ... - Format string arguments .. rubric:: Returns: 0 .. index:: pair: function; te_string_append_va .. _doxid-group__te__tools__te__string_1ga83b607faa0980fa9961f1212e91b3496: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_append_va(:ref:`te_string`* str, const char* fmt, va_list ap) Format the varargs according to ``fmt`` and append the result to the string. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - fmt - Format string * - ap - List of arguments .. rubric:: Returns: 0 (see :ref:`te_string_append() ` for explanation) .. index:: pair: function; te_string_append_chk .. _doxid-group__te__tools__te__string_1ga8e3a89a8913f3503087670accb530f56: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_append_chk(:ref:`te_string`* str, const char* fmt, ...) Format arguments according to ``fmt`` and append the result to the string. This function is intended for special use cases, where a caller is ready to deal with static buffers of insufficient size in some sensible manner. Normally, :ref:`te_string_append() ` should be used instead. Other than the possible error code, the two functions are identical. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - fmt - Format string * - ... - Format string arguments * - TE_ENOBUFS - The string has an external buffer and it does not have enough space. .. rubric:: Returns: Status code .. index:: pair: function; te_string_append_va_chk .. _doxid-group__te__tools__te__string_1gafbf0a9a60827f0bfe937cd177aedb2f7: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_append_va_chk(:ref:`te_string`* str, const char* fmt, va_list ap) Format the varargs according to ``fmt`` and append the result to the string. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - fmt - Format string * - ap - List of arguments * - TE_ENOBUFS - See :ref:`te_string_append_chk() ` for explanation. .. rubric:: Returns: Status code .. index:: pair: function; te_string_append_buf .. _doxid-group__te__tools__te__string_1ga4d617ff539fc17d5ff40c49466135449: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_append_buf(:ref:`te_string`* str, const char* buf, size_t len) Append contents of a buffer to TE string. Buffer may be not null-terminated. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - buf - Buffer * - len - Number of bytes in buffer .. rubric:: Returns: 0 (see :ref:`te_string_append() ` for explanation) .. index:: pair: function; te_string_append_shell_args_as_is .. _doxid-group__te__tools__te__string_1ga2cca23e53a237377aa45aa7e3102960c: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_append_shell_args_as_is(:ref:`te_string`* str, ...) Append arguments separated by space with required shell escaping to avoid expansion and variable substitution. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - ... - String arguments terminated by ``NULL`` .. rubric:: Returns: 0 (see :ref:`te_string_append() ` for explanation) .. index:: pair: function; te_string_append_shell_arg_as_is .. _doxid-group__te__tools__te__string_1ga8899d21d1479fa9eff04346cfca2c7ec: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_append_shell_arg_as_is(:ref:`te_string`* str, const char* arg) Append a single argument with required shell escaping to avoid expansion and variable substitution. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - arg - String argument .. rubric:: Returns: 0 (see :ref:`te_string_append() ` for explanation) .. index:: pair: function; te_string_append_escape_uri .. _doxid-group__te__tools__te__string_1gae2ad1fcba5165879ceea76712e4f765c: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_string_append_escape_uri(:ref:`te_string`* str, :ref:`te_string_uri_escape_mode` mode, const char* arg) Append a part of an URI escaping all the characters that are not acceptable in given ``mode``. The unacceptable characters are percent-encoded as per RFC3986. The exact escaping rules of RFC3987 are a bit more subtle, so in theory it is possible to construct an invalid URI using this function, however, it is very unlikely for any practical usecase. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - mode - escaping mode * - arg - source value .. index:: pair: function; te_string_join_vec .. _doxid-group__te__tools__te__string_1ga5261013e4984820daee689f07e297aad: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_join_vec(:ref:`te_string`* str, const :ref:`te_vec`* strvec, const char* sep) Append the elements of ``vec`` (which must be C strings), separated by ``sep``. ``NULL`` elements are ignored. The function never returns an error. Its return type is not void for legacy reasons. New code should never check the return value. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - strvec - Vector of C strings * - sep - Separator .. rubric:: Returns: 0 .. index:: pair: function; te_string_join_uri_path .. _doxid-group__te__tools__te__string_1ga94e69a48f69283293e24e6f9ebdd2921: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_string_join_uri_path(:ref:`te_string`* str, const :ref:`te_vec`* strvec) Append the elements of ``vec`` (which must be C strings), escaped as URI path segments, separated by ``/``. The leading ``/`` is not added, to allow building relative URIs. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - strvec - vector of C strings .. rubric:: See also: :ref:`TE_STRING_URI_ESCAPE_PATH_SEGMENT ` .. index:: pair: function; te_string_build_uri .. _doxid-group__te__tools__te__string_1ga0d5614d64a8ed8314a54954d8a58bcf3: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_string_build_uri(:ref:`te_string`* str, const char* scheme, const char* userinfo, const char* host, uint16_t port, const char* path, const char* query, const char* frag) Build an URI of parts and append it to ``str``. If any of the components is ``NULL`` (including ``scheme``), it is omitted together with a corresponding separator. ``path`` and ``query`` are *not* automatically escaped, because the exact escaping rules depend on whether they are treated as monolithic strings or compound objects. Therefore the caller is responsible for providing correct escaping e.g by using :ref:`te_string_append_escape_uri() `, :ref:`te_string_join_vec() `, :ref:`te_kvpair_to_uri_query() ` or in some other way. Leading ``/`` is added to ``path`` if ``host`` is present, and ``path`` does not already start with ``/``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - scheme - URI scheme * - userinfo - user info (escaped) * - host - host (escaped) * - port - port (``0`` meaning no port) * - path - path (not escaped) * - query - query (not escaped) * - frag - escaped * - TE_FATAL_ERROR - if ``scheme``, ``path`` or ``query`` contains invalid characters. .. index:: pair: function; te_string_generic_escape .. _doxid-group__te__tools__te__string_1gaa902c001a0f07e693b66dcf118ec3690: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_string_generic_escape(:ref:`te_string`* str, const char* input, const char* esctable[static UINT8_MAX+1], :ref:`te_string_generic_escape_fn`* ctrl_esc, :ref:`te_string_generic_escape_fn`* nonascii_esc) Generic string escaping function. All characters from ``input`` are copied unchanged to ``str``, except: * if the character has a non- ``NULL`` entry in ``esctable``, it is substituted; * if ``ctrl_esc`` is not ``NULL`` and the character is a control character, ``ctrl_esc`` is used to write the representation of the character; * if ``nonascii_esc`` is not ``NULL`` and the character is non-ASCII (i.e. its code is larger than ``127``), ``nonascii_esc`` is used to write the representation of the character. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - input - input string * - esctable - table of escape sequences * - ctrl_esc - control character escaping function (may be ``NULL``) * - nonascii_esc - non-ASCII character escaping function (may be ``NULL``) .. index:: pair: function; te_string_encode_base64 .. _doxid-group__te__tools__te__string_1ga717d396567f0c0af74b0a756cb1bcf79: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_string_encode_base64(:ref:`te_string`* str, size_t len, const uint8_t bytes[len], bool url_safe) Encode binary data with Base-64 encoding. The encoding is defined in RFC 4648. Lines are not split. If ``url_safe`` is ``true``, the so called URL-safe variant of RFC 4648 is used which produces strings that may be directed included into an URI without additional escaping. Also they may be safely used as filenames. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - len - size of binary data * - bytes - raw binary data * - url_safe - a variant of RFC 4648 .. index:: pair: function; te_string_decode_base64 .. _doxid-group__te__tools__te__string_1ga48f8637c4c68d229c7d0ee22209c4170: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_decode_base64(:ref:`te_string`* str, const char* base64str) Decode a Base64-encoded string. Both variants of RFC 4648 encoding are accepted. Embedded newlines are silently skipped. ``str`` will always be zero-terminated, but it may contain embedded zeroes. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - base64str - Base64-encoded string * - TE_EILSEQ - Invalid Base64 encoding .. rubric:: Returns: status code .. index:: pair: function; te_string_fmt_va .. _doxid-group__te__tools__te__string_1ga234bb3465d88015d4b2d472f542b7f65: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* te_string_fmt_va(const char* fmt, va_list ap) Return a char \* that is a result of sprintf into allocated memory. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - fmt - Format string * - ap - List of arguments .. rubric:: Returns: Heap-allocated string. .. index:: pair: function; te_string_fmt .. _doxid-group__te__tools__te__string_1gac4ff4d5bf1399f6d45be20111c8c2d48: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* te_string_fmt(const char* fmt, ...) Return a char \* that is a result of sprintf into allocated memory. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - fmt - Format string * - ... - Format string arguments .. rubric:: Returns: Heap-allocated string. .. index:: pair: function; te_string_cut .. _doxid-group__te__tools__te__string_1gaff8948b90c19c0c60510e8fbb5e13abf: .. ref-code-block:: cpp :class: doxyrest-title-code-block char void te_string_cut(:ref:`te_string`* str, size_t len) Cut from the string specified number of characters. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - len - Number of characters to cut .. index:: pair: function; te_string_cut_beginning .. _doxid-group__te__tools__te__string_1gad07b643156813606b6446e20f542909b: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_string_cut_beginning(:ref:`te_string`* str, size_t len) Cut specified number of characters from the beginning of the string. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - len - Number of characters to cut from the beginning .. index:: pair: function; te_string_chop .. _doxid-group__te__tools__te__string_1ga0fc86d1b9d78824ddeeb218cdfa3e53c: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_string_chop(:ref:`te_string`* str, const char* trail) Chop off trailing characters from ``str`` that belong to ``trail``. For example, this function may be used to remove trailing newlines from the contents of a file: .. ref-code-block:: cpp te_string_chop(dest, "\n"); .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string. * - trail - Trailing characters to chop. .. index:: pair: function; te_string_add_centered .. _doxid-group__te__tools__te__string_1gad75f4e6873479bba4bdb3170426d2e47: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_string_add_centered(:ref:`te_string`* str, const char* src, size_t padlen, char padchar) Center the string ``src`` padding it to ``padlen`` with ``padchar`` and append the result to ``str``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string * - src - Source C string * - padlen - Desired length (if the original string is longer, it will be truncated) * - padchar - Padding character .. index:: pair: function; te_string_process_lines .. _doxid-group__te__tools__te__string_1gace6a4ecd9b5ead09f8f91301beea1746: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_process_lines(:ref:`te_string`* buffer, bool complete_lines, :ref:`te_string_line_handler_fn`* callback, void* user_data) Call ``callback`` for every line in ``buffer``. If ``complete_lines`` is true, the last incomplete line without a newline terminator is not processed. The line terminator is ``'\n`` ', however, if it is preceded by ``'\r`` ', it is removed as well. All processed lines are removed from ``buffer``. Empty lines are never skipped, but if the ``buffer`` is empty, ``callback`` is not called at all. If a ``callback`` returns a non-zero status, the processing stop, however, the current line is still removed. TE_EOK is treated as success. The following snippet would read data from a POSIX fd in arbitrary chunks, split the input into lines, count them, log any occurred error messages and bail out early on fatal errors. .. ref-code-block:: cpp static te_errno handle_line(char *line, void *data) { unsigned int *linecount = data; const char *msg = te_str_strip_prefix(line, "FATAL: "); if (msg != NULL) { ERROR("Fatal error at line %u: %s", *linecount, msg); return TE_EBADMSG; } msg = te_str_strip_prefix(line, "ERROR: "); if (msg != NULL) ERROR("Error at line %u: %s", *linecount, msg); (*linecount)++; return 0; } ... te_string buffer = TE_STRING_INIT; char buf[BUFSIZE]; ssize_t read_bytes; unsigned int linecount = 1; while ((read_bytes = read(fd, buf, sizeof(buf))) > 0) { te_string_append_buf(&buffer, buf, read_bytes); CHECK_RC(te_string_process_lines(&buffer, true, handle_line, data)); } CHECK_RC(te_string_process_lines(&buffer, false, handle_line, &linecount)); .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - buffer - TE string. * - complete_lines - Do not process incomplete lines if ``true``. * - callback - Callback function. * - user_data - User data. .. rubric:: Returns: Status code. .. index:: pair: function; te_string_free .. _doxid-group__te__tools__te__string_1ga578106969a43ff2f9683418c918c2e15: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_string_free(:ref:`te_string`* str) Free TE string. It will not release buffer supplied by user with te_string_set_buf(). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - TE string .. index:: pair: function; raw2string .. _doxid-group__te__tools__te__string_1gae870880b0d9760624aac9c37577fd22c: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* raw2string(const uint8_t* data, size_t size) Get string representation of raw data. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - data - Buffer * - size - Number of bytes .. rubric:: Returns: String representation .. index:: pair: function; te_string_replace_all_substrings .. _doxid-group__te__tools__te__string_1gabdd177ce689ecd8a25d67fd9baefdc43: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_replace_all_substrings(:ref:`te_string`* str, const char* new, const char* old) Replace all the substrings in a string .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - The string in which to replace. * - new - The new substring to replace. * - old - The substring to be replaced. .. rubric:: Returns: Status code (always 0). .. index:: pair: function; te_string_replace_substring .. _doxid-group__te__tools__te__string_1ga3c0893d482c5b9fe7b02f24f54184108: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_string_replace_substring(:ref:`te_string`* str, const char* new, const char* old) Replace the substring in a string .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - The string in which to replace. * - new - The new substring to replace. * - old - The substring to be replaced. .. rubric:: Returns: Status code (always 0). Macros ------ .. index:: pair: define; TE_STRING_BUF_INIT .. _doxid-group__te__tools__te__string_1gab3925067d829d2350f80a1bb400b8a09: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_STRING_BUF_INIT(buf_) Initialize TE string assigning buffer to it. .. index:: pair: define; TE_STRING_EXT_BUF_INIT .. _doxid-group__te__tools__te__string_1ga531ba2edb4bea20b09814dadbddd5224: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_STRING_EXT_BUF_INIT(buf_, size_) Initialize TE string assigning buffer and size to it. .. index:: pair: define; TE_STRING_GROW_FACTOR .. _doxid-group__te__tools__te__string_1ga384fd9c6313f21e424b3b66f9f5a945f: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_STRING_GROW_FACTOR String grow factor which is used during reallocation .. index:: pair: define; TE_STRING_GROW_FACTOR_EXP_LIMIT .. _doxid-group__te__tools__te__string_1gac5250e0f2e74c14d98eb3b0aa66f96a2: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_STRING_GROW_FACTOR_EXP_LIMIT The grow factor exponent limit during a single relocation. If a good size is not found in a range [size, TE_STRING_GROW_FACTOR ^ TE_STRING_GROW_FACTOR_EXP_LIMIT], the fallback to addendum-based grow is performed. Empirically, current grow factor exponent limit is enough for running long tests without too frequent reallocation. Type of function to be used for releasing resources .. index:: pair: define; TE_STRING_INIT .. _doxid-group__te__tools__te__string_1ga3d83e11ba949fbc38f5b2a4d8388eba7: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_STRING_INIT On-stack :ref:`te_string ` initializer .. index:: pair: define; TE_STRING_INIT_LEN .. _doxid-group__te__tools__te__string_1ga1a461c7c72f25aaba26a4d06837acd50: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_STRING_INIT_LEN Initial length of the dynamically allocated string .. index:: pair: define; TE_STRING_INIT_RESERVE .. _doxid-group__te__tools__te__string_1gabbd032ca099bd3590f2801d366baea28: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_STRING_INIT_RESERVE(reserved_size_) On-stack :ref:`te_string ` initializer with a defined reserve : You should probably not use it unless you really need to. Please use simple TE_STRING_INIT. .. index:: pair: define; TE_STRING_INIT_RESERVE_FREE .. _doxid-group__te__tools__te__string_1ga3b448fac0898fedea76c7277d6edf57b: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_STRING_INIT_RESERVE_FREE(reserved_size_, free_func_) On-stack :ref:`te_string ` initializer with a defined reserve and free function. .. index:: pair: define; TE_STRING_INIT_STATIC .. _doxid-group__te__tools__te__string_1ga841298dc5d6ebf1fbb2becca9b6daffe: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_STRING_INIT_STATIC(_size) Initialize TE string assigning statically allocated memory to it. Dynamic memory allocation will not be used for such string, so there will be no need in calling :ref:`te_string_free() `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - _size - Number of bytes reserved for storing the string.