blob: a1e98cb98240b39779fe430e86a24c3a9215f092 [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 Krejci5aeea3a2018-09-05 13:29:36 +020021#include <stdint.h>
Radek Krejcid3ca0632019-04-16 16:54:54 +020022#include <stdio.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020023
Radek Krejcie7b95092019-05-15 11:03:07 +020024#include "log.h"
25#include "tree.h"
Radek Krejci084289f2019-07-09 17:35:30 +020026#include "tree_data.h"
Radek Krejcice8c1592018-10-29 15:35:51 +010027
Radek Krejcie7b95092019-05-15 11:03:07 +020028struct ly_ctx;
29
Radek Krejci70853c52018-10-15 14:46:16 +020030#ifdef __cplusplus
31extern "C" {
32#endif
33
Radek Krejci5aeea3a2018-09-05 13:29:36 +020034/**
Radek Krejci0935f412019-08-20 16:15:18 +020035 * @brief Macro to iterate via all elements in a schema tree which can be instantiated in data tree
Radek Krejciad5963b2019-09-06 16:03:05 +020036 * (skips cases, input, output). 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 +020037 *
38 * The function follows deep-first search algorithm:
39 * <pre>
40 * 1
41 * / \
42 * 2 4
43 * / / \
44 * 3 5 6
45 * </pre>
46 *
47 * Use the same parameters for #LYSC_TREE_DFS_BEGIN and #LYSC_TREE_DFS_END. While
48 * START can be any of the lysc_node* types (including lysc_action and lysc_notif),
49 * ELEM variable must be of the struct lysc_node* type.
50 *
51 * To skip a particular subtree, instead of the continue statement, set LYSC_TREE_DFS_continue
52 * variable to non-zero value.
53 *
54 * Use with opening curly bracket '{' after the macro.
55 *
56 * @param START Pointer to the starting element processed first.
57 * @param ELEM Iterator intended for use in the block.
58 */
59#define LYSC_TREE_DFS_BEGIN(START, ELEM) \
60 { int LYSC_TREE_DFS_continue = 0; struct lysc_node *LYSC_TREE_DFS_next; \
61 for ((ELEM) = (LYSC_TREE_DFS_next) = (START); \
62 (ELEM); \
63 (ELEM) = (LYSC_TREE_DFS_next), LYSC_TREE_DFS_continue = 0)
64
65/**
66 * @brief Macro to iterate via all elements in a (sub)tree. This is the closing part
67 * to the #LYSC_TREE_DFS_BEGIN - they always have to be used together.
68 *
69 * Use the same parameters for #LYSC_TREE_DFS_BEGIN and #LYSC_TREE_DFS_END. While
70 * START can be a pointer to any of the lysc_node* types (including lysc_action and lysc_notif),
71 * ELEM variable must be pointer to the lysc_node type.
72 *
73 * Use with closing curly bracket '}' after the macro.
74 *
75 * @param START Pointer to the starting element processed first.
76 * @param ELEM Iterator intended for use in the block.
77 */
78
79#define LYSC_TREE_DFS_END(START, ELEM) \
80 /* select element for the next run - children first */ \
81 if (LYSC_TREE_DFS_continue) { \
82 (LYSC_TREE_DFS_next) = NULL; \
83 } else { \
84 (LYSC_TREE_DFS_next) = (struct lysc_node*)lysc_node_children(ELEM, 0); \
85 }\
86 if (!(LYSC_TREE_DFS_next)) { \
87 /* in case of RPC/action, get also the output children */ \
88 if (!LYSC_TREE_DFS_continue && (ELEM)->nodetype == LYS_ACTION) { \
89 (LYSC_TREE_DFS_next) = (struct lysc_node*)lysc_node_children(ELEM, LYS_CONFIG_R); \
90 } \
91 if (!(LYSC_TREE_DFS_next)) { \
92 /* no children */ \
93 if ((ELEM) == (struct lysc_node*)(START)) { \
94 /* we are done, (START) has no children */ \
95 break; \
96 } \
97 /* try siblings */ \
98 (LYSC_TREE_DFS_next) = (ELEM)->next; \
99 } \
100 } \
101 while (!(LYSC_TREE_DFS_next)) { \
102 /* parent is already processed, go to its sibling */ \
103 (ELEM) = (ELEM)->parent; \
104 /* no siblings, go back through parents */ \
105 if ((ELEM) == (struct lysc_node*)(START)) { \
106 /* we are done, no next element to process */ \
107 break; \
108 } \
109 if ((ELEM)->nodetype == LYS_ACTION) { \
110 /* there is actually next node as a child of action's output */ \
111 (LYSC_TREE_DFS_next) = (struct lysc_node*)lysc_node_children(ELEM, LYS_CONFIG_R); \
112 } \
113 if (!(LYSC_TREE_DFS_next)) { \
114 (LYSC_TREE_DFS_next) = (ELEM)->next; \
115 } \
116 } } \
117
118/**
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200119 * @brief Schema input formats accepted by libyang [parser functions](@ref howtoschemasparsers).
120 */
121typedef enum {
122 LYS_IN_UNKNOWN = 0, /**< unknown format, used as return value in case of error */
123 LYS_IN_YANG = 1, /**< YANG schema input format */
Radek Krejci693262f2019-04-29 15:23:20 +0200124 LYS_IN_YIN = 3 /**< YIN schema input format */
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200125} LYS_INFORMAT;
126
127/**
128 * @brief Schema output formats accepted by libyang [printer functions](@ref howtoschemasprinters).
129 */
130typedef enum {
131 LYS_OUT_UNKNOWN = 0, /**< unknown format, used as return value in case of error */
132 LYS_OUT_YANG = 1, /**< YANG schema output format */
Radek Krejci693262f2019-04-29 15:23:20 +0200133 LYS_OUT_YIN = 3, /**< YIN schema output format */
134 LYS_OUT_YANG_COMPILED = 2, /**< YANG schema output format of the compiled schema tree */
Radek Krejcid3ca0632019-04-16 16:54:54 +0200135
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200136 LYS_OUT_TREE, /**< Tree schema output format, for more information see the [printers](@ref howtoschemasprinters) page */
137 LYS_OUT_INFO, /**< Info schema output format, for more information see the [printers](@ref howtoschemasprinters) page */
138 LYS_OUT_JSON, /**< JSON schema output format, reflecting YIN format with conversion of attributes to object's members */
139} LYS_OUTFORMAT;
140
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200141#define LY_REV_SIZE 11 /**< revision data string length (including terminating NULL byte) */
142
Michal Vaskob55f6c12018-09-12 11:13:15 +0200143#define LYS_UNKNOWN 0x0000 /**< uninitalized unknown statement node */
144#define LYS_CONTAINER 0x0001 /**< container statement node */
145#define LYS_CHOICE 0x0002 /**< choice statement node */
146#define LYS_LEAF 0x0004 /**< leaf statement node */
147#define LYS_LEAFLIST 0x0008 /**< leaf-list statement node */
148#define LYS_LIST 0x0010 /**< list statement node */
149#define LYS_ANYXML 0x0020 /**< anyxml statement node */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200150#define LYS_ANYDATA 0x0120 /**< anydata statement node, in tests it can be used for both #LYS_ANYXML and #LYS_ANYDATA */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200151
Radek Krejcie7b95092019-05-15 11:03:07 +0200152#define LYS_ACTION 0x400 /**< RPC or action */
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200153#define LYS_RPC LYS_ACTION /**< RPC or action (for backward compatibility) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200154#define LYS_NOTIF 0x800
155
Radek Krejcia3045382018-11-22 14:30:31 +0100156#define LYS_CASE 0x0040 /**< case statement node */
157#define LYS_USES 0x0080 /**< uses statement node */
Radek Krejcid3ca0632019-04-16 16:54:54 +0200158#define LYS_INPUT 0x100
159#define LYS_OUTPUT 0x200
160#define LYS_INOUT 0x300
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100161#define LYS_GROUPING 0x1000
162#define LYS_AUGMENT 0x2000
163
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200164/**
Radek Krejcid6b76452019-09-03 17:03:03 +0200165 * @brief List of YANG statements
166 */
167enum ly_stmt {
168 LY_STMT_NONE = 0,
Radek Krejciad5963b2019-09-06 16:03:05 +0200169 LY_STMT_STATUS, /**< in lysc_ext_substmt::storage stored as a pointer to `uint16_t`, only cardinality < #LY_STMT_CARD_SOME is allowed */
170 LY_STMT_CONFIG, /**< in lysc_ext_substmt::storage stored as a pointer to `uint16_t`, only cardinality < #LY_STMT_CARD_SOME is allowed */
Radek Krejci335332a2019-09-05 13:03:35 +0200171 LY_STMT_MANDATORY,
Radek Krejciad5963b2019-09-06 16:03:05 +0200172 LY_STMT_UNITS, /**< in lysc_ext_substmt::storage stored as a pointer to `const char *` (cardinality < #LY_STMT_CARD_SOME)
173 or as a pointer to a [sized array](@ref sizedarrays) `const char **` */
Radek Krejci335332a2019-09-05 13:03:35 +0200174 LY_STMT_DEFAULT,
Radek Krejciad5963b2019-09-06 16:03:05 +0200175 LY_STMT_TYPE, /**< in lysc_ext_substmt::storage stored as a pointer to `struct lysc_type *` (cardinality < #LY_STMT_CARD_SOME)
176 or as a pointer to a [sized array](@ref sizedarrays) `struct lysc_type **` */
Radek Krejci335332a2019-09-05 13:03:35 +0200177
Radek Krejcid6b76452019-09-03 17:03:03 +0200178 LY_STMT_ACTION,
179 LY_STMT_ANYDATA,
180 LY_STMT_ANYXML,
181 LY_STMT_ARGUMENT,
182 LY_STMT_AUGMENT,
183 LY_STMT_BASE,
184 LY_STMT_BELONGS_TO,
185 LY_STMT_BIT,
186 LY_STMT_CASE,
187 LY_STMT_CHOICE,
Radek Krejcid6b76452019-09-03 17:03:03 +0200188 LY_STMT_CONTACT,
189 LY_STMT_CONTAINER,
Radek Krejcid6b76452019-09-03 17:03:03 +0200190 LY_STMT_DESCRIPTION,
191 LY_STMT_DEVIATE,
192 LY_STMT_DEVIATION,
193 LY_STMT_ENUM,
194 LY_STMT_ERROR_APP_TAG,
195 LY_STMT_ERROR_MESSAGE,
196 LY_STMT_EXTENSION,
197 LY_STMT_FEATURE,
198 LY_STMT_FRACTION_DIGITS,
199 LY_STMT_GROUPING,
200 LY_STMT_IDENTITY,
Radek Krejciad5963b2019-09-06 16:03:05 +0200201 LY_STMT_IF_FEATURE, /**< in lysc_ext_substmt::storage stored as a pointer to `struct lysc_iffeature` (cardinality < #LY_STMT_CARD_SOME)
202 or as a pointer to a [sized array](@ref sizedarrays) `struct lysc_iffeature *` */
Radek Krejcid6b76452019-09-03 17:03:03 +0200203 LY_STMT_IMPORT,
204 LY_STMT_INCLUDE,
205 LY_STMT_INPUT,
206 LY_STMT_KEY,
207 LY_STMT_LEAF,
208 LY_STMT_LEAF_LIST,
209 LY_STMT_LENGTH,
210 LY_STMT_LIST,
Radek Krejcid6b76452019-09-03 17:03:03 +0200211 LY_STMT_MAX_ELEMENTS,
212 LY_STMT_MIN_ELEMENTS,
213 LY_STMT_MODIFIER,
214 LY_STMT_MODULE,
215 LY_STMT_MUST,
216 LY_STMT_NAMESPACE,
217 LY_STMT_NOTIFICATION,
218 LY_STMT_ORDERED_BY,
219 LY_STMT_ORGANIZATION,
220 LY_STMT_OUTPUT,
221 LY_STMT_PATH,
222 LY_STMT_PATTERN,
223 LY_STMT_POSITION,
224 LY_STMT_PREFIX,
225 LY_STMT_PRESENCE,
226 LY_STMT_RANGE,
227 LY_STMT_REFERENCE,
228 LY_STMT_REFINE,
229 LY_STMT_REQUIRE_INSTANCE,
230 LY_STMT_REVISION,
231 LY_STMT_REVISION_DATE,
232 LY_STMT_RPC,
Radek Krejcid6b76452019-09-03 17:03:03 +0200233 LY_STMT_SUBMODULE,
Radek Krejcid6b76452019-09-03 17:03:03 +0200234 LY_STMT_TYPEDEF,
235 LY_STMT_UNIQUE,
Radek Krejcid6b76452019-09-03 17:03:03 +0200236 LY_STMT_USES,
237 LY_STMT_VALUE,
238 LY_STMT_WHEN,
239 LY_STMT_YANG_VERSION,
240 LY_STMT_YIN_ELEMENT,
241 LY_STMT_EXTENSION_INSTANCE,
242
243 LY_STMT_SYNTAX_SEMICOLON,
244 LY_STMT_SYNTAX_LEFT_BRACE,
245 LY_STMT_SYNTAX_RIGHT_BRACE,
246
247 LY_STMT_ARG_TEXT,
248 LY_STMT_ARG_VALUE
249};
250
251/**
Radek Krejci0e59c312019-08-15 15:34:15 +0200252 * @brief Extension instance structure parent enumeration
253 */
254typedef enum {
Radek Krejci0935f412019-08-20 16:15:18 +0200255 LYEXT_PAR_MODULE, /**< ::lysc_module */
256 LYEXT_PAR_NODE, /**< ::lysc_node (and the derived structures including ::lysc_action and ::lysc_notif) */
257 LYEXT_PAR_INPUT, /**< ::lysc_action_inout */
258 LYEXT_PAR_OUTPUT, /**< ::lysc_action_inout */
259 LYEXT_PAR_TYPE, /**< ::lysc_type */
260 LYEXT_PAR_TYPE_BIT, /**< ::lysc_type_bitenum_item */
261 LYEXT_PAR_TYPE_ENUM, /**< ::lysc_type_bitenum_item */
262 LYEXT_PAR_FEATURE, /**< ::lysc_feature */
263 LYEXT_PAR_MUST, /**< ::lysc_must */
264 LYEXT_PAR_PATTERN, /**< ::lysc_pattern */
265 LYEXT_PAR_LENGTH, /**< ::lysc_range */
266 LYEXT_PAR_RANGE, /**< ::lysc_range */
267 LYEXT_PAR_WHEN, /**< ::lysc_when */
268 LYEXT_PAR_IDENT, /**< ::lysc_ident */
269 LYEXT_PAR_EXT, /**< ::lysc_ext */
270 LYEXT_PAR_IMPORT, /**< ::lysc_import */
271// LYEXT_PAR_TPDF, /**< ::lysp_tpdf */
272// LYEXT_PAR_EXTINST, /**< ::lysp_ext_instance */
273// LYEXT_PAR_REFINE, /**< ::lysp_refine */
274// LYEXT_PAR_DEVIATION, /**< ::lysp_deviation */
275// LYEXT_PAR_DEVIATE, /**< ::lysp_deviate */
276// LYEXT_PAR_INCLUDE, /**< ::lysp_include */
277// LYEXT_PAR_REVISION, /**< ::lysp_revision */
Radek Krejci0e59c312019-08-15 15:34:15 +0200278} LYEXT_PARENT;
279
280/**
Radek Krejci0935f412019-08-20 16:15:18 +0200281 * @brief Stringify extension instance parent type.
282 * @param[in] type Parent type to stringify.
283 * @return Constant string with the name of the parent statement.
284 */
285const char *lyext_parent2str(LYEXT_PARENT type);
286
287/**
Radek Krejci0e59c312019-08-15 15:34:15 +0200288 * @brief Enum of substatements in which extension instances can appear.
289 */
290typedef enum {
291 LYEXT_SUBSTMT_SELF = 0, /**< extension of the structure itself, not substatement's */
292 LYEXT_SUBSTMT_ARGUMENT, /**< extension of the argument statement, can appear in lys_ext */
293 LYEXT_SUBSTMT_BASE, /**< extension of the base statement, can appear (repeatedly) in lys_type and lys_ident */
294 LYEXT_SUBSTMT_BELONGSTO, /**< extension of the belongs-to statement, can appear in lys_submodule */
295 LYEXT_SUBSTMT_CONTACT, /**< extension of the contact statement, can appear in lys_module */
296 LYEXT_SUBSTMT_DEFAULT, /**< extension of the default statement, can appear in lys_node_leaf, lys_node_leaflist,
297 lys_node_choice and lys_deviate */
298 LYEXT_SUBSTMT_DESCRIPTION, /**< extension of the description statement, can appear in lys_module, lys_submodule,
299 lys_node, lys_import, lys_include, lys_ext, lys_feature, lys_tpdf, lys_restr,
300 lys_ident, lys_deviation, lys_type_enum, lys_type_bit, lys_when and lys_revision */
301 LYEXT_SUBSTMT_ERRTAG, /**< extension of the error-app-tag statement, can appear in lys_restr */
302 LYEXT_SUBSTMT_ERRMSG, /**< extension of the error-message statement, can appear in lys_restr */
303 LYEXT_SUBSTMT_KEY, /**< extension of the key statement, can appear in lys_node_list */
304 LYEXT_SUBSTMT_NAMESPACE, /**< extension of the namespace statement, can appear in lys_module */
305 LYEXT_SUBSTMT_ORGANIZATION, /**< extension of the organization statement, can appear in lys_module and lys_submodule */
306 LYEXT_SUBSTMT_PATH, /**< extension of the path statement, can appear in lys_type */
307 LYEXT_SUBSTMT_PREFIX, /**< extension of the prefix statement, can appear in lys_module, lys_submodule (for
308 belongs-to's prefix) and lys_import */
309 LYEXT_SUBSTMT_PRESENCE, /**< extension of the presence statement, can appear in lys_node_container */
310 LYEXT_SUBSTMT_REFERENCE, /**< extension of the reference statement, can appear in lys_module, lys_submodule,
311 lys_node, lys_import, lys_include, lys_revision, lys_tpdf, lys_restr, lys_ident,
312 lys_ext, lys_feature, lys_deviation, lys_type_enum, lys_type_bit and lys_when */
313 LYEXT_SUBSTMT_REVISIONDATE, /**< extension of the revision-date statement, can appear in lys_import and lys_include */
314 LYEXT_SUBSTMT_UNITS, /**< extension of the units statement, can appear in lys_tpdf, lys_node_leaf,
315 lys_node_leaflist and lys_deviate */
316 LYEXT_SUBSTMT_VALUE, /**< extension of the value statement, can appear in lys_type_enum */
317 LYEXT_SUBSTMT_VERSION, /**< extension of the yang-version statement, can appear in lys_module and lys_submodule */
318 LYEXT_SUBSTMT_MODIFIER, /**< extension of the modifier statement, can appear in lys_restr */
319 LYEXT_SUBSTMT_REQINSTANCE, /**< extension of the require-instance statement, can appear in lys_type */
320 LYEXT_SUBSTMT_YINELEM, /**< extension of the yin-element statement, can appear in lys_ext */
321 LYEXT_SUBSTMT_CONFIG, /**< extension of the config statement, can appear in lys_node and lys_deviate */
322 LYEXT_SUBSTMT_MANDATORY, /**< extension of the mandatory statement, can appear in lys_node_leaf, lys_node_choice,
323 lys_node_anydata and lys_deviate */
324 LYEXT_SUBSTMT_ORDEREDBY, /**< extension of the ordered-by statement, can appear in lys_node_list and lys_node_leaflist */
325 LYEXT_SUBSTMT_STATUS, /**< extension of the status statement, can appear in lys_tpdf, lys_node, lys_ident,
326 lys_ext, lys_feature, lys_type_enum and lys_type_bit */
327 LYEXT_SUBSTMT_FRACDIGITS, /**< extension of the fraction-digits statement, can appear in lys_type */
328 LYEXT_SUBSTMT_MAX, /**< extension of the max-elements statement, can appear in lys_node_list,
329 lys_node_leaflist and lys_deviate */
330 LYEXT_SUBSTMT_MIN, /**< extension of the min-elements statement, can appear in lys_node_list,
331 lys_node_leaflist and lys_deviate */
332 LYEXT_SUBSTMT_POSITION, /**< extension of the position statement, can appear in lys_type_bit */
333 LYEXT_SUBSTMT_UNIQUE, /**< extension of the unique statement, can appear in lys_node_list and lys_deviate */
334 LYEXT_SUBSTMT_IFFEATURE, /**< extension of the if-feature statement */
335} LYEXT_SUBSTMT;
336
337/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200338 * @brief YANG import-stmt
339 */
340struct lysp_import {
Radek Krejci086c7132018-10-26 15:29:04 +0200341 struct lys_module *module; /**< pointer to the imported module
342 (mandatory, but resolved when the referring module is completely parsed) */
343 const char *name; /**< name of the imported module (mandatory) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200344 const char *prefix; /**< prefix for the data from the imported schema (mandatory) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200345 const char *dsc; /**< description */
346 const char *ref; /**< reference */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200347 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200348 char rev[LY_REV_SIZE]; /**< revision-date of the imported module */
349};
350
351/**
352 * @brief YANG include-stmt
353 */
354struct lysp_include {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100355 struct lysp_submodule *submodule;/**< pointer to the parsed submodule structure
Radek Krejci086c7132018-10-26 15:29:04 +0200356 (mandatory, but resolved when the referring module is completely parsed) */
357 const char *name; /**< name of the included submodule (mandatory) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200358 const char *dsc; /**< description */
359 const char *ref; /**< reference */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200360 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200361 char rev[LY_REV_SIZE]; /**< revision-date of the included submodule */
362};
363
364/**
365 * @brief YANG extension-stmt
366 */
367struct lysp_ext {
368 const char *name; /**< extension name */
369 const char *argument; /**< argument name, NULL if not specified */
370 const char *dsc; /**< description statement */
371 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200372 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcif56e2a42019-09-09 14:15:25 +0200373 uint16_t flags; /**< LYS_STATUS_* and LYS_YINELEM_* values (@ref snodeflags) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200374};
375
376/**
377 * @brief Helper structure for generic storage of the extension instances content.
378 */
379struct lysp_stmt {
380 const char *stmt; /**< identifier of the statement */
381 const char *arg; /**< statement's argument */
382 struct lysp_stmt *next; /**< link to the next statement */
Michal Vaskobc2559f2018-09-07 10:17:50 +0200383 struct lysp_stmt *child; /**< list of the statement's substatements (linked list) */
David Sedlákb9d75c42019-08-14 10:49:42 +0200384 uint16_t flags; /**< statement flags, can be set to LYS_YIN_ATTR */
Radek Krejci335332a2019-09-05 13:03:35 +0200385 enum ly_stmt kw; /**< numeric respresentation of the stmt value */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200386};
387
David Sedlákae4b4512019-08-14 10:45:56 +0200388#define LYS_YIN 0x1 /**< used to specify input format of extension instance */
389
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200390/**
391 * @brief YANG extension instance
392 */
393struct lysp_ext_instance {
David Sedlákbbd06ca2019-06-27 14:15:38 +0200394 const char *name; /**< extension identifier, including possible prefix */
395 const char *argument; /**< optional value of the extension's argument */
Radek Krejci335332a2019-09-05 13:03:35 +0200396 void *parent; /**< pointer to the parent element holding the extension instance(s), use
397 ::lysp_ext_instance#parent_type to access the schema element */
David Sedlákbbd06ca2019-06-27 14:15:38 +0200398 struct lysp_stmt *child; /**< list of the extension's substatements (linked list) */
Radek Krejcif56e2a42019-09-09 14:15:25 +0200399 struct lysc_ext_instance *compiled; /**< pointer to the compiled data if any - in case the source format is YIN,
400 some of the information (argument) are available only after compilation */
David Sedlákbbd06ca2019-06-27 14:15:38 +0200401 LYEXT_SUBSTMT insubstmt; /**< value identifying placement of the extension instance */
402 uint32_t insubstmt_index; /**< in case the instance is in a substatement, this identifies
403 the index of that substatement */
David Sedlákae4b4512019-08-14 10:45:56 +0200404 uint8_t yin; /** flag for YIN source format, can be set to LYS_YIN */
Radek Krejci335332a2019-09-05 13:03:35 +0200405 LYEXT_PARENT parent_type; /**< type of the parent structure */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200406};
407
408/**
409 * @brief YANG feature-stmt
410 */
411struct lysp_feature {
412 const char *name; /**< feature name (mandatory) */
Radek Krejci151a5b72018-10-19 14:21:44 +0200413 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200414 const char *dsc; /**< description statement */
415 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200416 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200417 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values allowed */
418};
419
420/**
421 * @brief YANG identity-stmt
422 */
423struct lysp_ident {
424 const char *name; /**< identity name (mandatory), including possible prefix */
Radek Krejci151a5b72018-10-19 14:21:44 +0200425 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
426 const char **bases; /**< list of base identifiers ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200427 const char *dsc; /**< description statement */
428 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200429 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200430 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ values are allowed */
431};
432
Michal Vasko71e64ca2018-09-07 16:30:29 +0200433/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200434 * @brief Covers restrictions: range, length, pattern, must
435 */
436struct lysp_restr {
437 const char *arg; /**< The restriction expression/value (mandatory);
438 in case of pattern restriction, the first byte has a special meaning:
439 0x06 (ACK) for regular match and 0x15 (NACK) for invert-match */
440 const char *emsg; /**< error-message */
441 const char *eapptag; /**< error-app-tag value */
442 const char *dsc; /**< description */
443 const char *ref; /**< reference */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200444 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200445};
446
447/**
Michal Vasko71e64ca2018-09-07 16:30:29 +0200448 * @brief YANG revision-stmt
449 */
450struct lysp_revision {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200451 char date[LY_REV_SIZE]; /**< revision date (madatory) */
Michal Vasko71e64ca2018-09-07 16:30:29 +0200452 const char *dsc; /**< description statement */
453 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200454 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vasko71e64ca2018-09-07 16:30:29 +0200455};
456
457/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200458 * @brief Enumeration/Bit value definition
459 */
460struct lysp_type_enum {
461 const char *name; /**< name (mandatory) */
462 const char *dsc; /**< description statement */
463 const char *ref; /**< reference statement */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200464 int64_t value; /**< enum's value or bit's position */
Radek Krejci151a5b72018-10-19 14:21:44 +0200465 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200466 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200467 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ and LYS_SET_VALUE
468 values are allowed */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200469};
470
471/**
472 * @brief YANG type-stmt
473 *
474 * Some of the items in the structure may be mandatory, but it is necessary to resolve the type's base type first
475 */
476struct lysp_type {
477 const char *name; /**< name of the type (mandatory) */
478 struct lysp_restr *range; /**< allowed values range - numerical, decimal64 */
479 struct lysp_restr *length; /**< allowed length of the value - string, binary */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200480 struct lysp_restr *patterns; /**< list of patterns ([sized array](@ref sizedarrays)) - string */
481 struct lysp_type_enum *enums; /**< list of enum-stmts ([sized array](@ref sizedarrays)) - enum */
482 struct lysp_type_enum *bits; /**< list of bit-stmts ([sized array](@ref sizedarrays)) - bits */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200483 const char *path; /**< path - leafref */
Radek Krejci151a5b72018-10-19 14:21:44 +0200484 const char **bases; /**< list of base identifiers ([sized array](@ref sizedarrays)) - identityref */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200485 struct lysp_type *types; /**< list of sub-types ([sized array](@ref sizedarrays)) - union */
486 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200487
Radek Krejci2167ee12018-11-02 16:09:07 +0100488 struct lysc_type *compiled; /**< pointer to the compiled type */
489
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200490 uint8_t fraction_digits; /**< number of fraction digits - decimal64 */
491 uint8_t require_instance; /**< require-instance flag - leafref, instance */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100492 uint16_t flags; /**< [schema node flags](@ref spnodeflags) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200493};
494
495/**
496 * @brief YANG typedef-stmt
497 */
498struct lysp_tpdf {
499 const char *name; /**< name of the newly defined type (mandatory) */
500 const char *units; /**< units of the newly defined type */
501 const char *dflt; /**< default value of the newly defined type */
502 const char *dsc; /**< description statement */
503 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200504 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200505 struct lysp_type type; /**< base type from which the typedef is derived (mandatory) */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100506 uint16_t flags; /**< [schema node flags](@ref spnodeflags) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200507};
508
509/**
510 * @brief YANG grouping-stmt
511 */
512struct lysp_grp {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100513 struct lysp_node *parent; /**< parent node (NULL if this is a top-level grouping) */
514 uint16_t nodetype; /**< LYS_GROUPING */
515 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values are allowed */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200516 const char *name; /**< grouping name (mandatory) */
517 const char *dsc; /**< description statement */
518 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200519 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
520 struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200521 struct lysp_node *data; /**< list of data nodes (linked list) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200522 struct lysp_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */
523 struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */
524 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200525};
526
527/**
528 * @brief YANG when-stmt
529 */
530struct lysp_when {
531 const char *cond; /**< specified condition (mandatory) */
532 const char *dsc; /**< description statement */
533 const char *ref; /**< reference statement */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200534 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200535};
536
537/**
538 * @brief YANG refine-stmt
539 */
540struct lysp_refine {
541 const char *nodeid; /**< target descendant schema nodeid (mandatory) */
542 const char *dsc; /**< description statement */
543 const char *ref; /**< reference statement */
Radek Krejci151a5b72018-10-19 14:21:44 +0200544 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200545 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200546 const char *presence; /**< presence description */
Radek Krejci151a5b72018-10-19 14:21:44 +0200547 const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200548 uint32_t min; /**< min-elements constraint */
549 uint32_t max; /**< max-elements constraint, 0 means unbounded */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200550 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200551 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
552};
553
554/**
555 * @brief YANG uses-augment-stmt and augment-stmt
556 */
557struct lysp_augment {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100558 struct lysp_node *parent; /**< parent node (NULL if this is a top-level augment) */
559 uint16_t nodetype; /**< LYS_AUGMENT */
560 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values are allowed */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200561 const char *nodeid; /**< target schema nodeid (mandatory) - absolute for global augments, descendant for uses's augments */
562 const char *dsc; /**< description statement */
563 const char *ref; /**< reference statement */
564 struct lysp_when *when; /**< when statement */
Radek Krejci151a5b72018-10-19 14:21:44 +0200565 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200566 struct lysp_node *child; /**< list of data nodes (linked list) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200567 struct lysp_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */
568 struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */
569 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200570};
571
572/**
573 * @defgroup deviatetypes Deviate types
574 * @{
575 */
576#define LYS_DEV_NOT_SUPPORTED 1 /**< deviate type not-supported */
577#define LYS_DEV_ADD 2 /**< deviate type add */
578#define LYS_DEV_DELETE 3 /**< deviate type delete */
579#define LYS_DEV_REPLACE 4 /**< deviate type replace */
580/** @} */
581
582/**
583 * @brief Generic deviate structure to get type and cast to lysp_deviate_* structure
584 */
585struct lysp_deviate {
586 uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */
587 struct lysp_deviate *next; /**< next deviate structure in the list */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200588 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200589};
590
591struct lysp_deviate_add {
592 uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */
593 struct lysp_deviate *next; /**< next deviate structure in the list */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200594 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200595 const char *units; /**< units of the values */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200596 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci151a5b72018-10-19 14:21:44 +0200597 const char **uniques; /**< list of uniques specifications ([sized array](@ref sizedarrays)) */
598 const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200599 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
600 uint32_t min; /**< min-elements constraint */
601 uint32_t max; /**< max-elements constraint, 0 means unbounded */
602};
603
604struct lysp_deviate_del {
605 uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */
606 struct lysp_deviate *next; /**< next deviate structure in the list */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200607 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200608 const char *units; /**< units of the values */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200609 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci151a5b72018-10-19 14:21:44 +0200610 const char **uniques; /**< list of uniques specifications ([sized array](@ref sizedarrays)) */
611 const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200612};
613
614struct lysp_deviate_rpl {
615 uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */
616 struct lysp_deviate *next; /**< next deviate structure in the list */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200617 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200618 struct lysp_type *type; /**< type of the node */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200619 const char *units; /**< units of the values */
620 const char *dflt; /**< default value */
621 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
622 uint32_t min; /**< min-elements constraint */
623 uint32_t max; /**< max-elements constraint, 0 means unbounded */
624};
625
626struct lysp_deviation {
Michal Vaskob55f6c12018-09-12 11:13:15 +0200627 const char *nodeid; /**< target absolute schema nodeid (mandatory) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200628 const char *dsc; /**< description statement */
629 const char *ref; /**< reference statement */
630 struct lysp_deviate* deviates; /**< list of deviate specifications (linked list) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200631 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200632};
633
Radek Krejci4f28eda2018-11-12 11:46:16 +0100634/**
635 * @defgroup spnodeflags Parsed schema nodes flags
636 * @ingroup snodeflags
637 *
638 * Various flags for parsed schema nodes.
639 *
640 * 1 - container 6 - anydata/anyxml 11 - output 16 - grouping 21 - enum
641 * 2 - choice 7 - case 12 - feature 17 - uses 22 - type
Radek Krejcid3ca0632019-04-16 16:54:54 +0200642 * 3 - leaf 8 - notification 13 - identity 18 - refine 23 - stmt
Radek Krejci4f28eda2018-11-12 11:46:16 +0100643 * 4 - leaflist 9 - rpc 14 - extension 19 - augment
644 * 5 - list 10 - input 15 - typedef 20 - deviate
645 *
Radek Krejcid3ca0632019-04-16 16:54:54 +0200646 * 1 1 1 1 1 1 1 1 1 1 2 2 2 2
647 * 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
648 * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
649 * 1 LYS_CONFIG_W |x|x|x|x|x|x|x| | | | | | | | | | |x| |x| | | |
650 * LYS_SET_BASE | | | | | | | | | | | | | | | | | | | | | |x| |
651 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
652 * 2 LYS_CONFIG_R |x|x|x|x|x|x|x| | | | | | | | | | |x| |x| | | |
653 * LYS_SET_BIT | | | | | | | | | | | | | | | | | | | | | |x| |
654 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
655 * 3 LYS_STATUS_CURR |x|x|x|x|x|x|x|x|x| | |x|x|x|x|x|x| |x|x|x| | |
656 * LYS_SET_ENUM | | | | | | | | | | | | | | | | | | | | | |x| |
657 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
658 * 4 LYS_STATUS_DEPRC |x|x|x|x|x|x|x|x|x| | |x|x|x|x|x|x| |x|x|x| | |
659 * LYS_SET_FRDIGITS | | | | | | | | | | | | | | | | | | | | | |x| |
660 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
661 * 5 LYS_STATUS_OBSLT |x|x|x|x|x|x|x|x|x| | |x|x|x|x|x|x| |x|x|x| | |
662 * LYS_SET_LENGTH | | | | | | | | | | | | | | | | | | | | | |x| |
663 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
664 * 6 LYS_MAND_TRUE | |x|x| | |x| | | | | | | | | | | |x| |x| | | |
665 * LYS_SET_PATH | | | | | | | | | | | | | | | | | | | | | |x| |
666 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
667 * 7 LYS_MAND_FALSE | |x|x| | |x| | | | | | | | | | | |x| |x| | | |
668 * LYS_ORDBY_USER | | | |x|x| | | | | | | | | | | | | | | | | | |
669 * LYS_SET_PATTERN | | | | | | | | | | | | | | | | | | | | | |x| |
670 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
671 * 8 LYS_ORDBY_SYSTEM | | | |x|x| | | | | | | | | | | | | | | | | | |
672 * LYS_YINELEM_TRUE | | | | | | | | | | | | | |x| | | | | | | | | |
673 * LYS_SET_RANGE | | | | | | | | | | | | | | | | | | | | | |x| |
674 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
675 * 9 LYS_YINELEM_FALSE| | | | | | | | | | | | | |x| | | | | | | | | |
676 * LYS_SET_TYPE | | | | | | | | | | | | | | | | | | | | | |x| |
677 * LYS_SINGLEQUOTED | | | | | | | | | | | | | | | | | | | | | | |x|
678 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
679 * 10 LYS_SET_VALUE | | | | | | | | | | | | | | | | | | | | |x| | |
680 * LYS_SET_REQINST | | | | | | | | | | | | | | | | | | | | | |x| |
681 * LYS_SET_MIN | | | |x|x| | | | | | | | | | | | |x| |x| | | |
682 * LYS_DOUBLEQUOTED | | | | | | | | | | | | | | | | | | | | | | |x|
683 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
684 * 11 LYS_SET_MAX | | | |x|x| | | | | | | | | | | | |x| |x| | | |
Radek Krejcif2de0ed2019-05-02 14:13:18 +0200685 * LYS_USED_GRP | | | | | | | | | | | | | | | |x| | | | | | | |
David Sedlákae4b4512019-08-14 10:45:56 +0200686 * LYS_YIN_ATTR | | | | | | | | | | | | | | | | | | | | | | |x|
Radek Krejcid3ca0632019-04-16 16:54:54 +0200687 * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Radek Krejcif56e2a42019-09-09 14:15:25 +0200688 * 12 LYS_YIN_ARGUMENT | | | | | | | | | | | | | | | | | | | | | | |x|
689 * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Radek Krejci4f28eda2018-11-12 11:46:16 +0100690 *
691 */
692
693/**
694 * @defgroup scnodeflags Compiled schema nodes flags
695 * @ingroup snodeflags
696 *
697 * Various flags for compiled schema nodes.
698 *
699 * 1 - container 6 - anydata/anyxml 11 - output
700 * 2 - choice 7 - case 12 - feature
701 * 3 - leaf 8 - notification 13 - identity
702 * 4 - leaflist 9 - rpc 14 - extension
Radek Krejci693262f2019-04-29 15:23:20 +0200703 * 5 - list 10 - input 15 - bitenum
Radek Krejci4f28eda2018-11-12 11:46:16 +0100704 *
Radek Krejci693262f2019-04-29 15:23:20 +0200705 * 1 1 1 1 1 1
706 * bit name 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
707 * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
708 * 1 LYS_CONFIG_W |x|x|x|x|x|x|x| | | | | | | | |
709 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
710 * 2 LYS_CONFIG_R |x|x|x|x|x|x|x| | | | | | | | |
711 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
712 * 3 LYS_STATUS_CURR |x|x|x|x|x|x|x|x|x| | |x|x|x| |
713 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
714 * 4 LYS_STATUS_DEPRC |x|x|x|x|x|x|x|x|x| | |x|x|x| |
715 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
716 * 5 LYS_STATUS_OBSLT |x|x|x|x|x|x|x|x|x| | |x|x|x| |
717 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
718 * 6 LYS_MAND_TRUE |x|x|x|x|x|x| | | | | | | | | |
719 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
720 * 7 LYS_ORDBY_USER | | | |x|x| | | | | | | | | | |
721 * LYS_MAND_FALSE | |x|x| | |x| | | | | | | | | |
722 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
723 * 8 LYS_ORDBY_SYSTEM | | | |x|x| | | | | | | | | | |
724 * LYS_PRESENCE |x| | | | | | | | | | | | | | |
725 * LYS_UNIQUE | | |x| | | | | | | | | | | | |
726 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
727 * 9 LYS_KEY | | |x| | | | | | | | | | | | |
728 * LYS_FENABLED | | | | | | | | | | | |x| | | |
729 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
730 * 10 LYS_SET_DFLT | | |x|x| | |x| | | | | | | | |
731 * LYS_ISENUM | | | | | | | | | | | | | | |x|
Radek Krejci0fe9b512019-07-26 17:51:05 +0200732 * LYS_KEYLESS | | | | |x| | | | | | | | | | |
Radek Krejci693262f2019-04-29 15:23:20 +0200733 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
734 * 11 LYS_SET_UNITS | | |x|x| | | | | | | | | | | |
735 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Radek Krejcib17185d2019-09-10 15:49:41 +0200736 * 12 LYS_SET_CONFIG |x|x|x|x|x|x| | | | | | | | | |
Radek Krejci693262f2019-04-29 15:23:20 +0200737 * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Radek Krejci4f28eda2018-11-12 11:46:16 +0100738 *
739 */
740
741/**
742 * @defgroup snodeflags Schema nodes flags
743 * @ingroup schematree
744 * @{
745 */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200746#define LYS_CONFIG_W 0x01 /**< config true; */
747#define LYS_CONFIG_R 0x02 /**< config false; */
748#define LYS_CONFIG_MASK 0x03 /**< mask for config value */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100749#define LYS_STATUS_CURR 0x04 /**< status current; */
750#define LYS_STATUS_DEPRC 0x08 /**< status deprecated; */
751#define LYS_STATUS_OBSLT 0x10 /**< status obsolete; */
752#define LYS_STATUS_MASK 0x1C /**< mask for status value */
753#define LYS_MAND_TRUE 0x20 /**< mandatory true; applicable only to ::lysp_node_choice/::lysc_node_choice,
Radek Krejcife909632019-02-12 15:34:42 +0100754 ::lysp_node_leaf/::lysc_node_leaf and ::lysp_node_anydata/::lysc_node_anydata.
755 The ::lysc_node_leaflist and ::lysc_node_leaflist have this flag in case that min-elements > 0.
756 The ::lysc_node_container has this flag if it is not a presence container and it has at least one
757 child with LYS_MAND_TRUE. */
Radek Krejcif1421c22019-02-19 13:05:20 +0100758#define LYS_MAND_FALSE 0x40 /**< mandatory false; applicable only to ::lysp_node_choice/::lysc_node_choice,
759 ::lysp_node_leaf/::lysc_node_leaf and ::lysp_node_anydata/::lysc_node_anydata.
760 This flag is present only in case the mandatory false statement was explicitly specified. */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100761#define LYS_MAND_MASK 0x60 /**< mask for mandatory values */
Radek Krejci7adf4ff2018-12-05 08:55:00 +0100762#define LYS_PRESENCE 0x80 /**< flag for presence property of a container, applicable only to ::lysc_node_container */
763#define LYS_UNIQUE 0x80 /**< flag for leafs being part of a unique set, applicable only to ::lysc_node_leaf */
764#define LYS_KEY 0x100 /**< flag for leafs being a key of a list, applicable only to ::lysc_node_leaf */
Radek Krejci0fe9b512019-07-26 17:51:05 +0200765#define LYS_KEYLESS 0x200 /**< flag for list without any key, applicable only to ::lysc_node_list */
Radek Krejci7adf4ff2018-12-05 08:55:00 +0100766#define LYS_FENABLED 0x100 /**< feature enabled flag, applicable only to ::lysc_feature */
Radek Krejcife909632019-02-12 15:34:42 +0100767#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 +0100768 ::lysc_node_list/::lysp_node_list */
769#define LYS_ORDBY_USER 0x40 /**< ordered-by user lists, applicable only to ::lysc_node_leaflist/::lysp_node_leaflist and
770 ::lysc_node_list/::lysp_node_list */
771#define LYS_ORDBY_MASK 0x60 /**< mask for ordered-by values */
772#define LYS_YINELEM_TRUE 0x80 /**< yin-element true for extension's argument */
773#define LYS_YINELEM_FALSE 0x100 /**< yin-element false for extension's argument */
774#define LYS_YINELEM_MASK 0x180 /**< mask for yin-element value */
Radek Krejcif2de0ed2019-05-02 14:13:18 +0200775#define LYS_USED_GRP 0x400 /**< internal flag for validating not-instantiated groupings
776 (resp. do not validate again the instantiated groupings). */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100777#define LYS_SET_VALUE 0x200 /**< value attribute is set */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100778#define LYS_SET_MIN 0x200 /**< min attribute is set */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200779#define LYS_SET_MAX 0x400 /**< max attribute is set */
Radek Krejcid505e3d2018-11-13 09:04:17 +0100780
781#define LYS_SET_BASE 0x0001 /**< type's flag for present base substatement */
782#define LYS_SET_BIT 0x0002 /**< type's flag for present bit substatement */
783#define LYS_SET_ENUM 0x0004 /**< type's flag for present enum substatement */
784#define LYS_SET_FRDIGITS 0x0008 /**< type's flag for present fraction-digits substatement */
785#define LYS_SET_LENGTH 0x0010 /**< type's flag for present length substatement */
786#define LYS_SET_PATH 0x0020 /**< type's flag for present path substatement */
787#define LYS_SET_PATTERN 0x0040 /**< type's flag for present pattern substatement */
788#define LYS_SET_RANGE 0x0080 /**< type's flag for present range substatement */
789#define LYS_SET_TYPE 0x0100 /**< type's flag for present type substatement */
790#define LYS_SET_REQINST 0x0200 /**< type's flag for present require-instance substatement */
Radek Krejciccd20f12019-02-15 14:12:27 +0100791#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 +0100792 cases of choice. This information is important for refines, since it is prohibited to make leafs
793 with default statement mandatory. In case the default leaf value is taken from type, it is thrown
Radek Krejciccd20f12019-02-15 14:12:27 +0100794 away when it is refined to be mandatory node. Similarly it is used for deviations to distinguish
795 between own default or the default values taken from the type. */
796#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 +0100797#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 +0100798
Radek Krejcif56e2a42019-09-09 14:15:25 +0200799#define LYS_SINGLEQUOTED 0x100 /**< flag for single-quoted argument of an extension instance's substatement, only when the source is YANG */
800#define LYS_DOUBLEQUOTED 0x200 /**< flag for double-quoted argument of an extension instance's substatement, only when the source is YANG */
Radek Krejcid3ca0632019-04-16 16:54:54 +0200801
Radek Krejcif56e2a42019-09-09 14:15:25 +0200802#define LYS_YIN_ATTR 0x400 /**< flag to identify YIN attribute parsed as extension's substatement, only when the source is YIN */
803#define LYS_YIN_ARGUMENT 0x800 /**< flag to identify statement representing extension's argument, only when the source is YIN */
David Sedlákbbd06ca2019-06-27 14:15:38 +0200804
Radek Krejci693262f2019-04-29 15:23:20 +0200805#define LYS_ISENUM 0x200 /**< flag to simply distinguish type in struct lysc_type_bitenum_item */
806
Radek Krejcife909632019-02-12 15:34:42 +0100807#define LYS_FLAGS_COMPILED_MASK 0xff /**< mask for flags that maps to the compiled structures */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100808/** @} */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200809
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200810/**
811 * @brief Generic YANG data node
812 */
813struct lysp_node {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100814 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200815 uint16_t nodetype; /**< type of the node (mandatory) */
816 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100817 struct lysp_node *next; /**< next sibling node (NULL if there is no one) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200818 const char *name; /**< node name (mandatory) */
819 const char *dsc; /**< description statement */
820 const char *ref; /**< reference statement */
821 struct lysp_when *when; /**< when statement */
Radek Krejci151a5b72018-10-19 14:21:44 +0200822 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200823 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200824};
825
826/**
827 * @brief Extension structure of the lysp_node for YANG container
828 */
829struct lysp_node_container {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100830 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200831 uint16_t nodetype; /**< LYS_CONTAINER */
832 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
833 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
834 const char *name; /**< node name (mandatory) */
835 const char *dsc; /**< description statement */
836 const char *ref; /**< reference statement */
837 struct lysp_when *when; /**< when statement */
Radek Krejci151a5b72018-10-19 14:21:44 +0200838 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200839 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200840
841 /* container */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200842 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200843 const char *presence; /**< presence description */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200844 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
845 struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200846 struct lysp_node *child; /**< list of data nodes (linked list) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200847 struct lysp_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */
848 struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200849};
850
851struct lysp_node_leaf {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100852 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200853 uint16_t nodetype; /**< LYS_LEAF */
854 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
855 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
856 const char *name; /**< node name (mandatory) */
857 const char *dsc; /**< description statement */
858 const char *ref; /**< reference statement */
859 struct lysp_when *when; /**< when statement */
Radek Krejci151a5b72018-10-19 14:21:44 +0200860 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200861 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200862
863 /* leaf */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200864 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200865 struct lysp_type type; /**< type of the leaf node (mandatory) */
866 const char *units; /**< units of the leaf's type */
867 const char *dflt; /**< default value */
868};
869
870struct lysp_node_leaflist {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100871 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200872 uint16_t nodetype; /**< LYS_LEAFLIST */
873 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
874 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
875 const char *name; /**< node name (mandatory) */
876 const char *dsc; /**< description statement */
877 const char *ref; /**< reference statement */
878 struct lysp_when *when; /**< when statement */
Radek Krejci151a5b72018-10-19 14:21:44 +0200879 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200880 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200881
882 /* leaf-list */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200883 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200884 struct lysp_type type; /**< type of the leaf node (mandatory) */
885 const char *units; /**< units of the leaf's type */
Radek Krejci151a5b72018-10-19 14:21:44 +0200886 const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200887 uint32_t min; /**< min-elements constraint */
888 uint32_t max; /**< max-elements constraint, 0 means unbounded */
889};
890
891struct lysp_node_list {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100892 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200893 uint16_t nodetype; /**< LYS_LIST */
894 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
895 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
896 const char *name; /**< node name (mandatory) */
897 const char *dsc; /**< description statement */
898 const char *ref; /**< reference statement */
899 struct lysp_when *when; /**< when statement */
Radek Krejci151a5b72018-10-19 14:21:44 +0200900 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200901 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200902
903 /* list */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200904 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200905 const char *key; /**< keys specification */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200906 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
907 struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200908 struct lysp_node *child; /**< list of data nodes (linked list) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200909 struct lysp_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */
910 struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */
Radek Krejci151a5b72018-10-19 14:21:44 +0200911 const char **uniques; /**< list of unique specifications ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200912 uint32_t min; /**< min-elements constraint */
913 uint32_t max; /**< max-elements constraint, 0 means unbounded */
914};
915
916struct lysp_node_choice {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100917 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200918 uint16_t nodetype; /**< LYS_CHOICE */
919 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
920 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
921 const char *name; /**< node name (mandatory) */
922 const char *dsc; /**< description statement */
923 const char *ref; /**< reference statement */
924 struct lysp_when *when; /**< when statement */
Radek Krejci151a5b72018-10-19 14:21:44 +0200925 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200926 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200927
928 /* choice */
929 struct lysp_node *child; /**< list of data nodes (linked list) */
930 const char* dflt; /**< default case */
931};
932
933struct lysp_node_case {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100934 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200935 uint16_t nodetype; /**< LYS_CASE */
936 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
937 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
938 const char *name; /**< node name (mandatory) */
939 const char *dsc; /**< description statement */
940 const char *ref; /**< reference statement */
941 struct lysp_when *when; /**< when statement */
Radek Krejci151a5b72018-10-19 14:21:44 +0200942 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200943 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200944
945 /* case */
946 struct lysp_node *child; /**< list of data nodes (linked list) */
947};
948
949struct lysp_node_anydata {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100950 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200951 uint16_t nodetype; /**< LYS_ANYXML || LYS_ANYDATA */
952 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
953 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
954 const char *name; /**< node name (mandatory) */
955 const char *dsc; /**< description statement */
956 const char *ref; /**< reference statement */
957 struct lysp_when *when; /**< when statement */
Radek Krejci151a5b72018-10-19 14:21:44 +0200958 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200959 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200960
961 /* anyxml/anydata */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200962 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200963};
964
965struct lysp_node_uses {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100966 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
Michal Vaskob55f6c12018-09-12 11:13:15 +0200967 uint16_t nodetype; /**< LYS_USES */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200968 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
969 struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
970 const char *name; /**< grouping name reference (mandatory) */
971 const char *dsc; /**< description statement */
972 const char *ref; /**< reference statement */
973 struct lysp_when *when; /**< when statement */
Radek Krejci151a5b72018-10-19 14:21:44 +0200974 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200975 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200976
977 /* uses */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200978 struct lysp_refine *refines; /**< list of uses's refines ([sized array](@ref sizedarrays)) */
979 struct lysp_augment *augments; /**< list of uses's augment ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200980};
981
982/**
983 * @brief YANG input-stmt and output-stmt
984 */
985struct lysp_action_inout {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100986 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
987 uint16_t nodetype; /**< LYS_INOUT */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200988 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
989 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
990 struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200991 struct lysp_node *data; /**< list of data nodes (linked list) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200992 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200993};
994
995/**
996 * @brief YANG rpc-stmt and action-stmt
997 */
998struct lysp_action {
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100999 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
1000 uint16_t nodetype; /**< LYS_ACTION */
1001 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001002 const char *name; /**< grouping name reference (mandatory) */
1003 const char *dsc; /**< description statement */
1004 const char *ref; /**< reference statement */
Radek Krejci151a5b72018-10-19 14:21:44 +02001005 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001006 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
1007 struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001008 struct lysp_action_inout input; /**< RPC's/Action's input */
1009 struct lysp_action_inout output; /**< RPC's/Action's output */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001010 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001011};
1012
1013/**
1014 * @brief YANG notification-stmt
1015 */
1016struct lysp_notif {
Radek Krejci6d9b9b52018-11-02 12:43:39 +01001017 struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */
1018 uint16_t nodetype; /**< LYS_NOTIF */
1019 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values are allowed */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001020 const char *name; /**< grouping name reference (mandatory) */
1021 const char *dsc; /**< description statement */
1022 const char *ref; /**< reference statement */
Radek Krejci151a5b72018-10-19 14:21:44 +02001023 const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001024 struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
1025 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
1026 struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001027 struct lysp_node *data; /**< list of data nodes (linked list) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001028 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001029};
1030
1031/**
Radek Krejcif0fceb62018-09-05 14:58:45 +02001032 * @brief supported YANG schema version values
1033 */
1034typedef enum LYS_VERSION {
1035 LYS_VERSION_UNDEF = 0, /**< no specific version, YANG 1.0 as default */
1036 LYS_VERSION_1_0 = 1, /**< YANG 1.0 */
1037 LYS_VERSION_1_1 = 2 /**< YANG 1.1 */
1038} LYS_VERSION;
1039
1040/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001041 * @brief Printable YANG schema tree structure representing YANG module.
1042 *
1043 * Simple structure corresponding to the YANG format. The schema is only syntactically validated.
1044 */
1045struct lysp_module {
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001046 struct lys_module *mod; /**< covering module structure */
1047
Radek Krejcib7db73a2018-10-24 14:18:40 +02001048 struct lysp_revision *revs; /**< list of the module revisions ([sized array](@ref sizedarrays)), the first revision
1049 in the list is always the last (newest) revision of the module */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001050 struct lysp_import *imports; /**< list of imported modules ([sized array](@ref sizedarrays)) */
1051 struct lysp_include *includes; /**< list of included submodules ([sized array](@ref sizedarrays)) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001052 struct lysp_ext *extensions; /**< list of extension statements ([sized array](@ref sizedarrays)) */
1053 struct lysp_feature *features; /**< list of feature definitions ([sized array](@ref sizedarrays)) */
1054 struct lysp_ident *identities; /**< list of identities ([sized array](@ref sizedarrays)) */
1055 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
1056 struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001057 struct lysp_node *data; /**< list of module's top-level data nodes (linked list) */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001058 struct lysp_augment *augments; /**< list of augments ([sized array](@ref sizedarrays)) */
1059 struct lysp_action *rpcs; /**< list of RPCs ([sized array](@ref sizedarrays)) */
1060 struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */
1061 struct lysp_deviation *deviations; /**< list of deviations ([sized array](@ref sizedarrays)) */
1062 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001063
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001064 uint8_t parsing:1; /**< flag for circular check */
1065};
1066
1067struct lysp_submodule {
1068 const char *belongsto; /**< belongs to parent module (submodule - mandatory) */
1069
1070 struct lysp_revision *revs; /**< list of the module revisions ([sized array](@ref sizedarrays)), the first revision
1071 in the list is always the last (newest) revision of the module */
1072 struct lysp_import *imports; /**< list of imported modules ([sized array](@ref sizedarrays)) */
1073 struct lysp_include *includes; /**< list of included submodules ([sized array](@ref sizedarrays)) */
1074 struct lysp_ext *extensions; /**< list of extension statements ([sized array](@ref sizedarrays)) */
1075 struct lysp_feature *features; /**< list of feature definitions ([sized array](@ref sizedarrays)) */
1076 struct lysp_ident *identities; /**< list of identities ([sized array](@ref sizedarrays)) */
1077 struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */
1078 struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */
1079 struct lysp_node *data; /**< list of module's top-level data nodes (linked list) */
1080 struct lysp_augment *augments; /**< list of augments ([sized array](@ref sizedarrays)) */
1081 struct lysp_action *rpcs; /**< list of RPCs ([sized array](@ref sizedarrays)) */
1082 struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */
1083 struct lysp_deviation *deviations; /**< list of deviations ([sized array](@ref sizedarrays)) */
1084 struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1085
1086 uint8_t parsing:1; /**< flag for circular check */
1087
Radek Krejci086c7132018-10-26 15:29:04 +02001088 uint8_t latest_revision:2; /**< flag to mark the latest available revision:
1089 1 - the latest revision in searchdirs was not searched yet and this is the
1090 latest revision in the current context
1091 2 - searchdirs were searched and this is the latest available revision */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001092 const char *name; /**< name of the module (mandatory) */
1093 const char *filepath; /**< path, if the schema was read from a file, NULL in case of reading from memory */
1094 const char *prefix; /**< submodule belongsto prefix of main module (mandatory) */
1095 const char *org; /**< party/company responsible for the module */
1096 const char *contact; /**< contact information for the module */
1097 const char *dsc; /**< description of the module */
1098 const char *ref; /**< cross-reference for the module */
Radek Krejci086c7132018-10-26 15:29:04 +02001099 uint8_t version; /**< yang-version (LYS_VERSION values) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001100};
1101
1102/**
Radek Krejci3f5e3db2018-10-11 15:57:47 +02001103 * @brief Free the printable YANG schema tree structure.
1104 *
1105 * @param[in] module Printable YANG schema tree structure to free.
1106 */
1107void lysp_module_free(struct lysp_module *module);
1108
1109/**
Radek Krejci0e59c312019-08-15 15:34:15 +02001110 * @brief Compiled YANG extension-stmt
1111 */
1112struct lysc_ext {
1113 const char *name; /**< extension name */
1114 const char *argument; /**< argument name, NULL if not specified */
Radek Krejci0e59c312019-08-15 15:34:15 +02001115 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1116 struct lyext_plugin *plugin; /**< Plugin implementing the specific extension */
Radek Krejci0935f412019-08-20 16:15:18 +02001117 struct lys_module *module; /**< module structure */
Radek Krejci0e59c312019-08-15 15:34:15 +02001118 uint16_t flags; /**< LYS_STATUS_* value (@ref snodeflags) */
1119};
1120
1121/**
Radek Krejcice8c1592018-10-29 15:35:51 +01001122 * @brief YANG extension instance
1123 */
1124struct lysc_ext_instance {
Radek Krejciad5963b2019-09-06 16:03:05 +02001125 uint32_t insubstmt_index; /**< in case the instance is in a substatement that can appear multiple times,
1126 this identifies the index of the substatement for this extension instance */
Radek Krejci28681fa2019-09-06 13:08:45 +02001127 struct lys_module *module; /**< module where the extension instantiated is defined */
Radek Krejciad5963b2019-09-06 16:03:05 +02001128 struct lysc_ext *def; /**< pointer to the extension definition */
Radek Krejcice8c1592018-10-29 15:35:51 +01001129 void *parent; /**< pointer to the parent element holding the extension instance(s), use
1130 ::lysc_ext_instance#parent_type to access the schema element */
1131 const char *argument; /**< optional value of the extension's argument */
1132 LYEXT_SUBSTMT insubstmt; /**< value identifying placement of the extension instance */
Radek Krejci2a408df2018-10-29 16:32:26 +01001133 LYEXT_PARENT parent_type; /**< type of the parent structure */
Radek Krejci2a408df2018-10-29 16:32:26 +01001134 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci0e59c312019-08-15 15:34:15 +02001135 void *data; /**< private plugins's data, not used by libyang */
Radek Krejcice8c1592018-10-29 15:35:51 +01001136};
1137
1138/**
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001139 * @brief Compiled YANG if-feature-stmt
1140 */
1141struct lysc_iffeature {
1142 uint8_t *expr; /**< 2bits array describing the if-feature expression in prefix format, see @ref ifftokens */
1143 struct lysc_feature **features; /**< array of pointers to the features used in expression ([sized array](@ref sizedarrays)) */
1144};
1145
1146/**
Radek Krejci151a5b72018-10-19 14:21:44 +02001147 * @brief YANG import-stmt
1148 */
1149struct lysc_import {
Radek Krejci6d6e4e42018-10-29 13:28:19 +01001150 struct lys_module *module; /**< link to the imported module */
Radek Krejci151a5b72018-10-19 14:21:44 +02001151 const char *prefix; /**< prefix for the data from the imported schema (mandatory) */
Radek Krejcice8c1592018-10-29 15:35:51 +01001152 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci151a5b72018-10-19 14:21:44 +02001153};
1154
1155/**
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001156 * @brief YANG when-stmt
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001157 */
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001158struct lysc_when {
Radek Krejcia0f704a2019-09-09 16:12:23 +02001159 struct lys_module *module; /**< module where the must was defined */
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001160 struct lyxp_expr *cond; /**< XPath when condition */
Radek Krejcia0f704a2019-09-09 16:12:23 +02001161 struct lysc_node *context; /**< context node for evaluating the expression */
Radek Krejcic8b31002019-01-08 10:24:45 +01001162 const char *dsc; /**< description */
1163 const char *ref; /**< reference */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001164 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci00b874b2019-02-12 10:54:50 +01001165 uint32_t refcount; /**< reference counter since some of the when statements are shared among several nodes */
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001166};
1167
1168/**
Radek Krejci2a408df2018-10-29 16:32:26 +01001169 * @brief YANG identity-stmt
1170 */
1171struct lysc_ident {
1172 const char *name; /**< identity name (mandatory), including possible prefix */
Radek Krejcic8b31002019-01-08 10:24:45 +01001173 const char *dsc; /**< description */
1174 const char *ref; /**< reference */
Radek Krejci693262f2019-04-29 15:23:20 +02001175 struct lys_module *module; /**< module structure */
Radek Krejci2a408df2018-10-29 16:32:26 +01001176 struct lysc_ident **derived; /**< list of (pointers to the) derived identities ([sized array](@ref sizedarrays)) */
1177 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001178 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejci2a408df2018-10-29 16:32:26 +01001179 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ values are allowed */
1180};
1181
1182/**
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001183 * @brief YANG feature-stmt
1184 */
1185struct lysc_feature {
1186 const char *name; /**< feature name (mandatory) */
Radek Krejcic8b31002019-01-08 10:24:45 +01001187 const char *dsc; /**< description */
1188 const char *ref; /**< reference */
Radek Krejci693262f2019-04-29 15:23:20 +02001189 struct lys_module *module; /**< module structure */
Radek Krejci151a5b72018-10-19 14:21:44 +02001190 struct lysc_feature **depfeatures;/**< list of pointers to other features depending on this one ([sized array](@ref sizedarrays)) */
Radek Krejcice8c1592018-10-29 15:35:51 +01001191 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001192 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001193 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* and
1194 #LYS_FENABLED values allowed */
1195};
1196
Radek Krejci151a5b72018-10-19 14:21:44 +02001197/**
1198 * @defgroup ifftokens if-feature expression tokens
1199 * Tokens of if-feature expression used in ::lysc_iffeature#expr
1200 *
1201 * @{
1202 */
1203#define LYS_IFF_NOT 0x00 /**< operand "not" */
1204#define LYS_IFF_AND 0x01 /**< operand "and" */
1205#define LYS_IFF_OR 0x02 /**< operand "or" */
1206#define LYS_IFF_F 0x03 /**< feature */
1207/**
1208 * @}
1209 */
1210
1211/**
Radek Krejcib7db73a2018-10-24 14:18:40 +02001212 * @brief Compiled YANG revision statement
1213 */
1214struct lysc_revision {
1215 char date[LY_REV_SIZE]; /**< revision-date (mandatory) */
1216 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1217};
1218
Radek Krejci2167ee12018-11-02 16:09:07 +01001219struct lysc_range {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001220 struct lysc_range_part {
Radek Krejci693262f2019-04-29 15:23:20 +02001221 union { /**< min boundary */
Radek Krejcie7b95092019-05-15 11:03:07 +02001222 int64_t min_64; /**< for int8, int16, int32, int64 and decimal64 ( >= LY_TYPE_DEC64) */
1223 uint64_t min_u64; /**< for uint8, uint16, uint32, uint64, string and binary ( < LY_TYPE_DEC64) */
Radek Krejci2167ee12018-11-02 16:09:07 +01001224 };
Radek Krejci693262f2019-04-29 15:23:20 +02001225 union { /**< max boundary */
Radek Krejcie7b95092019-05-15 11:03:07 +02001226 int64_t max_64; /**< for int8, int16, int32, int64 and decimal64 ( >= LY_TYPE_DEC64) */
1227 uint64_t max_u64; /**< for uint8, uint16, uint32, uint64, string and binary ( < LY_TYPE_DEC64) */
Radek Krejci2167ee12018-11-02 16:09:07 +01001228 };
Radek Krejci4f28eda2018-11-12 11:46:16 +01001229 } *parts; /**< compiled range expression ([sized array](@ref sizedarrays)) */
Radek Krejcic8b31002019-01-08 10:24:45 +01001230 const char *dsc; /**< description */
1231 const char *ref; /**< reference */
Radek Krejci2167ee12018-11-02 16:09:07 +01001232 const char *emsg; /**< error-message */
1233 const char *eapptag; /**< error-app-tag value */
1234 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1235};
1236
1237struct lysc_pattern {
Radek Krejci54579462019-04-30 12:47:06 +02001238 const char *expr; /**< original, not compiled, regular expression */
1239 pcre2_code *code; /**< compiled regular expression */
Radek Krejcic8b31002019-01-08 10:24:45 +01001240 const char *dsc; /**< description */
1241 const char *ref; /**< reference */
Radek Krejci2167ee12018-11-02 16:09:07 +01001242 const char *emsg; /**< error-message */
1243 const char *eapptag; /**< error-app-tag value */
1244 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci4586a022018-11-13 11:29:26 +01001245 uint32_t inverted:1; /**< invert-match flag */
1246 uint32_t refcount:31; /**< reference counter */
Radek Krejci2167ee12018-11-02 16:09:07 +01001247};
1248
1249struct lysc_must {
1250 struct lys_module *module; /**< module where the must was defined */
1251 struct lyxp_expr *cond; /**< XPath when condition */
Radek Krejcic8b31002019-01-08 10:24:45 +01001252 const char *dsc; /**< description */
1253 const char *ref; /**< reference */
Radek Krejci2167ee12018-11-02 16:09:07 +01001254 const char *emsg; /**< error-message */
1255 const char *eapptag; /**< error-app-tag value */
1256 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1257};
1258
1259struct lysc_type {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001260 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcia1911222019-07-22 17:24:50 +02001261 struct lyd_value *dflt; /**< type's default value if any */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001262 struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */
Radek Krejcie7b95092019-05-15 11:03:07 +02001263 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 +01001264 LY_DATA_TYPE basetype; /**< Base type of the type */
1265 uint32_t refcount; /**< reference counter for type sharing */
1266};
1267
1268struct lysc_type_num {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001269 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcia1911222019-07-22 17:24:50 +02001270 struct lyd_value *dflt; /**< type's default value if any */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001271 struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */
Radek Krejcie7b95092019-05-15 11:03:07 +02001272 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 +01001273 LY_DATA_TYPE basetype; /**< Base type of the type */
1274 uint32_t refcount; /**< reference counter for type sharing */
1275 struct lysc_range *range; /**< Optional range limitation */
1276};
1277
1278struct lysc_type_dec {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001279 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcia1911222019-07-22 17:24:50 +02001280 struct lyd_value *dflt; /**< type's default value if any */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001281 struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */
Radek Krejcie7b95092019-05-15 11:03:07 +02001282 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 +01001283 LY_DATA_TYPE basetype; /**< Base type of the type */
1284 uint32_t refcount; /**< reference counter for type sharing */
Radek Krejci6cba4292018-11-15 17:33:29 +01001285 uint8_t fraction_digits; /**< fraction digits specification */
Radek Krejci2167ee12018-11-02 16:09:07 +01001286 struct lysc_range *range; /**< Optional range limitation */
1287};
1288
1289struct lysc_type_str {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001290 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcia1911222019-07-22 17:24:50 +02001291 struct lyd_value *dflt; /**< type's default value if any */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001292 struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */
Radek Krejcie7b95092019-05-15 11:03:07 +02001293 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 +01001294 LY_DATA_TYPE basetype; /**< Base type of the type */
1295 uint32_t refcount; /**< reference counter for type sharing */
1296 struct lysc_range *length; /**< Optional length limitation */
Radek Krejci4586a022018-11-13 11:29:26 +01001297 struct lysc_pattern **patterns; /**< Optional list of pointers to pattern limitations ([sized array](@ref sizedarrays)) */
Radek Krejci2167ee12018-11-02 16:09:07 +01001298};
1299
Radek Krejci693262f2019-04-29 15:23:20 +02001300struct lysc_type_bitenum_item {
1301 const char *name; /**< enumeration identifier */
1302 const char *dsc; /**< description */
1303 const char *ref; /**< reference */
1304 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1305 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
1306 union {
1307 int32_t value; /**< integer value associated with the enumeration */
1308 uint32_t position; /**< non-negative integer value associated with the bit */
1309 };
1310 uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ and LYS_SET_VALUE
1311 values are allowed */
1312};
1313
Radek Krejci2167ee12018-11-02 16:09:07 +01001314struct lysc_type_enum {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001315 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci01342af2019-01-03 15:18:08 +01001316 const char *dflt; /**< type's default value if any */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001317 struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */
Radek Krejcie7b95092019-05-15 11:03:07 +02001318 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 +01001319 LY_DATA_TYPE basetype; /**< Base type of the type */
1320 uint32_t refcount; /**< reference counter for type sharing */
Radek Krejci693262f2019-04-29 15:23:20 +02001321 struct lysc_type_bitenum_item *enums; /**< enumerations list ([sized array](@ref sizedarrays)), mandatory (at least 1 item) */
1322};
1323
1324struct lysc_type_bits {
1325 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1326 const char *dflt; /**< type's default value if any */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001327 struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */
Radek Krejcie7b95092019-05-15 11:03:07 +02001328 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 +02001329 LY_DATA_TYPE basetype; /**< Base type of the type */
1330 uint32_t refcount; /**< reference counter for type sharing */
Radek Krejci849a62a2019-05-22 15:29:05 +02001331 struct lysc_type_bitenum_item *bits; /**< bits list ([sized array](@ref sizedarrays)), mandatory (at least 1 item),
1332 the items are ordered by their position value. */
Radek Krejci2167ee12018-11-02 16:09:07 +01001333};
1334
1335struct lysc_type_leafref {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001336 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci01342af2019-01-03 15:18:08 +01001337 const char *dflt; /**< type's default value if any */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001338 struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */
Radek Krejcie7b95092019-05-15 11:03:07 +02001339 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 +01001340 LY_DATA_TYPE basetype; /**< Base type of the type */
1341 uint32_t refcount; /**< reference counter for type sharing */
Radek Krejcia3045382018-11-22 14:30:31 +01001342 const char* path; /**< target path */
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001343 struct lys_module *path_context; /**< module where the path is defined, so it provides context to resolve prefixes */
Radek Krejci412ddfa2018-11-23 11:44:11 +01001344 struct lysc_type *realtype; /**< pointer to the real (first non-leafref in possible leafrefs chain) type. */
Radek Krejci2167ee12018-11-02 16:09:07 +01001345 uint8_t require_instance; /**< require-instance flag */
1346};
1347
1348struct lysc_type_identityref {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001349 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci01342af2019-01-03 15:18:08 +01001350 const char *dflt; /**< type's default value if any */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001351 struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */
Radek Krejcie7b95092019-05-15 11:03:07 +02001352 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 +01001353 LY_DATA_TYPE basetype; /**< Base type of the type */
1354 uint32_t refcount; /**< reference counter for type sharing */
Radek Krejci555cb5b2018-11-16 14:54:33 +01001355 struct lysc_ident **bases; /**< list of pointers to the base identities ([sized array](@ref sizedarrays)),
Radek Krejci2167ee12018-11-02 16:09:07 +01001356 mandatory (at least 1 item) */
1357};
1358
1359struct lysc_type_instanceid {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001360 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci01342af2019-01-03 15:18:08 +01001361 const char *dflt; /**< type's default value if any */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001362 struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */
Radek Krejcie7b95092019-05-15 11:03:07 +02001363 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 +01001364 LY_DATA_TYPE basetype; /**< Base type of the type */
1365 uint32_t refcount; /**< reference counter for type sharing */
1366 uint8_t require_instance; /**< require-instance flag */
1367};
1368
Radek Krejci2167ee12018-11-02 16:09:07 +01001369struct lysc_type_union {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001370 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci01342af2019-01-03 15:18:08 +01001371 const char *dflt; /**< type's default value if any */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001372 struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */
Radek Krejcie7b95092019-05-15 11:03:07 +02001373 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 +01001374 LY_DATA_TYPE basetype; /**< Base type of the type */
1375 uint32_t refcount; /**< reference counter for type sharing */
1376 struct lysc_type **types; /**< list of types in the union ([sized array](@ref sizedarrays)), mandatory (at least 1 item) */
1377};
1378
1379struct lysc_type_bin {
Radek Krejci4f28eda2018-11-12 11:46:16 +01001380 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci01342af2019-01-03 15:18:08 +01001381 const char *dflt; /**< type's default value if any */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001382 struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */
Radek Krejcie7b95092019-05-15 11:03:07 +02001383 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 +01001384 LY_DATA_TYPE basetype; /**< Base type of the type */
1385 uint32_t refcount; /**< reference counter for type sharing */
1386 struct lysc_range *length; /**< Optional length limitation */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001387};
1388
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001389struct lysc_action_inout {
1390 struct lysc_node *data; /**< first child node (linked list) */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001391 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
1392};
1393
Radek Krejci056d0a82018-12-06 16:57:25 +01001394struct lysc_action {
1395 uint16_t nodetype; /**< LYS_ACTION */
1396 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
Radek Krejci95710c92019-02-11 15:49:55 +01001397 struct lys_module *module; /**< module structure */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001398 struct lysp_action *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */
1399 struct lysc_node *parent; /**< parent node (NULL in case of top level node - RPC) */
1400
Radek Krejcifc11bd72019-04-11 16:00:05 +02001401 struct lysc_ext_instance *input_exts; /**< list of the extension instances of input ([sized array](@ref sizedarrays)) */
1402 struct lysc_ext_instance *output_exts; /**< list of the extension instances of outpu ([sized array](@ref sizedarrays)) */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001403
Radek Krejci056d0a82018-12-06 16:57:25 +01001404 const char *name; /**< action/RPC name (mandatory) */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001405 const char *dsc; /**< description */
1406 const char *ref; /**< reference */
1407
Radek Krejcifc11bd72019-04-11 16:00:05 +02001408 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1409 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
1410
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001411 struct lysc_action_inout input; /**< RPC's/action's input */
1412 struct lysc_action_inout output; /**< RPC's/action's output */
1413
Radek Krejci056d0a82018-12-06 16:57:25 +01001414};
1415
1416struct lysc_notif {
1417 uint16_t nodetype; /**< LYS_NOTIF */
1418 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
Radek Krejci95710c92019-02-11 15:49:55 +01001419 struct lys_module *module; /**< module structure */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001420 struct lysp_notif *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001421 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1422
Radek Krejcifc11bd72019-04-11 16:00:05 +02001423 struct lysc_node *data; /**< first child node (linked list) */
1424 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
1425
Radek Krejci056d0a82018-12-06 16:57:25 +01001426 const char *name; /**< Notification name (mandatory) */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001427 const char *dsc; /**< description */
1428 const char *ref; /**< reference */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001429
1430 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
1431 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejci056d0a82018-12-06 16:57:25 +01001432};
1433
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001434/**
Radek Krejci0af5f5d2018-09-07 15:00:30 +02001435 * @brief Compiled YANG data node
1436 */
1437struct lysc_node {
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001438 uint16_t nodetype; /**< type of the node (mandatory) */
1439 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001440 struct lys_module *module; /**< module structure */
1441 struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */
1442 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1443 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1444 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
1445 never NULL. If there is no sibling node, pointer points to the node
1446 itself. In case of the first node, this pointer points to the last
1447 node in the list. */
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001448 const char *name; /**< node name (mandatory) */
Radek Krejci12fb9142019-01-08 09:45:30 +01001449 const char *dsc; /**< description */
1450 const char *ref; /**< reference */
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001451 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci056d0a82018-12-06 16:57:25 +01001452 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001453 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001454};
1455
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001456struct lysc_node_container {
1457 uint16_t nodetype; /**< LYS_CONTAINER */
1458 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1459 struct lys_module *module; /**< module structure */
1460 struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */
1461 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1462 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1463 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
1464 never NULL. If there is no sibling node, pointer points to the node
1465 itself. In case of the first node, this pointer points to the last
1466 node in the list. */
1467 const char *name; /**< node name (mandatory) */
Radek Krejci12fb9142019-01-08 09:45:30 +01001468 const char *dsc; /**< description */
1469 const char *ref; /**< reference */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001470 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci4f28eda2018-11-12 11:46:16 +01001471 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001472 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejci4f28eda2018-11-12 11:46:16 +01001473
1474 struct lysc_node *child; /**< first child node (linked list) */
1475 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
1476 struct lysc_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */
1477 struct lysc_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001478};
1479
Radek Krejcia3045382018-11-22 14:30:31 +01001480struct lysc_node_case {
Radek Krejci056d0a82018-12-06 16:57:25 +01001481 uint16_t nodetype; /**< LYS_CASE */
1482 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1483 struct lys_module *module; /**< module structure */
1484 struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */
1485 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1486 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1487 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
1488 never NULL. If there is no sibling node, pointer points to the node
1489 itself. In case of the first node, this pointer points to the last
1490 node in the list. */
Radek Krejcia3045382018-11-22 14:30:31 +01001491 const char *name; /**< name of the case, including the implicit case */
Radek Krejci12fb9142019-01-08 09:45:30 +01001492 const char *dsc; /**< description */
1493 const char *ref; /**< reference */
Radek Krejci056d0a82018-12-06 16:57:25 +01001494 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci056d0a82018-12-06 16:57:25 +01001495 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001496 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejci056d0a82018-12-06 16:57:25 +01001497
Radek Krejcia3045382018-11-22 14:30:31 +01001498 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 +01001499 each other as siblings with the parent pointer pointing to appropriate case node. */
Radek Krejcia3045382018-11-22 14:30:31 +01001500};
1501
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001502struct lysc_node_choice {
1503 uint16_t nodetype; /**< LYS_CHOICE */
1504 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1505 struct lys_module *module; /**< module structure */
1506 struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */
1507 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1508 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1509 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
1510 never NULL. If there is no sibling node, pointer points to the node
1511 itself. In case of the first node, this pointer points to the last
1512 node in the list. */
1513 const char *name; /**< node name (mandatory) */
Radek Krejci12fb9142019-01-08 09:45:30 +01001514 const char *dsc; /**< description */
1515 const char *ref; /**< reference */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001516 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci056d0a82018-12-06 16:57:25 +01001517 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001518 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001519
Radek Krejcia9026eb2018-12-12 16:04:47 +01001520 struct lysc_node_case *cases; /**< list of the cases (linked list). Note that all the children of all the cases are linked each other
1521 as siblings. Their parent pointers points to the specific case they belongs to, so distinguish the
1522 case is simple. */
Radek Krejci056d0a82018-12-06 16:57:25 +01001523 struct lysc_node_case *dflt; /**< default case of the choice, only a pointer into the cases array. */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001524};
1525
1526struct lysc_node_leaf {
1527 uint16_t nodetype; /**< LYS_LEAF */
1528 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1529 struct lys_module *module; /**< module structure */
1530 struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */
1531 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1532 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1533 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
1534 never NULL. If there is no sibling node, pointer points to the node
1535 itself. In case of the first node, this pointer points to the last
1536 node in the list. */
1537 const char *name; /**< node name (mandatory) */
Radek Krejci12fb9142019-01-08 09:45:30 +01001538 const char *dsc; /**< description */
1539 const char *ref; /**< reference */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001540 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci4f28eda2018-11-12 11:46:16 +01001541 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001542 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejci4f28eda2018-11-12 11:46:16 +01001543
1544 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
1545 struct lysc_type *type; /**< type of the leaf node (mandatory) */
Radek Krejcib57cf1e2018-11-23 14:07:05 +01001546
Radek Krejci4f28eda2018-11-12 11:46:16 +01001547 const char *units; /**< units of the leaf's type */
Radek Krejcia1911222019-07-22 17:24:50 +02001548 struct lyd_value *dflt; /**< default value */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001549 struct lys_module *dflt_mod; /**< module where the lysc_node_leaf::dflt value was defined (needed to correctly map prefixes). */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001550};
1551
1552struct lysc_node_leaflist {
1553 uint16_t nodetype; /**< LYS_LEAFLIST */
1554 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1555 struct lys_module *module; /**< module structure */
1556 struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */
1557 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1558 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1559 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
1560 never NULL. If there is no sibling node, pointer points to the node
1561 itself. In case of the first node, this pointer points to the last
1562 node in the list. */
1563 const char *name; /**< node name (mandatory) */
Radek Krejci12fb9142019-01-08 09:45:30 +01001564 const char *dsc; /**< description */
1565 const char *ref; /**< reference */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001566 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejcib57cf1e2018-11-23 14:07:05 +01001567 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001568 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejcib57cf1e2018-11-23 14:07:05 +01001569
1570 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
1571 struct lysc_type *type; /**< type of the leaf node (mandatory) */
1572
Radek Krejci0e5d8382018-11-28 16:37:53 +01001573 const char *units; /**< units of the leaf's type */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001574 struct lyd_value **dflts; /**< list ([sized array](@ref sizedarrays)) of default values */
1575 struct lys_module **dflts_mods; /**< list ([sized array](@ref sizedarrays)) of modules where the lysc_node_leaflist::dflts values were defined
1576 (needed to correctly map prefixes). */
Radek Krejci0e5d8382018-11-28 16:37:53 +01001577 uint32_t min; /**< min-elements constraint */
1578 uint32_t max; /**< max-elements constraint */
1579
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001580};
1581
1582struct lysc_node_list {
1583 uint16_t nodetype; /**< LYS_LIST */
1584 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1585 struct lys_module *module; /**< module structure */
1586 struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */
1587 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1588 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1589 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
1590 never NULL. If there is no sibling node, pointer points to the node
1591 itself. In case of the first node, this pointer points to the last
1592 node in the list. */
1593 const char *name; /**< node name (mandatory) */
Radek Krejci12fb9142019-01-08 09:45:30 +01001594 const char *dsc; /**< description */
1595 const char *ref; /**< reference */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001596 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001597 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001598 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001599
1600 struct lysc_node *child; /**< first child node (linked list) */
1601 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
1602 struct lysc_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */
1603 struct lysc_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */
1604
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001605 struct lysc_node_leaf ***uniques; /**< list of sized arrays of pointers to the unique nodes ([sized array](@ref sizedarrays)) */
1606 uint32_t min; /**< min-elements constraint */
1607 uint32_t max; /**< max-elements constraint */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001608};
1609
1610struct lysc_node_anydata {
1611 uint16_t nodetype; /**< LYS_ANYXML or LYS_ANYDATA */
1612 uint16_t flags; /**< [schema node flags](@ref snodeflags) */
1613 struct lys_module *module; /**< module structure */
1614 struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */
1615 struct lysc_node *parent; /**< parent node (NULL in case of top level node) */
1616 struct lysc_node *next; /**< next sibling node (NULL if there is no one) */
1617 struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
1618 never NULL. If there is no sibling node, pointer points to the node
1619 itself. In case of the first node, this pointer points to the last
1620 node in the list. */
1621 const char *name; /**< node name (mandatory) */
Radek Krejci12fb9142019-01-08 09:45:30 +01001622 const char *dsc; /**< description */
1623 const char *ref; /**< reference */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001624 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci056d0a82018-12-06 16:57:25 +01001625 struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */
Radek Krejcifc11bd72019-04-11 16:00:05 +02001626 struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */
Radek Krejci9800fb82018-12-13 14:26:23 +01001627
1628 struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */
Radek Krejcibd8d9ba2018-11-02 16:06:26 +01001629};
1630
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001631/**
1632 * @brief Compiled YANG schema tree structure representing YANG module.
1633 *
1634 * Semantically validated YANG schema tree for data tree parsing.
1635 * Contains only the necessary information for the data validation.
1636 */
1637struct lysc_module {
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001638 struct lys_module *mod; /**< covering module structure */
Radek Krejci151a5b72018-10-19 14:21:44 +02001639 struct lysc_import *imports; /**< list of imported modules ([sized array](@ref sizedarrays)) */
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001640
Radek Krejcie53a8dc2018-10-17 12:52:40 +02001641 struct lysc_feature *features; /**< list of feature definitions ([sized array](@ref sizedarrays)) */
Radek Krejci2a408df2018-10-29 16:32:26 +01001642 struct lysc_ident *identities; /**< list of identities ([sized array](@ref sizedarrays)) */
1643 struct lysc_node *data; /**< list of module's top-level data nodes (linked list) */
1644 struct lysc_action *rpcs; /**< list of RPCs ([sized array](@ref sizedarrays)) */
1645 struct lysc_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */
Radek Krejci0935f412019-08-20 16:15:18 +02001646 struct lysc_ext *extensions; /**< list of the extension definitions ([sized array](@ref sizedarrays)) */
Radek Krejcice8c1592018-10-29 15:35:51 +01001647 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Radek Krejci0af5f5d2018-09-07 15:00:30 +02001648};
1649
1650/**
Radek Krejci53ea6152018-12-13 15:21:15 +01001651 * @brief Get the groupings sized array of the given (parsed) schema node.
1652 * Decides the node's type and in case it has a groupings array, returns it.
1653 * @param[in] node Node to examine.
1654 * @return The node's groupings sized array if any, NULL otherwise.
1655 */
1656const struct lysp_grp *lysp_node_groupings(const struct lysp_node *node);
1657
1658/**
Radek Krejci056d0a82018-12-06 16:57:25 +01001659 * @brief Get the typedefs sized array of the given (parsed) schema node.
1660 * Decides the node's type and in case it has a typedefs array, returns it.
1661 * @param[in] node Node to examine.
1662 * @return The node's typedefs sized array if any, NULL otherwise.
1663 */
1664const struct lysp_tpdf *lysp_node_typedefs(const struct lysp_node *node);
1665
1666/**
1667 * @brief Get the actions/RPCs sized array of the given (parsed) schema node.
1668 * Decides the node's type and in case it has a actions/RPCs array, returns it.
1669 * @param[in] node Node to examine.
1670 * @return The node's actions/RPCs sized array if any, NULL otherwise.
1671 */
1672const struct lysp_action *lysp_node_actions(const struct lysp_node *node);
1673
1674/**
1675 * @brief Get the Notifications sized array of the given (parsed) schema node.
1676 * Decides the node's type and in case it has a Notifications array, returns it.
1677 * @param[in] node Node to examine.
1678 * @return The node's Notifications sized array if any, NULL otherwise.
1679 */
1680const struct lysp_notif *lysp_node_notifs(const struct lysp_node *node);
1681
1682/**
1683 * @brief Get the children linked list of the given (parsed) schema node.
1684 * Decides the node's type and in case it has a children list, returns it.
1685 * @param[in] node Node to examine.
1686 * @return The node's children linked list if any, NULL otherwise.
1687 */
1688const struct lysp_node *lysp_node_children(const struct lysp_node *node);
1689
1690/**
1691 * @brief Get the actions/RPCs sized array of the given (compiled) schema node.
1692 * Decides the node's type and in case it has a actions/RPCs array, returns it.
1693 * @param[in] node Node to examine.
1694 * @return The node's actions/RPCs sized array if any, NULL otherwise.
1695 */
1696const struct lysc_action *lysc_node_actions(const struct lysc_node *node);
1697
1698/**
1699 * @brief Get the Notifications sized array of the given (compiled) schema node.
1700 * Decides the node's type and in case it has a Notifications array, returns it.
1701 * @param[in] node Node to examine.
1702 * @return The node's Notifications sized array if any, NULL otherwise.
1703 */
1704const struct lysc_notif *lysc_node_notifs(const struct lysc_node *node);
1705
1706/**
1707 * @brief Get the children linked list of the given (compiled) schema node.
1708 * Decides the node's type and in case it has a children list, returns it.
1709 * @param[in] node Node to examine.
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001710 * @param[in] flags Config flag to distinguish input (LYS_CONFIG_W) and output (LYS_CONFIG_R) data in case of RPC/action node.
Radek Krejci056d0a82018-12-06 16:57:25 +01001711 * @return The node's children linked list if any, NULL otherwise.
1712 */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001713const struct lysc_node *lysc_node_children(const struct lysc_node *node, uint16_t flags);
Radek Krejci056d0a82018-12-06 16:57:25 +01001714
1715/**
Radek Krejci151a5b72018-10-19 14:21:44 +02001716 * @brief Get how the if-feature statement currently evaluates.
1717 *
1718 * @param[in] iff Compiled if-feature statement to evaluate.
1719 * @return If the statement evaluates to true, 1 is returned. 0 is returned when the statement evaluates to false.
1720 */
1721int lysc_iffeature_value(const struct lysc_iffeature *iff);
1722
1723/**
1724 * @brief Get the current status of the provided feature.
1725 *
1726 * @param[in] feature Compiled feature statement to examine.
1727 * @return
1728 * - 1 if feature is enabled,
1729 * - 0 if feature is disabled,
1730 * - -1 in case of error (invalid argument)
1731 */
1732int lysc_feature_value(const struct lysc_feature *feature);
1733
1734/**
Radek Krejci327de162019-06-14 12:52:07 +02001735 * @brief Generate path of the given node in the requested format.
1736 *
1737 * @param[in] node Schema path of this node will be generated.
1738 * @param[in] pathtype Format of the path to generate.
Radek Krejci1c0c3442019-07-23 16:08:47 +02001739 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
1740 * If NULL, memory for the complete path is allocated.
1741 * @param[in] buflen Size of the provided @p buffer.
Radek Krejci327de162019-06-14 12:52:07 +02001742 * @return NULL in case of memory allocation error, path of the node otherwise.
Radek Krejci1c0c3442019-07-23 16:08:47 +02001743 * 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 +02001744 */
Radek Krejci1c0c3442019-07-23 16:08:47 +02001745char *lysc_path(struct lysc_node *node, LY_PATH_TYPE pathtype, char *buffer, size_t buflen);
Radek Krejci327de162019-06-14 12:52:07 +02001746
1747/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001748 * @brief Available YANG schema tree structures representing YANG module.
1749 */
1750struct lys_module {
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001751 struct ly_ctx *ctx; /**< libyang context of the module (mandatory) */
1752 const char *name; /**< name of the module (mandatory) */
Radek Krejci0af46292019-01-11 16:02:31 +01001753 const char *revision; /**< revision of the module (if present) */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001754 const char *ns; /**< namespace of the module (module - mandatory) */
1755 const char *prefix; /**< module prefix or submodule belongsto prefix of main module (mandatory) */
1756 const char *filepath; /**< path, if the schema was read from a file, NULL in case of reading from memory */
1757 const char *org; /**< party/company responsible for the module */
1758 const char *contact; /**< contact information for the module */
1759 const char *dsc; /**< description of the module */
1760 const char *ref; /**< cross-reference for the module */
1761
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001762 struct lysp_module *parsed; /**< Simply parsed (unresolved) YANG schema tree */
Radek Krejci0af46292019-01-11 16:02:31 +01001763 struct lysc_module *compiled; /**< Compiled and fully validated YANG schema tree for data parsing.
1764 Available only for implemented modules. */
1765 struct lysc_feature *off_features;/**< List of pre-compiled features of the module in non implemented modules ([sized array](@ref sizedarrays)).
1766 These features are always disabled and cannot be enabled until the module
1767 become implemented. The features are present in this form to allow their linkage
1768 from if-feature statements of the compiled schemas and their proper use in case
1769 the module became implemented in future (no matter if implicitly via augment/deviate
1770 or explicitly via ly_ctx_module_implement()). */
Radek Krejci0935f412019-08-20 16:15:18 +02001771 struct lysc_ext *off_extensions; /**< List of pre-compiled extension definitions of the module in non-implemented modules
1772 ([sized array](@ref sizedarrays)). These extensions are prepared to be linked with the extension instances,
1773 but they are not implemented (connected with any extension plugin). In case the module become
1774 implemented, the list is moved into the compiled module structure and available extension plugins
1775 are connected with the appropriate extension definision. */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001776
Radek Krejci95710c92019-02-11 15:49:55 +01001777 uint8_t implemented; /**< flag if the module is implemented, not just imported. The module is implemented if
1778 the flag has non-zero value. Specific values are used internally:
1779 1 - implemented module
1780 2 - recently implemented module by dependency, it can be reverted in rollback procedure */
1781 uint8_t latest_revision; /**< flag to mark the latest available revision:
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001782 1 - the latest revision in searchdirs was not searched yet and this is the
1783 latest revision in the current context
1784 2 - searchdirs were searched and this is the latest available revision */
1785 uint8_t version; /**< yang-version (LYS_VERSION values) */
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001786};
1787
Radek Krejci151a5b72018-10-19 14:21:44 +02001788/**
1789 * @brief Enable specified feature in the module
1790 *
1791 * By default, when the module is loaded by libyang parser, all features are disabled.
1792 *
Radek Krejcica3db002018-11-01 10:31:01 +01001793 * If all features are being enabled, it must be possible respecting their if-feature conditions. For example,
1794 * enabling all features on the following feature set will fail since it is not possible to enable both features
1795 * (and it is unclear which of them should be enabled then). In this case the LY_EDENIED is returned and the feature
1796 * is untouched.
1797 *
1798 * feature f1;
1799 * feature f2 { if-feature 'not f1';}
1800 *
Radek Krejci151a5b72018-10-19 14:21:44 +02001801 * @param[in] module Module where the feature will be enabled.
1802 * @param[in] feature Name of the feature to enable. To enable all features at once, use asterisk (`*`) character.
1803 * @return LY_ERR value.
1804 */
Radek Krejcied5acc52019-04-25 15:57:04 +02001805LY_ERR lys_feature_enable(const struct lys_module *module, const char *feature);
Radek Krejci151a5b72018-10-19 14:21:44 +02001806
1807/**
1808 * @brief Disable specified feature in the module
1809 *
1810 * By default, when the module is loaded by libyang parser, all features are disabled.
1811 *
1812 * @param[in] module Module where the feature will be disabled.
1813 * @param[in] feature Name of the feature to disable. To disable all features at once, use asterisk (`*`) character.
1814 * @return LY_ERR value
1815 */
Radek Krejcied5acc52019-04-25 15:57:04 +02001816LY_ERR lys_feature_disable(const struct lys_module *module, const char *feature);
Radek Krejci151a5b72018-10-19 14:21:44 +02001817
1818/**
1819 * @brief Get the current status of the specified feature in the module.
1820 *
1821 * @param[in] module Module where the feature is defined.
1822 * @param[in] feature Name of the feature to inspect.
1823 * @return
1824 * - 1 if feature is enabled,
1825 * - 0 if feature is disabled,
1826 * - -1 in case of error (e.g. feature is not defined or invalid arguments)
1827 */
1828int lys_feature_value(const struct lys_module *module, const char *feature);
Radek Krejcidd4e8d42018-10-16 14:55:43 +02001829
1830/**
Radek Krejci86d106e2018-10-18 09:53:19 +02001831 * @brief Load a schema into the specified context.
1832 *
1833 * @param[in] ctx libyang context where to process the data model.
1834 * @param[in] data The string containing the dumped data model in the specified
1835 * format.
1836 * @param[in] format Format of the input data (YANG or YIN).
1837 * @return Pointer to the data model structure or NULL on error.
1838 */
Radek Krejcid14e9692018-11-01 11:00:37 +01001839struct lys_module *lys_parse_mem(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format);
Radek Krejci86d106e2018-10-18 09:53:19 +02001840
1841/**
1842 * @brief Read a schema from file descriptor into the specified context.
1843 *
1844 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
1845 *
1846 * @param[in] ctx libyang context where to process the data model.
1847 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
1848 * in the specified format.
1849 * @param[in] format Format of the input data (YANG or YIN).
1850 * @return Pointer to the data model structure or NULL on error.
1851 */
Radek Krejcid14e9692018-11-01 11:00:37 +01001852struct lys_module *lys_parse_fd(struct ly_ctx *ctx, int fd, LYS_INFORMAT format);
Radek Krejci86d106e2018-10-18 09:53:19 +02001853
1854/**
Radek Krejcid33273d2018-10-25 14:55:52 +02001855 * @brief Read a schema into the specified context from a file.
Radek Krejci86d106e2018-10-18 09:53:19 +02001856 *
1857 * @param[in] ctx libyang context where to process the data model.
1858 * @param[in] path Path to the file with the model in the specified format.
1859 * @param[in] format Format of the input data (YANG or YIN).
1860 * @return Pointer to the data model structure or NULL on error.
1861 */
Radek Krejcid14e9692018-11-01 11:00:37 +01001862struct lys_module *lys_parse_path(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format);
Radek Krejci86d106e2018-10-18 09:53:19 +02001863
1864/**
Radek Krejcid33273d2018-10-25 14:55:52 +02001865 * @brief Search for the schema file in the specified searchpaths.
1866 *
1867 * @param[in] searchpaths NULL-terminated array of paths to be searched (recursively). Current working
1868 * directory is searched automatically (but non-recursively if not in the provided list). Caller can use
1869 * result of the ly_ctx_get_searchdirs().
1870 * @param[in] cwd Flag to implicitly search also in the current working directory (non-recursively).
1871 * @param[in] name Name of the schema to find.
1872 * @param[in] revision Revision of the schema to find. If NULL, the newest found schema filepath is returned.
1873 * @param[out] localfile Mandatory output variable containing absolute path of the found schema. If no schema
1874 * complying the provided restriction is found, NULL is set.
1875 * @param[out] format Optional output variable containing expected format of the schema document according to the
1876 * file suffix.
1877 * @return LY_ERR value (LY_SUCCESS is returned even if the file is not found, then the *localfile is NULL).
1878 */
1879LY_ERR lys_search_localfile(const char * const *searchpaths, int cwd, const char *name, const char *revision, char **localfile, LYS_INFORMAT *format);
1880
1881/**
Radek Krejcia3045382018-11-22 14:30:31 +01001882 * @brief Get next schema tree (sibling) node element that can be instantiated in a data tree. Returned node can
1883 * be from an augment.
1884 *
1885 * lys_getnext() is supposed to be called sequentially. In the first call, the \p last parameter is usually NULL
1886 * and function starts returning i) the first \p parent's child or ii) the first top level element of the \p module.
1887 * Consequent calls suppose to provide the previously returned node as the \p last parameter and still the same
1888 * \p parent and \p module parameters.
1889 *
1890 * Without options, the function is used to traverse only the schema nodes that can be paired with corresponding
1891 * data nodes in a data tree. By setting some \p options the behavior can be modified to the extent that
1892 * all the schema nodes are iteratively returned.
1893 *
1894 * @param[in] last Previously returned schema tree node, or NULL in case of the first call.
1895 * @param[in] parent Parent of the subtree where the function starts processing.
1896 * @param[in] module In case of iterating on top level elements, the \p parent is NULL and
1897 * module must be specified.
1898 * @param[in] options [ORed options](@ref sgetnextflags).
1899 * @return Next schema tree node that can be instantiated in a data tree, NULL in case there is no such element.
1900 */
1901const struct lysc_node *lys_getnext(const struct lysc_node *last, const struct lysc_node *parent,
1902 const struct lysc_module *module, int options);
1903
1904/**
1905 * @defgroup sgetnextflags lys_getnext() flags
1906 * @ingroup schematree
1907 *
1908 * @{
1909 */
1910#define LYS_GETNEXT_WITHCHOICE 0x01 /**< lys_getnext() option to allow returning #LYS_CHOICE nodes instead of looking into them */
Radek Krejci9bb94eb2018-12-04 16:48:35 +01001911#define LYS_GETNEXT_NOCHOICE 0x02 /**< lys_getnext() option to ignore (kind of conditional) nodes within choice node */
Radek Krejci056d0a82018-12-06 16:57:25 +01001912#define LYS_GETNEXT_WITHCASE 0x04 /**< lys_getnext() option to allow returning #LYS_CASE nodes instead of looking into them */
Radek Krejcia3045382018-11-22 14:30:31 +01001913#define LYS_GETNEXT_INTONPCONT 0x40 /**< lys_getnext() option to look into non-presence container, instead of returning container itself */
1914#define LYS_GETNEXT_NOSTATECHECK 0x100 /**< lys_getnext() option to skip checking module validity (import-only, disabled) and
1915 relevant if-feature conditions state */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001916#define LYS_GETNEXT_OUTPUT 0x200 /**< lys_getnext() option to provide RPC's/action's output schema nodes instead of input schema nodes
1917 provided by default */
Radek Krejcia3045382018-11-22 14:30:31 +01001918/** @} sgetnextflags */
1919
1920/**
1921 * @brief Get child node according to the specified criteria.
1922 *
1923 * @param[in] parent Optional parent of the node to find. If not specified, the module's top-level nodes are searched.
1924 * @param[in] module module of the node to find. It is also limitation for the children node of the given parent.
1925 * @param[in] name Name of the node to find.
1926 * @param[in] name_len Optional length of the name in case it is not NULL-terminated string.
1927 * @param[in] nodetype Optional criteria (to speedup) specifying nodetype(s) of the node to find.
1928 * Used as a bitmask, so multiple nodetypes can be specified.
1929 * @param[in] options [ORed options](@ref sgetnextflags).
1930 * @return Found node if any.
1931 */
1932const struct lysc_node *lys_child(const struct lysc_node *parent, const struct lys_module *module,
1933 const char *name, size_t name_len, uint16_t nodetype, int options);
1934
1935/**
1936 * @brief Check if the schema node is disabled in the schema tree, i.e. there is any disabled if-feature statement
1937 * affecting the node.
1938 *
1939 * @param[in] node Schema node to check.
1940 * @param[in] recursive - 0 to check if-feature only in the \p node schema node,
1941 * - 1 to check if-feature in all ascendant schema nodes until there is a node possibly having an instance in a data tree
1942 * @return - NULL if enabled,
1943 * - pointer to the node with the unsatisfied (disabling) if-feature expression.
1944 */
1945const struct lysc_iffeature *lys_is_disabled(const struct lysc_node *node, int recursive);
1946
Radek Krejci084289f2019-07-09 17:35:30 +02001947/**
1948 * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value.
1949 *
1950 * This function check just the type's restriction, if you want to check also the data tree context (e.g. in case of
1951 * require-instance restriction), use lyd_value_validate().
1952 *
1953 * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL)
1954 * @param[in] node Schema node for the @p value.
1955 * @param[in] value String value to be checked.
1956 * @param[in] value_len Length of the given @p value (mandatory).
1957 * @param[in] get_prefix Callback function to resolve prefixes used in the @p value string.
1958 * @param[in] get_prefix_data Private data for the @p get_prefix callback.
1959 * @param[in] format Input format of the @p value.
1960 * @return LY_SUCCESS on success
1961 * @return LY_ERR value if an error occurred.
1962 */
1963LY_ERR lys_value_validate(struct ly_ctx *ctx, const struct lysc_node *node, const char *value, size_t value_len,
1964 ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format);
1965
Radek Krejci0935f412019-08-20 16:15:18 +02001966/**
1967 * @brief Stringify schema nodetype.
1968 * @param[in] nodetype Nodetype to stringify.
1969 * @return Constant string with the name of the node's type.
1970 */
1971const char *lys_nodetype2str(uint16_t nodetype);
1972
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001973/** @} */
1974
Radek Krejci70853c52018-10-15 14:46:16 +02001975#ifdef __cplusplus
1976}
1977#endif
1978
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001979#endif /* LY_TREE_SCHEMA_H_ */