:orphan: .. index:: pair: group; Test API to handle a cache .. _doxid-group__tapi__cache: Test API to handle a cache ========================== .. toctree:: :hidden: Overview ~~~~~~~~ Copyright (C) 2004-2022 OKTET Labs Ltd. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef :ref:`te_errno` (*:ref:`tapi_cache_cb`)( const char *oid, void *opaque ); // global functions :ref:`te_errno` :ref:`tapi_cache_register`(const char* method, const char* area, :ref:`tapi_cache_cb` cb_func); :ref:`te_errno` :ref:`tapi_cache_actualize`(const char* method, void* opaque, const char* area_ptrn, ...); :ref:`te_errno` :ref:`te_errno` :ref:`tapi_cache_invalidate`(const char* method, const char* area_ptrn, ...); :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`tapi_cache_add`(:ref:`cfg_val_type` type, const void* value, const char* area_inst, ...); :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`tapi_cache_add_string`(const char* value, const char* area_inst, ...); :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`tapi_cache_add_int`(int value, const char* area_inst, ...); :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`tapi_cache_add_addr`(const struct sockaddr* addr, const char* area_inst, ...); :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`tapi_cache_del`(const char* area_ptrn, ...); :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`tapi_cache_find`(:ref:`cfg_handle_cb_func` cb_func, void* opaque, const char* area_ptrn, ...); :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`tapi_cache_get`(:ref:`cfg_val_type`* type, void* value, const char* area_inst, ...); :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`tapi_cache_get_string`(char** value, const char* area_inst, ...); :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`tapi_cache_get_int`(int* value, const char* area_inst, ...); :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`tapi_cache_get_addr`(struct sockaddr** addr, const char* area_inst, ...); // macros #define :ref:`TAPI_CACHE_ALL` #define :ref:`TAPI_CACHE_ROOT_INST` #define :ref:`TAPI_CACHE_ROOT_OID` .. _details-group__tapi__cache: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Copyright (C) 2004-2022 OKTET Labs Ltd. All rights reserved. Generic API to operate the Configurator subtree /volatile/cache. Configurator subtree (``doc/cm/cm_volatile.xml``). .. _doxid-group__tapi__cache_1tapi_cache_synopsis: Synopsis ~~~~~~~~ Test API is intended to manage data which could be obtained with different ways. The main idea is to reduce a number of expensive read operations of data which are changed rarely, and keep the cache up to date independently on what way is used to obtain data. .. _doxid-group__tapi__cache_1tapi_cache_terms: Terminology ~~~~~~~~~~~ ``area`` - Subtree handled by same actualization callbacks set. For example, there are two areas in ``/volatile/cache/foo/bar`` : ``foo`` and ``foo/bar`` Note, it is not mandatory to register callbacks for each area ``method`` - The way to gather data to be cached. Do not mistake it with callback functions! For example, ``crm``, ``cwmp``, etc. It **MUST** be a leaf of Configurator tree. For example, ``/volatile:/cache:/foo:FOO/bar:BAR/baz:crm`` .. _doxid-group__tapi__cache_1tapi_cache_example: Example ~~~~~~~ To use this feature, you need to register ``cache`` node and its children in Configurator Lets assume for instance, we need to operate ``wifi/ssid/path`` cache area .. ref-code-block:: cpp Example of usage in the test .. ref-code-block:: cpp #include "tapi_cache.h" ... CHECK_RC(:ref:`tapi_cache_register `("crm", "wifi", wifi_crm_cb)); :ref:`CHECK_RC `(:ref:`tapi_cache_register `("cwmp", "wifi", wifi_cwmp_cb)); :ref:`CHECK_RC `(:ref:`tapi_cache_actualize `("crm", &wifi_crm_opaque, "wifi:%s", band)); :ref:`CHECK_RC `(:ref:`tapi_cache_actualize `("cwmp", &wifi_cwmp_opaque, "wifi:*")); ... # Get all SSIDs of band 5G from the cache struct { char *ssid[]; } ap; :ref:`CHECK_RC `(:ref:`tapi_cache_find `(get_ssids, &ap, "wlan:5G/ssid:*")); # Get a CRM path to the first 5G SSID from the cache char *crm_path; :ref:`CHECK_RC `(:ref:`tapi_cache_get_string `(&crm_path, "wifi:5G/ssid:%s/path:crm", ap.ssid[0])); # Get a CWMP path to the first 5G SSID from the cache char *cwmp_path; :ref:`CHECK_RC `(:ref:`tapi_cache_get_string `(&cwmp_path, "wifi:5G/ssid:%s/path:cwmp", ap.ssid[0])); ... # Add a new 5G SSID "test" via CRM: crm_path = some_tapi_add_ssid_via_crm(...); # Register this newly added SSID to cache :ref:`CHECK_RC `(:ref:`tapi_cache_add_string `(crm_path, "wifi:5G/ssid:test/path:crm")); ... CHECK_RC(:ref:`tapi_cache_invalidate `(NULL, "wifi:*")); Typedefs -------- .. index:: pair: typedef; tapi_cache_cb .. _doxid-group__tapi__cache_1ga0f2e3c9f38a39a3be0810c171b67a925: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef :ref:`te_errno` (*tapi_cache_cb)( const char *oid, void *opaque ) Type of callback function which can be called by :ref:`tapi_cache_actualize() ` and registered by :ref:`tapi_cache_register() ` .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - oid - Object instance identifier (root of subtree to be actualized) * - opaque - Opaque data containing arguments of certain callback .. rubric:: Returns: Status code Global Functions ---------------- .. index:: pair: function; tapi_cache_register .. _doxid-group__tapi__cache_1gaadebabe865e3e6cb9e248d5e79c32cd5: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_cache_register(const char* method, const char* area, :ref:`tapi_cache_cb` cb_func) Register a callback function for particular cache actualization ``method`` of certain ``area`` .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - method - Method * - area - Area * - cb_func - Callback function .. rubric:: Returns: Status code .. index:: pair: function; tapi_cache_actualize .. _doxid-group__tapi__cache_1gab23d5bb60e3e8ae12ce283ed757ec668: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_cache_actualize(const char* method, void* opaque, const char* area_ptrn, ...) Actualize certain cache area instances. It calls a suitable function registered with :ref:`tapi_cache_register() ` to gather data required to fill the cache area with particular ``method`` It invalidates the area instances of certain ``method`` before actualization. Also it is possible to call the function on parent instance which does not have registered callback but whose children have ones. Caution: keep in mind in this case it can call different callbacks with the same opaque. For instance, if we had the following areas with registered callbacks: ``foo/bar``, ``foo/bar/baz``, ``qux``, the function on area instance :ref:`TAPI_CACHE_ALL ` would invoke callbacks of ``foo/bar`` and ``qux`` .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - method - Method * - opaque - Opaque argument to pass to the callback function registered with :ref:`tapi_cache_register() ` * - area_ptrn - Format string of area instance, can contain wildcards to actualize several instances of area. For example, "foo:\*", "foo:FOO", or :ref:`TAPI_CACHE_ALL ` * - ... - Format string arguments * - 0 - Instance has been actualized completely * - TE_ECHILD - Some of subareas have not been actualized due to they do not have actualization callbacks * - TE_ENOENT - Instance has not been actualized completely * - Any-other - Other errors which should be handled as critical .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_cache_invalidate ` .. index:: pair: function; tapi_cache_invalidate .. _doxid-group__tapi__cache_1ga82abf0d9a2b15f857d80b88e839182cc: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` tapi_cache_invalidate(const char* method, const char* area_ptrn, ...) Invalidate certain cache area instances. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - method - Method, can be ``NULL`` to invalidate all instances indepenently on actualization method * - area_ptrn - Format string of area instance, can contain wildcards to invalidate several instances of area. For example, "foo:\*", or "foo:FOO" * - ... - Format string arguments .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_cache_actualize ` .. index:: pair: function; tapi_cache_add .. _doxid-group__tapi__cache_1ga1e2b1c4e7b1173ebcc31759f41dbf64b: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` tapi_cache_add(:ref:`cfg_val_type` type, const void* value, const char* area_inst, ...) Add a new instance to cache area, add parent instances (with value :ref:`CFG_VAL(NONE, NULL) `) as needed It is important for proper work of acrialize and invalidate actions to follow agreement that leaf is a method .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - type - Value type * - value - Value to add * - area_inst - Format string of area instance to add. For example, "foo:%s/bar:%s/baz:METHOD", it is allowed to use "foo:%s/bar:%s" if further a leaf instance of method will be added according to agreement * - ... - Format string arguments .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_cache_add_string `, :ref:`tapi_cache_add_int `, :ref:`tapi_cache_add_addr ` .. index:: pair: function; tapi_cache_add_string .. _doxid-group__tapi__cache_1gafa49e2c7acc1c7362b9539038073f561: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` tapi_cache_add_string(const char* value, const char* area_inst, ...) Add a new string instance to cache area .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - value - String value to add * - area_inst - Format string of area instance to add * - ... - Format string arguments .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_cache_add ` .. index:: pair: function; tapi_cache_add_int .. _doxid-group__tapi__cache_1gac2afda4aa09a5b46731b0c058ee8389d: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` tapi_cache_add_int(int value, const char* area_inst, ...) Add a new integer instance to cache area .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - value - Integer value to add * - area_inst - Format string of area instance to add * - ... - Format string arguments .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_cache_add ` .. index:: pair: function; tapi_cache_add_addr .. _doxid-group__tapi__cache_1ga87bcb66395305d981b883e0d07d38bae: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` tapi_cache_add_addr(const struct sockaddr* addr, const char* area_inst, ...) Add a new network address instance to cache area .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - addr - Network address to add * - area_inst - Format string of area instance to add * - ... - Format string arguments .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_cache_add ` .. index:: pair: function; tapi_cache_del .. _doxid-group__tapi__cache_1gafe878a0845a025f6fe7b48808d2eba97: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` tapi_cache_del(const char* area_ptrn, ...) Delete instance(s) of cache area by pattern Prefer :ref:`tapi_cache_invalidate() ` to this function since this one knows nothing about methods and, hence, ignores them. It simply removes area instances of all methods. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - area_ptrn - Format string of area instance, can contain wildcards to delete several instances of area. For example, "foo:\*", or "foo:FOO" * - ... - Format string arguments .. rubric:: Returns: Status code .. index:: pair: function; tapi_cache_find .. _doxid-group__tapi__cache_1ga8b3c1f865712fa408e7d2e7a9aace1cb: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` tapi_cache_find(:ref:`cfg_handle_cb_func` cb_func, void* opaque, const char* area_ptrn, ...) Find all area instances matching a pattern and call ``cb_func`` for each of found items .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - cb_func - Pointer to callback function * - opaque - Opaque argument to pass to ``cb_func`` * - area_ptrn - Format string of area instance, can contain wildcards to find several instances of area. For example, "foo:\*", or "foo:FOO" * - ... - Format string arguments .. rubric:: Returns: Status code .. rubric:: See also: :ref:`cfg_find_pattern_iter_fmt ` .. index:: pair: function; tapi_cache_get .. _doxid-group__tapi__cache_1ga884b7d3aa2d8392c539dd075626f3d9f: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` tapi_cache_get(:ref:`cfg_val_type`* type, void* value, const char* area_inst, ...) Get a value of certain instance of cache area .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - type - Value type location, may be ``NULL``. If it is :ref:`CVT_UNSPECIFIED `, it will be updated with obtained value type * - value - Value location * - area_inst - Area instance format string * - ... - Format string arguments .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_cache_get_string `, :ref:`tapi_cache_get_int `, :ref:`tapi_cache_get_addr ` .. index:: pair: function; tapi_cache_get_string .. _doxid-group__tapi__cache_1ga2f01b1afe3628ec541e6c1d78969bfc9: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` tapi_cache_get_string(char** value, const char* area_inst, ...) Get a string value of certain instance of cache area Return value should be freed with free(3) when it is no longer needed .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - value - Pointer to value location * - area_inst - Area instance format string * - ... - Format string arguments .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_cache_get ` .. index:: pair: function; tapi_cache_get_int .. _doxid-group__tapi__cache_1ga1457195b2468bb6bea9b1c75439783c3: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` tapi_cache_get_int(int* value, const char* area_inst, ...) Get an integer value of certain instance of cache area .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - value - Value location * - area_inst - Area instance format string * - ... - Format string arguments .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_cache_get ` .. index:: pair: function; tapi_cache_get_addr .. _doxid-group__tapi__cache_1gaa4cfed1e02a89c33091a0f9f91cc646e: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` :ref:`te_errno` tapi_cache_get_addr(struct sockaddr** addr, const char* area_inst, ...) Get a network address value of certain instance of cache area Return value should be freed with free(3) when it is no longer needed .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - addr - Pointer to address location * - area_inst - Area instance format string * - ... - Format string arguments .. rubric:: Returns: Status code .. rubric:: See also: :ref:`tapi_cache_get ` Macros ------ .. index:: pair: define; TAPI_CACHE_ALL .. _doxid-group__tapi__cache_1ga72fcda3b751f18966dd45f91e997adba: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TAPI_CACHE_ALL Cache instance pointing to all cache data (cache root). Useful if you need to actualize all cache instances at once .. index:: pair: define; TAPI_CACHE_ROOT_INST .. _doxid-group__tapi__cache_1ga6aecc1a5f6f32fb745e71e6142498347: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TAPI_CACHE_ROOT_INST Cache area configurator root instance .. index:: pair: define; TAPI_CACHE_ROOT_OID .. _doxid-group__tapi__cache_1gab07aba44b7da67fd792da040f1ad5661: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TAPI_CACHE_ROOT_OID Cache area configurator root object