blob: 0f611f4836d01cd60aebf17e20831aa63f33c2f9 [file] [log] [blame]
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001/**
2 * @file tree_schema.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief libyang representation of YANG schema trees.
5 *
6 * Copyright (c) 2015 - 2018 CESNET, z.s.p.o.
7 *
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_TREE_SCHEMA_H_
16#define LY_TREE_SCHEMA_H_
17
Radek Krejci54579462019-04-30 12:47:06 +020018#define PCRE2_CODE_UNIT_WIDTH 8
19
20#include <pcre2.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020021
Radek Krejci5aeea3a2018-09-05 13:29:36 +020022#include <stdint.h>
Radek Krejcid3ca0632019-04-16 16:54:54 +020023#include <stdio.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020024
Radek Krejcie7b95092019-05-15 11:03:07 +020025#include "log.h"
26#include "tree.h"
Radek Krejcice8c1592018-10-29 15:35:51 +010027
Radek Krejci70853c52018-10-15 14:46:16 +020028#ifdef __cplusplus
29extern "C" {
30#endif
31
Radek Krejcica376bd2020-06-11 16:04:06 +020032struct ly_ctx;
Radek Krejci47fab892020-11-05 17:02:41 +010033struct ly_path;
Radek Krejcica376bd2020-06-11 16:04:06 +020034struct ly_set;
Radek Krejci47fab892020-11-05 17:02:41 +010035struct lys_module;
36struct lysc_node;
37struct lyxp_expr;
Radek Krejcica376bd2020-06-11 16:04:06 +020038
Radek Krejci5aeea3a2018-09-05 13:29:36 +020039/**
Radek Krejci8678fa42020-08-18 16:07:28 +020040 * @page howtoSchema YANG Modules
41 *
42 * To be able to work with YANG data instances, libyang has to represent YANG data models. All the processed modules are stored
43 * in libyang [context](@ref howtoContext) and loaded using [parser functions](@ref howtoSchemaParsers). It means, that there is
44 * no way to create/change YANG module programmatically. However, all the YANG model definitions are available and can be examined
45 * through the C structures. All the context's modules together form YANG Schema for the data being instantiated.
46 *
47 * Any YANG module is represented as ::lys_module. In fact, the module is represented in two different formats. As ::lys_module.parsed,
48 * there is a parsed schema reflecting the source YANG module. It is exactly what is read from the input. This format is good for
49 * converting from one format to another (YANG to YIN and vice versa), but it is not very useful for validating/manipulating YANG
50 * data. Therefore, there is ::lys_module.compiled storing the compiled YANG module. It is based on the parsed module, but all the
51 * references are resolved. It means that, for example, there are no `grouping`s or `typedef`s since they are supposed to be placed instead of
52 * `uses` or `type` references. This split also means, that the YANG module is fully validated after compilation of the parsed
53 * representation of the module. YANG submodules are available only in the parsed representation. When a submodule is compiled, it
54 * is fully integrated into its main module.
55 *
56 * The context can contain even modules without the compiled representation. Such modules are still useful as imports of other
57 * modules. The grouping or typedef definition can be even compiled into the importing modules. This is actually the main
58 * difference between the imported and implemented modules in the libyang context. The implemented modules are compiled while the
59 * imported modules are only parsed.
60 *
Radek Krejcib100b192020-10-26 08:37:45 +010061 * By default, the module is implemented (and compiled) in case it is explicitly loaded or referenced in another module as
62 * target of leafref, augment or deviation. This behavior can be changed via context options ::LY_CTX_ALL_IMPLEMENTED, when
63 * all the modules in the context are marked as implemented (note the problem with multiple revisions of a single module),
64 * or by ::LY_CTX_REF_IMPLEMENTED option, extending the set of references making the module implemented by when, must and
65 * default statements.
Radek Krejci8678fa42020-08-18 16:07:28 +020066 *
67 * All modules with deviation definition are always marked as implemented. The imported (not implemented) module can be set implemented by ::lys_set_implemented(). But
68 * the implemented module cannot be changed back to just imported module. Note also that only one revision of a specific module
69 * can be implemented in a single context. The imported modules are used only as a
70 * source of definitions for types and groupings for uses statements. The data in such modules are ignored - caller
71 * is not allowed to create the data (including instantiating identities) defined in the model via data parsers,
72 * the default nodes are not added into any data tree and mandatory nodes are not checked in the data trees.
73 *
Michal Vasko14ed9cd2021-01-28 14:16:25 +010074 * The compiled schema tree nodes are able to hold private objects (::lysc_node.priv as a pointer to a structure,
75 * function, variable, ...) used by a caller application.
Radek Krejci8678fa42020-08-18 16:07:28 +020076 * Note that the object is not freed by libyang when the context is being destroyed. So the caller is responsible
77 * for freeing the provided structure after the context is destroyed or the private pointer is set to NULL in
78 * appropriate schema nodes where the object was previously set. This can be automated via destructor function
79 * to free these private objects. The destructor is passed to the ::ly_ctx_destroy() function.
80 *
81 * Despite all the schema structures and their members are available as part of the libyang API and callers can use
82 * it to navigate through the schema tree structure or to obtain various information, we recommend to use the following
83 * macros for the specific actions.
84 * - ::LYSC_TREE_DFS_BEGIN and ::LYSC_TREE_DFS_END to traverse the schema tree (depth-first).
85 * - ::LY_LIST_FOR and ::LY_ARRAY_FOR as described on @ref howtoStructures page.
86 *
87 * Further information about modules handling can be found on the following pages:
88 * - @subpage howtoSchemaParsers
89 * - @subpage howtoSchemaFeatures
90 * - @subpage howtoPlugins
91 * - @subpage howtoSchemaPrinters
92 *
93 * \note There are many functions to access information from the schema trees. Details are available in
94 * the [Schema Tree module](@ref schematree).
95 *
96 * For information about difference between implemented and imported modules, see the
97 * [context description](@ref howtoContext).
98 *
99 * Functions List (not assigned to above subsections)
100 * --------------------------------------------------
101 * - ::lys_getnext()
102 * - ::lys_nodetype2str()
103 * - ::lys_set_implemented()
104 * - ::lys_value_validate()
105 *
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100106 * - ::lysc_has_when()
107 *
Michal Vasko544e58a2021-01-28 14:33:41 +0100108 * - ::lysc_node_child()
Radek Krejci8678fa42020-08-18 16:07:28 +0200109 * - ::lysc_node_actions()
110 * - ::lysc_node_notifs()
111 *
Michal Vasko544e58a2021-01-28 14:33:41 +0100112 * - ::lysp_node_child()
Radek Krejci8678fa42020-08-18 16:07:28 +0200113 * - ::lysp_node_actions()
114 * - ::lysp_node_notifs()
115 * - ::lysp_node_groupings()
116 * - ::lysp_node_typedefs()
117 */
118
119/**
120 * @page howtoSchemaFeatures YANG Features
121 *
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100122 * YANG feature statement is an important part of the language which can significantly affect the meaning of the schemas.
123 * Modifying features may have similar effects as loading/removing schema from the context so it is limited to context
124 * preparation period before working with data. YANG features, respectively their use in if-feature
125 * statements, are evaluated as part of schema compilation so a feature-specific compiled schema tree is generated
126 * as a result.
Radek Krejci8678fa42020-08-18 16:07:28 +0200127 *
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100128 * To enable any features, they must currently be specified when implementing a new schema with ::lys_parse() or
129 * ::ly_ctx_load_module(). To later examine what the status of a feature is, check its ::LYS_FENABLED flag or
130 * search for it first with ::lys_feature_value(). Lastly, to evaluate compiled if-features, use ::lysc_iffeature_value().
Radek Krejci8678fa42020-08-18 16:07:28 +0200131 *
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100132 * To iterate over all features of a particular YANG module, use ::lysp_feature_next().
Radek Krejci8678fa42020-08-18 16:07:28 +0200133 *
134 * Note, that the feature's state can affect some of the output formats (e.g. Tree format).
135 *
136 * Functions List
137 * --------------
Radek Krejci8678fa42020-08-18 16:07:28 +0200138 * - ::lys_feature_value()
Radek Krejci8678fa42020-08-18 16:07:28 +0200139 * - ::lysc_iffeature_value()
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100140 * - ::lysp_feature_next()
Radek Krejci8678fa42020-08-18 16:07:28 +0200141 */
142
143/**
Radek Krejci2ff0d572020-05-21 15:27:28 +0200144 * @ingroup trees
Radek Krejci8678fa42020-08-18 16:07:28 +0200145 * @defgroup schematree Schema Tree
Radek Krejci2ff0d572020-05-21 15:27:28 +0200146 * @{
147 *
148 * Data structures and functions to manipulate and access schema tree.
149 */
150
Michal Vasko64246d82020-08-19 12:35:00 +0200151/* *INDENT-OFF* */
152
Radek Krejci2ff0d572020-05-21 15:27:28 +0200153/**
Michal Vasko208a04a2020-10-21 15:17:12 +0200154 * @brief Macro to iterate via all elements in a schema (sub)tree including input and output.
155 * Note that __actions__ and __notifications__ of traversed nodes __are ignored__! To traverse
156 * on all the nodes including those, use ::lysc_tree_dfs_full() instead.
157 *
158 * This is the opening part to the #LYSC_TREE_DFS_END - they always have to be used together.
Radek Krejci0935f412019-08-20 16:15:18 +0200159 *
160 * The function follows deep-first search algorithm:
161 * <pre>
162 * 1
163 * / \
164 * 2 4
165 * / / \
166 * 3 5 6
167 * </pre>
168 *
169 * Use the same parameters for #LYSC_TREE_DFS_BEGIN and #LYSC_TREE_DFS_END. While
Radek Krejci2a9fc652021-01-22 17:44:34 +0100170 * START can be any of the lysc_node* types (including lysc_node_action and lysc_node_notif),
Radek Krejci0935f412019-08-20 16:15:18 +0200171 * ELEM variable must be of the struct lysc_node* type.
172 *
173 * To skip a particular subtree, instead of the continue statement, set LYSC_TREE_DFS_continue
174 * variable to non-zero value.
175 *
176 * Use with opening curly bracket '{' after the macro.
177 *
178 * @param START Pointer to the starting element processed first.
179 * @param ELEM Iterator intended for use in the block.
180 */
181#define LYSC_TREE_DFS_BEGIN(START, ELEM) \
Radek Krejci857189e2020-09-01 13:26:36 +0200182 { ly_bool LYSC_TREE_DFS_continue = 0; struct lysc_node *LYSC_TREE_DFS_next; \
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100183 for ((ELEM) = (LYSC_TREE_DFS_next) = (struct lysc_node *)(START); \
Radek Krejci0935f412019-08-20 16:15:18 +0200184 (ELEM); \
185 (ELEM) = (LYSC_TREE_DFS_next), LYSC_TREE_DFS_continue = 0)
186
187/**
188 * @brief Macro to iterate via all elements in a (sub)tree. This is the closing part
189 * to the #LYSC_TREE_DFS_BEGIN - they always have to be used together.
190 *
191 * Use the same parameters for #LYSC_TREE_DFS_BEGIN and #LYSC_TREE_DFS_END. While
Radek Krejci2a9fc652021-01-22 17:44:34 +0100192 * START can be a pointer to any of the lysc_node* types (including lysc_node_action and lysc_node_notif),
Radek Krejci0935f412019-08-20 16:15:18 +0200193 * ELEM variable must be pointer to the lysc_node type.
194 *
195 * Use with closing curly bracket '}' after the macro.
196 *
197 * @param START Pointer to the starting element processed first.
198 * @param ELEM Iterator intended for use in the block.
199 */
Radek Krejci0935f412019-08-20 16:15:18 +0200200#define LYSC_TREE_DFS_END(START, ELEM) \
201 /* select element for the next run - children first */ \
202 if (LYSC_TREE_DFS_continue) { \
203 (LYSC_TREE_DFS_next) = NULL; \
204 } else { \
Michal Vasko544e58a2021-01-28 14:33:41 +0100205 (LYSC_TREE_DFS_next) = (struct lysc_node *)lysc_node_child(ELEM); \
Michal Vasko208a04a2020-10-21 15:17:12 +0200206 } \
Radek Krejci0935f412019-08-20 16:15:18 +0200207 if (!(LYSC_TREE_DFS_next)) { \
Michal Vasko208a04a2020-10-21 15:17:12 +0200208 /* no children, try siblings */ \
209 _LYSC_TREE_DFS_NEXT(START, ELEM, LYSC_TREE_DFS_next); \
Radek Krejci0935f412019-08-20 16:15:18 +0200210 } \
211 while (!(LYSC_TREE_DFS_next)) { \
212 /* parent is already processed, go to its sibling */ \
Radek Krejci7d95fbb2021-01-26 17:33:13 +0100213 (ELEM) = (ELEM)->parent; \
Michal Vasko208a04a2020-10-21 15:17:12 +0200214 _LYSC_TREE_DFS_NEXT(START, ELEM, LYSC_TREE_DFS_next); \
215 } }
216
217/**
218 * @brief Helper macro for #LYSC_TREE_DFS_END, should not be used directly!
219 */
220#define _LYSC_TREE_DFS_NEXT(START, ELEM, NEXT) \
221 if ((ELEM) == (struct lysc_node *)(START)) { \
222 /* we are done, no next element to process */ \
223 break; \
224 } \
Michal Vasko544e58a2021-01-28 14:33:41 +0100225 (NEXT) = (ELEM)->next;
Radek Krejci0935f412019-08-20 16:15:18 +0200226
Michal Vasko64246d82020-08-19 12:35:00 +0200227/* *INDENT-ON* */
228
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200229#define LY_REV_SIZE 11 /**< revision data string length (including terminating NULL byte) */
230
Michal Vasko7f45cf22020-10-01 12:49:44 +0200231#define LYS_UNKNOWN 0x0000 /**< uninitalized unknown statement node */
232#define LYS_CONTAINER 0x0001 /**< container statement node */
233#define LYS_CHOICE 0x0002 /**< choice statement node */
234#define LYS_LEAF 0x0004 /**< leaf statement node */
235#define LYS_LEAFLIST 0x0008 /**< leaf-list statement node */
236#define LYS_LIST 0x0010 /**< list statement node */
237#define LYS_ANYXML 0x0020 /**< anyxml statement node */
238#define LYS_ANYDATA 0x0060 /**< anydata statement node, in tests it can be used for both #LYS_ANYXML and #LYS_ANYDATA */
239#define LYS_CASE 0x0080 /**< case statement node */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200240
Michal Vasko7f45cf22020-10-01 12:49:44 +0200241#define LYS_RPC 0x0100 /**< RPC statement node */
242#define LYS_ACTION 0x0200 /**< action statement node */
243#define LYS_NOTIF 0x0400 /**< notification statement node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200244
Michal Vasko7f45cf22020-10-01 12:49:44 +0200245#define LYS_USES 0x0800 /**< uses statement node */
246#define LYS_INPUT 0x1000 /**< RPC/action input node */
247#define LYS_OUTPUT 0x2000 /**< RPC/action output node */
248#define LYS_GROUPING 0x4000
249#define LYS_AUGMENT 0x8000
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100250
Radek Krejcif13b87b2020-12-01 22:02:17 +0100251#define LYS_NODETYPE_MASK 0xffff /**< Mask for nodetypes, the value is limited for 16 bits */
252
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200253/**
Radek Krejcid6b76452019-09-03 17:03:03 +0200254 * @brief List of YANG statements
255 */
256enum ly_stmt {
257 LY_STMT_NONE = 0,
Radek Krejcieccf6602021-02-05 19:42:54 +0100258 LY_STMT_ACTION, /**< in ::lysc_ext_substmt.storage stored as a pointer to linked list of `struct lysc_node_action *`.
259 Note that due to compatibility with `struct lysc_node *`, the compiled actions can be actually
260 mixed in the linked list with other ::lysc_node based nodes if the storage is shared. */
261 LY_STMT_ANYDATA, /**< in ::lysc_ext_substmt.storage stored as a pointer to linked list of `struct lysc_node *`.
262 Note that due to ::lysc_node compatibility the anydata can be actually mixed in
263 the linked list with other ::lysc_node based nodes if the storage is shared. */
264 LY_STMT_ANYXML, /**< in ::lysc_ext_substmt.storage stored as a pointer to linked list of `struct lysc_node *`.
265 Note that due to ::lysc_node compatibility the anyxml can be actually mixed in
266 the linked list with other ::lysc_node based nodes if the storage is shared. */
Radek Krejcid6b76452019-09-03 17:03:03 +0200267 LY_STMT_ARGUMENT,
Radek Krejcieccf6602021-02-05 19:42:54 +0100268 LY_STMT_ARG_TEXT,
269 LY_STMT_ARG_VALUE,
Radek Krejcid6b76452019-09-03 17:03:03 +0200270 LY_STMT_AUGMENT,
271 LY_STMT_BASE,
272 LY_STMT_BELONGS_TO,
273 LY_STMT_BIT,
Radek Krejcieccf6602021-02-05 19:42:54 +0100274 LY_STMT_CASE, /**< TODO is it possible to compile cases without the parent choice? */
275 LY_STMT_CHOICE, /**< in ::lysc_ext_substmt.storage stored as a pointer to linked list of `struct lysc_node *`.
276 Note that due to ::lysc_node compatibility the choice can be actually mixed in
277 the linked list with other ::lysc_node based nodes if the storage is shared. */
278 LY_STMT_CONFIG, /**< in ::lysc_ext_substmt.storage stored as a pointer to `uint16_t`, only cardinality < #LY_STMT_CARD_SOME is allowed */
Radek Krejcid6b76452019-09-03 17:03:03 +0200279 LY_STMT_CONTACT,
Radek Krejcieccf6602021-02-05 19:42:54 +0100280 LY_STMT_CONTAINER, /**< in ::lysc_ext_substmt.storage stored as a pointer to linked list of `struct lysc_node *`.
281 Note that due to ::lysc_node compatibility the container can be actually mixed in
282 the linked list with other ::lysc_node based nodes if the storage is shared. */
283 LY_STMT_DEFAULT,
Radek Krejcid6b76452019-09-03 17:03:03 +0200284 LY_STMT_DESCRIPTION,
285 LY_STMT_DEVIATE,
286 LY_STMT_DEVIATION,
287 LY_STMT_ENUM,
288 LY_STMT_ERROR_APP_TAG,
289 LY_STMT_ERROR_MESSAGE,
290 LY_STMT_EXTENSION,
Radek Krejcieccf6602021-02-05 19:42:54 +0100291 LY_STMT_EXTENSION_INSTANCE,
Radek Krejcid6b76452019-09-03 17:03:03 +0200292 LY_STMT_FEATURE,
293 LY_STMT_FRACTION_DIGITS,
294 LY_STMT_GROUPING,
295 LY_STMT_IDENTITY,
Radek Krejci8678fa42020-08-18 16:07:28 +0200296 LY_STMT_IF_FEATURE, /**< in ::lysc_ext_substmt.storage stored as a pointer to `struct lysc_iffeature` (cardinality < #LY_STMT_CARD_SOME)
Radek Krejciad5963b2019-09-06 16:03:05 +0200297 or as a pointer to a [sized array](@ref sizedarrays) `struct lysc_iffeature *` */
Radek Krejcid6b76452019-09-03 17:03:03 +0200298 LY_STMT_IMPORT,
299 LY_STMT_INCLUDE,
300 LY_STMT_INPUT,
301 LY_STMT_KEY,
302 LY_STMT_LEAF,
303 LY_STMT_LEAF_LIST,
304 LY_STMT_LENGTH,
Radek Krejcieccf6602021-02-05 19:42:54 +0100305 LY_STMT_LIST, /**< in ::lysc_ext_substmt.storage stored as a pointer to linked list of `struct lysc_node *`.
306 Note that due to ::lysc_node compatibility the list can be actually mixed in
307 the linked list with other ::lysc_node based nodes if the storage is shared. */
308 LY_STMT_MANDATORY, /**< in ::lysc_ext_substmt.storage stored as a pointer to `uint16_t`, only cardinality < #LY_STMT_CARD_SOME is allowed */
Radek Krejcid6b76452019-09-03 17:03:03 +0200309 LY_STMT_MAX_ELEMENTS,
310 LY_STMT_MIN_ELEMENTS,
311 LY_STMT_MODIFIER,
312 LY_STMT_MODULE,
313 LY_STMT_MUST,
314 LY_STMT_NAMESPACE,
315 LY_STMT_NOTIFICATION,
316 LY_STMT_ORDERED_BY,
317 LY_STMT_ORGANIZATION,
318 LY_STMT_OUTPUT,
319 LY_STMT_PATH,
320 LY_STMT_PATTERN,
321 LY_STMT_POSITION,
322 LY_STMT_PREFIX,
323 LY_STMT_PRESENCE,
324 LY_STMT_RANGE,
325 LY_STMT_REFERENCE,
326 LY_STMT_REFINE,
327 LY_STMT_REQUIRE_INSTANCE,
328 LY_STMT_REVISION,
329 LY_STMT_REVISION_DATE,
Radek Krejcieccf6602021-02-05 19:42:54 +0100330 LY_STMT_RPC, /**< in ::lysc_ext_substmt.storage stored as a pointer to linked list of `struct lysc_node_action *`.
331 Note that due to compatibility with `struct lysc_node *`, the compiled RPCs can be actually
332 mixed in the linked list with other ::lysc_node based nodes if the storage is shared. */
333 LY_STMT_STATUS, /**< in ::lysc_ext_substmt.storage stored as a pointer to `uint16_t`, only cardinality < #LY_STMT_CARD_SOME is allowed */
Radek Krejcid6b76452019-09-03 17:03:03 +0200334 LY_STMT_SUBMODULE,
Radek Krejcieccf6602021-02-05 19:42:54 +0100335 LY_STMT_SYNTAX_SEMICOLON,
336 LY_STMT_SYNTAX_LEFT_BRACE,
337 LY_STMT_SYNTAX_RIGHT_BRACE,
338 LY_STMT_TYPE, /**< in ::lysc_ext_substmt.storage stored as a pointer to `struct lysc_type *` (cardinality < #LY_STMT_CARD_SOME)
339 or as a pointer to a [sized array](@ref sizedarrays) `struct lysc_type **` */
Radek Krejcid6b76452019-09-03 17:03:03 +0200340 LY_STMT_TYPEDEF,
341 LY_STMT_UNIQUE,
Radek Krejcieccf6602021-02-05 19:42:54 +0100342 LY_STMT_UNITS, /**< in ::lysc_ext_substmt.storage stored as a pointer to `const char *` (cardinality < #LY_STMT_CARD_SOME)
343 or as a pointer to a [sized array](@ref sizedarrays) `const char **` */
Radek Krejcid6b76452019-09-03 17:03:03 +0200344 LY_STMT_USES,
345 LY_STMT_VALUE,
346 LY_STMT_WHEN,
347 LY_STMT_YANG_VERSION,
Radek Krejcieccf6602021-02-05 19:42:54 +0100348 LY_STMT_YIN_ELEMENT
Radek Krejcid6b76452019-09-03 17:03:03 +0200349};
350
351/**
Radek Krejci0e59c312019-08-15 15:34:15 +0200352 * @brief Extension instance structure parent enumeration
353 */
354typedef enum {
Radek Krejci0935f412019-08-20 16:15:18 +0200355 LYEXT_PAR_MODULE, /**< ::lysc_module */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100356 LYEXT_PAR_NODE, /**< ::lysc_node (and the derived structures including ::lysc_node_action and ::lysc_node_notif) */
357 LYEXT_PAR_INPUT, /**< ::lysc_node_action_inout */
358 LYEXT_PAR_OUTPUT, /**< ::lysc_node_action_inout */
Radek Krejci0935f412019-08-20 16:15:18 +0200359 LYEXT_PAR_TYPE, /**< ::lysc_type */
360 LYEXT_PAR_TYPE_BIT, /**< ::lysc_type_bitenum_item */
361 LYEXT_PAR_TYPE_ENUM, /**< ::lysc_type_bitenum_item */
Radek Krejci0935f412019-08-20 16:15:18 +0200362 LYEXT_PAR_MUST, /**< ::lysc_must */
363 LYEXT_PAR_PATTERN, /**< ::lysc_pattern */
364 LYEXT_PAR_LENGTH, /**< ::lysc_range */
365 LYEXT_PAR_RANGE, /**< ::lysc_range */
366 LYEXT_PAR_WHEN, /**< ::lysc_when */
367 LYEXT_PAR_IDENT, /**< ::lysc_ident */
368 LYEXT_PAR_EXT, /**< ::lysc_ext */
Michal Vasko69730152020-10-09 16:30:07 +0200369 LYEXT_PAR_IMPORT /**< ::lysp_import */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100370#if 0
371 LYEXT_PAR_TPDF, /**< ::lysp_tpdf */
372 LYEXT_PAR_EXTINST, /**< ::lysp_ext_instance */
373 LYEXT_PAR_REFINE, /**< ::lysp_refine */
374 LYEXT_PAR_DEVIATION, /**< ::lysp_deviation */
375 LYEXT_PAR_DEVIATE, /**< ::lysp_deviate */
376 LYEXT_PAR_INCLUDE, /**< ::lysp_include */
377 LYEXT_PAR_REVISION /**< ::lysp_revision */
378#endif
Radek Krejci0e59c312019-08-15 15:34:15 +0200379} LYEXT_PARENT;
380
381/**
Radek Krejci0935f412019-08-20 16:15:18 +0200382 * @brief Stringify extension instance parent type.
383 * @param[in] type Parent type to stringify.
384 * @return Constant string with the name of the parent statement.
385 */
386const char *lyext_parent2str(LYEXT_PARENT type);
387
388/**
Radek Krejci0e59c312019-08-15 15:34:15 +0200389 * @brief Enum of substatements in which extension instances can appear.
390 */
391typedef enum {
Radek Krejcieccf6602021-02-05 19:42:54 +0100392 LYEXT_SUBSTMT_SELF = 0, /**< extension of the structure itself, not substatement's */
393 LYEXT_SUBSTMT_ARGUMENT = LY_STMT_ARGUMENT, /**< extension of the argument statement, can appear in lys_ext */
394 LYEXT_SUBSTMT_BASE = LY_STMT_BASE, /**< extension of the base statement, can appear (repeatedly) in lys_type and lys_ident */
395 LYEXT_SUBSTMT_BELONGS_TO = LY_STMT_BELONGS_TO, /**< extension of the belongs-to statement, can appear in lys_submodule */
396 LYEXT_SUBSTMT_CONFIG = LY_STMT_CONFIG, /**< extension of the config statement, can appear in lys_node and lys_deviate */
397 LYEXT_SUBSTMT_CONTACT = LY_STMT_CONTACT, /**< extension of the contact statement, can appear in lys_module */
398 LYEXT_SUBSTMT_DEFAULT = LY_STMT_DEFAULT, /**< extension of the default statement, can appear in lys_node_leaf, lys_node_leaflist,
399 lys_node_choice and lys_deviate */
400 LYEXT_SUBSTMT_DESCRIPTION = LY_STMT_DESCRIPTION, /**< extension of the description statement, can appear in lys_module, lys_submodule,
401 lys_node, lys_import, lys_include, lys_ext, lys_feature, lys_tpdf, lys_restr,
402 lys_ident, lys_deviation, lys_type_enum, lys_type_bit, lys_when and lys_revision */
403 LYEXT_SUBSTMT_ERROR_APP_TAG = LY_STMT_ERROR_APP_TAG, /**< extension of the error-app-tag statement, can appear in lys_restr */
404 LYEXT_SUBSTMT_ERROR_MESSAGE = LY_STMT_ERROR_MESSAGE, /**< extension of the error-message statement, can appear in lys_restr */
405 LYEXT_SUBSTMT_FRACTION_DIGITS = LY_STMT_FRACTION_DIGITS, /**< extension of the fraction-digits statement, can appear in lys_type */
406 LYEXT_SUBSTMT_IF_FEATURE = LY_STMT_IF_FEATURE, /**< extension of the if-feature statement */
407 LYEXT_SUBSTMT_KEY = LY_STMT_KEY, /**< extension of the key statement, can appear in lys_node_list */
408 LYEXT_SUBSTMT_MANDATORY = LY_STMT_MANDATORY, /**< extension of the mandatory statement, can appear in lys_node_leaf, lys_node_choice,
409 lys_node_anydata and lys_deviate */
410 LYEXT_SUBSTMT_MAX_ELEMENTS = LY_STMT_MAX_ELEMENTS, /**< extension of the max-elements statement, can appear in lys_node_list,
411 lys_node_leaflist and lys_deviate */
412 LYEXT_SUBSTMT_MIN_ELEMENTS = LY_STMT_MIN_ELEMENTS, /**< extension of the min-elements statement, can appear in lys_node_list,
413 lys_node_leaflist and lys_deviate */
414 LYEXT_SUBSTMT_MODIFIER = LY_STMT_MODIFIER, /**< extension of the modifier statement, can appear in lys_restr */
415 LYEXT_SUBSTMT_NAMESPACE = LY_STMT_NAMESPACE, /**< extension of the namespace statement, can appear in lys_module */
416 LYEXT_SUBSTMT_ORDERED_BY = LY_STMT_ORDERED_BY, /**< extension of the ordered-by statement, can appear in lys_node_list and lys_node_leaflist */
417 LYEXT_SUBSTMT_ORGANIZATION = LY_STMT_ORGANIZATION, /**< extension of the organization statement, can appear in lys_module and lys_submodule */
418 LYEXT_SUBSTMT_PATH = LY_STMT_PATH, /**< extension of the path statement, can appear in lys_type */
419 LYEXT_SUBSTMT_POSITION = LY_STMT_POSITION, /**< extension of the position statement, can appear in lys_type_bit */
420 LYEXT_SUBSTMT_PREFIX = LY_STMT_PREFIX, /**< extension of the prefix statement, can appear in lys_module, lys_submodule (for
421 belongs-to's prefix) and lys_import */
422 LYEXT_SUBSTMT_PRESENCE = LY_STMT_PRESENCE, /**< extension of the presence statement, can appear in lys_node_container */
423 LYEXT_SUBSTMT_REFERENCE = LY_STMT_REFERENCE, /**< extension of the reference statement, can appear in lys_module, lys_submodule,
424 lys_node, lys_import, lys_include, lys_revision, lys_tpdf, lys_restr, lys_ident,
425 lys_ext, lys_feature, lys_deviation, lys_type_enum, lys_type_bit and lys_when */
426 LYEXT_SUBSTMT_REQUIRE_INSTANCE = LY_STMT_REQUIRE_INSTANCE, /**< extension of the require-instance statement, can appear in lys_type */
427 LYEXT_SUBSTMT_REVISION_DATE = LY_STMT_REVISION_DATE, /**< extension of the revision-date statement, can appear in lys_import and lys_include */
428 LYEXT_SUBSTMT_STATUS = LY_STMT_STATUS, /**< extension of the status statement, can appear in lys_tpdf, lys_node, lys_ident,
429 lys_ext, lys_feature, lys_type_enum and lys_type_bit */
430 LYEXT_SUBSTMT_UNIQUE = LY_STMT_UNIQUE, /**< extension of the unique statement, can appear in lys_node_list and lys_deviate */
431 LYEXT_SUBSTMT_UNITS = LY_STMT_UNITS, /**< extension of the units statement, can appear in lys_tpdf, lys_node_leaf,
432 lys_node_leaflist and lys_deviate */
433 LYEXT_SUBSTMT_VALUE = LY_STMT_VALUE, /**< extension of the value statement, can appear in lys_type_enum */
434 LYEXT_SUBSTMT_YANG_VERSION = LY_STMT_YANG_VERSION, /**< extension of the yang-version statement, can appear in lys_module and lys_submodule */
435 LYEXT_SUBSTMT_YIN_ELEMENT = LY_STMT_YIN_ELEMENT /**< extension of the yin-element statement, can appear in lys_ext */
Radek Krejci0e59c312019-08-15 15:34:15 +0200436} LYEXT_SUBSTMT;
437
438/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200439 * @brief YANG import-stmt
440 */
441struct lysp_import {
Radek Krejci086c7132018-10-26 15:29:04 +0200442 struct lys_module *module; /**< pointer to the imported module
443 (mandatory, but resolved when the referring module is completely parsed) */
444 const char *name; /**< name of the imported module (mandatory) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200445 const char *prefix; /**< prefix for the data from the imported schema (mandatory) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200446 const char *dsc; /**< description */
447 const char *ref; /**< reference */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200448 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vasko3e9bc2f2020-11-04 17:13:56 +0100449 uint16_t flags; /**< LYS_INTERNAL value (@ref snodeflags) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200450 char rev[LY_REV_SIZE]; /**< revision-date of the imported module */
451};
452
453/**
454 * @brief YANG include-stmt
455 */
456struct lysp_include {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100457 struct lysp_submodule *submodule;/**< pointer to the parsed submodule structure
Radek Krejci086c7132018-10-26 15:29:04 +0200458 (mandatory, but resolved when the referring module is completely parsed) */
459 const char *name; /**< name of the included submodule (mandatory) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200460 const char *dsc; /**< description */
461 const char *ref; /**< reference */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200462 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200463 char rev[LY_REV_SIZE]; /**< revision-date of the included submodule */
Radek Krejci771928a2021-01-19 13:42:36 +0100464 ly_bool injected; /**< flag to mark includes copied into main module from submodules,
465 only for backward compatibility with YANG 1.0, which does not require the
466 main module to include all submodules. */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200467};
468
469/**
470 * @brief YANG extension-stmt
471 */
472struct lysp_ext {
473 const char *name; /**< extension name */
474 const char *argument; /**< argument name, NULL if not specified */
475 const char *dsc; /**< description statement */
476 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200477 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcif56e2a42019-09-09 14:15:25 +0200478 uint16_t flags; /**< LYS_STATUS_* and LYS_YINELEM_* values (@ref snodeflags) */
Michal Vasko5fe75f12020-03-02 13:52:37 +0100479
480 struct lysc_ext *compiled; /**< pointer to the compiled extension definition */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200481};
482
483/**
484 * @brief Helper structure for generic storage of the extension instances content.
485 */
486struct lysp_stmt {
487 const char *stmt; /**< identifier of the statement */
488 const char *arg; /**< statement's argument */
489 struct lysp_stmt *next; /**< link to the next statement */
Michal Vaskobc2559f2018-09-07 10:17:50 +0200490 struct lysp_stmt *child; /**< list of the statement's substatements (linked list) */
David Sedlákb9d75c42019-08-14 10:49:42 +0200491 uint16_t flags; /**< statement flags, can be set to LYS_YIN_ATTR */
Radek Krejci335332a2019-09-05 13:03:35 +0200492 enum ly_stmt kw; /**< numeric respresentation of the stmt value */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200493};
494
David Sedlákae4b4512019-08-14 10:45:56 +0200495#define LYS_YIN 0x1 /**< used to specify input format of extension instance */
496
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200497/**
498 * @brief YANG extension instance
499 */
500struct lysp_ext_instance {
David Sedlákbbd06ca2019-06-27 14:15:38 +0200501 const char *name; /**< extension identifier, including possible prefix */
502 const char *argument; /**< optional value of the extension's argument */
Radek Krejci335332a2019-09-05 13:03:35 +0200503 void *parent; /**< pointer to the parent element holding the extension instance(s), use
504 ::lysp_ext_instance#parent_type to access the schema element */
David Sedlákbbd06ca2019-06-27 14:15:38 +0200505 struct lysp_stmt *child; /**< list of the extension's substatements (linked list) */
Radek Krejcif56e2a42019-09-09 14:15:25 +0200506 struct lysc_ext_instance *compiled; /**< pointer to the compiled data if any - in case the source format is YIN,
507 some of the information (argument) are available only after compilation */
David Sedlákbbd06ca2019-06-27 14:15:38 +0200508 LYEXT_SUBSTMT insubstmt; /**< value identifying placement of the extension instance */
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200509 LY_ARRAY_COUNT_TYPE insubstmt_index; /**< in case the instance is in a substatement, this identifies
David Sedlákbbd06ca2019-06-27 14:15:38 +0200510 the index of that substatement */
Michal Vasko3e9bc2f2020-11-04 17:13:56 +0100511 uint16_t flags; /**< LYS_INTERNAL value (@ref snodeflags) */
512 uint8_t yin; /**< flag for YIN source format, can be set to LYS_YIN */
Radek Krejci335332a2019-09-05 13:03:35 +0200513 LYEXT_PARENT parent_type; /**< type of the parent structure */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200514};
515
516/**
517 * @brief YANG feature-stmt
518 */
519struct lysp_feature {
520 const char *name; /**< feature name (mandatory) */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100521 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
522 struct lysc_iffeature *iffeatures_c; /**< compiled if-features */
523 struct lysp_feature **depfeatures; /**< list of pointers to other features depending on this one
524 ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200525 const char *dsc; /**< description statement */
526 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200527 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100528 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values and
529 LYS_FENABLED are allowed */
530};
531
532/**
533 * @brief Compiled YANG if-feature-stmt
534 */
535struct lysc_iffeature {
536 uint8_t *expr; /**< 2bits array describing the if-feature expression in prefix format, see @ref ifftokens */
537 struct lysp_feature **features; /**< array of pointers to the features used in expression ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200538};
539
540/**
Michal Vasko7f45cf22020-10-01 12:49:44 +0200541 * @brief Qualified name (optional prefix followed by an identifier).
542 */
543struct lysp_qname {
544 const char *str; /**< qualified name string */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200545 const struct lysp_module *mod; /**< module to resolve any prefixes found in the string, it must be
Michal Vasko7f45cf22020-10-01 12:49:44 +0200546 stored explicitly because of deviations/refines */
547};
548
549/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200550 * @brief YANG identity-stmt
551 */
552struct lysp_ident {
553 const char *name; /**< identity name (mandatory), including possible prefix */
Michal Vasko7f45cf22020-10-01 12:49:44 +0200554 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejci151a5b72018-10-19 14:21:44 +0200555 const char **bases; /**< list of base identifiers ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200556 const char *dsc; /**< description statement */
557 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200558 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200559 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ values are allowed */
560};
561
Michal Vasko71e64ca2018-09-07 16:30:29 +0200562/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200563 * @brief Covers restrictions: range, length, pattern, must
564 */
565struct lysp_restr {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100566#define LYSP_RESTR_PATTERN_ACK 0x06
567#define LYSP_RESTR_PATTERN_NACK 0x15
Michal Vasko7f45cf22020-10-01 12:49:44 +0200568 struct lysp_qname arg; /**< The restriction expression/value (mandatory);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200569 in case of pattern restriction, the first byte has a special meaning:
570 0x06 (ACK) for regular match and 0x15 (NACK) for invert-match */
571 const char *emsg; /**< error-message */
572 const char *eapptag; /**< error-app-tag value */
573 const char *dsc; /**< description */
574 const char *ref; /**< reference */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200575 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200576};
577
578/**
Michal Vasko71e64ca2018-09-07 16:30:29 +0200579 * @brief YANG revision-stmt
580 */
581struct lysp_revision {
Radek Krejcicb3e6472021-01-06 08:19:01 +0100582 char date[LY_REV_SIZE]; /**< revision date (madatory) */
Michal Vasko71e64ca2018-09-07 16:30:29 +0200583 const char *dsc; /**< description statement */
584 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200585 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vasko71e64ca2018-09-07 16:30:29 +0200586};
587
588/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200589 * @brief Enumeration/Bit value definition
590 */
591struct lysp_type_enum {
592 const char *name; /**< name (mandatory) */
593 const char *dsc; /**< description statement */
594 const char *ref; /**< reference statement */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200595 int64_t value; /**< enum's value or bit's position */
Michal Vasko7f45cf22020-10-01 12:49:44 +0200596 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200597 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200598 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ and LYS_SET_VALUE
599 values are allowed */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200600};
601
602/**
603 * @brief YANG type-stmt
604 *
605 * Some of the items in the structure may be mandatory, but it is necessary to resolve the type's base type first
606 */
607struct lysp_type {
608 const char *name; /**< name of the type (mandatory) */
609 struct lysp_restr *range; /**< allowed values range - numerical, decimal64 */
610 struct lysp_restr *length; /**< allowed length of the value - string, binary */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200611 struct lysp_restr *patterns; /**< list of patterns ([sized array](@ref sizedarrays)) - string */
612 struct lysp_type_enum *enums; /**< list of enum-stmts ([sized array](@ref sizedarrays)) - enum */
613 struct lysp_type_enum *bits; /**< list of bit-stmts ([sized array](@ref sizedarrays)) - bits */
Michal Vasko004d3152020-06-11 19:59:22 +0200614 struct lyxp_expr *path; /**< parsed path - leafref */
Radek Krejci151a5b72018-10-19 14:21:44 +0200615 const char **bases; /**< list of base identifiers ([sized array](@ref sizedarrays)) - identityref */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200616 struct lysp_type *types; /**< list of sub-types ([sized array](@ref sizedarrays)) - union */
617 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200618
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200619 const struct lysp_module *pmod; /**< (sub)module where the type is defined (needed for deviations) */
Radek Krejci2167ee12018-11-02 16:09:07 +0100620 struct lysc_type *compiled; /**< pointer to the compiled type */
621
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200622 uint8_t fraction_digits; /**< number of fraction digits - decimal64 */
623 uint8_t require_instance; /**< require-instance flag - leafref, instance */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100624 uint16_t flags; /**< [schema node flags](@ref spnodeflags) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200625};
626
627/**
628 * @brief YANG typedef-stmt
629 */
630struct lysp_tpdf {
631 const char *name; /**< name of the newly defined type (mandatory) */
632 const char *units; /**< units of the newly defined type */
Michal Vasko7f45cf22020-10-01 12:49:44 +0200633 struct lysp_qname dflt; /**< default value of the newly defined type, it may or may not be a qualified name */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200634 const char *dsc; /**< description statement */
635 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200636 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200637 struct lysp_type type; /**< base type from which the typedef is derived (mandatory) */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100638 uint16_t flags; /**< [schema node flags](@ref spnodeflags) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200639};
640
641/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200642 * @brief YANG when-stmt
643 */
644struct lysp_when {
645 const char *cond; /**< specified condition (mandatory) */
646 const char *dsc; /**< description statement */
647 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200648 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200649};
650
651/**
652 * @brief YANG refine-stmt
653 */
654struct lysp_refine {
655 const char *nodeid; /**< target descendant schema nodeid (mandatory) */
656 const char *dsc; /**< description statement */
657 const char *ref; /**< reference statement */
Michal Vasko7f45cf22020-10-01 12:49:44 +0200658 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200659 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200660 const char *presence; /**< presence description */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200661 struct lysp_qname *dflts; /**< list of default values ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200662 uint32_t min; /**< min-elements constraint */
663 uint32_t max; /**< max-elements constraint, 0 means unbounded */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200664 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200665 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
666};
667
668/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200669 * @ingroup schematree
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200670 * @defgroup deviatetypes Deviate types
Radek Krejci8678fa42020-08-18 16:07:28 +0200671 *
672 * Type of the deviate operation (used as ::lysp_deviate.mod)
673 *
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200674 * @{
675 */
676#define LYS_DEV_NOT_SUPPORTED 1 /**< deviate type not-supported */
677#define LYS_DEV_ADD 2 /**< deviate type add */
678#define LYS_DEV_DELETE 3 /**< deviate type delete */
679#define LYS_DEV_REPLACE 4 /**< deviate type replace */
Radek Krejci2ff0d572020-05-21 15:27:28 +0200680/** @} deviatetypes */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200681
682/**
683 * @brief Generic deviate structure to get type and cast to lysp_deviate_* structure
684 */
685struct lysp_deviate {
686 uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */
687 struct lysp_deviate *next; /**< next deviate structure in the list */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200688 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200689};
690
691struct lysp_deviate_add {
692 uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */
693 struct lysp_deviate *next; /**< next deviate structure in the list */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200694 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200695 const char *units; /**< units of the values */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200696 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200697 struct lysp_qname *uniques; /**< list of uniques specifications ([sized array](@ref sizedarrays)) */
698 struct lysp_qname *dflts; /**< list of default values ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200699 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
700 uint32_t min; /**< min-elements constraint */
701 uint32_t max; /**< max-elements constraint, 0 means unbounded */
702};
703
704struct lysp_deviate_del {
705 uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */
706 struct lysp_deviate *next; /**< next deviate structure in the list */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200707 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200708 const char *units; /**< units of the values */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200709 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200710 struct lysp_qname *uniques; /**< list of uniques specifications ([sized array](@ref sizedarrays)) */
711 struct lysp_qname *dflts; /**< list of default values ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200712};
713
714struct lysp_deviate_rpl {
715 uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */
716 struct lysp_deviate *next; /**< next deviate structure in the list */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200717 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200718 struct lysp_type *type; /**< type of the node */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200719 const char *units; /**< units of the values */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200720 struct lysp_qname dflt; /**< default value */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200721 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
722 uint32_t min; /**< min-elements constraint */
723 uint32_t max; /**< max-elements constraint, 0 means unbounded */
724};
725
726struct lysp_deviation {
Michal Vaskob55f6c12018-09-12 11:13:15 +0200727 const char *nodeid; /**< target absolute schema nodeid (mandatory) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200728 const char *dsc; /**< description statement */
729 const char *ref; /**< reference statement */
Michal Vasko22df3f02020-08-24 13:29:22 +0200730 struct lysp_deviate *deviates; /**< list of deviate specifications (linked list) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200731 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200732};
733
Radek Krejci4f28eda2018-11-12 11:46:16 +0100734/**
Radek Krejci4f28eda2018-11-12 11:46:16 +0100735 * @ingroup snodeflags
Radek Krejci8678fa42020-08-18 16:07:28 +0200736 * @defgroup spnodeflags Parsed schema nodes flags
Radek Krejci4f28eda2018-11-12 11:46:16 +0100737 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200738 * Various flags for parsed schema nodes (used as ::lysp_node.flags).
Radek Krejci4f28eda2018-11-12 11:46:16 +0100739 *
740 * 1 - container 6 - anydata/anyxml 11 - output 16 - grouping 21 - enum
741 * 2 - choice 7 - case 12 - feature 17 - uses 22 - type
Radek Krejcid3ca0632019-04-16 16:54:54 +0200742 * 3 - leaf 8 - notification 13 - identity 18 - refine 23 - stmt
Radek Krejci4f28eda2018-11-12 11:46:16 +0100743 * 4 - leaflist 9 - rpc 14 - extension 19 - augment
744 * 5 - list 10 - input 15 - typedef 20 - deviate
745 *
Radek Krejcid3ca0632019-04-16 16:54:54 +0200746 * 1 1 1 1 1 1 1 1 1 1 2 2 2 2
747 * bit name 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
748 * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Michal Vasko5297a432020-08-31 12:27:51 +0200749 * 1 LYS_CONFIG_W |x|x|x|x|x|x| | | | | | | | | | | |x| |x| | | |
Radek Krejcid3ca0632019-04-16 16:54:54 +0200750 * LYS_SET_BASE | | | | | | | | | | | | | | | | | | | | | |x| |
751 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Michal Vasko5297a432020-08-31 12:27:51 +0200752 * 2 LYS_CONFIG_R |x|x|x|x|x|x| | | | | | | | | | | |x| |x| | | |
Radek Krejcid3ca0632019-04-16 16:54:54 +0200753 * LYS_SET_BIT | | | | | | | | | | | | | | | | | | | | | |x| |
754 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
755 * 3 LYS_STATUS_CURR |x|x|x|x|x|x|x|x|x| | |x|x|x|x|x|x| |x|x|x| | |
756 * LYS_SET_ENUM | | | | | | | | | | | | | | | | | | | | | |x| |
757 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
758 * 4 LYS_STATUS_DEPRC |x|x|x|x|x|x|x|x|x| | |x|x|x|x|x|x| |x|x|x| | |
759 * LYS_SET_FRDIGITS | | | | | | | | | | | | | | | | | | | | | |x| |
760 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
761 * 5 LYS_STATUS_OBSLT |x|x|x|x|x|x|x|x|x| | |x|x|x|x|x|x| |x|x|x| | |
762 * LYS_SET_LENGTH | | | | | | | | | | | | | | | | | | | | | |x| |
763 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
764 * 6 LYS_MAND_TRUE | |x|x| | |x| | | | | | | | | | | |x| |x| | | |
765 * LYS_SET_PATH | | | | | | | | | | | | | | | | | | | | | |x| |
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100766 * LYS_FENABLED | | | | | | | | | | | |x| | | | | | | | | | | |
Radek Krejcid3ca0632019-04-16 16:54:54 +0200767 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
768 * 7 LYS_MAND_FALSE | |x|x| | |x| | | | | | | | | | | |x| |x| | | |
769 * LYS_ORDBY_USER | | | |x|x| | | | | | | | | | | | | | | | | | |
770 * LYS_SET_PATTERN | | | | | | | | | | | | | | | | | | | | | |x| |
771 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
772 * 8 LYS_ORDBY_SYSTEM | | | |x|x| | | | | | | | | | | | | | | | | | |
773 * LYS_YINELEM_TRUE | | | | | | | | | | | | | |x| | | | | | | | | |
774 * LYS_SET_RANGE | | | | | | | | | | | | | | | | | | | | | |x| |
775 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
776 * 9 LYS_YINELEM_FALSE| | | | | | | | | | | | | |x| | | | | | | | | |
777 * LYS_SET_TYPE | | | | | | | | | | | | | | | | | | | | | |x| |
778 * LYS_SINGLEQUOTED | | | | | | | | | | | | | | | | | | | | | | |x|
779 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
780 * 10 LYS_SET_VALUE | | | | | | | | | | | | | | | | | | | | |x| | |
781 * LYS_SET_REQINST | | | | | | | | | | | | | | | | | | | | | |x| |
782 * LYS_SET_MIN | | | |x|x| | | | | | | | | | | | |x| |x| | | |
783 * LYS_DOUBLEQUOTED | | | | | | | | | | | | | | | | | | | | | | |x|
784 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
785 * 11 LYS_SET_MAX | | | |x|x| | | | | | | | | | | | |x| |x| | | |
Radek Krejcif2de0ed2019-05-02 14:13:18 +0200786 * LYS_USED_GRP | | | | | | | | | | | | | | | |x| | | | | | | |
David Sedlákae4b4512019-08-14 10:45:56 +0200787 * LYS_YIN_ATTR | | | | | | | | | | | | | | | | | | | | | | |x|
Michal Vasko5297a432020-08-31 12:27:51 +0200788 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
789 * 12 LYS_YIN_ARGUMENT | | | | | | | | | | | | | | | | | | | | | | |x|
Michal Vasko3e9bc2f2020-11-04 17:13:56 +0100790 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
791 * 13 LYS_INTERNAL |x|x|x|x|x|x|x|x|x|x|x|x|x|x|x|x|x|x|x|x|x|x|x|
Radek Krejcif56e2a42019-09-09 14:15:25 +0200792 * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Radek Krejci4f28eda2018-11-12 11:46:16 +0100793 *
794 */
795
796/**
Radek Krejci4f28eda2018-11-12 11:46:16 +0100797 * @ingroup snodeflags
Radek Krejci8678fa42020-08-18 16:07:28 +0200798 * @defgroup scnodeflags Compiled schema nodes flags
Radek Krejci4f28eda2018-11-12 11:46:16 +0100799 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200800 * Various flags for compiled schema nodes (used as ::lysc_node.flags).
Radek Krejci4f28eda2018-11-12 11:46:16 +0100801 *
Radek Krejci61e042e2019-09-10 15:53:09 +0200802 * 1 - container 6 - anydata/anyxml 11 - identity
803 * 2 - choice 7 - case 12 - extension
804 * 3 - leaf 8 - notification 13 - bitenum
Michal Vasko03ff5a72019-09-11 13:49:33 +0200805 * 4 - leaflist 9 - rpc/action 14 - when
Michal Vaskoecd62de2019-11-13 12:35:11 +0100806 * 5 - list 10 - feature
Radek Krejci4f28eda2018-11-12 11:46:16 +0100807 *
Michal Vaskoecd62de2019-11-13 12:35:11 +0100808 * 1 1 1 1 1
809 * bit name 1 2 3 4 5 6 7 8 9 0 1 2 3 4
810 * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Michal Vaskod09b7622021-01-26 09:14:13 +0100811 * 1 LYS_CONFIG_W |x|x|x|x|x|x|x| | | | | | | |
Michal Vaskoecd62de2019-11-13 12:35:11 +0100812 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Michal Vaskod09b7622021-01-26 09:14:13 +0100813 * 2 LYS_CONFIG_R |x|x|x|x|x|x|x| | | | | | | |
Michal Vaskoecd62de2019-11-13 12:35:11 +0100814 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
815 * 3 LYS_STATUS_CURR |x|x|x|x|x|x|x|x|x|x|x|x| |x|
816 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
817 * 4 LYS_STATUS_DEPRC |x|x|x|x|x|x|x|x|x|x|x|x| |x|
818 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
819 * 5 LYS_STATUS_OBSLT |x|x|x|x|x|x|x|x|x|x|x|x| |x|
820 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
821 * 6 LYS_MAND_TRUE |x|x|x|x|x|x| | | | | | | | |
822 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
823 * 7 LYS_ORDBY_USER | | | |x|x| | | | | | | | | |
824 * LYS_MAND_FALSE | |x|x| | |x| | | | | | | | |
825 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
826 * 8 LYS_ORDBY_SYSTEM | | | |x|x| | | | | | | | | |
827 * LYS_PRESENCE |x| | | | | | | | | | | | | |
828 * LYS_UNIQUE | | |x| | | | | | | | | | | |
829 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
830 * 9 LYS_KEY | | |x| | | | | | | | | | | |
Michal Vaskoecd62de2019-11-13 12:35:11 +0100831 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
832 * 10 LYS_SET_DFLT | | |x|x| | |x| | | | | | | |
Michal Vaskod1e53b92021-01-28 13:11:06 +0100833 * LYS_IS_ENUM | | | | | | | | | | | | |x| |
Michal Vaskoecd62de2019-11-13 12:35:11 +0100834 * LYS_KEYLESS | | | | |x| | | | | | | | | |
Christian Hopps7cfa9612021-02-04 11:45:41 -0500835 * LYS_SET_PRESENCE |x| | | | | | | | | | | | | |
Michal Vaskoecd62de2019-11-13 12:35:11 +0100836 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
837 * 11 LYS_SET_UNITS | | |x|x| | | | | | | | | | |
838 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
839 * 12 LYS_SET_CONFIG |x|x|x|x|x|x| | | | | | | | |
Michal Vaskod1e53b92021-01-28 13:11:06 +0100840 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
841 * 13 LYS_IS_INPUT |x|x|x|x|x|x|x| | | | | | | |
842 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
843 * 14 LYS_IS_OUTPUT |x|x|x|x|x|x|x| | | | | | | |
844 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+
845 * 15 LYS_IS_NOTIF |x|x|x|x|x|x|x| | | | | | | |
Michal Vaskoecd62de2019-11-13 12:35:11 +0100846 * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Radek Krejci4f28eda2018-11-12 11:46:16 +0100847 *
848 */
849
850/**
851 * @defgroup snodeflags Schema nodes flags
Radek Krejci8678fa42020-08-18 16:07:28 +0200852 *
853 * Various flags for schema nodes ([parsed](@ref spnodeflags) as well as [compiled](@ref scnodeflags)).
854 *
Radek Krejci4f28eda2018-11-12 11:46:16 +0100855 * @{
856 */
Michal Vaskod1e53b92021-01-28 13:11:06 +0100857#define LYS_CONFIG_W 0x01 /**< config true; */
858#define LYS_CONFIG_R 0x02 /**< config false; */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200859#define LYS_CONFIG_MASK 0x03 /**< mask for config value */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100860#define LYS_STATUS_CURR 0x04 /**< status current; */
861#define LYS_STATUS_DEPRC 0x08 /**< status deprecated; */
862#define LYS_STATUS_OBSLT 0x10 /**< status obsolete; */
863#define LYS_STATUS_MASK 0x1C /**< mask for status value */
864#define LYS_MAND_TRUE 0x20 /**< mandatory true; applicable only to ::lysp_node_choice/::lysc_node_choice,
Radek Krejcife909632019-02-12 15:34:42 +0100865 ::lysp_node_leaf/::lysc_node_leaf and ::lysp_node_anydata/::lysc_node_anydata.
866 The ::lysc_node_leaflist and ::lysc_node_leaflist have this flag in case that min-elements > 0.
867 The ::lysc_node_container has this flag if it is not a presence container and it has at least one
868 child with LYS_MAND_TRUE. */
Radek Krejcif1421c22019-02-19 13:05:20 +0100869#define LYS_MAND_FALSE 0x40 /**< mandatory false; applicable only to ::lysp_node_choice/::lysc_node_choice,
870 ::lysp_node_leaf/::lysc_node_leaf and ::lysp_node_anydata/::lysc_node_anydata.
871 This flag is present only in case the mandatory false statement was explicitly specified. */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100872#define LYS_MAND_MASK 0x60 /**< mask for mandatory values */
Michal Vaskoc118ae22020-08-06 14:51:09 +0200873#define LYS_PRESENCE 0x80 /**< flag for presence property of a container, but it is not only for explicit presence
874 containers, but also for NP containers with some meaning, applicable only to
875 ::lysc_node_container */
Radek Krejci7adf4ff2018-12-05 08:55:00 +0100876#define LYS_UNIQUE 0x80 /**< flag for leafs being part of a unique set, applicable only to ::lysc_node_leaf */
Michal Vaskod1e53b92021-01-28 13:11:06 +0100877#define LYS_KEY 0x0100 /**< flag for leafs being a key of a list, applicable only to ::lysc_node_leaf */
878#define LYS_KEYLESS 0x0200 /**< flag for list without any key, applicable only to ::lysc_node_list */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100879#define LYS_FENABLED 0x20 /**< feature enabled flag, applicable only to ::lysp_feature. */
Radek Krejcife909632019-02-12 15:34:42 +0100880#define LYS_ORDBY_SYSTEM 0x80 /**< ordered-by user lists, applicable only to ::lysc_node_leaflist/::lysp_node_leaflist and
Radek Krejci4f28eda2018-11-12 11:46:16 +0100881 ::lysc_node_list/::lysp_node_list */
882#define LYS_ORDBY_USER 0x40 /**< ordered-by user lists, applicable only to ::lysc_node_leaflist/::lysp_node_leaflist and
883 ::lysc_node_list/::lysp_node_list */
884#define LYS_ORDBY_MASK 0x60 /**< mask for ordered-by values */
885#define LYS_YINELEM_TRUE 0x80 /**< yin-element true for extension's argument */
Michal Vaskod1e53b92021-01-28 13:11:06 +0100886#define LYS_YINELEM_FALSE 0x0100 /**< yin-element false for extension's argument */
887#define LYS_YINELEM_MASK 0x0180 /**< mask for yin-element value */
888#define LYS_USED_GRP 0x0400 /**< internal flag for validating not-instantiated groupings
Radek Krejcif2de0ed2019-05-02 14:13:18 +0200889 (resp. do not validate again the instantiated groupings). */
Michal Vaskod1e53b92021-01-28 13:11:06 +0100890#define LYS_SET_VALUE 0x0200 /**< value attribute is set */
891#define LYS_SET_MIN 0x0200 /**< min attribute is set */
892#define LYS_SET_MAX 0x0400 /**< max attribute is set */
Radek Krejcid505e3d2018-11-13 09:04:17 +0100893
894#define LYS_SET_BASE 0x0001 /**< type's flag for present base substatement */
895#define LYS_SET_BIT 0x0002 /**< type's flag for present bit substatement */
896#define LYS_SET_ENUM 0x0004 /**< type's flag for present enum substatement */
897#define LYS_SET_FRDIGITS 0x0008 /**< type's flag for present fraction-digits substatement */
898#define LYS_SET_LENGTH 0x0010 /**< type's flag for present length substatement */
899#define LYS_SET_PATH 0x0020 /**< type's flag for present path substatement */
900#define LYS_SET_PATTERN 0x0040 /**< type's flag for present pattern substatement */
901#define LYS_SET_RANGE 0x0080 /**< type's flag for present range substatement */
902#define LYS_SET_TYPE 0x0100 /**< type's flag for present type substatement */
903#define LYS_SET_REQINST 0x0200 /**< type's flag for present require-instance substatement */
Radek Krejciccd20f12019-02-15 14:12:27 +0100904#define LYS_SET_DFLT 0x0200 /**< flag to mark leaf/leaflist with own (or refined) default value, not a default value taken from its type, and default
Radek Krejci76b3e962018-12-14 17:01:25 +0100905 cases of choice. This information is important for refines, since it is prohibited to make leafs
906 with default statement mandatory. In case the default leaf value is taken from type, it is thrown
Radek Krejciccd20f12019-02-15 14:12:27 +0100907 away when it is refined to be mandatory node. Similarly it is used for deviations to distinguish
908 between own default or the default values taken from the type. */
Christian Hopps7cfa9612021-02-04 11:45:41 -0500909#define LYS_SET_PRESENCE 0x0200 /**< flag to know if container presence property was set explicitly */
Radek Krejciccd20f12019-02-15 14:12:27 +0100910#define LYS_SET_UNITS 0x0400 /**< flag to know if the leaf's/leaflist's units are their own (flag set) or it is taken from the type. */
Radek Krejcif1421c22019-02-19 13:05:20 +0100911#define LYS_SET_CONFIG 0x0800 /**< flag to know if the config property was set explicitly (flag set) or it is inherited. */
Radek Krejci0e5d8382018-11-28 16:37:53 +0100912
Michal Vaskod1e53b92021-01-28 13:11:06 +0100913#define LYS_SINGLEQUOTED 0x0100 /**< flag for single-quoted argument of an extension instance's substatement, only when the source is YANG */
914#define LYS_DOUBLEQUOTED 0x0200 /**< flag for double-quoted argument of an extension instance's substatement, only when the source is YANG */
Radek Krejcid3ca0632019-04-16 16:54:54 +0200915
Michal Vaskod1e53b92021-01-28 13:11:06 +0100916#define LYS_YIN_ATTR 0x0400 /**< flag to identify YIN attribute parsed as extension's substatement, only when the source is YIN */
917#define LYS_YIN_ARGUMENT 0x0800 /**< flag to identify statement representing extension's argument, only when the source is YIN */
David Sedlákbbd06ca2019-06-27 14:15:38 +0200918
Michal Vasko3e9bc2f2020-11-04 17:13:56 +0100919#define LYS_INTERNAL 0x1000 /**< flag to identify internal parsed statements that should not be printed */
920
Michal Vaskod1e53b92021-01-28 13:11:06 +0100921#define LYS_IS_ENUM 0x0200 /**< flag to simply distinguish type in struct lysc_type_bitenum_item */
922
923#define LYS_IS_INPUT 0x1000 /**< flag for nodes that are in the subtree of an input statement */
924
925#define LYS_IS_OUTPUT 0x2000 /**< flag for nodes that are in the subtree of an output statement */
926
927#define LYS_IS_NOTIF 0x4000 /**< flag for nodes that are in the subtree of a notification statement */
Radek Krejci693262f2019-04-29 15:23:20 +0200928
Radek Krejcife909632019-02-12 15:34:42 +0100929#define LYS_FLAGS_COMPILED_MASK 0xff /**< mask for flags that maps to the compiled structures */
Radek Krejci2ff0d572020-05-21 15:27:28 +0200930/** @} snodeflags */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200931
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200932/**
933 * @brief Generic YANG data node
934 */
935struct lysp_node {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100936 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200937 uint16_t nodetype; /**< type of the node (mandatory) */
938 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100939 struct lysp_node *next; /**< next sibling node (NULL if there is no one) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200940 const char *name; /**< node name (mandatory) */
941 const char *dsc; /**< description statement */
942 const char *ref; /**< reference statement */
Michal Vasko7f45cf22020-10-01 12:49:44 +0200943 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)),
944 must be qname because of refines */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200945 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200946};
947
948/**
949 * @brief Extension structure of the lysp_node for YANG container
950 */
951struct lysp_node_container {
Radek Krejci2a9fc652021-01-22 17:44:34 +0100952 union {
953 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
954 struct {
955 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
956 uint16_t nodetype; /**< LYS_CONTAINER */
957 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
958 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
959 const char *name; /**< node name (mandatory) */
960 const char *dsc; /**< description statement */
961 const char *ref; /**< reference statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100962 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
963 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
964 };
965 }; /**< common part corresponding to ::lysp_node */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200966
967 /* container */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200968 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci9a3823e2021-01-27 20:26:46 +0100969 struct lysp_when *when; /**< when statement */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200970 const char *presence; /**< presence description */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200971 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100972 struct lysp_node_grp *groupings; /**< list of groupings (linked list) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200973 struct lysp_node *child; /**< list of data nodes (linked list) */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100974 struct lysp_node_action *actions;/**< list of actions (linked list) */
975 struct lysp_node_notif *notifs; /**< list of notifications (linked list) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200976};
977
978struct lysp_node_leaf {
Radek Krejci2a9fc652021-01-22 17:44:34 +0100979 union {
980 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
981 struct {
982 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
983 uint16_t nodetype; /**< LYS_LEAF */
984 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
985 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
986 const char *name; /**< node name (mandatory) */
987 const char *dsc; /**< description statement */
988 const char *ref; /**< reference statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100989 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
990 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
991 };
992 }; /**< common part corresponding to ::lysp_node */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200993
994 /* leaf */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200995 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci9a3823e2021-01-27 20:26:46 +0100996 struct lysp_when *when; /**< when statement */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200997 struct lysp_type type; /**< type of the leaf node (mandatory) */
998 const char *units; /**< units of the leaf's type */
Michal Vasko7f45cf22020-10-01 12:49:44 +0200999 struct lysp_qname dflt; /**< default value, it may or may not be a qualified name */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001000};
1001
1002struct lysp_node_leaflist {
Radek Krejci2a9fc652021-01-22 17:44:34 +01001003 union {
1004 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
1005 struct {
1006 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
1007 uint16_t nodetype; /**< LYS_LEAFLIST */
1008 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1009 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
1010 const char *name; /**< node name (mandatory) */
1011 const char *dsc; /**< description statement */
1012 const char *ref; /**< reference statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001013 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
1014 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1015 };
1016 }; /**< common part corresponding to ::lysp_node */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001017
1018 /* leaf-list */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001019 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001020 struct lysp_when *when; /**< when statement */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001021 struct lysp_type type; /**< type of the leaf node (mandatory) */
1022 const char *units; /**< units of the leaf's type */
Michal Vasko7f45cf22020-10-01 12:49:44 +02001023 struct lysp_qname *dflts; /**< list of default values ([sized array](@ref sizedarrays)), they may or
1024 may not be qualified names */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001025 uint32_t min; /**< min-elements constraint */
1026 uint32_t max; /**< max-elements constraint, 0 means unbounded */
1027};
1028
1029struct lysp_node_list {
Radek Krejci2a9fc652021-01-22 17:44:34 +01001030 union {
1031 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
1032 struct {
1033 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
1034 uint16_t nodetype; /**< LYS_LIST */
1035 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1036 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
1037 const char *name; /**< node name (mandatory) */
1038 const char *dsc; /**< description statement */
1039 const char *ref; /**< reference statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001040 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
1041 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1042 };
1043 }; /**< common part corresponding to ::lysp_node */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001044
1045 /* list */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001046 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001047 struct lysp_when *when; /**< when statement */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001048 const char *key; /**< keys specification */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001049 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001050 struct lysp_node_grp *groupings; /**< list of groupings (linked list) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001051 struct lysp_node *child; /**< list of data nodes (linked list) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001052 struct lysp_node_action *actions;/**< list of actions (linked list) */
1053 struct lysp_node_notif *notifs; /**< list of notifications (linked list) */
Michal Vasko7f45cf22020-10-01 12:49:44 +02001054 struct lysp_qname *uniques; /**< list of unique specifications ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001055 uint32_t min; /**< min-elements constraint */
1056 uint32_t max; /**< max-elements constraint, 0 means unbounded */
1057};
1058
1059struct lysp_node_choice {
Radek Krejci2a9fc652021-01-22 17:44:34 +01001060 union {
1061 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
1062 struct {
1063 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
1064 uint16_t nodetype; /**< LYS_CHOICE */
1065 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1066 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
1067 const char *name; /**< node name (mandatory) */
1068 const char *dsc; /**< description statement */
1069 const char *ref; /**< reference statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001070 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
1071 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1072 };
1073 }; /**< common part corresponding to ::lysp_node */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001074
1075 /* choice */
1076 struct lysp_node *child; /**< list of data nodes (linked list) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001077 struct lysp_when *when; /**< when statement */
Michal Vasko7f45cf22020-10-01 12:49:44 +02001078 struct lysp_qname dflt; /**< default case */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001079};
1080
1081struct lysp_node_case {
Radek Krejci2a9fc652021-01-22 17:44:34 +01001082 union {
1083 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
1084 struct {
1085 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
1086 uint16_t nodetype; /**< LYS_CASE */
1087 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1088 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
1089 const char *name; /**< node name (mandatory) */
1090 const char *dsc; /**< description statement */
1091 const char *ref; /**< reference statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001092 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
1093 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1094 };
1095 }; /**< common part corresponding to ::lysp_node */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001096
1097 /* case */
1098 struct lysp_node *child; /**< list of data nodes (linked list) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001099 struct lysp_when *when; /**< when statement */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001100};
1101
1102struct lysp_node_anydata {
Radek Krejci2a9fc652021-01-22 17:44:34 +01001103 union {
1104 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
1105 struct {
1106 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
1107 uint16_t nodetype; /**< LYS_ANYXML or LYS_ANYDATA */
1108 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1109 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
1110 const char *name; /**< node name (mandatory) */
1111 const char *dsc; /**< description statement */
1112 const char *ref; /**< reference statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001113 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
1114 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1115 };
1116 }; /**< common part corresponding to ::lysp_node */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001117
1118 /* anyxml/anydata */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001119 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001120 struct lysp_when *when; /**< when statement */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001121};
1122
1123struct lysp_node_uses {
Radek Krejci2a9fc652021-01-22 17:44:34 +01001124 union {
1125 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
1126 struct {
1127 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
1128 uint16_t nodetype; /**< LYS_USES */
1129 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1130 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
1131 const char *name; /**< grouping name reference (mandatory) */
1132 const char *dsc; /**< description statement */
1133 const char *ref; /**< reference statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001134 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
1135 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1136 };
1137 }; /**< common part corresponding to ::lysp_node */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001138
1139 /* uses */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001140 struct lysp_refine *refines; /**< list of uses's refines ([sized array](@ref sizedarrays)) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001141 struct lysp_node_augment *augments; /**< list of augments (linked list) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001142 struct lysp_when *when; /**< when statement */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001143};
1144
1145/**
1146 * @brief YANG input-stmt and output-stmt
1147 */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001148struct lysp_node_action_inout {
1149 union {
1150 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
1151 struct {
1152 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
1153 uint16_t nodetype; /**< LYS_INPUT or LYS_OUTPUT */
1154 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1155 struct lysp_node *next; /**< NULL */
1156 const char *name; /**< empty string */
1157 const char *dsc; /**< ALWAYS NULL, compatibility member with ::lysp_node */
1158 const char *ref; /**< ALWAYS NULL, compatibility member with ::lysp_node */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001159 struct lysp_qname *iffeatures; /**< ALWAYS NULL, compatibility member with ::lysp_node */
1160 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1161 };
1162 }; /**< common part corresponding to ::lysp_node */
1163
1164 /* inout */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001165 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
1166 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001167 struct lysp_node_grp *groupings; /**< list of groupings (linked list) */
Radek Krejci01180ac2021-01-27 08:48:22 +01001168 struct lysp_node *child; /**< list of data nodes (linked list) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001169};
1170
1171/**
1172 * @brief YANG rpc-stmt and action-stmt
1173 */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001174struct lysp_node_action {
1175 union {
1176 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
1177 struct {
1178 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
1179 uint16_t nodetype; /**< LYS_RPC or LYS_ACTION */
1180 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1181 struct lysp_node_action *next; /**< pointer to the next action (NULL if there is no one) */
1182 const char *name; /**< grouping name reference (mandatory) */
1183 const char *dsc; /**< description statement */
1184 const char *ref; /**< reference statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001185 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
1186 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1187 };
1188 }; /**< common part corresponding to ::lysp_node */
Michal Vasko7f45cf22020-10-01 12:49:44 +02001189
1190 /* action */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001191 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
1192 struct lysp_node_grp *groupings; /**< list of groupings (linked list) */
1193
1194 struct lysp_node_action_inout input; /**< RPC's/Action's input */
1195 struct lysp_node_action_inout output; /**< RPC's/Action's output */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001196};
1197
1198/**
1199 * @brief YANG notification-stmt
1200 */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001201struct lysp_node_notif {
1202 union {
1203 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
1204 struct {
1205 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
1206 uint16_t nodetype; /**< LYS_NOTIF */
1207 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values are allowed */
1208 struct lysp_node_notif *next; /**< pointer to the next notification (NULL if there is no one) */
1209 const char *name; /**< grouping name reference (mandatory) */
1210 const char *dsc; /**< description statement */
1211 const char *ref; /**< reference statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001212 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
1213 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1214 };
1215 }; /**< common part corresponding to ::lysp_node */
Michal Vasko7f45cf22020-10-01 12:49:44 +02001216
1217 /* notif */
1218 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001219 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
1220 struct lysp_node_grp *groupings; /**< list of groupings (linked list) */
Radek Krejci01180ac2021-01-27 08:48:22 +01001221 struct lysp_node *child; /**< list of data nodes (linked list) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001222};
1223
1224/**
Radek Krejci2a9fc652021-01-22 17:44:34 +01001225 * @brief YANG grouping-stmt
1226 */
1227struct lysp_node_grp {
1228 union {
1229 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
1230 struct {
1231 struct lysp_node *parent;/**< parent node (NULL if this is a top-level grouping) */
1232 uint16_t nodetype; /**< LYS_GROUPING */
1233 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values are allowed */
1234 struct lysp_node_grp *next; /**< pointer to the next grouping (NULL if there is no one) */
1235 const char *name; /**< grouping name (mandatory) */
1236 const char *dsc; /**< description statement */
1237 const char *ref; /**< reference statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001238 struct lysp_qname *iffeatures; /**< ALWAYS NULL, compatibility member with ::lysp_node */
1239 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1240 };
1241 }; /**< common part corresponding to ::lysp_node */
1242
1243 /* grp */
1244 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
1245 struct lysp_node_grp *groupings; /**< list of groupings (linked list) */
Radek Krejci01180ac2021-01-27 08:48:22 +01001246 struct lysp_node *child; /**< list of data nodes (linked list) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001247 struct lysp_node_action *actions; /**< list of actions (linked list) */
1248 struct lysp_node_notif *notifs; /**< list of notifications (linked list) */
1249};
1250
1251/**
1252 * @brief YANG uses-augment-stmt and augment-stmt (compatible with struct lysp_node )
1253 */
1254struct lysp_node_augment {
1255 union {
1256 struct lysp_node node; /**< implicit cast for the members compatible with ::lysp_node */
1257 struct {
1258 struct lysp_node *parent;/**< parent node (NULL if this is a top-level augment) */
1259 uint16_t nodetype; /**< LYS_AUGMENT */
1260 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values are allowed */
1261 struct lysp_node_augment *next; /**< pointer to the next augment (NULL if there is no one) */
1262 const char *nodeid; /**< target schema nodeid (mandatory) - absolute for global augments, descendant for uses's augments */
1263 const char *dsc; /**< description statement */
1264 const char *ref; /**< reference statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001265 struct lysp_qname *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
1266 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1267 };
1268 }; /**< common part corresponding to ::lysp_node */
1269
1270 struct lysp_node *child; /**< list of data nodes (linked list) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001271 struct lysp_when *when; /**< when statement */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001272 struct lysp_node_action *actions;/**< list of actions (linked list) */
1273 struct lysp_node_notif *notifs; /**< list of notifications (linked list) */
1274};
1275
1276/**
Radek Krejcif0fceb62018-09-05 14:58:45 +02001277 * @brief supported YANG schema version values
1278 */
1279typedef enum LYS_VERSION {
1280 LYS_VERSION_UNDEF = 0, /**< no specific version, YANG 1.0 as default */
Radek Krejci96e48da2020-09-04 13:18:06 +02001281 LYS_VERSION_1_0 = 1, /**< YANG 1 (1.0) */
Radek Krejcif0fceb62018-09-05 14:58:45 +02001282 LYS_VERSION_1_1 = 2 /**< YANG 1.1 */
1283} LYS_VERSION;
1284
1285/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001286 * @brief Printable YANG schema tree structure representing YANG module.
1287 *
1288 * Simple structure corresponding to the YANG format. The schema is only syntactically validated.
1289 */
1290struct lysp_module {
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001291 struct lys_module *mod; /**< covering module structure */
1292
Radek Krejcib7db73a2018-10-24 14:18:40 +02001293 struct lysp_revision *revs; /**< list of the module revisions ([sized array](@ref sizedarrays)), the first revision
1294 in the list is always the last (newest) revision of the module */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001295 struct lysp_import *imports; /**< list of imported modules ([sized array](@ref sizedarrays)) */
1296 struct lysp_include *includes; /**< list of included submodules ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001297 struct lysp_ext *extensions; /**< list of extension statements ([sized array](@ref sizedarrays)) */
1298 struct lysp_feature *features; /**< list of feature definitions ([sized array](@ref sizedarrays)) */
1299 struct lysp_ident *identities; /**< list of identities ([sized array](@ref sizedarrays)) */
1300 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001301 struct lysp_node_grp *groupings; /**< list of groupings (linked list) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001302 struct lysp_node *data; /**< list of module's top-level data nodes (linked list) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001303 struct lysp_node_augment *augments; /**< list of augments (linked list) */
1304 struct lysp_node_action *rpcs; /**< list of RPCs (linked list) */
1305 struct lysp_node_notif *notifs; /**< list of notifications (linked list) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001306 struct lysp_deviation *deviations; /**< list of deviations ([sized array](@ref sizedarrays)) */
Michal Vaskoc3781c32020-10-06 14:04:08 +02001307 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001308
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001309 uint8_t version; /**< yang-version (LYS_VERSION values) */
Michal Vaskoc3781c32020-10-06 14:04:08 +02001310 uint8_t parsing : 1; /**< flag for circular check */
1311 uint8_t is_submod : 1; /**< always 0 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001312};
1313
1314struct lysp_submodule {
Michal Vaskoc3781c32020-10-06 14:04:08 +02001315 struct lys_module *mod; /**< belongs to parent module (submodule - mandatory) */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001316
1317 struct lysp_revision *revs; /**< list of the module revisions ([sized array](@ref sizedarrays)), the first revision
1318 in the list is always the last (newest) revision of the module */
1319 struct lysp_import *imports; /**< list of imported modules ([sized array](@ref sizedarrays)) */
1320 struct lysp_include *includes; /**< list of included submodules ([sized array](@ref sizedarrays)) */
1321 struct lysp_ext *extensions; /**< list of extension statements ([sized array](@ref sizedarrays)) */
1322 struct lysp_feature *features; /**< list of feature definitions ([sized array](@ref sizedarrays)) */
1323 struct lysp_ident *identities; /**< list of identities ([sized array](@ref sizedarrays)) */
1324 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001325 struct lysp_node_grp *groupings; /**< list of groupings (linked list) */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001326 struct lysp_node *data; /**< list of module's top-level data nodes (linked list) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001327 struct lysp_node_augment *augments; /**< list of augments (linked list) */
1328 struct lysp_node_action *rpcs; /**< list of RPCs (linked list) */
1329 struct lysp_node_notif *notifs; /**< list of notifications (linked list) */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001330 struct lysp_deviation *deviations; /**< list of deviations ([sized array](@ref sizedarrays)) */
Michal Vaskoc3781c32020-10-06 14:04:08 +02001331 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001332
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001333 uint8_t version; /**< yang-version (LYS_VERSION values) */
Michal Vaskoc3781c32020-10-06 14:04:08 +02001334 uint8_t parsing : 1; /**< flag for circular check */
1335 uint8_t is_submod : 1; /**< always 1 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001336
Michal Vaskoc3781c32020-10-06 14:04:08 +02001337 uint8_t latest_revision : 2; /**< flag to mark the latest available revision:
Radek Krejci086c7132018-10-26 15:29:04 +02001338 1 - the latest revision in searchdirs was not searched yet and this is the
1339 latest revision in the current context
1340 2 - searchdirs were searched and this is the latest available revision */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001341 const char *name; /**< name of the module (mandatory) */
1342 const char *filepath; /**< path, if the schema was read from a file, NULL in case of reading from memory */
1343 const char *prefix; /**< submodule belongsto prefix of main module (mandatory) */
1344 const char *org; /**< party/company responsible for the module */
1345 const char *contact; /**< contact information for the module */
1346 const char *dsc; /**< description of the module */
1347 const char *ref; /**< cross-reference for the module */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001348};
1349
1350/**
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001351 * @brief Get the parsed module or submodule name.
1352 *
1353 * @param[in] PMOD Parsed module or submodule.
1354 * @return Module or submodule name.
1355 */
1356#define LYSP_MODULE_NAME(PMOD) (PMOD->is_submod ? ((struct lysp_submodule *)PMOD)->name : ((struct lysp_module *)PMOD)->mod->name)
1357
1358/**
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001359 * @brief Compiled prefix data pair mapping of prefixes to modules. In case the format is ::LY_PREF_SCHEMA_RESOLVED,
1360 * the expected prefix data is a sized array of these structures.
1361 */
1362struct lysc_prefix {
1363 char *prefix; /**< used prefix */
1364 const struct lys_module *mod; /**< mapping to a module */
1365};
1366
1367/**
Radek Krejci0e59c312019-08-15 15:34:15 +02001368 * @brief Compiled YANG extension-stmt
1369 */
1370struct lysc_ext {
1371 const char *name; /**< extension name */
1372 const char *argument; /**< argument name, NULL if not specified */
Radek Krejci0e59c312019-08-15 15:34:15 +02001373 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1374 struct lyext_plugin *plugin; /**< Plugin implementing the specific extension */
Radek Krejci0935f412019-08-20 16:15:18 +02001375 struct lys_module *module; /**< module structure */
Michal Vasko6f4cbb62020-02-28 11:15:47 +01001376 uint32_t refcount; /**< reference counter since extension definition is shared among all its instances */
Radek Krejci0e59c312019-08-15 15:34:15 +02001377 uint16_t flags; /**< LYS_STATUS_* value (@ref snodeflags) */
1378};
1379
1380/**
Radek Krejcice8c1592018-10-29 15:35:51 +01001381 * @brief YANG extension instance
1382 */
1383struct lysc_ext_instance {
Radek Krejciad5963b2019-09-06 16:03:05 +02001384 uint32_t insubstmt_index; /**< in case the instance is in a substatement that can appear multiple times,
1385 this identifies the index of the substatement for this extension instance */
Radek Krejci28681fa2019-09-06 13:08:45 +02001386 struct lys_module *module; /**< module where the extension instantiated is defined */
Radek Krejciad5963b2019-09-06 16:03:05 +02001387 struct lysc_ext *def; /**< pointer to the extension definition */
Radek Krejcice8c1592018-10-29 15:35:51 +01001388 void *parent; /**< pointer to the parent element holding the extension instance(s), use
1389 ::lysc_ext_instance#parent_type to access the schema element */
1390 const char *argument; /**< optional value of the extension's argument */
1391 LYEXT_SUBSTMT insubstmt; /**< value identifying placement of the extension instance */
Radek Krejci2a408df2018-10-29 16:32:26 +01001392 LYEXT_PARENT parent_type; /**< type of the parent structure */
Radek Krejci2a408df2018-10-29 16:32:26 +01001393 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci0e59c312019-08-15 15:34:15 +02001394 void *data; /**< private plugins's data, not used by libyang */
Radek Krejcice8c1592018-10-29 15:35:51 +01001395};
1396
1397/**
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001398 * @brief YANG when-stmt
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001399 */
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001400struct lysc_when {
1401 struct lyxp_expr *cond; /**< XPath when condition */
Michal Vasko175012e2019-11-06 15:49:14 +01001402 struct lysc_node *context; /**< context node for evaluating the expression, NULL if the context is root node */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001403 struct lysc_prefix *prefixes; /**< compiled used prefixes in the condition */
Radek Krejcic8b31002019-01-08 10:24:45 +01001404 const char *dsc; /**< description */
1405 const char *ref; /**< reference */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001406 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci00b874b2019-02-12 10:54:50 +01001407 uint32_t refcount; /**< reference counter since some of the when statements are shared among several nodes */
Michal Vaskoecd62de2019-11-13 12:35:11 +01001408 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS is allowed */
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001409};
1410
1411/**
Radek Krejci2a408df2018-10-29 16:32:26 +01001412 * @brief YANG identity-stmt
1413 */
1414struct lysc_ident {
1415 const char *name; /**< identity name (mandatory), including possible prefix */
Radek Krejcic8b31002019-01-08 10:24:45 +01001416 const char *dsc; /**< description */
1417 const char *ref; /**< reference */
Radek Krejci693262f2019-04-29 15:23:20 +02001418 struct lys_module *module; /**< module structure */
Radek Krejci2a408df2018-10-29 16:32:26 +01001419 struct lysc_ident **derived; /**< list of (pointers to the) derived identities ([sized array](@ref sizedarrays)) */
1420 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1421 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ values are allowed */
1422};
1423
1424/**
Radek Krejci151a5b72018-10-19 14:21:44 +02001425 * @defgroup ifftokens if-feature expression tokens
Radek Krejci8678fa42020-08-18 16:07:28 +02001426 * Tokens of if-feature expression used in ::lysc_iffeature.expr.
Radek Krejci151a5b72018-10-19 14:21:44 +02001427 *
1428 * @{
1429 */
1430#define LYS_IFF_NOT 0x00 /**< operand "not" */
1431#define LYS_IFF_AND 0x01 /**< operand "and" */
1432#define LYS_IFF_OR 0x02 /**< operand "or" */
1433#define LYS_IFF_F 0x03 /**< feature */
Radek Krejci2ff0d572020-05-21 15:27:28 +02001434/** @} ifftokens */
Radek Krejci151a5b72018-10-19 14:21:44 +02001435
1436/**
Radek Krejcib7db73a2018-10-24 14:18:40 +02001437 * @brief Compiled YANG revision statement
1438 */
1439struct lysc_revision {
1440 char date[LY_REV_SIZE]; /**< revision-date (mandatory) */
1441 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1442};
1443
Radek Krejci2167ee12018-11-02 16:09:07 +01001444struct lysc_range {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001445 struct lysc_range_part {
Radek Krejci693262f2019-04-29 15:23:20 +02001446 union { /**< min boundary */
Radek Krejcie7b95092019-05-15 11:03:07 +02001447 int64_t min_64; /**< for int8, int16, int32, int64 and decimal64 ( >= LY_TYPE_DEC64) */
1448 uint64_t min_u64; /**< for uint8, uint16, uint32, uint64, string and binary ( < LY_TYPE_DEC64) */
Radek Krejci2167ee12018-11-02 16:09:07 +01001449 };
Radek Krejci693262f2019-04-29 15:23:20 +02001450 union { /**< max boundary */
Radek Krejcie7b95092019-05-15 11:03:07 +02001451 int64_t max_64; /**< for int8, int16, int32, int64 and decimal64 ( >= LY_TYPE_DEC64) */
1452 uint64_t max_u64; /**< for uint8, uint16, uint32, uint64, string and binary ( < LY_TYPE_DEC64) */
Radek Krejci2167ee12018-11-02 16:09:07 +01001453 };
Radek Krejci4f28eda2018-11-12 11:46:16 +01001454 } *parts; /**< compiled range expression ([sized array](@ref sizedarrays)) */
Radek Krejcic8b31002019-01-08 10:24:45 +01001455 const char *dsc; /**< description */
1456 const char *ref; /**< reference */
Radek Krejci2167ee12018-11-02 16:09:07 +01001457 const char *emsg; /**< error-message */
1458 const char *eapptag; /**< error-app-tag value */
1459 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1460};
1461
1462struct lysc_pattern {
Radek Krejci54579462019-04-30 12:47:06 +02001463 const char *expr; /**< original, not compiled, regular expression */
1464 pcre2_code *code; /**< compiled regular expression */
Radek Krejcic8b31002019-01-08 10:24:45 +01001465 const char *dsc; /**< description */
1466 const char *ref; /**< reference */
Radek Krejci2167ee12018-11-02 16:09:07 +01001467 const char *emsg; /**< error-message */
1468 const char *eapptag; /**< error-app-tag value */
1469 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci0f969882020-08-21 16:56:47 +02001470 uint32_t inverted : 1; /**< invert-match flag */
1471 uint32_t refcount : 31; /**< reference counter */
Radek Krejci2167ee12018-11-02 16:09:07 +01001472};
1473
1474struct lysc_must {
Radek Krejci2167ee12018-11-02 16:09:07 +01001475 struct lyxp_expr *cond; /**< XPath when condition */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001476 struct lysc_prefix *prefixes; /**< compiled used prefixes in the condition */
Radek Krejcic8b31002019-01-08 10:24:45 +01001477 const char *dsc; /**< description */
1478 const char *ref; /**< reference */
Radek Krejci2167ee12018-11-02 16:09:07 +01001479 const char *emsg; /**< error-message */
1480 const char *eapptag; /**< error-app-tag value */
1481 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1482};
1483
1484struct lysc_type {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001485 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +02001486 struct lysc_type_plugin *plugin; /**< type's plugin with built-in as well as user functions to canonize or validate the value of the type */
Radek Krejci2167ee12018-11-02 16:09:07 +01001487 LY_DATA_TYPE basetype; /**< Base type of the type */
1488 uint32_t refcount; /**< reference counter for type sharing */
1489};
1490
1491struct lysc_type_num {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001492 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +02001493 struct lysc_type_plugin *plugin; /**< type's plugin with built-in as well as user functions to canonize or validate the value of the type */
Radek Krejci2167ee12018-11-02 16:09:07 +01001494 LY_DATA_TYPE basetype; /**< Base type of the type */
1495 uint32_t refcount; /**< reference counter for type sharing */
1496 struct lysc_range *range; /**< Optional range limitation */
1497};
1498
1499struct lysc_type_dec {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001500 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +02001501 struct lysc_type_plugin *plugin; /**< type's plugin with built-in as well as user functions to canonize or validate the value of the type */
Radek Krejci2167ee12018-11-02 16:09:07 +01001502 LY_DATA_TYPE basetype; /**< Base type of the type */
1503 uint32_t refcount; /**< reference counter for type sharing */
Radek Krejci6cba4292018-11-15 17:33:29 +01001504 uint8_t fraction_digits; /**< fraction digits specification */
Radek Krejci2167ee12018-11-02 16:09:07 +01001505 struct lysc_range *range; /**< Optional range limitation */
1506};
1507
1508struct lysc_type_str {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001509 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +02001510 struct lysc_type_plugin *plugin; /**< type's plugin with built-in as well as user functions to canonize or validate the value of the type */
Radek Krejci2167ee12018-11-02 16:09:07 +01001511 LY_DATA_TYPE basetype; /**< Base type of the type */
1512 uint32_t refcount; /**< reference counter for type sharing */
1513 struct lysc_range *length; /**< Optional length limitation */
Radek Krejci4586a022018-11-13 11:29:26 +01001514 struct lysc_pattern **patterns; /**< Optional list of pointers to pattern limitations ([sized array](@ref sizedarrays)) */
Radek Krejci2167ee12018-11-02 16:09:07 +01001515};
1516
Radek Krejci693262f2019-04-29 15:23:20 +02001517struct lysc_type_bitenum_item {
1518 const char *name; /**< enumeration identifier */
1519 const char *dsc; /**< description */
1520 const char *ref; /**< reference */
1521 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci693262f2019-04-29 15:23:20 +02001522 union {
1523 int32_t value; /**< integer value associated with the enumeration */
1524 uint32_t position; /**< non-negative integer value associated with the bit */
1525 };
1526 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ and LYS_SET_VALUE
1527 values are allowed */
1528};
1529
Radek Krejci2167ee12018-11-02 16:09:07 +01001530struct lysc_type_enum {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001531 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +02001532 struct lysc_type_plugin *plugin; /**< type's plugin with built-in as well as user functions to canonize or validate the value of the type */
Radek Krejci2167ee12018-11-02 16:09:07 +01001533 LY_DATA_TYPE basetype; /**< Base type of the type */
1534 uint32_t refcount; /**< reference counter for type sharing */
Radek Krejci693262f2019-04-29 15:23:20 +02001535 struct lysc_type_bitenum_item *enums; /**< enumerations list ([sized array](@ref sizedarrays)), mandatory (at least 1 item) */
1536};
1537
1538struct lysc_type_bits {
1539 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +02001540 struct lysc_type_plugin *plugin; /**< type's plugin with built-in as well as user functions to canonize or validate the value of the type */
Radek Krejci693262f2019-04-29 15:23:20 +02001541 LY_DATA_TYPE basetype; /**< Base type of the type */
1542 uint32_t refcount; /**< reference counter for type sharing */
Radek Krejci849a62a2019-05-22 15:29:05 +02001543 struct lysc_type_bitenum_item *bits; /**< bits list ([sized array](@ref sizedarrays)), mandatory (at least 1 item),
1544 the items are ordered by their position value. */
Radek Krejci2167ee12018-11-02 16:09:07 +01001545};
1546
1547struct lysc_type_leafref {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001548 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +02001549 struct lysc_type_plugin *plugin; /**< type's plugin with built-in as well as user functions to canonize or validate the value of the type */
Radek Krejci2167ee12018-11-02 16:09:07 +01001550 LY_DATA_TYPE basetype; /**< Base type of the type */
1551 uint32_t refcount; /**< reference counter for type sharing */
Michal Vasko004d3152020-06-11 19:59:22 +02001552 struct lyxp_expr *path; /**< parsed target path, compiled path cannot be stored because of type sharing */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001553 struct lysc_prefix *prefixes; /**< resolved prefixes used in the path */
Michal Vaskoc0792ca2020-12-01 12:03:21 +01001554 const struct lys_module *cur_mod;/**< current module for the leafref (path) */
Radek Krejci412ddfa2018-11-23 11:44:11 +01001555 struct lysc_type *realtype; /**< pointer to the real (first non-leafref in possible leafrefs chain) type. */
Radek Krejci2167ee12018-11-02 16:09:07 +01001556 uint8_t require_instance; /**< require-instance flag */
1557};
1558
1559struct lysc_type_identityref {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001560 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +02001561 struct lysc_type_plugin *plugin; /**< type's plugin with built-in as well as user functions to canonize or validate the value of the type */
Radek Krejci2167ee12018-11-02 16:09:07 +01001562 LY_DATA_TYPE basetype; /**< Base type of the type */
1563 uint32_t refcount; /**< reference counter for type sharing */
Radek Krejci555cb5b2018-11-16 14:54:33 +01001564 struct lysc_ident **bases; /**< list of pointers to the base identities ([sized array](@ref sizedarrays)),
Radek Krejci2167ee12018-11-02 16:09:07 +01001565 mandatory (at least 1 item) */
1566};
1567
1568struct lysc_type_instanceid {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001569 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +02001570 struct lysc_type_plugin *plugin; /**< type's plugin with built-in as well as user functions to canonize or validate the value of the type */
Radek Krejci2167ee12018-11-02 16:09:07 +01001571 LY_DATA_TYPE basetype; /**< Base type of the type */
1572 uint32_t refcount; /**< reference counter for type sharing */
1573 uint8_t require_instance; /**< require-instance flag */
1574};
1575
Radek Krejci2167ee12018-11-02 16:09:07 +01001576struct lysc_type_union {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001577 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +02001578 struct lysc_type_plugin *plugin; /**< type's plugin with built-in as well as user functions to canonize or validate the value of the type */
Radek Krejci2167ee12018-11-02 16:09:07 +01001579 LY_DATA_TYPE basetype; /**< Base type of the type */
1580 uint32_t refcount; /**< reference counter for type sharing */
1581 struct lysc_type **types; /**< list of types in the union ([sized array](@ref sizedarrays)), mandatory (at least 1 item) */
1582};
1583
1584struct lysc_type_bin {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001585 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +02001586 struct lysc_type_plugin *plugin; /**< type's plugin with built-in as well as user functions to canonize or validate the value of the type */
Radek Krejci2167ee12018-11-02 16:09:07 +01001587 LY_DATA_TYPE basetype; /**< Base type of the type */
1588 uint32_t refcount; /**< reference counter for type sharing */
1589 struct lysc_range *length; /**< Optional length limitation */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001590};
1591
Michal Vasko60ea6352020-06-29 13:39:39 +02001592/**
1593 * @brief Maximum number of hashes stored in a schema node.
1594 */
1595#define LYS_NODE_HASH_COUNT 4
1596
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001597/**
Radek Krejci0af5f5d2018-09-07 15:00:30 +02001598 * @brief Compiled YANG data node
1599 */
1600struct lysc_node {
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001601 uint16_t nodetype; /**< type of the node (mandatory) */
1602 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
Michal Vasko60ea6352020-06-29 13:39:39 +02001603 uint8_t hash[LYS_NODE_HASH_COUNT]; /**< schema hash required for LYB printer/parser */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001604 struct lys_module *module; /**< module structure */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001605 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1606 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1607 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
1608 never NULL. If there is no sibling node, pointer points to the node
1609 itself. In case of the first node, this pointer points to the last
1610 node in the list. */
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001611 const char *name; /**< node name (mandatory) */
Radek Krejci12fb9142019-01-08 09:45:30 +01001612 const char *dsc; /**< description */
1613 const char *ref; /**< reference */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001614 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vasko2fd91b92020-07-17 16:39:02 +02001615 void *priv; /**< private arbitrary user data, not used by libyang */
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001616};
1617
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001618struct lysc_node_action_inout {
1619 union {
1620 struct lysc_node node; /**< implicit cast for the members compatible with ::lysc_node */
1621 struct {
1622 uint16_t nodetype; /**< LYS_INPUT or LYS_OUTPUT */
1623 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1624 uint8_t hash[LYS_NODE_HASH_COUNT]; /**< schema hash required for LYB printer/parser */
1625 struct lys_module *module; /**< module structure */
Radek Krejci5960c312021-01-27 20:24:22 +01001626 struct lysc_node *parent;/**< parent node (NULL in case of top level node) */
Michal Vasko544e58a2021-01-28 14:33:41 +01001627 struct lysc_node *next; /**< next sibling node (output node for input, NULL for output) */
1628 struct lysc_node *prev; /**< pointer to the previous sibling node (input and output node pointing to each other) */
Radek Krejci5960c312021-01-27 20:24:22 +01001629 const char *name; /**< "input" or "output" */
1630 const char *dsc; /**< ALWAYS NULL, compatibility member with ::lysc_node */
1631 const char *ref; /**< ALWAYS NULL, compatibility member with ::lysc_node */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001632 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001633 void *priv; /** private arbitrary user data, not used by libyang */
1634 };
1635 };
1636
Radek Krejci9a3823e2021-01-27 20:26:46 +01001637 struct lysc_node *child; /**< first child node (linked list) */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001638 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
1639};
1640
1641struct lysc_node_action {
1642 union {
1643 struct lysc_node node; /**< implicit cast for the members compatible with ::lysc_node */
1644 struct {
1645 uint16_t nodetype; /**< LYS_RPC or LYS_ACTION */
1646 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1647 uint8_t hash[LYS_NODE_HASH_COUNT]; /**< schema hash required for LYB printer/parser */
1648 struct lys_module *module; /**< module structure */
1649 struct lysc_node *parent; /**< parent node (NULL in case of top level node - RPC) */
1650 struct lysc_node_action *next; /**< next sibling node (NULL if there is no one) */
1651 struct lysc_node_action *prev; /**< pointer to the previous sibling node \note Note that this pointer is
1652 never NULL. If there is no sibling node, pointer points to the node
1653 itself. In case of the first node, this pointer points to the last
1654 node in the list. */
1655 const char *name; /**< action/RPC name (mandatory) */
1656 const char *dsc; /**< description */
1657 const char *ref; /**< reference */
1658 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001659 void *priv; /** private arbitrary user data, not used by libyang */
1660 };
1661 };
1662
Radek Krejci9a3823e2021-01-27 20:26:46 +01001663 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)),
1664 the action/RPC nodes do not contain the when statement on their own, but they can
1665 inherit it from the parent's uses. */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001666 struct lysc_node_action_inout input; /**< RPC's/action's input */
1667 struct lysc_node_action_inout output; /**< RPC's/action's output */
1668
1669};
1670
1671struct lysc_node_notif {
1672 union {
1673 struct lysc_node node; /**< implicit cast for the members compatible with ::lysc_node */
1674 struct {
1675 uint16_t nodetype; /**< LYS_NOTIF */
1676 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1677 uint8_t hash[LYS_NODE_HASH_COUNT]; /**< schema hash required for LYB printer/parser */
1678 struct lys_module *module; /**< module structure */
1679 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1680 struct lysc_node_notif *next; /**< next sibling node (NULL if there is no one) */
1681 struct lysc_node_notif *prev; /**< pointer to the previous sibling node \note Note that this pointer is
1682 never NULL. If there is no sibling node, pointer points to the node
1683 itself. In case of the first node, this pointer points to the last
1684 node in the list. */
1685 const char *name; /**< Notification name (mandatory) */
1686 const char *dsc; /**< description */
1687 const char *ref; /**< reference */
1688 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001689 void *priv; /** private arbitrary user data, not used by libyang */
1690 };
1691 };
1692
Radek Krejci9a3823e2021-01-27 20:26:46 +01001693 struct lysc_node *child; /**< first child node (linked list) */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001694 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001695 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)),
1696 the notification nodes do not contain the when statement on their own, but they can
1697 inherit it from the parent's uses. */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001698};
1699
1700struct lysc_node_container {
1701 union {
1702 struct lysc_node node; /**< implicit cast for the members compatible with ::lysc_node */
1703 struct {
1704 uint16_t nodetype; /**< LYS_CONTAINER */
1705 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1706 uint8_t hash[LYS_NODE_HASH_COUNT]; /**< schema hash required for LYB printer/parser */
1707 struct lys_module *module; /**< module structure */
1708 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1709 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1710 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
1711 never NULL. If there is no sibling node, pointer points to the node
1712 itself. In case of the first node, this pointer points to the last
1713 node in the list. */
1714 const char *name; /**< node name (mandatory) */
1715 const char *dsc; /**< description */
1716 const char *ref; /**< reference */
1717 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001718 void *priv; /**< private arbitrary user data, not used by libyang */
1719 };
1720 };
Radek Krejci4f28eda2018-11-12 11:46:16 +01001721
1722 struct lysc_node *child; /**< first child node (linked list) */
1723 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001724 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001725 struct lysc_node_action *actions;/**< first of actions nodes (linked list) */
1726 struct lysc_node_notif *notifs; /**< first of notifications nodes (linked list) */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001727};
1728
Radek Krejcia3045382018-11-22 14:30:31 +01001729struct lysc_node_case {
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001730 union {
1731 struct lysc_node node; /**< implicit cast for the members compatible with ::lysc_node */
1732 struct {
1733 uint16_t nodetype; /**< LYS_CASE */
1734 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1735 uint8_t hash[LYS_NODE_HASH_COUNT]; /**< schema hash required for LYB printer/parser, unused */
1736 struct lys_module *module; /**< module structure */
1737 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1738 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1739 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
Radek Krejci056d0a82018-12-06 16:57:25 +01001740 never NULL. If there is no sibling node, pointer points to the node
1741 itself. In case of the first node, this pointer points to the last
1742 node in the list. */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001743 const char *name; /**< name of the case, including the implicit case */
1744 const char *dsc; /**< description */
1745 const char *ref; /**< reference */
1746 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001747 void *priv; /**< private arbitrary user data, not used by libyang */
1748 };
1749 };
Radek Krejci056d0a82018-12-06 16:57:25 +01001750
Radek Krejcia3045382018-11-22 14:30:31 +01001751 struct lysc_node *child; /**< first child node of the case (linked list). Note that all the children of all the sibling cases are linked
Radek Krejcife13da42019-02-15 14:51:01 +01001752 each other as siblings with the parent pointer pointing to appropriate case node. */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001753 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejcia3045382018-11-22 14:30:31 +01001754};
1755
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001756struct lysc_node_choice {
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001757 union {
1758 struct lysc_node node; /**< implicit cast for the members compatible with ::lysc_node */
1759 struct {
1760 uint16_t nodetype; /**< LYS_CHOICE */
1761 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1762 uint8_t hash[LYS_NODE_HASH_COUNT]; /**< schema hash required for LYB printer/parser, unused */
1763 struct lys_module *module; /**< module structure */
1764 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1765 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1766 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001767 never NULL. If there is no sibling node, pointer points to the node
1768 itself. In case of the first node, this pointer points to the last
1769 node in the list. */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001770 const char *name; /**< node name (mandatory) */
1771 const char *dsc; /**< description */
1772 const char *ref; /**< reference */
1773 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001774 void *priv; /**< private arbitrary user data, not used by libyang */
1775 };
1776 };
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001777
Radek Krejcia9026eb2018-12-12 16:04:47 +01001778 struct lysc_node_case *cases; /**< list of the cases (linked list). Note that all the children of all the cases are linked each other
1779 as siblings. Their parent pointers points to the specific case they belongs to, so distinguish the
1780 case is simple. */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001781 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejci056d0a82018-12-06 16:57:25 +01001782 struct lysc_node_case *dflt; /**< default case of the choice, only a pointer into the cases array. */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001783};
1784
1785struct lysc_node_leaf {
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001786 union {
1787 struct lysc_node node; /**< implicit cast for the members compatible with ::lysc_node */
1788 struct {
1789 uint16_t nodetype; /**< LYS_LEAF */
1790 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1791 uint8_t hash[LYS_NODE_HASH_COUNT]; /**< schema hash required for LYB printer/parser */
1792 struct lys_module *module; /**< module structure */
1793 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1794 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1795 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001796 never NULL. If there is no sibling node, pointer points to the node
1797 itself. In case of the first node, this pointer points to the last
1798 node in the list. */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001799 const char *name; /**< node name (mandatory) */
1800 const char *dsc; /**< description */
1801 const char *ref; /**< reference */
1802 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001803 void *priv; /**< private arbitrary user data, not used by libyang */
1804 };
1805 };
Radek Krejci4f28eda2018-11-12 11:46:16 +01001806
1807 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001808 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejci4f28eda2018-11-12 11:46:16 +01001809 struct lysc_type *type; /**< type of the leaf node (mandatory) */
Radek Krejcib57cf1e2018-11-23 14:07:05 +01001810
Radek Krejci4f28eda2018-11-12 11:46:16 +01001811 const char *units; /**< units of the leaf's type */
Radek Krejcia1911222019-07-22 17:24:50 +02001812 struct lyd_value *dflt; /**< default value */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001813};
1814
1815struct lysc_node_leaflist {
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001816 union {
1817 struct lysc_node node; /**< implicit cast for the members compatible with ::lysc_node */
1818 struct {
1819 uint16_t nodetype; /**< LYS_LEAFLIST */
1820 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1821 uint8_t hash[LYS_NODE_HASH_COUNT]; /**< schema hash required for LYB printer/parser */
1822 struct lys_module *module; /**< module structure */
1823 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1824 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1825 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001826 never NULL. If there is no sibling node, pointer points to the node
1827 itself. In case of the first node, this pointer points to the last
1828 node in the list. */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001829 const char *name; /**< node name (mandatory) */
1830 const char *dsc; /**< description */
1831 const char *ref; /**< reference */
1832 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001833 void *priv; /**< private arbitrary user data, not used by libyang */
1834 };
1835 };
Radek Krejcib57cf1e2018-11-23 14:07:05 +01001836
1837 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001838 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejcib57cf1e2018-11-23 14:07:05 +01001839 struct lysc_type *type; /**< type of the leaf node (mandatory) */
1840
Radek Krejci0e5d8382018-11-28 16:37:53 +01001841 const char *units; /**< units of the leaf's type */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001842 struct lyd_value **dflts; /**< list ([sized array](@ref sizedarrays)) of default values */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02001843
Radek Krejci0e5d8382018-11-28 16:37:53 +01001844 uint32_t min; /**< min-elements constraint */
1845 uint32_t max; /**< max-elements constraint */
1846
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001847};
1848
1849struct lysc_node_list {
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001850 union {
1851 struct lysc_node node; /**< implicit cast for the members compatible with ::lysc_node */
1852 struct {
1853 uint16_t nodetype; /**< LYS_LIST */
1854 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1855 uint8_t hash[LYS_NODE_HASH_COUNT]; /**< schema hash required for LYB printer/parser */
1856 struct lys_module *module; /**< module structure */
1857 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1858 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1859 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001860 never NULL. If there is no sibling node, pointer points to the node
1861 itself. In case of the first node, this pointer points to the last
1862 node in the list. */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001863 const char *name; /**< node name (mandatory) */
1864 const char *dsc; /**< description */
1865 const char *ref; /**< reference */
1866 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001867 void *priv; /**< private arbitrary user data, not used by libyang */
1868 };
1869 };
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001870
1871 struct lysc_node *child; /**< first child node (linked list) */
1872 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001873 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001874 struct lysc_node_action *actions;/**< first of actions nodes (linked list) */
1875 struct lysc_node_notif *notifs; /**< first of notifications nodes (linked list) */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001876
Radek Krejci2a9fc652021-01-22 17:44:34 +01001877 struct lysc_node_leaf ***uniques;/**< list of sized arrays of pointers to the unique nodes ([sized array](@ref sizedarrays)) */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001878 uint32_t min; /**< min-elements constraint */
1879 uint32_t max; /**< max-elements constraint */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001880};
1881
1882struct lysc_node_anydata {
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001883 union {
1884 struct lysc_node node; /**< implicit cast for the members compatible with ::lysc_node */
1885 struct {
1886 uint16_t nodetype; /**< LYS_ANYXML or LYS_ANYDATA */
1887 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1888 uint8_t hash[LYS_NODE_HASH_COUNT]; /**< schema hash required for LYB printer/parser */
1889 struct lys_module *module; /**< module structure */
1890 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1891 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1892 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001893 never NULL. If there is no sibling node, pointer points to the node
1894 itself. In case of the first node, this pointer points to the last
1895 node in the list. */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001896 const char *name; /**< node name (mandatory) */
1897 const char *dsc; /**< description */
1898 const char *ref; /**< reference */
1899 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci00a3e8a2021-01-27 08:24:49 +01001900 void *priv; /**< private arbitrary user data, not used by libyang */
1901 };
1902 };
Radek Krejci9800fb82018-12-13 14:26:23 +01001903
1904 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci9a3823e2021-01-27 20:26:46 +01001905 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001906};
1907
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001908/**
1909 * @brief Compiled YANG schema tree structure representing YANG module.
1910 *
1911 * Semantically validated YANG schema tree for data tree parsing.
1912 * Contains only the necessary information for the data validation.
1913 */
1914struct lysc_module {
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001915 struct lys_module *mod; /**< covering module structure */
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001916
Radek Krejci2a408df2018-10-29 16:32:26 +01001917 struct lysc_node *data; /**< list of module's top-level data nodes (linked list) */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001918 struct lysc_node_action *rpcs; /**< first of actions nodes (linked list) */
1919 struct lysc_node_notif *notifs; /**< first of notifications nodes (linked list) */
Radek Krejcice8c1592018-10-29 15:35:51 +01001920 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci0af5f5d2018-09-07 15:00:30 +02001921};
1922
1923/**
Radek Krejci490a5462020-11-05 08:44:42 +01001924 * @brief Examine whether a node is user-ordered list or leaf-list.
1925 *
1926 * @param[in] lysc_node Schema node to examine.
1927 * @return Boolean value whether the @p node is user-ordered or not.
1928 */
1929#define lysc_is_userordered(lysc_node) \
1930 ((!lysc_node || !(lysc_node->nodetype & (LYS_LEAFLIST | LYS_LIST)) || !(lysc_node->flags & LYS_ORDBY_USER)) ? 0 : 1)
1931
1932/**
1933 * @brief Examine whether a node is a list's key.
1934 *
1935 * @param[in] lysc_node Schema node to examine.
1936 * @return Boolean value whether the @p node is a key or not.
1937 */
1938#define lysc_is_key(lysc_node) \
Michal Vaskobce7ee32021-02-04 11:05:25 +01001939 ((!lysc_node || (lysc_node->nodetype != LYS_LEAF) || !(lysc_node->flags & LYS_KEY)) ? 0 : 1)
Radek Krejci490a5462020-11-05 08:44:42 +01001940
1941/**
Michal Vasko5c123b02020-12-04 14:34:04 +01001942 * @brief Examine whether a node is a non-presence container.
1943 *
1944 * @param[in] lysc_node Schema node to examine.
1945 * @return Boolean value whether the @p node is a NP container or not.
1946 */
1947#define lysc_is_np_cont(lysc_node) \
Michal Vaskobce7ee32021-02-04 11:05:25 +01001948 ((!lysc_node || (lysc_node->nodetype != LYS_CONTAINER) || (lysc_node->flags & LYS_PRESENCE)) ? 0 : 1)
1949
1950/**
1951 * @brief Examine whether a node is a key-less list or a state leaf-list.
1952 *
1953 * @param[in] lysc_node Schema node to examine.
1954 * @return Boolean value whether the @p node is a list with duplicate instances allowed.
1955 */
1956#define lysc_is_dup_inst_list(lysc_node) \
1957 ((lysc_node && (((lysc_node->nodetype == LYS_LIST) && (lysc_node->flags & LYS_KEYLESS)) || \
1958 ((lysc_node->nodetype == LYS_LEAFLIST) && (lysc_node->flags & LYS_CONFIG_R)))) ? 1 : 0)
Michal Vasko5c123b02020-12-04 14:34:04 +01001959
1960/**
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01001961 * @brief Check whether the schema node data instance existence depends on any when conditions.
1962 * This node and any direct parent choice and case schema nodes are also examined for when conditions.
1963 *
1964 * Be careful, this function is not recursive and checks only conditions that apply to this node directly.
1965 * Meaning if there are any conditions associated with any data parent instance of @p node, they are not returned.
1966 *
1967 * @param[in] node Schema node to examine.
1968 * @return When condition associated with the node data instance, NULL if there is none.
1969 */
1970const struct lysc_when *lysc_has_when(const struct lysc_node *node);
1971
1972/**
Radek Krejci2a9fc652021-01-22 17:44:34 +01001973 * @brief Get the groupings linked list of the given (parsed) schema node.
Radek Krejci53ea6152018-12-13 15:21:15 +01001974 * Decides the node's type and in case it has a groupings array, returns it.
1975 * @param[in] node Node to examine.
Radek Krejci2a9fc652021-01-22 17:44:34 +01001976 * @return The node's groupings linked list if any, NULL otherwise.
Radek Krejci53ea6152018-12-13 15:21:15 +01001977 */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001978const struct lysp_node_grp *lysp_node_groupings(const struct lysp_node *node);
Radek Krejci53ea6152018-12-13 15:21:15 +01001979
1980/**
Radek Krejci056d0a82018-12-06 16:57:25 +01001981 * @brief Get the typedefs sized array of the given (parsed) schema node.
1982 * Decides the node's type and in case it has a typedefs array, returns it.
1983 * @param[in] node Node to examine.
1984 * @return The node's typedefs sized array if any, NULL otherwise.
1985 */
1986const struct lysp_tpdf *lysp_node_typedefs(const struct lysp_node *node);
1987
1988/**
Radek Krejci2a9fc652021-01-22 17:44:34 +01001989 * @brief Get the actions/RPCs linked list of the given (parsed) schema node.
Radek Krejci056d0a82018-12-06 16:57:25 +01001990 * Decides the node's type and in case it has a actions/RPCs array, returns it.
1991 * @param[in] node Node to examine.
Radek Krejci2a9fc652021-01-22 17:44:34 +01001992 * @return The node's actions/RPCs linked list if any, NULL otherwise.
Radek Krejci056d0a82018-12-06 16:57:25 +01001993 */
Radek Krejci2a9fc652021-01-22 17:44:34 +01001994const struct lysp_node_action *lysp_node_actions(const struct lysp_node *node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001995
1996/**
Radek Krejci2a9fc652021-01-22 17:44:34 +01001997 * @brief Get the Notifications linked list of the given (parsed) schema node.
Radek Krejci056d0a82018-12-06 16:57:25 +01001998 * Decides the node's type and in case it has a Notifications array, returns it.
1999 * @param[in] node Node to examine.
Radek Krejci2a9fc652021-01-22 17:44:34 +01002000 * @return The node's Notifications linked list if any, NULL otherwise.
Radek Krejci056d0a82018-12-06 16:57:25 +01002001 */
Radek Krejci2a9fc652021-01-22 17:44:34 +01002002const struct lysp_node_notif *lysp_node_notifs(const struct lysp_node *node);
Radek Krejci056d0a82018-12-06 16:57:25 +01002003
2004/**
2005 * @brief Get the children linked list of the given (parsed) schema node.
2006 * Decides the node's type and in case it has a children list, returns it.
2007 * @param[in] node Node to examine.
2008 * @return The node's children linked list if any, NULL otherwise.
2009 */
Michal Vasko544e58a2021-01-28 14:33:41 +01002010const struct lysp_node *lysp_node_child(const struct lysp_node *node);
Radek Krejci056d0a82018-12-06 16:57:25 +01002011
2012/**
Radek Krejci2a9fc652021-01-22 17:44:34 +01002013 * @brief Get the actions/RPCs linked list of the given (compiled) schema node.
Radek Krejci056d0a82018-12-06 16:57:25 +01002014 * Decides the node's type and in case it has a actions/RPCs array, returns it.
2015 * @param[in] node Node to examine.
Radek Krejci2a9fc652021-01-22 17:44:34 +01002016 * @return The node's actions/RPCs linked list if any, NULL otherwise.
Radek Krejci056d0a82018-12-06 16:57:25 +01002017 */
Radek Krejci2a9fc652021-01-22 17:44:34 +01002018const struct lysc_node_action *lysc_node_actions(const struct lysc_node *node);
Radek Krejci056d0a82018-12-06 16:57:25 +01002019
2020/**
Radek Krejci2a9fc652021-01-22 17:44:34 +01002021 * @brief Get the Notifications linked list of the given (compiled) schema node.
Radek Krejci056d0a82018-12-06 16:57:25 +01002022 * Decides the node's type and in case it has a Notifications array, returns it.
2023 * @param[in] node Node to examine.
Radek Krejci2a9fc652021-01-22 17:44:34 +01002024 * @return The node's Notifications linked list if any, NULL otherwise.
Radek Krejci056d0a82018-12-06 16:57:25 +01002025 */
Radek Krejci2a9fc652021-01-22 17:44:34 +01002026const struct lysc_node_notif *lysc_node_notifs(const struct lysc_node *node);
Radek Krejci056d0a82018-12-06 16:57:25 +01002027
2028/**
2029 * @brief Get the children linked list of the given (compiled) schema node.
Michal Vasko2a668712020-10-21 11:48:09 +02002030 *
Michal Vasko544e58a2021-01-28 14:33:41 +01002031 * Note that ::LYS_CHOICE has only ::LYS_CASE children.
2032 * Also, ::LYS_RPC and ::LYS_ACTION have the first child ::LYS_INPUT, its sibling is ::LYS_OUTPUT.
2033 *
Michal Vasko2a668712020-10-21 11:48:09 +02002034 * @param[in] node Node to examine.
Michal Vasko2a668712020-10-21 11:48:09 +02002035 * @return Children linked list if any,
2036 * @return NULL otherwise.
2037 */
Michal Vasko544e58a2021-01-28 14:33:41 +01002038const struct lysc_node *lysc_node_child(const struct lysc_node *node);
Michal Vasko2a668712020-10-21 11:48:09 +02002039
2040/**
Radek Krejci9a3823e2021-01-27 20:26:46 +01002041 * @brief Get the must statements list if present in the @p node
2042 *
2043 * @param[in] node Node to examine.
2044 * @return Pointer to the list of must restrictions ([sized array](@ref sizedarrays))
2045 * @return NULL if there is no must statement in the node, no matter if it is not even allowed or just present
2046 */
2047struct lysc_must *lysc_node_musts(const struct lysc_node *node);
2048
2049/**
2050 * @brief Get the when statements list if present in the @p node
2051 *
2052 * @param[in] node Node to examine.
2053 * @return Pointer to the list of pointers to when statements ([sized array](@ref sizedarrays))
2054 * @return NULL if there is no when statement in the node, no matter if it is not even allowed or just present
2055 */
2056struct lysc_when **lysc_node_when(const struct lysc_node *node);
2057
2058/**
Michal Vaskof1ab44f2020-10-22 08:58:32 +02002059 * @brief Callback to be called for every schema node in a DFS traversal.
2060 *
2061 * @param[in] node Current node.
2062 * @param[in] data Arbitrary user data.
2063 * @param[out] dfs_continue Set to true if the current subtree should be skipped and continue with siblings instead.
2064 * @return LY_SUCCESS on success,
2065 * @return LY_ERR value to terminate DFS and return this value.
2066 */
Radek Krejci01180ac2021-01-27 08:48:22 +01002067typedef LY_ERR (*lysc_dfs_clb)(struct lysc_node *node, void *child, ly_bool *dfs_continue);
Michal Vaskof1ab44f2020-10-22 08:58:32 +02002068
2069/**
2070 * @brief DFS traversal of all the schema nodes in a (sub)tree including any actions and nested notifications.
2071 *
2072 * Node with children, actions, and notifications is traversed in this order:
2073 * 1) each child subtree;
2074 * 2) each action subtree;
2075 * 3) each notification subtree.
2076 *
2077 * For algorithm illustration or traversal with actions and notifications skipped, see ::LYSC_TREE_DFS_BEGIN.
2078 *
2079 * @param[in] root Schema root to fully traverse.
2080 * @param[in] dfs_clb Callback to call for each node.
2081 * @param[in] data Arbitrary user data passed to @p dfs_clb.
2082 * @return LY_SUCCESS on success,
2083 * @return LY_ERR value returned by @p dfs_clb.
2084 */
2085LY_ERR lysc_tree_dfs_full(const struct lysc_node *root, lysc_dfs_clb dfs_clb, void *data);
2086
2087/**
2088 * @brief DFS traversal of all the schema nodes in a module including RPCs and notifications.
2089 *
2090 * For more details, see ::lysc_tree_dfs_full().
2091 *
2092 * @param[in] mod Module to fully traverse.
2093 * @param[in] dfs_clb Callback to call for each node.
2094 * @param[in] data Arbitrary user data passed to @p dfs_clb.
2095 * @return LY_SUCCESS on success,
2096 * @return LY_ERR value returned by @p dfs_clb.
2097 */
2098LY_ERR lysc_module_dfs_full(const struct lys_module *mod, lysc_dfs_clb dfs_clb, void *data);
2099
2100/**
Radek Krejci151a5b72018-10-19 14:21:44 +02002101 * @brief Get how the if-feature statement currently evaluates.
2102 *
2103 * @param[in] iff Compiled if-feature statement to evaluate.
Michal Vasko28d78432020-05-26 13:10:53 +02002104 * @return LY_SUCCESS if the statement evaluates to true,
2105 * @return LY_ENOT if it evaluates to false,
2106 * @return LY_ERR on error.
Radek Krejci151a5b72018-10-19 14:21:44 +02002107 */
Michal Vasko28d78432020-05-26 13:10:53 +02002108LY_ERR lysc_iffeature_value(const struct lysc_iffeature *iff);
Radek Krejci151a5b72018-10-19 14:21:44 +02002109
2110/**
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01002111 * @brief Get the next feature in the module or submodules.
Radek Krejci151a5b72018-10-19 14:21:44 +02002112 *
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01002113 * @param[in] last Last returned feature.
2114 * @param[in] pmod Parsed module and submodoules whose features to iterate over.
2115 * @param[in,out] idx Submodule index, set to 0 on first call.
2116 * @return Next found feature, NULL if the last has already been returned.
Radek Krejci151a5b72018-10-19 14:21:44 +02002117 */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01002118struct lysp_feature *lysp_feature_next(const struct lysp_feature *last, const struct lysp_module *pmod, uint32_t *idx);
Radek Krejci151a5b72018-10-19 14:21:44 +02002119
Radek Krejcibed13942020-10-19 16:06:28 +02002120/**
2121 * @defgroup findxpathoptions Atomize XPath options
2122 * Options to modify behavior of ::lys_find_xpath() and ::lys_find_xpath_atoms() searching for schema nodes in schema tree.
2123 * @{
2124 */
Michal Vaskocdad7122020-11-09 21:04:44 +01002125#define LYS_FIND_XP_SCHEMA 0x08 /**< Apply node access restrictions defined for 'when' and 'must' evaluation. */
2126#define LYS_FIND_XP_OUTPUT 0x10 /**< Search RPC/action output nodes instead of input ones. */
Radek Krejci576f8fa2020-10-26 21:23:58 +01002127/** @} findxpathoptions */
Michal Vasko072de482020-08-05 13:27:21 +02002128
Radek Krejci151a5b72018-10-19 14:21:44 +02002129/**
Michal Vasko40308e72020-10-20 16:38:40 +02002130 * @brief Get all the schema nodes that are required for @p xpath to be evaluated (atoms).
Michal Vasko519fd602020-05-26 12:17:39 +02002131 *
Michal Vasko26512682021-01-11 11:35:40 +01002132 * @param[in] ctx libyang context to use. May be NULL if @p ctx_node is set.
2133 * @param[in] ctx_node XPath schema context node. Use NULL for the root node.
Michal Vasko40308e72020-10-20 16:38:40 +02002134 * @param[in] xpath Data XPath expression filtering the matching nodes. ::LY_PREF_JSON prefix format is expected.
Radek Krejcibed13942020-10-19 16:06:28 +02002135 * @param[in] options Whether to apply some node access restrictions, see @ref findxpathoptions.
Michal Vasko519fd602020-05-26 12:17:39 +02002136 * @param[out] set Set of found atoms (schema nodes).
2137 * @return LY_SUCCESS on success, @p set is returned.
Michal Vasko40308e72020-10-20 16:38:40 +02002138 * @return LY_ERR value on error.
Michal Vasko519fd602020-05-26 12:17:39 +02002139 */
Michal Vasko26512682021-01-11 11:35:40 +01002140LY_ERR lys_find_xpath_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath,
2141 uint32_t options, struct ly_set **set);
Michal Vasko519fd602020-05-26 12:17:39 +02002142
Michal Vasko072de482020-08-05 13:27:21 +02002143/**
Michal Vasko40308e72020-10-20 16:38:40 +02002144 * @brief Get all the schema nodes that are required for @p expr to be evaluated (atoms).
Michal Vasko072de482020-08-05 13:27:21 +02002145 *
Michal Vasko26512682021-01-11 11:35:40 +01002146 * @param[in] ctx_node XPath schema context node. Use NULL for the root node.
Michal Vasko40308e72020-10-20 16:38:40 +02002147 * @param[in] cur_mod Current module for the expression (where it was "instantiated").
2148 * @param[in] expr Parsed expression to use.
2149 * @param[in] prefixes Sized array of compiled prefixes.
2150 * @param[in] options Whether to apply some node access restrictions, see @ref findxpathoptions.
2151 * @param[out] set Set of found atoms (schema nodes).
2152 * @return LY_SUCCESS on success, @p set is returned.
2153 * @return LY_ERR value on error.
2154 */
2155LY_ERR lys_find_expr_atoms(const struct lysc_node *ctx_node, const struct lys_module *cur_mod,
2156 const struct lyxp_expr *expr, const struct lysc_prefix *prefixes, uint32_t options, struct ly_set **set);
2157
2158/**
2159 * @brief Evaluate an @p xpath expression on schema nodes.
2160 *
Michal Vasko26512682021-01-11 11:35:40 +01002161 * @param[in] ctx libyang context to use for absolute @p xpath. May be NULL if @p ctx_node is set.
2162 * @param[in] ctx_node XPath schema context node for relative @p xpath. Use NULL for the root node.
Michal Vasko40308e72020-10-20 16:38:40 +02002163 * @param[in] xpath Data XPath expression filtering the matching nodes. ::LY_PREF_JSON prefix format is expected.
Radek Krejcibed13942020-10-19 16:06:28 +02002164 * @param[in] options Whether to apply some node access restrictions, see @ref findxpathoptions.
Michal Vasko072de482020-08-05 13:27:21 +02002165 * @param[out] set Set of found schema nodes.
2166 * @return LY_SUCCESS on success, @p set is returned.
2167 * @return LY_ERR value if an error occurred.
2168 */
Michal Vasko26512682021-01-11 11:35:40 +01002169LY_ERR lys_find_xpath(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options,
2170 struct ly_set **set);
Michal Vasko519fd602020-05-26 12:17:39 +02002171
2172/**
Radek Krejcibc5644c2020-10-27 14:53:17 +01002173 * @brief Get all the schema nodes that are required for @p path to be evaluated (atoms).
2174 *
2175 * @param[in] path Compiled path to use.
2176 * @param[out] set Set of found atoms (schema nodes).
2177 * @return LY_SUCCESS on success, @p set is returned.
2178 * @return LY_ERR value on error.
2179 */
2180LY_ERR lys_find_lypath_atoms(const struct ly_path *path, struct ly_set **set);
2181
2182/**
2183 * @brief Get all the schema nodes that are required for @p path to be evaluated (atoms).
2184 *
Michal Vasko26512682021-01-11 11:35:40 +01002185 * @param[in] ctx libyang context to use for absolute @p path. May be NULL if @p ctx_node is set.
2186 * @param[in] ctx_node XPath schema context node for relative @p path. Use NULL for the root node.
Radek Krejcibc5644c2020-10-27 14:53:17 +01002187 * @param[in] path JSON path to examine.
2188 * @param[in] output Search operation output instead of input.
2189 * @param[out] set Set of found atoms (schema nodes).
2190 * @return LY_ERR value on error.
2191 */
2192LY_ERR lys_find_path_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output,
2193 struct ly_set **set);
2194
2195/**
2196 * @brief Get a schema node based on the given data path (JSON format, see @ref howtoXPath).
2197 *
Michal Vasko26512682021-01-11 11:35:40 +01002198 * @param[in] ctx libyang context to use for absolute @p path. May be NULL if @p ctx_node is set.
2199 * @param[in] ctx_node XPath schema context node for relative @p path. Use NULL for the root node.
Radek Krejcibc5644c2020-10-27 14:53:17 +01002200 * @param[in] path JSON path of the node to get.
2201 * @param[in] output Search operation output instead of input.
2202 * @return Found schema node or NULL.
2203 */
2204const struct lysc_node *lys_find_path(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path,
2205 ly_bool output);
2206
2207/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02002208 * @brief Types of the different schema paths.
2209 */
2210typedef enum {
Michal Vasko65de0402020-08-03 16:34:19 +02002211 LYSC_PATH_LOG, /**< Descriptive path format used in log messages */
2212 LYSC_PATH_DATA /**< Similar to ::LYSC_PATH_LOG except that schema-only nodes (choice, case) are skipped */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002213} LYSC_PATH_TYPE;
2214
2215/**
Radek Krejci327de162019-06-14 12:52:07 +02002216 * @brief Generate path of the given node in the requested format.
2217 *
2218 * @param[in] node Schema path of this node will be generated.
2219 * @param[in] pathtype Format of the path to generate.
Radek Krejci1c0c3442019-07-23 16:08:47 +02002220 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
2221 * If NULL, memory for the complete path is allocated.
2222 * @param[in] buflen Size of the provided @p buffer.
Radek Krejci327de162019-06-14 12:52:07 +02002223 * @return NULL in case of memory allocation error, path of the node otherwise.
Radek Krejci1c0c3442019-07-23 16:08:47 +02002224 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
Radek Krejci327de162019-06-14 12:52:07 +02002225 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002226char *lysc_path(const struct lysc_node *node, LYSC_PATH_TYPE pathtype, char *buffer, size_t buflen);
Radek Krejci327de162019-06-14 12:52:07 +02002227
2228/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +02002229 * @brief Available YANG schema tree structures representing YANG module.
2230 */
2231struct lys_module {
Radek Krejci0bcdaed2019-01-10 10:21:34 +01002232 struct ly_ctx *ctx; /**< libyang context of the module (mandatory) */
2233 const char *name; /**< name of the module (mandatory) */
Radek Krejci0af46292019-01-11 16:02:31 +01002234 const char *revision; /**< revision of the module (if present) */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01002235 const char *ns; /**< namespace of the module (module - mandatory) */
2236 const char *prefix; /**< module prefix or submodule belongsto prefix of main module (mandatory) */
2237 const char *filepath; /**< path, if the schema was read from a file, NULL in case of reading from memory */
2238 const char *org; /**< party/company responsible for the module */
2239 const char *contact; /**< contact information for the module */
2240 const char *dsc; /**< description of the module */
2241 const char *ref; /**< cross-reference for the module */
2242
Radek Krejci5aeea3a2018-09-05 13:29:36 +02002243 struct lysp_module *parsed; /**< Simply parsed (unresolved) YANG schema tree */
Radek Krejci0af46292019-01-11 16:02:31 +01002244 struct lysc_module *compiled; /**< Compiled and fully validated YANG schema tree for data parsing.
2245 Available only for implemented modules. */
Michal Vasko7f45cf22020-10-01 12:49:44 +02002246
Radek Krejci80d281e2020-09-14 17:42:54 +02002247 struct lysc_ident *identities; /**< List of compiled identities of the module ([sized array](@ref sizedarrays))
2248 Identities are outside the compiled tree to allow their linkage to the identities from
2249 the implemented modules. This avoids problems when the module became implemented in
2250 future (no matter if implicitly via augment/deviate or explicitly via
2251 ::lys_set_implemented()). Note that if the module is not implemented (compiled), the
2252 identities cannot be instantiated in data (in identityrefs). */
Michal Vasko7f45cf22020-10-01 12:49:44 +02002253
2254 struct lys_module **augmented_by;/**< List of modules that augment this module ([sized array](@ref sizedarrays)) */
2255 struct lys_module **deviated_by; /**< List of modules that deviate this module ([sized array](@ref sizedarrays)) */
2256
Michal Vasko89b5c072020-10-06 13:52:44 +02002257 ly_bool implemented; /**< flag if the module is implemented, not just imported */
Radek Krejci95710c92019-02-11 15:49:55 +01002258 uint8_t latest_revision; /**< flag to mark the latest available revision:
Radek Krejci0bcdaed2019-01-10 10:21:34 +01002259 1 - the latest revision in searchdirs was not searched yet and this is the
2260 latest revision in the current context
2261 2 - searchdirs were searched and this is the latest available revision */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02002262};
2263
Radek Krejci151a5b72018-10-19 14:21:44 +02002264/**
Michal Vasko82c31e62020-07-17 15:30:40 +02002265 * @brief Get the current real status of the specified feature in the module.
2266 *
2267 * If the feature is enabled, but some of its if-features are false, the feature is considered
2268 * disabled.
Radek Krejci151a5b72018-10-19 14:21:44 +02002269 *
2270 * @param[in] module Module where the feature is defined.
2271 * @param[in] feature Name of the feature to inspect.
Michal Vasko82c31e62020-07-17 15:30:40 +02002272 * @return LY_SUCCESS if the feature is enabled,
2273 * @return LY_ENOT if the feature is disabled,
2274 * @return LY_ENOTFOUND if the feature was not found.
Radek Krejci151a5b72018-10-19 14:21:44 +02002275 */
Michal Vasko82c31e62020-07-17 15:30:40 +02002276LY_ERR lys_feature_value(const struct lys_module *module, const char *feature);
Radek Krejcidd4e8d42018-10-16 14:55:43 +02002277
2278/**
Radek Krejcia3045382018-11-22 14:30:31 +01002279 * @brief Get next schema tree (sibling) node element that can be instantiated in a data tree. Returned node can
2280 * be from an augment.
2281 *
Radek Krejci8678fa42020-08-18 16:07:28 +02002282 * ::lys_getnext() is supposed to be called sequentially. In the first call, the \p last parameter is usually NULL
Radek Krejcia3045382018-11-22 14:30:31 +01002283 * and function starts returning i) the first \p parent's child or ii) the first top level element of the \p module.
2284 * Consequent calls suppose to provide the previously returned node as the \p last parameter and still the same
2285 * \p parent and \p module parameters.
2286 *
2287 * Without options, the function is used to traverse only the schema nodes that can be paired with corresponding
2288 * data nodes in a data tree. By setting some \p options the behavior can be modified to the extent that
2289 * all the schema nodes are iteratively returned.
2290 *
2291 * @param[in] last Previously returned schema tree node, or NULL in case of the first call.
2292 * @param[in] parent Parent of the subtree where the function starts processing.
2293 * @param[in] module In case of iterating on top level elements, the \p parent is NULL and
2294 * module must be specified.
2295 * @param[in] options [ORed options](@ref sgetnextflags).
2296 * @return Next schema tree node that can be instantiated in a data tree, NULL in case there is no such element.
2297 */
2298const struct lysc_node *lys_getnext(const struct lysc_node *last, const struct lysc_node *parent,
Radek Krejci1deb5be2020-08-26 16:43:36 +02002299 const struct lysc_module *module, uint32_t options);
Radek Krejcia3045382018-11-22 14:30:31 +01002300
2301/**
Radek Krejci8678fa42020-08-18 16:07:28 +02002302 * @defgroup sgetnextflags Options for ::lys_getnext().
2303 *
2304 * Various options setting behavior of ::lys_getnext().
2305 *
Radek Krejcia3045382018-11-22 14:30:31 +01002306 * @{
2307 */
Radek Krejci8678fa42020-08-18 16:07:28 +02002308#define LYS_GETNEXT_WITHCHOICE 0x01 /**< ::lys_getnext() option to allow returning #LYS_CHOICE nodes instead of looking into them */
2309#define LYS_GETNEXT_NOCHOICE 0x02 /**< ::lys_getnext() option to ignore (kind of conditional) nodes within choice node */
2310#define LYS_GETNEXT_WITHCASE 0x04 /**< ::lys_getnext() option to allow returning #LYS_CASE nodes instead of looking into them */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01002311#define LYS_GETNEXT_INTONPCONT 0x08 /**< ::lys_getnext() option to look into non-presence container, instead of returning container itself */
2312#define LYS_GETNEXT_OUTPUT 0x10 /**< ::lys_getnext() option to provide RPC's/action's output schema nodes instead of input schema nodes
Radek Krejci6eeb58f2019-02-22 16:29:37 +01002313 provided by default */
Radek Krejcia3045382018-11-22 14:30:31 +01002314/** @} sgetnextflags */
2315
2316/**
2317 * @brief Get child node according to the specified criteria.
2318 *
2319 * @param[in] parent Optional parent of the node to find. If not specified, the module's top-level nodes are searched.
2320 * @param[in] module module of the node to find. It is also limitation for the children node of the given parent.
2321 * @param[in] name Name of the node to find.
2322 * @param[in] name_len Optional length of the name in case it is not NULL-terminated string.
2323 * @param[in] nodetype Optional criteria (to speedup) specifying nodetype(s) of the node to find.
2324 * Used as a bitmask, so multiple nodetypes can be specified.
2325 * @param[in] options [ORed options](@ref sgetnextflags).
2326 * @return Found node if any.
2327 */
Michal Vaskoe444f752020-02-10 12:20:06 +01002328const struct lysc_node *lys_find_child(const struct lysc_node *parent, const struct lys_module *module,
Radek Krejci1deb5be2020-08-26 16:43:36 +02002329 const char *name, size_t name_len, uint16_t nodetype, uint32_t options);
Radek Krejcia3045382018-11-22 14:30:31 +01002330
2331/**
Radek Krejci77a8bcd2019-09-11 11:20:02 +02002332 * @brief Make the specific module implemented.
2333 *
Michal Vaskoe8988e92021-01-25 11:26:29 +01002334 * If the module is already implemented but with a different set of features, the whole context is recompiled.
2335 *
Radek Krejci77a8bcd2019-09-11 11:20:02 +02002336 * @param[in] mod Module to make implemented. It is not an error
2337 * to provide already implemented module, it just does nothing.
Michal Vaskoe8988e92021-01-25 11:26:29 +01002338 * @param[in] features Optional array specifying the enabled features terminated with NULL overriding any previous
2339 * feature setting. The feature string '*' enables all the features and array of length 1 with only the terminating
2340 * NULL explicitly disables all the features. In case the parameter is NULL, the features are untouched - left disabled
2341 * in a newly implemented module or with the current features settings in case the module is already implemented.
Michal Vaskoe444f752020-02-10 12:20:06 +01002342 * @return LY_SUCCESS on success.
2343 * @return LY_EDENIED in case the context contains some other revision of the same module which is already implemented.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01002344 * @return LY_ERR on other errors during module compilation.
Radek Krejci77a8bcd2019-09-11 11:20:02 +02002345 */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01002346LY_ERR lys_set_implemented(struct lys_module *mod, const char **features);
Radek Krejcia3045382018-11-22 14:30:31 +01002347
Radek Krejci084289f2019-07-09 17:35:30 +02002348/**
2349 * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value.
2350 *
2351 * This function check just the type's restriction, if you want to check also the data tree context (e.g. in case of
Radek Krejci8678fa42020-08-18 16:07:28 +02002352 * require-instance restriction), use ::lyd_value_validate().
Radek Krejci084289f2019-07-09 17:35:30 +02002353 *
2354 * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL)
2355 * @param[in] node Schema node for the @p value.
Michal Vaskof937cfe2020-08-03 16:07:12 +02002356 * @param[in] value String value to be checked, expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02002357 * @param[in] value_len Length of the given @p value (mandatory).
Radek Krejci084289f2019-07-09 17:35:30 +02002358 * @return LY_SUCCESS on success
2359 * @return LY_ERR value if an error occurred.
2360 */
Michal Vaskof937cfe2020-08-03 16:07:12 +02002361LY_ERR lys_value_validate(const struct ly_ctx *ctx, const struct lysc_node *node, const char *value, size_t value_len);
Radek Krejci084289f2019-07-09 17:35:30 +02002362
Radek Krejci0935f412019-08-20 16:15:18 +02002363/**
2364 * @brief Stringify schema nodetype.
Michal Vaskod43d71a2020-08-07 14:54:58 +02002365 *
Radek Krejci0935f412019-08-20 16:15:18 +02002366 * @param[in] nodetype Nodetype to stringify.
2367 * @return Constant string with the name of the node's type.
2368 */
2369const char *lys_nodetype2str(uint16_t nodetype);
2370
Michal Vaskod43d71a2020-08-07 14:54:58 +02002371/**
2372 * @brief Getter for original XPath expression from a parsed expression.
2373 *
2374 * @param[in] path Parsed expression.
2375 * @return Original string expression.
2376 */
2377const char *lyxp_get_expr(const struct lyxp_expr *path);
2378
Radek Krejci2ff0d572020-05-21 15:27:28 +02002379/** @} schematree */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02002380
Radek Krejci70853c52018-10-15 14:46:16 +02002381#ifdef __cplusplus
2382}
2383#endif
2384
Radek Krejci5aeea3a2018-09-05 13:29:36 +02002385#endif /* LY_TREE_SCHEMA_H_ */