:orphan: .. index:: pair: group; Dynamic buffers .. _doxid-group__te__tools__te__dbuf: Dynamic buffers =============== .. toctree:: :hidden: struct_te_dbuf.rst Overview ~~~~~~~~ Definition of functions to work with dynamic buffers. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef struct :ref:`te_dbuf` :ref:`te_dbuf`; // structs struct :ref:`te_dbuf`; // global functions static void :ref:`te_dbuf_reset`(:ref:`te_dbuf`* dbuf); :ref:`te_errno` :ref:`te_dbuf_append`(:ref:`te_dbuf`* dbuf, const void* data, size_t data_len); :ref:`te_errno` :ref:`te_dbuf_expand`(:ref:`te_dbuf`* dbuf, size_t n); void :ref:`te_dbuf_cut`(:ref:`te_dbuf`* dbuf, size_t start_index, size_t count); void :ref:`te_dbuf_free`(:ref:`te_dbuf`* dbuf); void :ref:`te_dbuf_print`(const :ref:`te_dbuf`* dbuf); // macros #define :ref:`TE_DBUF_DEFAULT_GROW_FACTOR` #define :ref:`TE_DBUF_INIT`(grow_factor_) .. _details-group__te__tools__te__dbuf: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Definition of functions to work with dynamic buffers. Example of using: .. ref-code-block:: cpp // Init the dynamic buffer with the default growth parameters. :ref:`te_dbuf ` dbuf = :ref:`TE_DBUF_INIT `(:ref:`TE_DBUF_DEFAULT_GROW_FACTOR `); ... // Put the "foo\0" into the dbuf te_dbuf_append(&dbuf, "foo", 4); ... // Reserve 4 bytes into the dbuf size_t pos = dbuf.:ref:`len `; // Save current position in the buffer. :ref:`te_dbuf_append `(&dbuf, NULL, 4); (uint32_t *)&dbuf.:ref:`ptr `[pos] = 5; // Put the number to reserved place. ... // Reset the buffer to start filling it from the beginning again. te_dbuf_reset(&dbuf); ... // Finish work with dynamic buffer, free the memory. te_dbuf_free(&dbuf); Typedefs -------- .. index:: pair: typedef; te_dbuf .. _doxid-group__te__tools__te__dbuf_1ga46dd82c07275c5bd547a55ac6a33ae8f: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`te_dbuf` te_dbuf Dynamically allocated buffer. Global Functions ---------------- .. index:: pair: function; te_dbuf_reset .. _doxid-group__te__tools__te__dbuf_1ga3735aa66c48db10ba8a7e6a41e1e86f8: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void te_dbuf_reset(:ref:`te_dbuf`* dbuf) Reset dynamic buffer (makes its empty). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dbuf - Dynamic buffer. .. index:: pair: function; te_dbuf_append .. _doxid-group__te__tools__te__dbuf_1gacd5e0835dec4c919903b1a9c382444be: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_dbuf_append(:ref:`te_dbuf`* dbuf, const void* data, size_t data_len) Append additional data to the dynamic buffer. Allocate/reallocate the memory for the buffer if needed. ``dbuf`` should be released with ``te_dbuf_free`` when it is no longer needed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dbuf - Dynamic buffer. * - data - Data to append to the buffer pointed by ``dbuf``. If ``NULL``, then a block of ``data_len`` zeroes is appended. * - data_len - Length of the data. .. rubric:: Returns: Status code (always 0). .. rubric:: See also: :ref:`te_dbuf_free ` .. index:: pair: function; te_dbuf_expand .. _doxid-group__te__tools__te__dbuf_1gab73bae03a80a2e249be6a6d3e929a4a8: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_dbuf_expand(:ref:`te_dbuf`* dbuf, size_t n) Increase the size of dynamic buffer on ``n`` bytes. It reallocates the :ref:`te_dbuf ` container with new size. ``dbuf`` should be released with ``te_dbuf_free`` when it is no longer needed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dbuf - Dynamic buffer. * - n - Number of bytes to add to the buffer size to expand it. .. rubric:: Returns: Status code (always 0). .. index:: pair: function; te_dbuf_cut .. _doxid-group__te__tools__te__dbuf_1ga1315f8bcd52b0bffd6ddf6513825b0a6: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_dbuf_cut(:ref:`te_dbuf`* dbuf, size_t start_index, size_t count) Cut a region of a dynamic buffer starting from ``start_index`` of length ``count`` Function does not reallocate memory .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dbuf - Dynamic buffer * - start_index - Starting index of a region * - count - Length of a region .. index:: pair: function; te_dbuf_free .. _doxid-group__te__tools__te__dbuf_1gaaa60dc801eb4be82973d53cc248bc913: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_dbuf_free(:ref:`te_dbuf`* dbuf) Free dynamic buffer that was allocated with ``te_dbuf_append`` or ``te_dbuf_expand``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dbuf - Dynamic buffer. .. rubric:: See also: :ref:`te_dbuf_append `, :ref:`te_dbuf_expand ` .. index:: pair: function; te_dbuf_print .. _doxid-group__te__tools__te__dbuf_1ga9637accee021e2f0040d41d98538d650: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_dbuf_print(const :ref:`te_dbuf`* dbuf) Prints the ``dbuf`` info and its data using VERB function. This function should be used for debugging purpose. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dbuf - Dynamic buffer. Macros ------ .. index:: pair: define; TE_DBUF_DEFAULT_GROW_FACTOR .. _doxid-group__te__tools__te__dbuf_1gad6835d6f0969238462420462b356688e: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_DBUF_DEFAULT_GROW_FACTOR A grow factor is a percentage of extra memory to reserve for a dbuf when new data are appended to it. For example, with a grow factor of ``100``, the amount of reserved memory is doubled every time the buffer is reallocated. The purpose of grow factos is to optimize memory usage for different buffer grow scenario, however, most users should not bother with it and use the default factor. .. index:: pair: define; TE_DBUF_INIT .. _doxid-group__te__tools__te__dbuf_1ga8631a553153362412b9ffe09bc107c21: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_DBUF_INIT(grow_factor_) On-stack :ref:`te_dbuf ` initializer. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - grow_factor\_ - see TE_DBUF_DEFAULT_GROW_FACTOR