.. SPDX-License-Identifier: Apache-2.0 Copyright (C) 2020-2022 OKTET Labs Ltd. All rights reserved. .. index:: pair: group; API Usage: Configurator API .. _doxid-group__confapi: API Usage: Configurator API =========================== .. toctree:: :hidden: /generated/group_confapi_base.rst group_tapi_conf.rst .. _doxid-group__confapi_1confapi_introduction: Usage of Configurator API from test scenarios ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Test scenarios should use functions exported via: * base :ref:`API: Configurator ` (``lib/confapi/conf_api.h``); * semantic based interface :ref:`TAPI: Test API for configuration nodes `. Here we will show how to play with samples discussed at te_agents_conf page. .. _doxid-group__confapi_1confapi_usage_conf: Tuning Configurator configuration file ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In order to let :ref:`Configurator ` know about instances of new nodes we should register these new object nodes in configurator tree. Then :ref:`Configurator ` will be able to get instances of these objects from te_agents. Otherwise :ref:`Configurator ` ignores node instances whose object nodes were not registered. .. image:: /static/image/ten_conf_startup.png :alt: Configurator start-up event flow When :ref:`Configurator ` starts it processes configurator configuration file that keeps object descriptions that need to be registered in local tree of objects (see arrow [2]). Configuration file can also keep rules to add object instances, but these instances can not be applied for /agent subtree. /agent subtree is in control by te_agents. :ref:`Configurator ` should ask te_agents about these instances that is why it call :ref:`rcf_ta_cfg_get() ` function with wildcard object instance identifier (arrow [4] in the figure). When :ref:`Configurator ` receives a reply with the list of object instance names it checks whether an instance name has corresponding object node in its local object tree. If yes, then it adds an instance into its instance configuration tree, otherwise it ignores an instance name and tests will not be able to access those instances until they register corresponding object nodes in :ref:`Configurator ` (see arrow [6]). Regarding an example described at te_agents_conf page, we should add the following lines into :ref:`Configurator ` configuration file to let :ref:`Configurator ` know about our new supported object instances: .. ref-code-block:: xml For more information on :ref:`Configurator ` configuration file read :ref:`Configurator Configuration File ` section. .. _doxid-group__confapi_1confapi_usage_add_del: Adding/Deleting an entry to/from configuration tree ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ For nodes of "read-create" access type it is possible to add or delete an instance in run time (from a test). Access type "read-create" does not guarantee the ability to run add or delete operation, but implementation of :ref:`rcf_pch_cfg_object::add ` and :ref:`rcf_pch_cfg_object::del ` functions is required. Please note that there can be "read-create" objects that do not provide implementation of :ref:`rcf_pch_cfg_object::add ` or :ref:`rcf_pch_cfg_object::del ` functions. This mainly means that the number of instances can vary depending on events happened on Test Agent. Test Agent reports about the number of instances of that objects with :ref:`rcf_pch_cfg_object::list ` handler. In order to add a new object instance you should use one of the following functions: * :ref:`cfg_add_instance() `; * :ref:`cfg_add_instance_str() `; * :ref:`cfg_add_instance_fmt() `. The following diagram shows the sequence of events caused by calling any of these functions. .. image:: /static/image/ten_conf_add_instance.png :alt: Sequence of events caused by cfg_add_instance() call Similar things happen when you call a function to delete an object instance: * :ref:`cfg_del_instance() `; * :ref:`cfg_del_instance_fmt() `. You can also use *local* version of instance add functions: * :ref:`cfg_add_instance_local() `; * :ref:`cfg_add_instance_local_str() `; * :ref:`cfg_add_instance_local_fmt() `. The only difference is that these functions will not cause :ref:`rcf_pch_cfg_object::commit ` function to be called after :ref:`rcf_pch_cfg_object::add `. Instead :ref:`rcf_pch_cfg_object::commit ` is called when a test calls :ref:`cfg_commit() ` or :ref:`cfg_commit_fmt() ` function for newly created object instance. To add a new instance of ``col_object`` object one could use the following piece of code in their tests: .. ref-code-block:: c rc = cfg_add_instance_fmt(&handle, CFG_VAL(NONE, NULL), "/agent:%s/col_object:%s", agent_name, instance_name); if (rc != 0) TEST_FAIL("Failed to add a new instance to 'col_object' collection"); Please note that you can also add an instance of any "read-create" object via :ref:`Configurator ` configuration file. .. ref-code-block:: xml These lines will force :ref:`Configurator ` to create on start-up two instances of /agent/col_object object on Test Agent Agt_A with instance names A amd C. (For more information about configuration file see :ref:`Configurator Configuration File ` section). .. _doxid-group__confapi_1confapi_usage_set: Set/Get configuration value operations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ More frequently used operations are to Get node instance value or to Set new value to a node instance. To Set a node instance value use: * :ref:`cfg_set_instance() `; * :ref:`cfg_set_instance_fmt() `. Or corresponding local varsions: * :ref:`cfg_set_instance_local() `; * :ref:`cfg_set_instance_local_fmt() `. .. image:: /static/image/ten_conf_set_instance.png :alt: Sequence of events caused by cfg_set_instance() call One useful feature of object node declaration is specifying dependencies. An object node can be supplied with the list of object nodes on whose values it depends. Then :ref:`Configurator ` will track changes of nodes on which another node depends. In case any of these nodes changes its value, :ref:`Configurator ` will update the local copy of values of dependent nodes. For example we can specify: .. ref-code-block:: xml This means that the value of /agent/col_object/var2 depends on /agent/col_object/var1 - any changes to /agent/col_object/var1 may cause change of /agent/col_object/var2. .. image:: /static/image/ten_conf_set_dep_instance.png :alt: Sequence of events caused by cfg_set_instance() call with dependency processing To understand the necessity of dependencies we need to know how :ref:`Configurator ` handles Get operation. You can use the following functions to Get the value of object instance node: * :ref:`cfg_get_instance() `; * :ref:`cfg_get_instance_fmt() `. .. image:: /static/image/ten_conf_get_instance.png :alt: Sequence of events caused by cfg_get_instance() call Please note that :ref:`cfg_get_instance() ` call does not cause any exchange between :ref:`Configurator ` and te_agents, but rather value to return is got from local object instance database. If you want to get the value from Test Agent you can do one of the following: * call :ref:`cfg_get_instance_sync() ` or :ref:`cfg_get_instance_sync_fmt() ` that will first synchronize object instance value with Test Agent and the return an updated value; * call :ref:`cfg_synchronize() ` or :ref:`cfg_synchronize_fmt() ` to synchronize a subtree of configuration nodes and then call ordinary :ref:`cfg_get_instance() ` function. .. image:: /static/image/ten_conf_get_instance_sync.png :alt: Sequence of events caused by cfg_get_instance_sync() call Please note that you should use synced calls only if you are sure that object instance values can change in the backgroud, otherwise it is better to use non-synced calls in order to minimize data exchange between :ref:`Configurator ` and te_agents. Please note that you can also do set operation in :ref:`Configurator ` configuration file. .. ref-code-block:: xml These lines will force :ref:`Configurator ` to run Set operation on start-up for instance /agent:Agt_A/col_object:B/var1:. (For more information about configuration file see :ref:`Configurator Configuration File ` section). | :ref:`API: Configurator` | :ref:`Configuration backup manipulation` | :ref:`Configuration tree traversal` | :ref:`Configuration tree access operations` | :ref:`Synchronization configuration tree with Test Agent` | :ref:`Test Agent reboot` | :ref:`TAPI: Test API for configuration nodes` | :ref:`ARL table configuration` | :ref:`Agent namespaces configuration` | :ref:`Agents, namespaces and interfaces relations` | :ref:`Bonding and bridging configuration` | :ref:`CPU topology configuration of Test Agents` | :ref:`Command monitor TAPI` | :ref:`DHCP Server configuration` | :ref:`DUT serial console access` | :ref:`Environment variables configuration` | :ref:`Ethernet PHY configuration` | :ref:`Ethernet interface features configuration` | :ref:`IP rules configuration` | :ref:`IPv6 specific configuration` | :ref:`Kernel modules configuration` | :ref:`L2TP configuration` | :ref:`Local subtree access` | :ref:`Manipulation of network address pools` | :ref:`NTP daemon configuration` | :ref:`Neighbour table configuration` | :ref:`Network Base configuration` | :ref:`Network Emulator configuration` | :ref:`Network Interface configuration` | :ref:`Network Switch configuration` | :ref:`Network sniffers configuration` | :ref:`Network statistics access` | :ref:`Network topology configuration of Test Agents` | :ref:`PPPoE Server configuration` | :ref:`Processes configuration` | :ref:`Queuing Discipline configuration` | :ref:`tc qdisc TBF configuration` | :ref:`Routing Table configuration` | :ref:`Serial console parsers configuration` | :ref:`Solarflare PTP daemon configuration` | :ref:`System parameters configuration` | :ref:`TA system options configuration (OBSOLETE)` | :ref:`Test API to handle a cache` | :ref:`VTund configuration` | :ref:`Virtual machines configuration` | :ref:`XEN configuration` | :ref:`iptables configuration`