blob: ac0dfd4a12c111231e30d140fbeb8393718a8837 [file] [log] [blame]
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001/**
2 * @file context.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief internal context structures and functions
5 *
Michal Vasko25d6ad02020-10-22 12:20:22 +02006 * Copyright (c) 2015 - 2020 CESNET, z.s.p.o.
Radek Krejci5aeea3a2018-09-05 13:29:36 +02007 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef LY_CONTEXT_H_
16#define LY_CONTEXT_H_
17
Radek Krejcie7b95092019-05-15 11:03:07 +020018#include <stdint.h>
19
Radek Krejci6caa6ab2018-10-24 10:04:48 +020020#include "log.h"
Radek Krejcif0e1ba52020-05-22 15:14:35 +020021#include "parser_schema.h"
Tadeáš Vintrlík390b2722021-04-07 13:52:45 +020022#include "tree_data.h"
Radek Krejci5aeea3a2018-09-05 13:29:36 +020023
Radek Krejci6caa6ab2018-10-24 10:04:48 +020024#ifdef __cplusplus
25extern "C" {
26#endif
27
Michal Vasko3a41dff2020-07-15 14:30:28 +020028struct lyd_node;
Radek Krejci77114102021-03-10 15:21:57 +010029struct lys_module;
Radek Krejcica376bd2020-06-11 16:04:06 +020030struct lysc_node;
31
Radek Krejci5aeea3a2018-09-05 13:29:36 +020032/**
Radek Krejci8678fa42020-08-18 16:07:28 +020033 * @page howtoContext Context
Radek Krejci52785a22019-09-11 12:57:26 +020034 *
Radek Krejci8678fa42020-08-18 16:07:28 +020035 * The context concept allows callers to work in environments with different sets of YANG modules.
Radek Krejci52785a22019-09-11 12:57:26 +020036 *
Radek Krejci8678fa42020-08-18 16:07:28 +020037 * The first step with libyang is to create a new context using ::ly_ctx_new(). It returns a handler used in the following work.
38 * Note that the context is supposed to provide a stable environment for work with the data. Therefore the caller should prepare
39 * a complete context and after starting working with the data, the context and its content should not change. Despite the API
40 * does not enforce this approach, it may change in future versions in the form of a locking mechanism which would allow further
41 * optimization of data manipulation. Also note that modules cannot be removed from their context. If you need to change the set
42 * of the schema modules in the context, the recommended way is to create a new context. To remove the context, there is ::ly_ctx_destroy() function.
Radek Krejci52785a22019-09-11 12:57:26 +020043 *
Radek Krejci8678fa42020-08-18 16:07:28 +020044 * The context has [several options](@ref contextoptions) changing behavior when processing YANG modules being inserted. The
45 * specific behavior is mentioned below. All the options can be set as a parameter when the context is being created or later
46 * with ::ly_ctx_set_options().
47 *
48 * When creating a new context, another optional parameter is search_dir It provide directory where libyang
49 * will automatically search for YANG modules being imported or included. There is actually a set of search paths which can be later
50 * modified using ::ly_ctx_set_searchdir(), ::ly_ctx_unset_searchdir() and ::ly_ctx_unset_searchdir_last() functions. Before the values
51 * in the set are used, also the current working directory is (non-recursively) searched. For the case of the explicitly set
52 * search directories, they are searched recursively - all their subdirectories (and symlinks) are taken into account. Searching
53 * in the current working directory can be avoided with the context's ::LY_CTX_DISABLE_SEARCHDIR_CWD option.
Radek Krejci52785a22019-09-11 12:57:26 +020054 * Searching in all the context's search dirs (without removing them) can be avoided with the context's
Radek Krejci8678fa42020-08-18 16:07:28 +020055 * ::LY_CTX_DISABLE_SEARCHDIRS option (or via ::ly_ctx_set_options()). This automatic searching can be preceded
56 * by a custom module searching callback (::ly_module_imp_clb) set via ::ly_ctx_set_module_imp_clb(). The algorithm of
57 * searching in search dirs is also available via API as ::lys_search_localfile() function.
Radek Krejci52785a22019-09-11 12:57:26 +020058 *
Radek Krejci8678fa42020-08-18 16:07:28 +020059 * YANG modules are added into the context using [parser functions](@ref howtoSchemaParsers) - \b lys_parse*().
60 * Alternatively, also ::ly_ctx_load_module() can be used - in that case the ::ly_module_imp_clb or automatic
61 * search in search directories and in the current working directory is used, as described above. YANG submodules cannot be loaded
62 * or even validated directly, they are loaded always only as includes of YANG modules. Explicitly parsed/loaded modules are
63 * handled as implemented - libyang is able to instantiate data representing such a module. The modules loaded implicitly, are
64 * not implemented and serve only as a source of grouping or typedef definitions. Context can hold multiple revisions of the same
65 * YANG module, but only one of them can be implemented. Details about the difference between implemented and imported modules
Michal Vasko25d6ad02020-10-22 12:20:22 +020066 * can be found on @ref howtoSchema page. This behavior can be changed with the context's ::LY_CTX_ALL_IMPLEMENTED option, which
67 * causes that all the parsed modules, whether loaded explicitly or implicitly, are set to be implemented. Note, that as
68 * a consequence of this option, only a single revision of any module can be present in the context in this case. Also, a less
69 * crude option ::LY_CTX_REF_IMPLEMENTED can be used to implement only referenced modules that should also be implemented.
Radek Krejci52785a22019-09-11 12:57:26 +020070 *
71 * When loading/importing a module without revision, the latest revision of the required module is supposed to load.
72 * For a context, the first time the latest revision of a module is requested, it is properly searched for and loaded.
73 * However, when this module is requested (without revision) the second time, the one found previously is returned.
Radek Krejci8678fa42020-08-18 16:07:28 +020074 * This has the advantage of not searching for the module repeatedly but there is a drawback in case the content of search
75 * directories is updated and a later revision become available. However, to force libyang to re-search the
76 * latest revision, ::ly_ctx_reset_latests() can be used (note that it applies to all the modules in the context).
Radek Krejci52785a22019-09-11 12:57:26 +020077 *
Radek Krejci8678fa42020-08-18 16:07:28 +020078 * Context holds all the schema modules internally. To get a specific module, use ::ly_ctx_get_module() (or some of its
79 * variants). If you need to do something with all the modules in the context, it is advised to iterate over them using
80 * ::ly_ctx_get_module_iter(). Alternatively, the ::ly_ctx_get_yanglib_data() function can be used to get complex information about the schemas in the context
81 * in the form of data tree defined by <a href="https://tools.ietf.org/html/rfc7895">ietf-yang-library</a> module.
Radek Krejci52785a22019-09-11 12:57:26 +020082 *
Radek Krejci8678fa42020-08-18 16:07:28 +020083 * YANG data can be parsed by \b lyd_parse_*() functions. Note, that functions for schema have \b lys_
84 * prefix (or \b lysp_ for the parsed and \b lysc_ for the compiled schema - for details see @ref howtoSchema page) while
85 * functions for instance data have \b lyd_ prefix. Details about data formats or handling data without the appropriate
86 * YANG module in context can be found on @ref howtoData page.
Radek Krejci52785a22019-09-11 12:57:26 +020087 *
Radek Krejci8678fa42020-08-18 16:07:28 +020088 * Besides the YANG modules, context holds also [error information](@ref howtoErrors) and
89 * [database of strings](@ref howtoContextDict), both connected with the processed YANG modules and data.
90 *
91 * - @subpage howtoErrors
92 * - @subpage howtoContextDict
Radek Krejci52785a22019-09-11 12:57:26 +020093 *
94 * \note API for this group of functions is available in the [context module](@ref context).
95 *
96 * Functions List
97 * --------------
Radek Krejci8678fa42020-08-18 16:07:28 +020098 *
Radek Krejci52785a22019-09-11 12:57:26 +020099 * - ::ly_ctx_new()
Radek Krejci8678fa42020-08-18 16:07:28 +0200100 * - ::ly_ctx_destroy()
101 *
Radek Krejci52785a22019-09-11 12:57:26 +0200102 * - ::ly_ctx_set_searchdir()
Radek Krejci52785a22019-09-11 12:57:26 +0200103 * - ::ly_ctx_get_searchdirs()
Radek Krejci8678fa42020-08-18 16:07:28 +0200104 * - ::ly_ctx_unset_searchdir()
105 * - ::ly_ctx_unset_searchdir_last()
106 *
107 * - ::ly_ctx_set_options()
108 * - ::ly_ctx_get_options()
109 * - ::ly_ctx_unset_options()
110 *
Radek Krejci52785a22019-09-11 12:57:26 +0200111 * - ::ly_ctx_set_module_imp_clb()
112 * - ::ly_ctx_get_module_imp_clb()
Radek Krejci8678fa42020-08-18 16:07:28 +0200113 *
Radek Krejci52785a22019-09-11 12:57:26 +0200114 * - ::ly_ctx_load_module()
Radek Krejci52785a22019-09-11 12:57:26 +0200115 * - ::ly_ctx_get_module_iter()
116 * - ::ly_ctx_get_module()
117 * - ::ly_ctx_get_module_ns()
118 * - ::ly_ctx_get_module_implemented()
119 * - ::ly_ctx_get_module_implemented_ns()
120 * - ::ly_ctx_get_module_latest()
121 * - ::ly_ctx_get_module_latest_ns()
Michal Vasko8dc31992021-02-22 10:30:47 +0100122 * - ::ly_ctx_get_submodule()
123 * - ::ly_ctx_get_submodule_latest()
124 * - ::ly_ctx_get_submodule2()
125 * - ::ly_ctx_get_submodule2_latest()
Radek Krejci52785a22019-09-11 12:57:26 +0200126 * - ::ly_ctx_reset_latests()
Radek Krejci8678fa42020-08-18 16:07:28 +0200127 *
128 * - ::ly_ctx_get_yanglib_data()
Radek Krejci8678fa42020-08-18 16:07:28 +0200129 *
Michal Vasko794ab4b2021-03-31 09:42:19 +0200130 * - ::ly_ctx_get_change_count()
Radek Krejci0a60f1d2020-10-26 22:24:43 +0100131 * - ::ly_ctx_internal_modules_count()
Radek Krejci8678fa42020-08-18 16:07:28 +0200132 *
Radek Krejci52785a22019-09-11 12:57:26 +0200133 * - ::lys_search_localfile()
Radek Krejci8678fa42020-08-18 16:07:28 +0200134 * - ::lys_set_implemented()
135 *
136 */
137
138/**
139 *
Radek Krejci52785a22019-09-11 12:57:26 +0200140 */
141
142/**
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200143 * @defgroup context Context
144 * @{
145 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200146 * Structures and functions to manipulate with the libyang context containers.
147 *
148 * The \em context concept allows callers to work in environments with different sets of YANG schemas.
149 * More detailed information can be found at @ref howtoContext page.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200150 */
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200151
152/**
153 * @struct ly_ctx
154 * @brief libyang context handler.
155 */
156struct ly_ctx;
157
158/**
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200159 * @ingroup context
Radek Krejci8678fa42020-08-18 16:07:28 +0200160 * @defgroup contextoptions Context options
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200161 *
162 * Options to change context behavior.
Radek Krejci474f9b82019-07-24 11:36:37 +0200163 *
164 * Note that the flags 0xFF00 are reserved for internal use.
165 *
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200166 * @{
167 */
168
Michal Vasko25d6ad02020-10-22 12:20:22 +0200169#define LY_CTX_ALL_IMPLEMENTED 0x01 /**< All the imported modules of the schema being parsed are implemented. */
170#define LY_CTX_REF_IMPLEMENTED 0x02 /**< Implement all imported modules "referenced" from an implemented module.
171 Normally, leafrefs, augment and deviation targets are implemented as
172 specified by YANG 1.1. In addition to this, implement any modules of
173 nodes referenced by when and must conditions and by any default values.
174 Generally, only if all these modules are implemented, the explicitly
175 implemented modules can be properly used and instantiated in data. */
176#define LY_CTX_NO_YANGLIBRARY 0x04 /**< Do not internally implement ietf-yang-library module. The option
Radek Krejci8678fa42020-08-18 16:07:28 +0200177 causes that function ::ly_ctx_get_yanglib_data() does not work (returns ::LY_EINVAL) until
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200178 the ietf-yang-library module is loaded manually. While any revision
179 of this schema can be loaded with this option, note that the only
Radek Krejci8678fa42020-08-18 16:07:28 +0200180 revisions implemented by ::ly_ctx_get_yanglib_data() are 2016-06-21 and 2019-01-04.
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200181 This option cannot be changed on existing context. */
182#define LY_CTX_DISABLE_SEARCHDIRS 0x08 /**< Do not search for schemas in context's searchdirs neither in current
183 working directory. It is entirely skipped and the only way to get
Radek Krejci8678fa42020-08-18 16:07:28 +0200184 schema data for imports or for ::ly_ctx_load_module() is to use the
185 callbacks provided by caller via ::ly_ctx_set_module_imp_clb() */
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200186#define LY_CTX_DISABLE_SEARCHDIR_CWD 0x10 /**< Do not automatically search for schemas in current working
187 directory, which is by default searched automatically (despite not
188 recursively). */
189#define LY_CTX_PREFER_SEARCHDIRS 0x20 /**< When searching for schema, prefer searchdirs instead of user callback. */
Radek Krejci0af46292019-01-11 16:02:31 +0100190
Michal Vaskob36053d2020-03-26 15:49:30 +0100191/** @} contextoptions */
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200192
193/**
194 * @brief Create libyang context.
195 *
196 * Context is used to hold all information about schemas. Usually, the application is supposed
197 * to work with a single context in which libyang is holding all schemas (and other internal
198 * information) according to which the data trees will be processed and validated. So, the schema
199 * trees are tightly connected with the specific context and they are held by the context internally
Radek Krejci8678fa42020-08-18 16:07:28 +0200200 * - caller does not need to keep pointers to the schemas returned by ::lys_parse(), context knows
201 * about them. The data trees created with \b lyd_parse_*() are still connected with the specific context,
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200202 * but they are not internally held by the context. The data tree just points and lean on some data
203 * held by the context (schema tree, string dictionary, etc.). Therefore, in case of data trees, caller
Radek Krejci8678fa42020-08-18 16:07:28 +0200204 * is supposed to keep pointers returned by the \b lyd_parse_*() functions and manage the data tree on its own. This
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200205 * also affects the number of instances of both tree types. While you can have only one instance of
206 * specific schema connected with a single context, number of data tree instances is not connected.
207 *
208 * @param[in] search_dir Directory where libyang will search for the imported or included modules
209 * and submodules. If no such directory is available, NULL is accepted.
210 * @param[in] options Context options, see @ref contextoptions.
211 * @param[out] new_ctx Pointer to the created libyang context if LY_SUCCESS returned.
212 * @return LY_ERR return value.
213 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200214LY_ERR ly_ctx_new(const char *search_dir, uint16_t options, struct ly_ctx **new_ctx);
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200215
216/**
Tadeáš Vintrlík390b2722021-04-07 13:52:45 +0200217 * @brief Create libyang context according to the content of the given yang-library data.
218 *
219 * This function loads the yang-library data from the given path. If you need to pass the data as
220 * string, use ::::ly_ctx_new_ylmem(). Both functions extend functionality of ::ly_ctx_new() by loading
221 * modules specified in the ietf-yang-library form into the context being created.
222 * The preferred tree model revision is 2019-01-04. However, only the first module-set is processed and loaded
223 * into the context. If there are no matching nodes from this tree, the legacy tree (originally from model revision 2016-04-09)
224 * is processed. Note, that the modules are loaded the same way as in case of ::ly_ctx_load_module(), so the schema paths in the
225 * yang-library data are ignored and the modules are loaded from the context's search locations. On the other hand, YANG features
226 * of the modules are set as specified in the yang-library data.
227 * To get yang library data from a libyang context, use ::ly_ctx_get_yanglib_data().
228 *
229 * @param[in] search_dir Directory where libyang will search for the imported or included modules and submodules.
230 * If no such directory is available, NULL is accepted.
231 * @param[in] path Path to the file containing yang-library-data in the specified format
232 * @param[in] format Format of the data in the provided file.
233 * @param[in] options Context options, see @ref contextoptions.
234 * @param[out] ctx Pointer to the created libyang context if LY_SUCCESS returned.
235 * @return LY_ERR return value
236 */
237LY_ERR ly_ctx_new_ylpath(const char *search_dir, const char *path, LYD_FORMAT format, int options, struct ly_ctx **ctx);
238
239/**
240 * @brief Create libyang context according to the content of the given yang-library data.
241 *
242 * This function loads the yang-library data from the given string. If you need to pass the data as
243 * path to a file holding the data, use ::ly_ctx_new_ylpath(). Both functions extend functionality of
244 * ::ly_ctx_new() by loading modules specified in the ietf-yang-library form into the context being created.
245 * The preferred tree model revision is 2019-01-04. However, only the first module-set is processed and loaded
246 * into the context. If there are no matching nodes from this tree, the legacy tree (originally from model revision 2016-04-09)
247 * is processed. Note, that the modules are loaded the same way as in case of ::ly_ctx_load_module(), so the schema paths in the
248 * yang-library data are ignored and the modules are loaded from the context's search locations. On the other hand, YANG features
249 * of the modules are set as specified in the yang-library data.
250 * To get yang library data from a libyang context, use ::ly_ctx_get_yanglib_data().
251 *
252 * @param[in] search_dir Directory where libyang will search for the imported or included modules and submodules.
253 * If no such directory is available, NULL is accepted.
254 * @param[in] data String containing yang-library data in the specified format.
255 * @param[in] format Format of the data in the provided file.
256 * @param[in] options Context options, see @ref contextoptions.
257 * @param[out] ctx Pointer to the created libyang context if LY_SUCCESS returned.
258 * @return LY_ERR return value
259 */
260LY_ERR ly_ctx_new_ylmem(const char *search_dir, const char *data, LYD_FORMAT format, int options, struct ly_ctx **ctx);
261
262/**
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200263 * @brief Add the search path into libyang context
264 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200265 * To reset search paths set in the context, use ::ly_ctx_unset_searchdir() and then
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200266 * set search paths again.
267 *
268 * @param[in] ctx Context to be modified.
269 * @param[in] search_dir New search path to add to the current paths previously set in ctx.
270 * @return LY_ERR return value.
271 */
272LY_ERR ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir);
273
274/**
275 * @brief Clean the search path(s) from the libyang context
276 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200277 * To remove the recently added search path(s), use ::ly_ctx_unset_searchdir_last().
Radek Krejcied5acc52019-04-25 15:57:04 +0200278 *
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200279 * @param[in] ctx Context to be modified.
280 * @param[in] value Searchdir to be removed, use NULL to remove them all.
281 * @return LY_ERR return value
282 */
Radek Krejcie58f97f2020-08-18 11:45:08 +0200283LY_ERR ly_ctx_unset_searchdir(struct ly_ctx *ctx, const char *value);
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200284
285/**
Radek Krejcie58f97f2020-08-18 11:45:08 +0200286 * @brief Remove the least recently added search path(s) from the libyang context.
Radek Krejcied5acc52019-04-25 15:57:04 +0200287 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200288 * To remove a specific search path by its value, use ::ly_ctx_unset_searchdir().
Radek Krejcied5acc52019-04-25 15:57:04 +0200289 *
290 * @param[in] ctx Context to be modified.
Radek Krejcie58f97f2020-08-18 11:45:08 +0200291 * @param[in] count Number of the searchdirs to be removed (starting by the least recently added).
292 * If the value is higher then the actual number of search paths, all paths are removed and no error is returned.
293 * Value 0 does not change the search path set.
Radek Krejcied5acc52019-04-25 15:57:04 +0200294 * @return LY_ERR return value
295 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200296LY_ERR ly_ctx_unset_searchdir_last(struct ly_ctx *ctx, uint32_t count);
Radek Krejcied5acc52019-04-25 15:57:04 +0200297
298/**
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200299 * @brief Get the NULL-terminated list of the search paths in libyang context. Do not modify the result!
300 *
301 * @param[in] ctx Context to query.
302 * @return NULL-terminated list (array) of the search paths, NULL if no searchpath was set.
303 * Do not modify the provided data in any way!
304 */
305const char * const *ly_ctx_get_searchdirs(const struct ly_ctx *ctx);
306
307/**
308 * @brief Get the currently set context's options.
309 *
310 * @param[in] ctx Context to query.
311 * @return Combination of all the currently set context's options, see @ref contextoptions.
312 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200313uint16_t ly_ctx_get_options(const struct ly_ctx *ctx);
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200314
315/**
316 * @brief Set some of the context's options, see @ref contextoptions.
317 * @param[in] ctx Context to be modified.
318 * @param[in] option Combination of the context's options to be set, see @ref contextoptions.
319 * @return LY_ERR value.
320 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200321LY_ERR ly_ctx_set_options(struct ly_ctx *ctx, uint16_t option);
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200322
323/**
324 * @brief Unset some of the context's options, see @ref contextoptions.
325 * @param[in] ctx Context to be modified.
326 * @param[in] option Combination of the context's options to be unset, see @ref contextoptions.
327 * @return LY_ERR value.
328 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200329LY_ERR ly_ctx_unset_options(struct ly_ctx *ctx, uint16_t option);
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200330
331/**
Michal Vasko794ab4b2021-03-31 09:42:19 +0200332 * @brief Get the change count of the context (module set) during its life-time.
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200333 *
334 * @param[in] ctx Context to be examined.
Michal Vasko794ab4b2021-03-31 09:42:19 +0200335 * @return Context change count.
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200336 */
Michal Vasko794ab4b2021-03-31 09:42:19 +0200337uint16_t ly_ctx_get_change_count(const struct ly_ctx *ctx);
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200338
339/**
Michal Vaskob2786d72020-08-24 13:19:52 +0200340 * @brief Callback for freeing returned module data in #ly_module_imp_clb.
341 *
342 * @param[in] module_data Data to free.
343 * @param[in] user_data User-supplied callback data, same as for #ly_module_imp_clb.
344 */
345typedef void (*ly_module_imp_data_free_clb)(void *module_data, void *user_data);
346
347/**
Radek Krejcid33273d2018-10-25 14:55:52 +0200348 * @brief Callback for retrieving missing included or imported models in a custom way.
349 *
Radek Krejcibb9d2242021-01-04 10:51:31 +0100350 * When @p submod_name is provided, the submodule is requested instead of the module (in this case only
Radek Krejcid33273d2018-10-25 14:55:52 +0200351 * the module name without its revision is provided).
352 *
353 * If an @arg free_module_data callback is provided, it will be used later to free the allegedly const data
354 * which were returned by this callback.
355 *
356 * @param[in] mod_name Missing module name.
Radek Krejci086c7132018-10-26 15:29:04 +0200357 * @param[in] mod_rev Optional missing module revision. If NULL and submod_name is not provided, the latest revision is
358 * requested, the parsed module is then marked by the latest_revision flag.
Radek Krejcid33273d2018-10-25 14:55:52 +0200359 * @param[in] submod_name Optional missing submodule name.
Radek Krejci086c7132018-10-26 15:29:04 +0200360 * @param[in] submod_rev Optional missing submodule revision. If NULL and submod_name is provided, the latest revision is
361 * requested, the parsed submodule is then marked by the latest_revision flag.
Radek Krejcid33273d2018-10-25 14:55:52 +0200362 * @param[in] user_data User-supplied callback data.
363 * @param[out] format Format of the returned module data.
364 * @param[out] module_data Requested module data.
365 * @param[out] free_module_data Callback for freeing the returned module data. If not set, the data will be left untouched.
366 * @return LY_ERR value. If the returned value differs from LY_SUCCESS, libyang continue in trying to get the module data
367 * according to the settings of its mechanism to search for the imported/included schemas.
368 */
Radek Krejcibb9d2242021-01-04 10:51:31 +0100369typedef LY_ERR (*ly_module_imp_clb)(const char *mod_name, const char *mod_rev, const char *submod_name, const char *submod_rev,
Michal Vaskob2786d72020-08-24 13:19:52 +0200370 void *user_data, LYS_INFORMAT *format, const char **module_data, ly_module_imp_data_free_clb *free_module_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200371
372/**
373 * @brief Get the custom callback for missing import/include module retrieval.
374 *
375 * @param[in] ctx Context to read from.
376 * @param[in] user_data Optional pointer for getting the user-supplied callback data.
377 * @return Callback or NULL if not set.
378 */
379ly_module_imp_clb ly_ctx_get_module_imp_clb(const struct ly_ctx *ctx, void **user_data);
380
381/**
382 * @brief Set missing include or import module callback. It is meant to be used when the models
383 * are not locally available (such as when downloading modules from a NETCONF server), it should
384 * not be required in other cases.
385 *
386 * @param[in] ctx Context that will use this callback.
387 * @param[in] clb Callback responsible for returning the missing model.
388 * @param[in] user_data Arbitrary data that will always be passed to the callback \p clb.
389 */
390void ly_ctx_set_module_imp_clb(struct ly_ctx *ctx, ly_module_imp_clb clb, void *user_data);
391
392/**
Radek Krejcib7db73a2018-10-24 14:18:40 +0200393 * @brief Get YANG module of the given name and revision.
394 *
395 * @param[in] ctx Context to work in.
396 * @param[in] name Name of the YANG module to get.
397 * @param[in] revision Requested revision date of the YANG module to get. If not specified,
398 * the schema with no revision is returned, if it is present in the context.
399 * @return Pointer to the YANG module, NULL if no schema in the context follows the name and revision requirements.
400 */
Radek Krejci0af46292019-01-11 16:02:31 +0100401struct lys_module *ly_ctx_get_module(const struct ly_ctx *ctx, const char *name, const char *revision);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200402
403/**
404 * @brief Get the latest revision of the YANG module specified by its name.
405 *
406 * YANG modules with no revision are supposed to be the oldest one.
407 *
408 * @param[in] ctx Context where to search.
409 * @param[in] name Name of the YANG module to get.
410 * @return The latest revision of the specified YANG module in the given context, NULL if no YANG module of the
411 * given name is present in the context.
412 */
Radek Krejci0af46292019-01-11 16:02:31 +0100413struct lys_module *ly_ctx_get_module_latest(const struct ly_ctx *ctx, const char *name);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200414
415/**
416 * @brief Get the (only) implemented YANG module specified by its name.
417 *
418 * @param[in] ctx Context where to search.
419 * @param[in] name Name of the YANG module to get.
420 * @return The only implemented YANG module revision of the given name in the given context. NULL if there is no
421 * implemented module of the given name.
422 */
Radek Krejci0af46292019-01-11 16:02:31 +0100423struct lys_module *ly_ctx_get_module_implemented(const struct ly_ctx *ctx, const char *name);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200424
425/**
Radek Krejcied5acc52019-04-25 15:57:04 +0200426 * @brief Iterate over all modules in the given context.
427 *
428 * @param[in] ctx Context with the modules.
429 * @param[in,out] index Index of the next module to get. Value of 0 starts from the beginning.
430 * The value is updated with each call, so to iterate over all modules the same variable is supposed
431 * to be used in all calls starting with value 0.
432 * @return Next context module, NULL if the last was already returned.
433 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200434const struct lys_module *ly_ctx_get_module_iter(const struct ly_ctx *ctx, uint32_t *index);
Radek Krejcied5acc52019-04-25 15:57:04 +0200435
436/**
Radek Krejcib7db73a2018-10-24 14:18:40 +0200437 * @brief Get YANG module of the given namespace and revision.
438 *
439 * @param[in] ctx Context to work in.
440 * @param[in] ns Namespace of the YANG module to get.
441 * @param[in] revision Requested revision date of the YANG module to get. If not specified,
442 * the schema with no revision is returned, if it is present in the context.
443 * @return Pointer to the YANG module, NULL if no schema in the context follows the namespace and revision requirements.
444 */
Radek Krejci0af46292019-01-11 16:02:31 +0100445struct lys_module *ly_ctx_get_module_ns(const struct ly_ctx *ctx, const char *ns, const char *revision);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200446
447/**
448 * @brief Get the latest revision of the YANG module specified by its namespace.
449 *
450 * YANG modules with no revision are supposed to be the oldest one.
451 *
452 * @param[in] ctx Context where to search.
453 * @param[in] ns Namespace of the YANG module to get.
454 * @return The latest revision of the specified YANG module in the given context, NULL if no YANG module of the
455 * given namespace is present in the context.
456 */
Radek Krejci0af46292019-01-11 16:02:31 +0100457struct lys_module *ly_ctx_get_module_latest_ns(const struct ly_ctx *ctx, const char *ns);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200458
459/**
460 * @brief Get the (only) implemented YANG module specified by its namespace.
461 *
462 * @param[in] ctx Context where to search.
463 * @param[in] ns Namespace of the YANG module to get.
464 * @return The only implemented YANG module revision of the given namespace in the given context. NULL if there is no
465 * implemented module of the given namespace.
466 */
Radek Krejci0af46292019-01-11 16:02:31 +0100467struct lys_module *ly_ctx_get_module_implemented_ns(const struct ly_ctx *ctx, const char *ns);
Radek Krejcib7db73a2018-10-24 14:18:40 +0200468
469/**
Michal Vasko8dc31992021-02-22 10:30:47 +0100470 * @brief Get a specific submodule from context. If its belongs-to module is known, use ::ly_ctx_get_submodule2().
471 *
472 * @param[in] ctx libyang context to search in.
473 * @param[in] submodule Submodule name to find.
474 * @param[in] revision Revision of the submodule to find, NULL for a submodule without a revision.
475 * @return Found submodule, NULL if there is none.
476 */
477const struct lysp_submodule *ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *submodule, const char *revision);
478
479/**
480 * @brief Get the latests revision of a submodule from context. If its belongs-to module is known,
481 * use ::ly_ctx_get_submodule2_latest().
482 *
483 * @param[in] ctx libyang context to search in.
484 * @param[in] submodule Submodule name to find.
485 * @return Found submodule, NULL if there is none.
486 */
487const struct lysp_submodule *ly_ctx_get_submodule_latest(const struct ly_ctx *ctx, const char *submodule);
488
489/**
490 * @brief Get a specific submodule from a module. If the belongs-to module is not known, use ::ly_ctx_get_submodule().
491 *
492 * @param[in] module Belongs-to module to search in.
493 * @param[in] submodule Submodule name to find.
494 * @param[in] revision Revision of the submodule to find, NULL for a submodule without a revision.
495 * @return Found submodule, NULL if there is none.
496 */
497const struct lysp_submodule *ly_ctx_get_submodule2(const struct lys_module *module, const char *submodule,
498 const char *revision);
499
500/**
501 * @brief Get the latest revision of a submodule from a module. If the belongs-to module is not known,
502 * use ::ly_ctx_get_submodule_latest().
503 *
504 * @param[in] module Belongs-to module to search in.
505 * @param[in] submodule Submodule name to find.
506 * @return Found submodule, NULL if there is none.
507 */
508const struct lysp_submodule *ly_ctx_get_submodule2_latest(const struct lys_module *module, const char *submodule);
509
510/**
Radek Krejcie9e987e2018-10-31 12:50:27 +0100511 * @brief Reset cached latest revision information of the schemas in the context.
512 *
513 * When a (sub)module is imported/included without revision, the latest revision is
514 * searched. libyang searches for the latest revision in searchdirs and/or via provided
Radek Krejci8678fa42020-08-18 16:07:28 +0200515 * import callback ::ly_module_imp_clb() just once. Then it is expected that the content
Radek Krejcie9e987e2018-10-31 12:50:27 +0100516 * of searchdirs or data returned by the callback does not change. So when it changes,
517 * it is necessary to force searching for the latest revision in case of loading another
518 * module, which what this function does.
519 *
520 * The latest revision information is also reset when the searchdirs set changes via
Radek Krejci8678fa42020-08-18 16:07:28 +0200521 * ::ly_ctx_set_searchdir().
Radek Krejcie9e987e2018-10-31 12:50:27 +0100522 *
523 * @param[in] ctx libyang context where the latest revision information is going to be reset.
524 */
525void ly_ctx_reset_latests(struct ly_ctx *ctx);
526
527/**
Michal Vaskode79e222020-08-10 11:55:46 +0200528 * @brief Learn the number of internal modules of a context. Internal modules
529 * is considered one that was loaded during the context creation.
530 *
531 * @param[in] ctx libyang context to examine.
532 * @return Number of internal modules.
533 */
Radek Krejci0a60f1d2020-10-26 22:24:43 +0100534uint32_t ly_ctx_internal_modules_count(const struct ly_ctx *ctx);
Michal Vaskode79e222020-08-10 11:55:46 +0200535
536/**
Radek Krejcied5acc52019-04-25 15:57:04 +0200537 * @brief Try to find the model in the searchpaths of \p ctx and load it into it. If custom missing
538 * module callback is set, it is used instead.
539 *
540 * The context itself is searched for the requested module first. If \p revision is not specified
541 * (the module of the latest revision is requested) and there is implemented revision of the requested
542 * module in the context, this implemented revision is returned despite there might be a newer revision.
543 * This behavior is cause by the fact that it is not possible to have multiple implemented revisions of
544 * the same module in the context.
545 *
546 * @param[in] ctx Context to add to.
547 * @param[in] name Name of the module to load.
548 * @param[in] revision Optional revision date of the module. If not specified, the latest revision is loaded.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100549 * @param[in] features Optional array of features ended with NULL to be enabled if the module is being implemented.
Radek Krejci2415f882021-01-20 16:27:09 +0100550 * The feature string '*' enables all and array of length 1 with only the terminating NULL explicitly disables all
551 * the features. In case the parameter is NULL, the features are untouched - left disabled in newly loaded module or
552 * with the current features settings in case the module is already present in the context.
Radek Krejcied5acc52019-04-25 15:57:04 +0200553 * @return Pointer to the data model structure, NULL if not found or some error occurred.
554 */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100555const struct lys_module *ly_ctx_load_module(struct ly_ctx *ctx, const char *name, const char *revision,
556 const char **features);
Radek Krejcied5acc52019-04-25 15:57:04 +0200557
558/**
Michal Vasko57c10cd2020-05-27 15:57:11 +0200559 * @brief Get data of the internal ietf-yang-library module with information about all the loaded modules.
560 * ietf-yang-library module must be loaded.
561 *
Michal Vasko794ab4b2021-03-31 09:42:19 +0200562 * Note that "/ietf-yang-library:yang-library/datastore" list instances are not created and should be
563 * appended by the caller. There is a single "/ietf-yang-library:yang-library/schema" instance created
564 * with the key value "complete".
565 *
566 * If the data identifier can be limited to the existence and changes of this context, the following
567 * last 2 parameters can be used:
568 *
569 * "%u" as @p content_id_format and ::ly_ctx_get_change_count() as its parameter.
570 *
Michal Vasko57c10cd2020-05-27 15:57:11 +0200571 * @param[in] ctx Context with the modules.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200572 * @param[out] root Generated yang-library data.
Michal Vasko794ab4b2021-03-31 09:42:19 +0200573 * @param[in] content_id_format Format string (printf-like) for the yang-library data identifier, which is
574 * the "content_id" node in the 2019-01-04 revision of ietf-yang-library.
575 * @param[in] ... Parameters for @p content_id_format.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200576 * @return LY_ERR value
Michal Vasko57c10cd2020-05-27 15:57:11 +0200577 */
Michal Vasko794ab4b2021-03-31 09:42:19 +0200578LY_ERR ly_ctx_get_yanglib_data(const struct ly_ctx *ctx, struct lyd_node **root, const char *content_id_format, ...);
Michal Vasko57c10cd2020-05-27 15:57:11 +0200579
580/**
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200581 * @brief Free all internal structures of the specified context.
582 *
583 * The function should be used before terminating the application to destroy
584 * and free all structures internally used by libyang. If the caller uses
585 * multiple contexts, the function should be called for each used context.
586 *
587 * All instance data are supposed to be freed before destroying the context.
Radek Krejci8678fa42020-08-18 16:07:28 +0200588 * Data models are destroyed automatically as part of ::ly_ctx_destroy() call.
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200589 *
590 * @param[in] ctx libyang context to destroy
591 * @param[in] private_destructor Optional destructor function for private objects assigned
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100592 * to the schema nodes' priv pointer. If NULL, the private objects are not freed by libyang.
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200593 */
594void ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lysc_node *node, void *priv));
595
596/** @} context */
597
598#ifdef __cplusplus
599}
600#endif
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200601
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200602#endif /* LY_CONTEXT_H_ */