Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1 | /** |
| 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 Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 18 | #define PCRE2_CODE_UNIT_WIDTH 8 |
| 19 | |
| 20 | #include <pcre2.h> |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 21 | #include <stdint.h> |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 22 | #include <stdio.h> |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 23 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 24 | #include "tree_data.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 25 | #include "log.h" |
| 26 | #include "tree.h" |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 27 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 28 | struct ly_ctx; |
| 29 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 30 | #ifdef __cplusplus |
| 31 | extern "C" { |
| 32 | #endif |
| 33 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 34 | /** |
Radek Krejci | 2ff0d57 | 2020-05-21 15:27:28 +0200 | [diff] [blame] | 35 | * @defgroup schematree Schema Tree |
| 36 | * @ingroup trees |
| 37 | * @{ |
| 38 | * |
| 39 | * Data structures and functions to manipulate and access schema tree. |
| 40 | */ |
| 41 | |
| 42 | /** |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 43 | * @brief Macro to iterate via all elements in a schema tree which can be instantiated in data tree |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 44 | * (skips cases, input, output). This is the opening part to the #LYSC_TREE_DFS_END - they always have to be used together. |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 45 | * |
| 46 | * The function follows deep-first search algorithm: |
| 47 | * <pre> |
| 48 | * 1 |
| 49 | * / \ |
| 50 | * 2 4 |
| 51 | * / / \ |
| 52 | * 3 5 6 |
| 53 | * </pre> |
| 54 | * |
| 55 | * Use the same parameters for #LYSC_TREE_DFS_BEGIN and #LYSC_TREE_DFS_END. While |
| 56 | * START can be any of the lysc_node* types (including lysc_action and lysc_notif), |
| 57 | * ELEM variable must be of the struct lysc_node* type. |
| 58 | * |
| 59 | * To skip a particular subtree, instead of the continue statement, set LYSC_TREE_DFS_continue |
| 60 | * variable to non-zero value. |
| 61 | * |
| 62 | * Use with opening curly bracket '{' after the macro. |
| 63 | * |
| 64 | * @param START Pointer to the starting element processed first. |
| 65 | * @param ELEM Iterator intended for use in the block. |
| 66 | */ |
| 67 | #define LYSC_TREE_DFS_BEGIN(START, ELEM) \ |
| 68 | { int LYSC_TREE_DFS_continue = 0; struct lysc_node *LYSC_TREE_DFS_next; \ |
| 69 | for ((ELEM) = (LYSC_TREE_DFS_next) = (START); \ |
| 70 | (ELEM); \ |
| 71 | (ELEM) = (LYSC_TREE_DFS_next), LYSC_TREE_DFS_continue = 0) |
| 72 | |
| 73 | /** |
| 74 | * @brief Macro to iterate via all elements in a (sub)tree. This is the closing part |
| 75 | * to the #LYSC_TREE_DFS_BEGIN - they always have to be used together. |
| 76 | * |
| 77 | * Use the same parameters for #LYSC_TREE_DFS_BEGIN and #LYSC_TREE_DFS_END. While |
| 78 | * START can be a pointer to any of the lysc_node* types (including lysc_action and lysc_notif), |
| 79 | * ELEM variable must be pointer to the lysc_node type. |
| 80 | * |
| 81 | * Use with closing curly bracket '}' after the macro. |
| 82 | * |
| 83 | * @param START Pointer to the starting element processed first. |
| 84 | * @param ELEM Iterator intended for use in the block. |
| 85 | */ |
| 86 | |
| 87 | #define LYSC_TREE_DFS_END(START, ELEM) \ |
| 88 | /* select element for the next run - children first */ \ |
| 89 | if (LYSC_TREE_DFS_continue) { \ |
| 90 | (LYSC_TREE_DFS_next) = NULL; \ |
| 91 | } else { \ |
| 92 | (LYSC_TREE_DFS_next) = (struct lysc_node*)lysc_node_children(ELEM, 0); \ |
| 93 | }\ |
| 94 | if (!(LYSC_TREE_DFS_next)) { \ |
| 95 | /* in case of RPC/action, get also the output children */ \ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 96 | if (!LYSC_TREE_DFS_continue && (ELEM)->nodetype & (LYS_RPC | LYS_ACTION)) { \ |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 97 | (LYSC_TREE_DFS_next) = (struct lysc_node*)lysc_node_children(ELEM, LYS_CONFIG_R); \ |
| 98 | } \ |
| 99 | if (!(LYSC_TREE_DFS_next)) { \ |
| 100 | /* no children */ \ |
| 101 | if ((ELEM) == (struct lysc_node*)(START)) { \ |
| 102 | /* we are done, (START) has no children */ \ |
| 103 | break; \ |
| 104 | } \ |
| 105 | /* try siblings */ \ |
| 106 | (LYSC_TREE_DFS_next) = (ELEM)->next; \ |
| 107 | } \ |
| 108 | } \ |
| 109 | while (!(LYSC_TREE_DFS_next)) { \ |
| 110 | /* parent is already processed, go to its sibling */ \ |
| 111 | (ELEM) = (ELEM)->parent; \ |
| 112 | /* no siblings, go back through parents */ \ |
| 113 | if ((ELEM) == (struct lysc_node*)(START)) { \ |
| 114 | /* we are done, no next element to process */ \ |
| 115 | break; \ |
| 116 | } \ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 117 | if ((ELEM)->nodetype & (LYS_RPC | LYS_ACTION)) { \ |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 118 | /* there is actually next node as a child of action's output */ \ |
| 119 | (LYSC_TREE_DFS_next) = (struct lysc_node*)lysc_node_children(ELEM, LYS_CONFIG_R); \ |
| 120 | } \ |
| 121 | if (!(LYSC_TREE_DFS_next)) { \ |
| 122 | (LYSC_TREE_DFS_next) = (ELEM)->next; \ |
| 123 | } \ |
| 124 | } } \ |
| 125 | |
| 126 | /** |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 127 | * @brief Schema input formats accepted by libyang [parser functions](@ref howtoschemasparsers). |
| 128 | */ |
| 129 | typedef enum { |
| 130 | LYS_IN_UNKNOWN = 0, /**< unknown format, used as return value in case of error */ |
| 131 | LYS_IN_YANG = 1, /**< YANG schema input format */ |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 132 | LYS_IN_YIN = 3 /**< YIN schema input format */ |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 133 | } LYS_INFORMAT; |
| 134 | |
| 135 | /** |
| 136 | * @brief Schema output formats accepted by libyang [printer functions](@ref howtoschemasprinters). |
| 137 | */ |
| 138 | typedef enum { |
| 139 | LYS_OUT_UNKNOWN = 0, /**< unknown format, used as return value in case of error */ |
| 140 | LYS_OUT_YANG = 1, /**< YANG schema output format */ |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 141 | LYS_OUT_YANG_COMPILED = 2, /**< YANG schema output format of the compiled schema tree */ |
FredGan | d944bdc | 2019-11-05 21:57:07 +0800 | [diff] [blame] | 142 | LYS_OUT_YIN = 3, /**< YIN schema output format */ |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 143 | |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 144 | LYS_OUT_TREE, /**< Tree schema output format, for more information see the [printers](@ref howtoschemasprinters) page */ |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 145 | } LYS_OUTFORMAT; |
| 146 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 147 | #define LY_REV_SIZE 11 /**< revision data string length (including terminating NULL byte) */ |
| 148 | |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 149 | #define LYS_UNKNOWN 0x0000 /**< uninitalized unknown statement node */ |
| 150 | #define LYS_CONTAINER 0x0001 /**< container statement node */ |
| 151 | #define LYS_CHOICE 0x0002 /**< choice statement node */ |
| 152 | #define LYS_LEAF 0x0004 /**< leaf statement node */ |
| 153 | #define LYS_LEAFLIST 0x0008 /**< leaf-list statement node */ |
| 154 | #define LYS_LIST 0x0010 /**< list statement node */ |
| 155 | #define LYS_ANYXML 0x0020 /**< anyxml statement node */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 156 | #define LYS_ANYDATA 0x0120 /**< anydata statement node, in tests it can be used for both #LYS_ANYXML and #LYS_ANYDATA */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 157 | |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 158 | #define LYS_RPC 0x400 /**< RPC statement node */ |
| 159 | #define LYS_ACTION 0x800 /**< action statement node */ |
| 160 | #define LYS_NOTIF 0x1000 /**< notification statement node */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 161 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 162 | #define LYS_CASE 0x0040 /**< case statement node */ |
| 163 | #define LYS_USES 0x0080 /**< uses statement node */ |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 164 | #define LYS_INPUT 0x100 |
| 165 | #define LYS_OUTPUT 0x200 |
| 166 | #define LYS_INOUT 0x300 |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 167 | #define LYS_GROUPING 0x2000 |
| 168 | #define LYS_AUGMENT 0x4000 |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 169 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 170 | /** |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 171 | * @brief List of YANG statements |
| 172 | */ |
| 173 | enum ly_stmt { |
| 174 | LY_STMT_NONE = 0, |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 175 | LY_STMT_STATUS, /**< in lysc_ext_substmt::storage stored as a pointer to `uint16_t`, only cardinality < #LY_STMT_CARD_SOME is allowed */ |
| 176 | LY_STMT_CONFIG, /**< in lysc_ext_substmt::storage stored as a pointer to `uint16_t`, only cardinality < #LY_STMT_CARD_SOME is allowed */ |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 177 | LY_STMT_MANDATORY, |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 178 | LY_STMT_UNITS, /**< in lysc_ext_substmt::storage stored as a pointer to `const char *` (cardinality < #LY_STMT_CARD_SOME) |
| 179 | or as a pointer to a [sized array](@ref sizedarrays) `const char **` */ |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 180 | LY_STMT_DEFAULT, |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 181 | LY_STMT_TYPE, /**< in lysc_ext_substmt::storage stored as a pointer to `struct lysc_type *` (cardinality < #LY_STMT_CARD_SOME) |
| 182 | or as a pointer to a [sized array](@ref sizedarrays) `struct lysc_type **` */ |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 183 | |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 184 | LY_STMT_ACTION, |
| 185 | LY_STMT_ANYDATA, |
| 186 | LY_STMT_ANYXML, |
| 187 | LY_STMT_ARGUMENT, |
| 188 | LY_STMT_AUGMENT, |
| 189 | LY_STMT_BASE, |
| 190 | LY_STMT_BELONGS_TO, |
| 191 | LY_STMT_BIT, |
| 192 | LY_STMT_CASE, |
| 193 | LY_STMT_CHOICE, |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 194 | LY_STMT_CONTACT, |
| 195 | LY_STMT_CONTAINER, |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 196 | LY_STMT_DESCRIPTION, |
| 197 | LY_STMT_DEVIATE, |
| 198 | LY_STMT_DEVIATION, |
| 199 | LY_STMT_ENUM, |
| 200 | LY_STMT_ERROR_APP_TAG, |
| 201 | LY_STMT_ERROR_MESSAGE, |
| 202 | LY_STMT_EXTENSION, |
| 203 | LY_STMT_FEATURE, |
| 204 | LY_STMT_FRACTION_DIGITS, |
| 205 | LY_STMT_GROUPING, |
| 206 | LY_STMT_IDENTITY, |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 207 | LY_STMT_IF_FEATURE, /**< in lysc_ext_substmt::storage stored as a pointer to `struct lysc_iffeature` (cardinality < #LY_STMT_CARD_SOME) |
| 208 | or as a pointer to a [sized array](@ref sizedarrays) `struct lysc_iffeature *` */ |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 209 | LY_STMT_IMPORT, |
| 210 | LY_STMT_INCLUDE, |
| 211 | LY_STMT_INPUT, |
| 212 | LY_STMT_KEY, |
| 213 | LY_STMT_LEAF, |
| 214 | LY_STMT_LEAF_LIST, |
| 215 | LY_STMT_LENGTH, |
| 216 | LY_STMT_LIST, |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 217 | LY_STMT_MAX_ELEMENTS, |
| 218 | LY_STMT_MIN_ELEMENTS, |
| 219 | LY_STMT_MODIFIER, |
| 220 | LY_STMT_MODULE, |
| 221 | LY_STMT_MUST, |
| 222 | LY_STMT_NAMESPACE, |
| 223 | LY_STMT_NOTIFICATION, |
| 224 | LY_STMT_ORDERED_BY, |
| 225 | LY_STMT_ORGANIZATION, |
| 226 | LY_STMT_OUTPUT, |
| 227 | LY_STMT_PATH, |
| 228 | LY_STMT_PATTERN, |
| 229 | LY_STMT_POSITION, |
| 230 | LY_STMT_PREFIX, |
| 231 | LY_STMT_PRESENCE, |
| 232 | LY_STMT_RANGE, |
| 233 | LY_STMT_REFERENCE, |
| 234 | LY_STMT_REFINE, |
| 235 | LY_STMT_REQUIRE_INSTANCE, |
| 236 | LY_STMT_REVISION, |
| 237 | LY_STMT_REVISION_DATE, |
| 238 | LY_STMT_RPC, |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 239 | LY_STMT_SUBMODULE, |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 240 | LY_STMT_TYPEDEF, |
| 241 | LY_STMT_UNIQUE, |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 242 | LY_STMT_USES, |
| 243 | LY_STMT_VALUE, |
| 244 | LY_STMT_WHEN, |
| 245 | LY_STMT_YANG_VERSION, |
| 246 | LY_STMT_YIN_ELEMENT, |
| 247 | LY_STMT_EXTENSION_INSTANCE, |
| 248 | |
| 249 | LY_STMT_SYNTAX_SEMICOLON, |
| 250 | LY_STMT_SYNTAX_LEFT_BRACE, |
| 251 | LY_STMT_SYNTAX_RIGHT_BRACE, |
| 252 | |
| 253 | LY_STMT_ARG_TEXT, |
| 254 | LY_STMT_ARG_VALUE |
| 255 | }; |
| 256 | |
| 257 | /** |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 258 | * @brief Extension instance structure parent enumeration |
| 259 | */ |
| 260 | typedef enum { |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 261 | LYEXT_PAR_MODULE, /**< ::lysc_module */ |
| 262 | LYEXT_PAR_NODE, /**< ::lysc_node (and the derived structures including ::lysc_action and ::lysc_notif) */ |
| 263 | LYEXT_PAR_INPUT, /**< ::lysc_action_inout */ |
| 264 | LYEXT_PAR_OUTPUT, /**< ::lysc_action_inout */ |
| 265 | LYEXT_PAR_TYPE, /**< ::lysc_type */ |
| 266 | LYEXT_PAR_TYPE_BIT, /**< ::lysc_type_bitenum_item */ |
| 267 | LYEXT_PAR_TYPE_ENUM, /**< ::lysc_type_bitenum_item */ |
| 268 | LYEXT_PAR_FEATURE, /**< ::lysc_feature */ |
| 269 | LYEXT_PAR_MUST, /**< ::lysc_must */ |
| 270 | LYEXT_PAR_PATTERN, /**< ::lysc_pattern */ |
| 271 | LYEXT_PAR_LENGTH, /**< ::lysc_range */ |
| 272 | LYEXT_PAR_RANGE, /**< ::lysc_range */ |
| 273 | LYEXT_PAR_WHEN, /**< ::lysc_when */ |
| 274 | LYEXT_PAR_IDENT, /**< ::lysc_ident */ |
| 275 | LYEXT_PAR_EXT, /**< ::lysc_ext */ |
| 276 | LYEXT_PAR_IMPORT, /**< ::lysc_import */ |
| 277 | // LYEXT_PAR_TPDF, /**< ::lysp_tpdf */ |
| 278 | // LYEXT_PAR_EXTINST, /**< ::lysp_ext_instance */ |
| 279 | // LYEXT_PAR_REFINE, /**< ::lysp_refine */ |
| 280 | // LYEXT_PAR_DEVIATION, /**< ::lysp_deviation */ |
| 281 | // LYEXT_PAR_DEVIATE, /**< ::lysp_deviate */ |
| 282 | // LYEXT_PAR_INCLUDE, /**< ::lysp_include */ |
| 283 | // LYEXT_PAR_REVISION, /**< ::lysp_revision */ |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 284 | } LYEXT_PARENT; |
| 285 | |
| 286 | /** |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 287 | * @brief Stringify extension instance parent type. |
| 288 | * @param[in] type Parent type to stringify. |
| 289 | * @return Constant string with the name of the parent statement. |
| 290 | */ |
| 291 | const char *lyext_parent2str(LYEXT_PARENT type); |
| 292 | |
| 293 | /** |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 294 | * @brief Enum of substatements in which extension instances can appear. |
| 295 | */ |
| 296 | typedef enum { |
| 297 | LYEXT_SUBSTMT_SELF = 0, /**< extension of the structure itself, not substatement's */ |
| 298 | LYEXT_SUBSTMT_ARGUMENT, /**< extension of the argument statement, can appear in lys_ext */ |
| 299 | LYEXT_SUBSTMT_BASE, /**< extension of the base statement, can appear (repeatedly) in lys_type and lys_ident */ |
| 300 | LYEXT_SUBSTMT_BELONGSTO, /**< extension of the belongs-to statement, can appear in lys_submodule */ |
| 301 | LYEXT_SUBSTMT_CONTACT, /**< extension of the contact statement, can appear in lys_module */ |
| 302 | LYEXT_SUBSTMT_DEFAULT, /**< extension of the default statement, can appear in lys_node_leaf, lys_node_leaflist, |
| 303 | lys_node_choice and lys_deviate */ |
| 304 | LYEXT_SUBSTMT_DESCRIPTION, /**< extension of the description statement, can appear in lys_module, lys_submodule, |
| 305 | lys_node, lys_import, lys_include, lys_ext, lys_feature, lys_tpdf, lys_restr, |
| 306 | lys_ident, lys_deviation, lys_type_enum, lys_type_bit, lys_when and lys_revision */ |
| 307 | LYEXT_SUBSTMT_ERRTAG, /**< extension of the error-app-tag statement, can appear in lys_restr */ |
| 308 | LYEXT_SUBSTMT_ERRMSG, /**< extension of the error-message statement, can appear in lys_restr */ |
| 309 | LYEXT_SUBSTMT_KEY, /**< extension of the key statement, can appear in lys_node_list */ |
| 310 | LYEXT_SUBSTMT_NAMESPACE, /**< extension of the namespace statement, can appear in lys_module */ |
| 311 | LYEXT_SUBSTMT_ORGANIZATION, /**< extension of the organization statement, can appear in lys_module and lys_submodule */ |
| 312 | LYEXT_SUBSTMT_PATH, /**< extension of the path statement, can appear in lys_type */ |
| 313 | LYEXT_SUBSTMT_PREFIX, /**< extension of the prefix statement, can appear in lys_module, lys_submodule (for |
| 314 | belongs-to's prefix) and lys_import */ |
| 315 | LYEXT_SUBSTMT_PRESENCE, /**< extension of the presence statement, can appear in lys_node_container */ |
| 316 | LYEXT_SUBSTMT_REFERENCE, /**< extension of the reference statement, can appear in lys_module, lys_submodule, |
| 317 | lys_node, lys_import, lys_include, lys_revision, lys_tpdf, lys_restr, lys_ident, |
| 318 | lys_ext, lys_feature, lys_deviation, lys_type_enum, lys_type_bit and lys_when */ |
| 319 | LYEXT_SUBSTMT_REVISIONDATE, /**< extension of the revision-date statement, can appear in lys_import and lys_include */ |
| 320 | LYEXT_SUBSTMT_UNITS, /**< extension of the units statement, can appear in lys_tpdf, lys_node_leaf, |
| 321 | lys_node_leaflist and lys_deviate */ |
| 322 | LYEXT_SUBSTMT_VALUE, /**< extension of the value statement, can appear in lys_type_enum */ |
| 323 | LYEXT_SUBSTMT_VERSION, /**< extension of the yang-version statement, can appear in lys_module and lys_submodule */ |
| 324 | LYEXT_SUBSTMT_MODIFIER, /**< extension of the modifier statement, can appear in lys_restr */ |
| 325 | LYEXT_SUBSTMT_REQINSTANCE, /**< extension of the require-instance statement, can appear in lys_type */ |
| 326 | LYEXT_SUBSTMT_YINELEM, /**< extension of the yin-element statement, can appear in lys_ext */ |
| 327 | LYEXT_SUBSTMT_CONFIG, /**< extension of the config statement, can appear in lys_node and lys_deviate */ |
| 328 | LYEXT_SUBSTMT_MANDATORY, /**< extension of the mandatory statement, can appear in lys_node_leaf, lys_node_choice, |
| 329 | lys_node_anydata and lys_deviate */ |
| 330 | LYEXT_SUBSTMT_ORDEREDBY, /**< extension of the ordered-by statement, can appear in lys_node_list and lys_node_leaflist */ |
| 331 | LYEXT_SUBSTMT_STATUS, /**< extension of the status statement, can appear in lys_tpdf, lys_node, lys_ident, |
| 332 | lys_ext, lys_feature, lys_type_enum and lys_type_bit */ |
| 333 | LYEXT_SUBSTMT_FRACDIGITS, /**< extension of the fraction-digits statement, can appear in lys_type */ |
| 334 | LYEXT_SUBSTMT_MAX, /**< extension of the max-elements statement, can appear in lys_node_list, |
| 335 | lys_node_leaflist and lys_deviate */ |
| 336 | LYEXT_SUBSTMT_MIN, /**< extension of the min-elements statement, can appear in lys_node_list, |
| 337 | lys_node_leaflist and lys_deviate */ |
| 338 | LYEXT_SUBSTMT_POSITION, /**< extension of the position statement, can appear in lys_type_bit */ |
| 339 | LYEXT_SUBSTMT_UNIQUE, /**< extension of the unique statement, can appear in lys_node_list and lys_deviate */ |
| 340 | LYEXT_SUBSTMT_IFFEATURE, /**< extension of the if-feature statement */ |
| 341 | } LYEXT_SUBSTMT; |
| 342 | |
| 343 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 344 | * @brief YANG import-stmt |
| 345 | */ |
| 346 | struct lysp_import { |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 347 | struct lys_module *module; /**< pointer to the imported module |
| 348 | (mandatory, but resolved when the referring module is completely parsed) */ |
| 349 | const char *name; /**< name of the imported module (mandatory) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 350 | const char *prefix; /**< prefix for the data from the imported schema (mandatory) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 351 | const char *dsc; /**< description */ |
| 352 | const char *ref; /**< reference */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 353 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 354 | char rev[LY_REV_SIZE]; /**< revision-date of the imported module */ |
| 355 | }; |
| 356 | |
| 357 | /** |
| 358 | * @brief YANG include-stmt |
| 359 | */ |
| 360 | struct lysp_include { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 361 | struct lysp_submodule *submodule;/**< pointer to the parsed submodule structure |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 362 | (mandatory, but resolved when the referring module is completely parsed) */ |
| 363 | const char *name; /**< name of the included submodule (mandatory) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 364 | const char *dsc; /**< description */ |
| 365 | const char *ref; /**< reference */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 366 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 367 | char rev[LY_REV_SIZE]; /**< revision-date of the included submodule */ |
| 368 | }; |
| 369 | |
| 370 | /** |
| 371 | * @brief YANG extension-stmt |
| 372 | */ |
| 373 | struct lysp_ext { |
| 374 | const char *name; /**< extension name */ |
| 375 | const char *argument; /**< argument name, NULL if not specified */ |
| 376 | const char *dsc; /**< description statement */ |
| 377 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 378 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 379 | uint16_t flags; /**< LYS_STATUS_* and LYS_YINELEM_* values (@ref snodeflags) */ |
Michal Vasko | 5fe75f1 | 2020-03-02 13:52:37 +0100 | [diff] [blame] | 380 | |
| 381 | struct lysc_ext *compiled; /**< pointer to the compiled extension definition */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 382 | }; |
| 383 | |
| 384 | /** |
| 385 | * @brief Helper structure for generic storage of the extension instances content. |
| 386 | */ |
| 387 | struct lysp_stmt { |
| 388 | const char *stmt; /**< identifier of the statement */ |
| 389 | const char *arg; /**< statement's argument */ |
| 390 | struct lysp_stmt *next; /**< link to the next statement */ |
Michal Vasko | bc2559f | 2018-09-07 10:17:50 +0200 | [diff] [blame] | 391 | struct lysp_stmt *child; /**< list of the statement's substatements (linked list) */ |
David Sedlák | b9d75c4 | 2019-08-14 10:49:42 +0200 | [diff] [blame] | 392 | uint16_t flags; /**< statement flags, can be set to LYS_YIN_ATTR */ |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 393 | enum ly_stmt kw; /**< numeric respresentation of the stmt value */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 394 | }; |
| 395 | |
David Sedlák | ae4b451 | 2019-08-14 10:45:56 +0200 | [diff] [blame] | 396 | #define LYS_YIN 0x1 /**< used to specify input format of extension instance */ |
| 397 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 398 | /** |
| 399 | * @brief YANG extension instance |
| 400 | */ |
| 401 | struct lysp_ext_instance { |
David Sedlák | bbd06ca | 2019-06-27 14:15:38 +0200 | [diff] [blame] | 402 | const char *name; /**< extension identifier, including possible prefix */ |
| 403 | const char *argument; /**< optional value of the extension's argument */ |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 404 | void *parent; /**< pointer to the parent element holding the extension instance(s), use |
| 405 | ::lysp_ext_instance#parent_type to access the schema element */ |
David Sedlák | bbd06ca | 2019-06-27 14:15:38 +0200 | [diff] [blame] | 406 | struct lysp_stmt *child; /**< list of the extension's substatements (linked list) */ |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 407 | struct lysc_ext_instance *compiled; /**< pointer to the compiled data if any - in case the source format is YIN, |
| 408 | some of the information (argument) are available only after compilation */ |
David Sedlák | bbd06ca | 2019-06-27 14:15:38 +0200 | [diff] [blame] | 409 | LYEXT_SUBSTMT insubstmt; /**< value identifying placement of the extension instance */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 410 | LY_ARRAY_SIZE_TYPE insubstmt_index; /**< in case the instance is in a substatement, this identifies |
David Sedlák | bbd06ca | 2019-06-27 14:15:38 +0200 | [diff] [blame] | 411 | the index of that substatement */ |
David Sedlák | ae4b451 | 2019-08-14 10:45:56 +0200 | [diff] [blame] | 412 | uint8_t yin; /** flag for YIN source format, can be set to LYS_YIN */ |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 413 | LYEXT_PARENT parent_type; /**< type of the parent structure */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 414 | }; |
| 415 | |
| 416 | /** |
| 417 | * @brief YANG feature-stmt |
| 418 | */ |
| 419 | struct lysp_feature { |
| 420 | const char *name; /**< feature name (mandatory) */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 421 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 422 | const char *dsc; /**< description statement */ |
| 423 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 424 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 425 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values allowed */ |
| 426 | }; |
| 427 | |
| 428 | /** |
| 429 | * @brief YANG identity-stmt |
| 430 | */ |
| 431 | struct lysp_ident { |
| 432 | const char *name; /**< identity name (mandatory), including possible prefix */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 433 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
| 434 | const char **bases; /**< list of base identifiers ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 435 | const char *dsc; /**< description statement */ |
| 436 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 437 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 438 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ values are allowed */ |
| 439 | }; |
| 440 | |
Michal Vasko | 71e64ca | 2018-09-07 16:30:29 +0200 | [diff] [blame] | 441 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 442 | * @brief Covers restrictions: range, length, pattern, must |
| 443 | */ |
| 444 | struct lysp_restr { |
| 445 | const char *arg; /**< The restriction expression/value (mandatory); |
| 446 | in case of pattern restriction, the first byte has a special meaning: |
| 447 | 0x06 (ACK) for regular match and 0x15 (NACK) for invert-match */ |
| 448 | const char *emsg; /**< error-message */ |
| 449 | const char *eapptag; /**< error-app-tag value */ |
| 450 | const char *dsc; /**< description */ |
| 451 | const char *ref; /**< reference */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 452 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 453 | }; |
| 454 | |
| 455 | /** |
Michal Vasko | 71e64ca | 2018-09-07 16:30:29 +0200 | [diff] [blame] | 456 | * @brief YANG revision-stmt |
| 457 | */ |
| 458 | struct lysp_revision { |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 459 | char date[LY_REV_SIZE]; /**< revision date (madatory) */ |
Michal Vasko | 71e64ca | 2018-09-07 16:30:29 +0200 | [diff] [blame] | 460 | const char *dsc; /**< description statement */ |
| 461 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 462 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Michal Vasko | 71e64ca | 2018-09-07 16:30:29 +0200 | [diff] [blame] | 463 | }; |
| 464 | |
| 465 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 466 | * @brief Enumeration/Bit value definition |
| 467 | */ |
| 468 | struct lysp_type_enum { |
| 469 | const char *name; /**< name (mandatory) */ |
| 470 | const char *dsc; /**< description statement */ |
| 471 | const char *ref; /**< reference statement */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 472 | int64_t value; /**< enum's value or bit's position */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 473 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 474 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 475 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ and LYS_SET_VALUE |
| 476 | values are allowed */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 477 | }; |
| 478 | |
| 479 | /** |
| 480 | * @brief YANG type-stmt |
| 481 | * |
| 482 | * Some of the items in the structure may be mandatory, but it is necessary to resolve the type's base type first |
| 483 | */ |
| 484 | struct lysp_type { |
| 485 | const char *name; /**< name of the type (mandatory) */ |
| 486 | struct lysp_restr *range; /**< allowed values range - numerical, decimal64 */ |
| 487 | struct lysp_restr *length; /**< allowed length of the value - string, binary */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 488 | struct lysp_restr *patterns; /**< list of patterns ([sized array](@ref sizedarrays)) - string */ |
| 489 | struct lysp_type_enum *enums; /**< list of enum-stmts ([sized array](@ref sizedarrays)) - enum */ |
| 490 | struct lysp_type_enum *bits; /**< list of bit-stmts ([sized array](@ref sizedarrays)) - bits */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 491 | const char *path; /**< path - leafref */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 492 | const char **bases; /**< list of base identifiers ([sized array](@ref sizedarrays)) - identityref */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 493 | struct lysp_type *types; /**< list of sub-types ([sized array](@ref sizedarrays)) - union */ |
| 494 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 495 | |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 496 | struct lysc_type *compiled; /**< pointer to the compiled type */ |
| 497 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 498 | uint8_t fraction_digits; /**< number of fraction digits - decimal64 */ |
| 499 | uint8_t require_instance; /**< require-instance flag - leafref, instance */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 500 | uint16_t flags; /**< [schema node flags](@ref spnodeflags) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 501 | }; |
| 502 | |
| 503 | /** |
| 504 | * @brief YANG typedef-stmt |
| 505 | */ |
| 506 | struct lysp_tpdf { |
| 507 | const char *name; /**< name of the newly defined type (mandatory) */ |
| 508 | const char *units; /**< units of the newly defined type */ |
| 509 | const char *dflt; /**< default value of the newly defined type */ |
| 510 | const char *dsc; /**< description statement */ |
| 511 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 512 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 513 | struct lysp_type type; /**< base type from which the typedef is derived (mandatory) */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 514 | uint16_t flags; /**< [schema node flags](@ref spnodeflags) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 515 | }; |
| 516 | |
| 517 | /** |
| 518 | * @brief YANG grouping-stmt |
| 519 | */ |
| 520 | struct lysp_grp { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 521 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level grouping) */ |
| 522 | uint16_t nodetype; /**< LYS_GROUPING */ |
| 523 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values are allowed */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 524 | const char *name; /**< grouping name (mandatory) */ |
| 525 | const char *dsc; /**< description statement */ |
| 526 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 527 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 528 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 529 | struct lysp_node *data; /**< list of data nodes (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 530 | struct lysp_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */ |
| 531 | struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
| 532 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 533 | }; |
| 534 | |
| 535 | /** |
| 536 | * @brief YANG when-stmt |
| 537 | */ |
| 538 | struct lysp_when { |
| 539 | const char *cond; /**< specified condition (mandatory) */ |
| 540 | const char *dsc; /**< description statement */ |
| 541 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 542 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 543 | }; |
| 544 | |
| 545 | /** |
| 546 | * @brief YANG refine-stmt |
| 547 | */ |
| 548 | struct lysp_refine { |
| 549 | const char *nodeid; /**< target descendant schema nodeid (mandatory) */ |
| 550 | const char *dsc; /**< description statement */ |
| 551 | const char *ref; /**< reference statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 552 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 553 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 554 | const char *presence; /**< presence description */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 555 | const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 556 | uint32_t min; /**< min-elements constraint */ |
| 557 | uint32_t max; /**< max-elements constraint, 0 means unbounded */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 558 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 559 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 560 | }; |
| 561 | |
| 562 | /** |
Michal Vasko | 82a8343 | 2019-11-14 12:33:04 +0100 | [diff] [blame] | 563 | * @brief YANG uses-augment-stmt and augment-stmt (compatible with struct lysp_node ) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 564 | */ |
| 565 | struct lysp_augment { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 566 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level augment) */ |
| 567 | uint16_t nodetype; /**< LYS_AUGMENT */ |
| 568 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values are allowed */ |
Michal Vasko | 82a8343 | 2019-11-14 12:33:04 +0100 | [diff] [blame] | 569 | struct lysp_node *child; /**< list of data nodes (linked list) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 570 | const char *nodeid; /**< target schema nodeid (mandatory) - absolute for global augments, descendant for uses's augments */ |
| 571 | const char *dsc; /**< description statement */ |
| 572 | const char *ref; /**< reference statement */ |
| 573 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 574 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Michal Vasko | 82a8343 | 2019-11-14 12:33:04 +0100 | [diff] [blame] | 575 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 576 | struct lysp_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */ |
| 577 | struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 578 | }; |
| 579 | |
| 580 | /** |
| 581 | * @defgroup deviatetypes Deviate types |
| 582 | * @{ |
| 583 | */ |
| 584 | #define LYS_DEV_NOT_SUPPORTED 1 /**< deviate type not-supported */ |
| 585 | #define LYS_DEV_ADD 2 /**< deviate type add */ |
| 586 | #define LYS_DEV_DELETE 3 /**< deviate type delete */ |
| 587 | #define LYS_DEV_REPLACE 4 /**< deviate type replace */ |
Radek Krejci | 2ff0d57 | 2020-05-21 15:27:28 +0200 | [diff] [blame] | 588 | /** @} deviatetypes */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 589 | |
| 590 | /** |
| 591 | * @brief Generic deviate structure to get type and cast to lysp_deviate_* structure |
| 592 | */ |
| 593 | struct lysp_deviate { |
| 594 | uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */ |
| 595 | struct lysp_deviate *next; /**< next deviate structure in the list */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 596 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 597 | }; |
| 598 | |
| 599 | struct lysp_deviate_add { |
| 600 | uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */ |
| 601 | struct lysp_deviate *next; /**< next deviate structure in the list */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 602 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 603 | const char *units; /**< units of the values */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 604 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 605 | const char **uniques; /**< list of uniques specifications ([sized array](@ref sizedarrays)) */ |
| 606 | const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 607 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 608 | uint32_t min; /**< min-elements constraint */ |
| 609 | uint32_t max; /**< max-elements constraint, 0 means unbounded */ |
| 610 | }; |
| 611 | |
| 612 | struct lysp_deviate_del { |
| 613 | uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */ |
| 614 | struct lysp_deviate *next; /**< next deviate structure in the list */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 615 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 616 | const char *units; /**< units of the values */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 617 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 618 | const char **uniques; /**< list of uniques specifications ([sized array](@ref sizedarrays)) */ |
| 619 | const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 620 | }; |
| 621 | |
| 622 | struct lysp_deviate_rpl { |
| 623 | uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */ |
| 624 | struct lysp_deviate *next; /**< next deviate structure in the list */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 625 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 626 | struct lysp_type *type; /**< type of the node */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 627 | const char *units; /**< units of the values */ |
| 628 | const char *dflt; /**< default value */ |
| 629 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 630 | uint32_t min; /**< min-elements constraint */ |
| 631 | uint32_t max; /**< max-elements constraint, 0 means unbounded */ |
| 632 | }; |
| 633 | |
| 634 | struct lysp_deviation { |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 635 | const char *nodeid; /**< target absolute schema nodeid (mandatory) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 636 | const char *dsc; /**< description statement */ |
| 637 | const char *ref; /**< reference statement */ |
| 638 | struct lysp_deviate* deviates; /**< list of deviate specifications (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 639 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 640 | }; |
| 641 | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 642 | /** |
| 643 | * @defgroup spnodeflags Parsed schema nodes flags |
| 644 | * @ingroup snodeflags |
| 645 | * |
| 646 | * Various flags for parsed schema nodes. |
| 647 | * |
| 648 | * 1 - container 6 - anydata/anyxml 11 - output 16 - grouping 21 - enum |
| 649 | * 2 - choice 7 - case 12 - feature 17 - uses 22 - type |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 650 | * 3 - leaf 8 - notification 13 - identity 18 - refine 23 - stmt |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 651 | * 4 - leaflist 9 - rpc 14 - extension 19 - augment |
| 652 | * 5 - list 10 - input 15 - typedef 20 - deviate |
| 653 | * |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 654 | * 1 1 1 1 1 1 1 1 1 1 2 2 2 2 |
| 655 | * 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 |
| 656 | * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 657 | * 1 LYS_CONFIG_W |x|x|x|x|x|x|x| | | | | | | | | | |x| |x| | | | |
| 658 | * LYS_SET_BASE | | | | | | | | | | | | | | | | | | | | | |x| | |
| 659 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 660 | * 2 LYS_CONFIG_R |x|x|x|x|x|x|x| | | | | | | | | | |x| |x| | | | |
| 661 | * LYS_SET_BIT | | | | | | | | | | | | | | | | | | | | | |x| | |
| 662 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 663 | * 3 LYS_STATUS_CURR |x|x|x|x|x|x|x|x|x| | |x|x|x|x|x|x| |x|x|x| | | |
| 664 | * LYS_SET_ENUM | | | | | | | | | | | | | | | | | | | | | |x| | |
| 665 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 666 | * 4 LYS_STATUS_DEPRC |x|x|x|x|x|x|x|x|x| | |x|x|x|x|x|x| |x|x|x| | | |
| 667 | * LYS_SET_FRDIGITS | | | | | | | | | | | | | | | | | | | | | |x| | |
| 668 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 669 | * 5 LYS_STATUS_OBSLT |x|x|x|x|x|x|x|x|x| | |x|x|x|x|x|x| |x|x|x| | | |
| 670 | * LYS_SET_LENGTH | | | | | | | | | | | | | | | | | | | | | |x| | |
| 671 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 672 | * 6 LYS_MAND_TRUE | |x|x| | |x| | | | | | | | | | | |x| |x| | | | |
| 673 | * LYS_SET_PATH | | | | | | | | | | | | | | | | | | | | | |x| | |
| 674 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 675 | * 7 LYS_MAND_FALSE | |x|x| | |x| | | | | | | | | | | |x| |x| | | | |
| 676 | * LYS_ORDBY_USER | | | |x|x| | | | | | | | | | | | | | | | | | | |
| 677 | * LYS_SET_PATTERN | | | | | | | | | | | | | | | | | | | | | |x| | |
| 678 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 679 | * 8 LYS_ORDBY_SYSTEM | | | |x|x| | | | | | | | | | | | | | | | | | | |
| 680 | * LYS_YINELEM_TRUE | | | | | | | | | | | | | |x| | | | | | | | | | |
| 681 | * LYS_SET_RANGE | | | | | | | | | | | | | | | | | | | | | |x| | |
| 682 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 683 | * 9 LYS_YINELEM_FALSE| | | | | | | | | | | | | |x| | | | | | | | | | |
| 684 | * LYS_SET_TYPE | | | | | | | | | | | | | | | | | | | | | |x| | |
| 685 | * LYS_SINGLEQUOTED | | | | | | | | | | | | | | | | | | | | | | |x| |
| 686 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 687 | * 10 LYS_SET_VALUE | | | | | | | | | | | | | | | | | | | | |x| | | |
| 688 | * LYS_SET_REQINST | | | | | | | | | | | | | | | | | | | | | |x| | |
| 689 | * LYS_SET_MIN | | | |x|x| | | | | | | | | | | | |x| |x| | | | |
| 690 | * LYS_DOUBLEQUOTED | | | | | | | | | | | | | | | | | | | | | | |x| |
| 691 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 692 | * 11 LYS_SET_MAX | | | |x|x| | | | | | | | | | | | |x| |x| | | | |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 693 | * LYS_USED_GRP | | | | | | | | | | | | | | | |x| | | | | | | | |
David Sedlák | ae4b451 | 2019-08-14 10:45:56 +0200 | [diff] [blame] | 694 | * LYS_YIN_ATTR | | | | | | | | | | | | | | | | | | | | | | |x| |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 695 | * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 696 | * 12 LYS_YIN_ARGUMENT | | | | | | | | | | | | | | | | | | | | | | |x| |
| 697 | * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 698 | * |
| 699 | */ |
| 700 | |
| 701 | /** |
| 702 | * @defgroup scnodeflags Compiled schema nodes flags |
| 703 | * @ingroup snodeflags |
| 704 | * |
| 705 | * Various flags for compiled schema nodes. |
| 706 | * |
Radek Krejci | 61e042e | 2019-09-10 15:53:09 +0200 | [diff] [blame] | 707 | * 1 - container 6 - anydata/anyxml 11 - identity |
| 708 | * 2 - choice 7 - case 12 - extension |
| 709 | * 3 - leaf 8 - notification 13 - bitenum |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 710 | * 4 - leaflist 9 - rpc/action 14 - when |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 711 | * 5 - list 10 - feature |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 712 | * |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 713 | * 1 1 1 1 1 |
| 714 | * bit name 1 2 3 4 5 6 7 8 9 0 1 2 3 4 |
| 715 | * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 716 | * 1 LYS_CONFIG_W |x|x|x|x|x|x|x| | | | | | | | |
| 717 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 718 | * 2 LYS_CONFIG_R |x|x|x|x|x|x|x| | | | | | | | |
| 719 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 720 | * 3 LYS_STATUS_CURR |x|x|x|x|x|x|x|x|x|x|x|x| |x| |
| 721 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 722 | * 4 LYS_STATUS_DEPRC |x|x|x|x|x|x|x|x|x|x|x|x| |x| |
| 723 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 724 | * 5 LYS_STATUS_OBSLT |x|x|x|x|x|x|x|x|x|x|x|x| |x| |
| 725 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 726 | * 6 LYS_MAND_TRUE |x|x|x|x|x|x| | | | | | | | | |
| 727 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 728 | * 7 LYS_ORDBY_USER | | | |x|x| | | | | | | | | | |
| 729 | * LYS_MAND_FALSE | |x|x| | |x| | | | | | | | | |
| 730 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 731 | * 8 LYS_ORDBY_SYSTEM | | | |x|x| | | | | | | | | | |
| 732 | * LYS_PRESENCE |x| | | | | | | | | | | | | | |
| 733 | * LYS_UNIQUE | | |x| | | | | | | | | | | | |
| 734 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 735 | * 9 LYS_KEY | | |x| | | | | | | | | | | | |
| 736 | * LYS_FENABLED | | | | | | | | | |x| | | | | |
| 737 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 738 | * 10 LYS_SET_DFLT | | |x|x| | |x| | | | | | | | |
| 739 | * LYS_ISENUM | | | | | | | | | | | | |x| | |
| 740 | * LYS_KEYLESS | | | | |x| | | | | | | | | | |
| 741 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 742 | * 11 LYS_SET_UNITS | | |x|x| | | | | | | | | | | |
| 743 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 744 | * 12 LYS_SET_CONFIG |x|x|x|x|x|x| | | | | | | | | |
| 745 | * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 746 | * |
| 747 | */ |
| 748 | |
| 749 | /** |
| 750 | * @defgroup snodeflags Schema nodes flags |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 751 | * @{ |
| 752 | */ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 753 | #define LYS_CONFIG_W 0x01 /**< config true; also set for input children nodes */ |
| 754 | #define LYS_CONFIG_R 0x02 /**< config false; also set for output and notification children nodes */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 755 | #define LYS_CONFIG_MASK 0x03 /**< mask for config value */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 756 | #define LYS_STATUS_CURR 0x04 /**< status current; */ |
| 757 | #define LYS_STATUS_DEPRC 0x08 /**< status deprecated; */ |
| 758 | #define LYS_STATUS_OBSLT 0x10 /**< status obsolete; */ |
| 759 | #define LYS_STATUS_MASK 0x1C /**< mask for status value */ |
| 760 | #define LYS_MAND_TRUE 0x20 /**< mandatory true; applicable only to ::lysp_node_choice/::lysc_node_choice, |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 761 | ::lysp_node_leaf/::lysc_node_leaf and ::lysp_node_anydata/::lysc_node_anydata. |
| 762 | The ::lysc_node_leaflist and ::lysc_node_leaflist have this flag in case that min-elements > 0. |
| 763 | The ::lysc_node_container has this flag if it is not a presence container and it has at least one |
| 764 | child with LYS_MAND_TRUE. */ |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 765 | #define LYS_MAND_FALSE 0x40 /**< mandatory false; applicable only to ::lysp_node_choice/::lysc_node_choice, |
| 766 | ::lysp_node_leaf/::lysc_node_leaf and ::lysp_node_anydata/::lysc_node_anydata. |
| 767 | This flag is present only in case the mandatory false statement was explicitly specified. */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 768 | #define LYS_MAND_MASK 0x60 /**< mask for mandatory values */ |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 769 | #define LYS_PRESENCE 0x80 /**< flag for presence property of a container, applicable only to ::lysc_node_container */ |
| 770 | #define LYS_UNIQUE 0x80 /**< flag for leafs being part of a unique set, applicable only to ::lysc_node_leaf */ |
| 771 | #define LYS_KEY 0x100 /**< flag for leafs being a key of a list, applicable only to ::lysc_node_leaf */ |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 772 | #define LYS_KEYLESS 0x200 /**< flag for list without any key, applicable only to ::lysc_node_list */ |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 773 | #define LYS_FENABLED 0x100 /**< feature enabled flag, applicable only to ::lysc_feature */ |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 774 | #define LYS_ORDBY_SYSTEM 0x80 /**< ordered-by user lists, applicable only to ::lysc_node_leaflist/::lysp_node_leaflist and |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 775 | ::lysc_node_list/::lysp_node_list */ |
| 776 | #define LYS_ORDBY_USER 0x40 /**< ordered-by user lists, applicable only to ::lysc_node_leaflist/::lysp_node_leaflist and |
| 777 | ::lysc_node_list/::lysp_node_list */ |
| 778 | #define LYS_ORDBY_MASK 0x60 /**< mask for ordered-by values */ |
| 779 | #define LYS_YINELEM_TRUE 0x80 /**< yin-element true for extension's argument */ |
| 780 | #define LYS_YINELEM_FALSE 0x100 /**< yin-element false for extension's argument */ |
| 781 | #define LYS_YINELEM_MASK 0x180 /**< mask for yin-element value */ |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 782 | #define LYS_USED_GRP 0x400 /**< internal flag for validating not-instantiated groupings |
| 783 | (resp. do not validate again the instantiated groupings). */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 784 | #define LYS_SET_VALUE 0x200 /**< value attribute is set */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 785 | #define LYS_SET_MIN 0x200 /**< min attribute is set */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 786 | #define LYS_SET_MAX 0x400 /**< max attribute is set */ |
Radek Krejci | d505e3d | 2018-11-13 09:04:17 +0100 | [diff] [blame] | 787 | |
| 788 | #define LYS_SET_BASE 0x0001 /**< type's flag for present base substatement */ |
| 789 | #define LYS_SET_BIT 0x0002 /**< type's flag for present bit substatement */ |
| 790 | #define LYS_SET_ENUM 0x0004 /**< type's flag for present enum substatement */ |
| 791 | #define LYS_SET_FRDIGITS 0x0008 /**< type's flag for present fraction-digits substatement */ |
| 792 | #define LYS_SET_LENGTH 0x0010 /**< type's flag for present length substatement */ |
| 793 | #define LYS_SET_PATH 0x0020 /**< type's flag for present path substatement */ |
| 794 | #define LYS_SET_PATTERN 0x0040 /**< type's flag for present pattern substatement */ |
| 795 | #define LYS_SET_RANGE 0x0080 /**< type's flag for present range substatement */ |
| 796 | #define LYS_SET_TYPE 0x0100 /**< type's flag for present type substatement */ |
| 797 | #define LYS_SET_REQINST 0x0200 /**< type's flag for present require-instance substatement */ |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 798 | #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 Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 799 | cases of choice. This information is important for refines, since it is prohibited to make leafs |
| 800 | with default statement mandatory. In case the default leaf value is taken from type, it is thrown |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 801 | away when it is refined to be mandatory node. Similarly it is used for deviations to distinguish |
| 802 | between own default or the default values taken from the type. */ |
| 803 | #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 Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 804 | #define LYS_SET_CONFIG 0x0800 /**< flag to know if the config property was set explicitly (flag set) or it is inherited. */ |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 805 | |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 806 | #define LYS_SINGLEQUOTED 0x100 /**< flag for single-quoted argument of an extension instance's substatement, only when the source is YANG */ |
| 807 | #define LYS_DOUBLEQUOTED 0x200 /**< flag for double-quoted argument of an extension instance's substatement, only when the source is YANG */ |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 808 | |
Radek Krejci | f56e2a4 | 2019-09-09 14:15:25 +0200 | [diff] [blame] | 809 | #define LYS_YIN_ATTR 0x400 /**< flag to identify YIN attribute parsed as extension's substatement, only when the source is YIN */ |
| 810 | #define LYS_YIN_ARGUMENT 0x800 /**< flag to identify statement representing extension's argument, only when the source is YIN */ |
David Sedlák | bbd06ca | 2019-06-27 14:15:38 +0200 | [diff] [blame] | 811 | |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 812 | #define LYS_ISENUM 0x200 /**< flag to simply distinguish type in struct lysc_type_bitenum_item */ |
| 813 | |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 814 | #define LYS_FLAGS_COMPILED_MASK 0xff /**< mask for flags that maps to the compiled structures */ |
Radek Krejci | 2ff0d57 | 2020-05-21 15:27:28 +0200 | [diff] [blame] | 815 | /** @} snodeflags */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 816 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 817 | /** |
| 818 | * @brief Generic YANG data node |
| 819 | */ |
| 820 | struct lysp_node { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 821 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 822 | uint16_t nodetype; /**< type of the node (mandatory) */ |
| 823 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 824 | struct lysp_node *next; /**< next sibling node (NULL if there is no one) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 825 | const char *name; /**< node name (mandatory) */ |
| 826 | const char *dsc; /**< description statement */ |
| 827 | const char *ref; /**< reference statement */ |
| 828 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 829 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 830 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 831 | }; |
| 832 | |
| 833 | /** |
| 834 | * @brief Extension structure of the lysp_node for YANG container |
| 835 | */ |
| 836 | struct lysp_node_container { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 837 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 838 | uint16_t nodetype; /**< LYS_CONTAINER */ |
| 839 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 840 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 841 | const char *name; /**< node name (mandatory) */ |
| 842 | const char *dsc; /**< description statement */ |
| 843 | const char *ref; /**< reference statement */ |
| 844 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 845 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 846 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 847 | |
| 848 | /* container */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 849 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 850 | const char *presence; /**< presence description */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 851 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 852 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 853 | struct lysp_node *child; /**< list of data nodes (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 854 | struct lysp_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */ |
| 855 | struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 856 | }; |
| 857 | |
| 858 | struct lysp_node_leaf { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 859 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 860 | uint16_t nodetype; /**< LYS_LEAF */ |
| 861 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 862 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 863 | const char *name; /**< node name (mandatory) */ |
| 864 | const char *dsc; /**< description statement */ |
| 865 | const char *ref; /**< reference statement */ |
| 866 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 867 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 868 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 869 | |
| 870 | /* leaf */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 871 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 872 | struct lysp_type type; /**< type of the leaf node (mandatory) */ |
| 873 | const char *units; /**< units of the leaf's type */ |
| 874 | const char *dflt; /**< default value */ |
| 875 | }; |
| 876 | |
| 877 | struct lysp_node_leaflist { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 878 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 879 | uint16_t nodetype; /**< LYS_LEAFLIST */ |
| 880 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 881 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 882 | const char *name; /**< node name (mandatory) */ |
| 883 | const char *dsc; /**< description statement */ |
| 884 | const char *ref; /**< reference statement */ |
| 885 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 886 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 887 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 888 | |
| 889 | /* leaf-list */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 890 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 891 | struct lysp_type type; /**< type of the leaf node (mandatory) */ |
| 892 | const char *units; /**< units of the leaf's type */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 893 | const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 894 | uint32_t min; /**< min-elements constraint */ |
| 895 | uint32_t max; /**< max-elements constraint, 0 means unbounded */ |
| 896 | }; |
| 897 | |
| 898 | struct lysp_node_list { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 899 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 900 | uint16_t nodetype; /**< LYS_LIST */ |
| 901 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 902 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 903 | const char *name; /**< node name (mandatory) */ |
| 904 | const char *dsc; /**< description statement */ |
| 905 | const char *ref; /**< reference statement */ |
| 906 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 907 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 908 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 909 | |
| 910 | /* list */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 911 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 912 | const char *key; /**< keys specification */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 913 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 914 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 915 | struct lysp_node *child; /**< list of data nodes (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 916 | struct lysp_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */ |
| 917 | struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 918 | const char **uniques; /**< list of unique specifications ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 919 | uint32_t min; /**< min-elements constraint */ |
| 920 | uint32_t max; /**< max-elements constraint, 0 means unbounded */ |
| 921 | }; |
| 922 | |
| 923 | struct lysp_node_choice { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 924 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 925 | uint16_t nodetype; /**< LYS_CHOICE */ |
| 926 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 927 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 928 | const char *name; /**< node name (mandatory) */ |
| 929 | const char *dsc; /**< description statement */ |
| 930 | const char *ref; /**< reference statement */ |
| 931 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 932 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 933 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 934 | |
| 935 | /* choice */ |
| 936 | struct lysp_node *child; /**< list of data nodes (linked list) */ |
| 937 | const char* dflt; /**< default case */ |
| 938 | }; |
| 939 | |
| 940 | struct lysp_node_case { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 941 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 942 | uint16_t nodetype; /**< LYS_CASE */ |
| 943 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 944 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 945 | const char *name; /**< node name (mandatory) */ |
| 946 | const char *dsc; /**< description statement */ |
| 947 | const char *ref; /**< reference statement */ |
| 948 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 949 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 950 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 951 | |
| 952 | /* case */ |
| 953 | struct lysp_node *child; /**< list of data nodes (linked list) */ |
| 954 | }; |
| 955 | |
| 956 | struct lysp_node_anydata { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 957 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 958 | uint16_t nodetype; /**< LYS_ANYXML || LYS_ANYDATA */ |
| 959 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 960 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 961 | const char *name; /**< node name (mandatory) */ |
| 962 | const char *dsc; /**< description statement */ |
| 963 | const char *ref; /**< reference statement */ |
| 964 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 965 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 966 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 967 | |
| 968 | /* anyxml/anydata */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 969 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 970 | }; |
| 971 | |
| 972 | struct lysp_node_uses { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 973 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 974 | uint16_t nodetype; /**< LYS_USES */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 975 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 976 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 977 | const char *name; /**< grouping name reference (mandatory) */ |
| 978 | const char *dsc; /**< description statement */ |
| 979 | const char *ref; /**< reference statement */ |
| 980 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 981 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 982 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 983 | |
| 984 | /* uses */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 985 | struct lysp_refine *refines; /**< list of uses's refines ([sized array](@ref sizedarrays)) */ |
| 986 | struct lysp_augment *augments; /**< list of uses's augment ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 987 | }; |
| 988 | |
| 989 | /** |
| 990 | * @brief YANG input-stmt and output-stmt |
| 991 | */ |
| 992 | struct lysp_action_inout { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 993 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
| 994 | uint16_t nodetype; /**< LYS_INOUT */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 995 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 996 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 997 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 998 | struct lysp_node *data; /**< list of data nodes (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 999 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1000 | }; |
| 1001 | |
| 1002 | /** |
| 1003 | * @brief YANG rpc-stmt and action-stmt |
| 1004 | */ |
| 1005 | struct lysp_action { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 1006 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 1007 | uint16_t nodetype; /**< LYS_RPC or LYS_ACTION */ |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 1008 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1009 | const char *name; /**< grouping name reference (mandatory) */ |
| 1010 | const char *dsc; /**< description statement */ |
| 1011 | const char *ref; /**< reference statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1012 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1013 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 1014 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1015 | struct lysp_action_inout input; /**< RPC's/Action's input */ |
| 1016 | struct lysp_action_inout output; /**< RPC's/Action's output */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1017 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1018 | }; |
| 1019 | |
| 1020 | /** |
| 1021 | * @brief YANG notification-stmt |
| 1022 | */ |
| 1023 | struct lysp_notif { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 1024 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
| 1025 | uint16_t nodetype; /**< LYS_NOTIF */ |
| 1026 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values are allowed */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1027 | const char *name; /**< grouping name reference (mandatory) */ |
| 1028 | const char *dsc; /**< description statement */ |
| 1029 | const char *ref; /**< reference statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1030 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1031 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1032 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 1033 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1034 | struct lysp_node *data; /**< list of data nodes (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1035 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1036 | }; |
| 1037 | |
| 1038 | /** |
Radek Krejci | f0fceb6 | 2018-09-05 14:58:45 +0200 | [diff] [blame] | 1039 | * @brief supported YANG schema version values |
| 1040 | */ |
| 1041 | typedef enum LYS_VERSION { |
| 1042 | LYS_VERSION_UNDEF = 0, /**< no specific version, YANG 1.0 as default */ |
| 1043 | LYS_VERSION_1_0 = 1, /**< YANG 1.0 */ |
| 1044 | LYS_VERSION_1_1 = 2 /**< YANG 1.1 */ |
| 1045 | } LYS_VERSION; |
| 1046 | |
| 1047 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1048 | * @brief Printable YANG schema tree structure representing YANG module. |
| 1049 | * |
| 1050 | * Simple structure corresponding to the YANG format. The schema is only syntactically validated. |
| 1051 | */ |
| 1052 | struct lysp_module { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1053 | struct lys_module *mod; /**< covering module structure */ |
| 1054 | |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 1055 | struct lysp_revision *revs; /**< list of the module revisions ([sized array](@ref sizedarrays)), the first revision |
| 1056 | in the list is always the last (newest) revision of the module */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1057 | struct lysp_import *imports; /**< list of imported modules ([sized array](@ref sizedarrays)) */ |
| 1058 | struct lysp_include *includes; /**< list of included submodules ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1059 | struct lysp_ext *extensions; /**< list of extension statements ([sized array](@ref sizedarrays)) */ |
| 1060 | struct lysp_feature *features; /**< list of feature definitions ([sized array](@ref sizedarrays)) */ |
| 1061 | struct lysp_ident *identities; /**< list of identities ([sized array](@ref sizedarrays)) */ |
| 1062 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 1063 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1064 | struct lysp_node *data; /**< list of module's top-level data nodes (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1065 | struct lysp_augment *augments; /**< list of augments ([sized array](@ref sizedarrays)) */ |
| 1066 | struct lysp_action *rpcs; /**< list of RPCs ([sized array](@ref sizedarrays)) */ |
| 1067 | struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
| 1068 | struct lysp_deviation *deviations; /**< list of deviations ([sized array](@ref sizedarrays)) */ |
| 1069 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1070 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1071 | uint8_t parsing:1; /**< flag for circular check */ |
| 1072 | }; |
| 1073 | |
| 1074 | struct lysp_submodule { |
| 1075 | const char *belongsto; /**< belongs to parent module (submodule - mandatory) */ |
| 1076 | |
| 1077 | struct lysp_revision *revs; /**< list of the module revisions ([sized array](@ref sizedarrays)), the first revision |
| 1078 | in the list is always the last (newest) revision of the module */ |
| 1079 | struct lysp_import *imports; /**< list of imported modules ([sized array](@ref sizedarrays)) */ |
| 1080 | struct lysp_include *includes; /**< list of included submodules ([sized array](@ref sizedarrays)) */ |
| 1081 | struct lysp_ext *extensions; /**< list of extension statements ([sized array](@ref sizedarrays)) */ |
| 1082 | struct lysp_feature *features; /**< list of feature definitions ([sized array](@ref sizedarrays)) */ |
| 1083 | struct lysp_ident *identities; /**< list of identities ([sized array](@ref sizedarrays)) */ |
| 1084 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 1085 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
| 1086 | struct lysp_node *data; /**< list of module's top-level data nodes (linked list) */ |
| 1087 | struct lysp_augment *augments; /**< list of augments ([sized array](@ref sizedarrays)) */ |
| 1088 | struct lysp_action *rpcs; /**< list of RPCs ([sized array](@ref sizedarrays)) */ |
| 1089 | struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
| 1090 | struct lysp_deviation *deviations; /**< list of deviations ([sized array](@ref sizedarrays)) */ |
| 1091 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1092 | |
| 1093 | uint8_t parsing:1; /**< flag for circular check */ |
| 1094 | |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 1095 | uint8_t latest_revision:2; /**< flag to mark the latest available revision: |
| 1096 | 1 - the latest revision in searchdirs was not searched yet and this is the |
| 1097 | latest revision in the current context |
| 1098 | 2 - searchdirs were searched and this is the latest available revision */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1099 | const char *name; /**< name of the module (mandatory) */ |
| 1100 | const char *filepath; /**< path, if the schema was read from a file, NULL in case of reading from memory */ |
| 1101 | const char *prefix; /**< submodule belongsto prefix of main module (mandatory) */ |
| 1102 | const char *org; /**< party/company responsible for the module */ |
| 1103 | const char *contact; /**< contact information for the module */ |
| 1104 | const char *dsc; /**< description of the module */ |
| 1105 | const char *ref; /**< cross-reference for the module */ |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 1106 | uint8_t version; /**< yang-version (LYS_VERSION values) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1107 | }; |
| 1108 | |
| 1109 | /** |
Radek Krejci | 3f5e3db | 2018-10-11 15:57:47 +0200 | [diff] [blame] | 1110 | * @brief Free the printable YANG schema tree structure. |
| 1111 | * |
| 1112 | * @param[in] module Printable YANG schema tree structure to free. |
| 1113 | */ |
| 1114 | void lysp_module_free(struct lysp_module *module); |
| 1115 | |
| 1116 | /** |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 1117 | * @brief Compiled YANG extension-stmt |
| 1118 | */ |
| 1119 | struct lysc_ext { |
| 1120 | const char *name; /**< extension name */ |
| 1121 | const char *argument; /**< argument name, NULL if not specified */ |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 1122 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1123 | struct lyext_plugin *plugin; /**< Plugin implementing the specific extension */ |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 1124 | struct lys_module *module; /**< module structure */ |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 1125 | uint32_t refcount; /**< reference counter since extension definition is shared among all its instances */ |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 1126 | uint16_t flags; /**< LYS_STATUS_* value (@ref snodeflags) */ |
| 1127 | }; |
| 1128 | |
| 1129 | /** |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1130 | * @brief YANG extension instance |
| 1131 | */ |
| 1132 | struct lysc_ext_instance { |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 1133 | uint32_t insubstmt_index; /**< in case the instance is in a substatement that can appear multiple times, |
| 1134 | this identifies the index of the substatement for this extension instance */ |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 1135 | struct lys_module *module; /**< module where the extension instantiated is defined */ |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 1136 | struct lysc_ext *def; /**< pointer to the extension definition */ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1137 | void *parent; /**< pointer to the parent element holding the extension instance(s), use |
| 1138 | ::lysc_ext_instance#parent_type to access the schema element */ |
| 1139 | const char *argument; /**< optional value of the extension's argument */ |
| 1140 | LYEXT_SUBSTMT insubstmt; /**< value identifying placement of the extension instance */ |
Radek Krejci | 2a408df | 2018-10-29 16:32:26 +0100 | [diff] [blame] | 1141 | LYEXT_PARENT parent_type; /**< type of the parent structure */ |
Radek Krejci | 2a408df | 2018-10-29 16:32:26 +0100 | [diff] [blame] | 1142 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 1143 | void *data; /**< private plugins's data, not used by libyang */ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1144 | }; |
| 1145 | |
| 1146 | /** |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1147 | * @brief Compiled YANG if-feature-stmt |
| 1148 | */ |
| 1149 | struct lysc_iffeature { |
| 1150 | uint8_t *expr; /**< 2bits array describing the if-feature expression in prefix format, see @ref ifftokens */ |
| 1151 | struct lysc_feature **features; /**< array of pointers to the features used in expression ([sized array](@ref sizedarrays)) */ |
| 1152 | }; |
| 1153 | |
| 1154 | /** |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1155 | * @brief YANG import-stmt |
| 1156 | */ |
| 1157 | struct lysc_import { |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 1158 | struct lys_module *module; /**< link to the imported module */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1159 | const char *prefix; /**< prefix for the data from the imported schema (mandatory) */ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1160 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1161 | }; |
| 1162 | |
| 1163 | /** |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1164 | * @brief YANG when-stmt |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1165 | */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1166 | struct lysc_when { |
Radek Krejci | a0f704a | 2019-09-09 16:12:23 +0200 | [diff] [blame] | 1167 | struct lys_module *module; /**< module where the must was defined */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1168 | struct lyxp_expr *cond; /**< XPath when condition */ |
Michal Vasko | 175012e | 2019-11-06 15:49:14 +0100 | [diff] [blame] | 1169 | struct lysc_node *context; /**< context node for evaluating the expression, NULL if the context is root node */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1170 | const char *dsc; /**< description */ |
| 1171 | const char *ref; /**< reference */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1172 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 1173 | uint32_t refcount; /**< reference counter since some of the when statements are shared among several nodes */ |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 1174 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS is allowed */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1175 | }; |
| 1176 | |
| 1177 | /** |
Radek Krejci | 2a408df | 2018-10-29 16:32:26 +0100 | [diff] [blame] | 1178 | * @brief YANG identity-stmt |
| 1179 | */ |
| 1180 | struct lysc_ident { |
| 1181 | const char *name; /**< identity name (mandatory), including possible prefix */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1182 | const char *dsc; /**< description */ |
| 1183 | const char *ref; /**< reference */ |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 1184 | struct lys_module *module; /**< module structure */ |
Radek Krejci | 2a408df | 2018-10-29 16:32:26 +0100 | [diff] [blame] | 1185 | struct lysc_ident **derived; /**< list of (pointers to the) derived identities ([sized array](@ref sizedarrays)) */ |
| 1186 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1187 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 2a408df | 2018-10-29 16:32:26 +0100 | [diff] [blame] | 1188 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ values are allowed */ |
| 1189 | }; |
| 1190 | |
| 1191 | /** |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1192 | * @brief YANG feature-stmt |
| 1193 | */ |
| 1194 | struct lysc_feature { |
| 1195 | const char *name; /**< feature name (mandatory) */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1196 | const char *dsc; /**< description */ |
| 1197 | const char *ref; /**< reference */ |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 1198 | struct lys_module *module; /**< module structure */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1199 | struct lysc_feature **depfeatures;/**< list of pointers to other features depending on this one ([sized array](@ref sizedarrays)) */ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1200 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1201 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1202 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* and |
| 1203 | #LYS_FENABLED values allowed */ |
| 1204 | }; |
| 1205 | |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1206 | /** |
| 1207 | * @defgroup ifftokens if-feature expression tokens |
| 1208 | * Tokens of if-feature expression used in ::lysc_iffeature#expr |
| 1209 | * |
| 1210 | * @{ |
| 1211 | */ |
| 1212 | #define LYS_IFF_NOT 0x00 /**< operand "not" */ |
| 1213 | #define LYS_IFF_AND 0x01 /**< operand "and" */ |
| 1214 | #define LYS_IFF_OR 0x02 /**< operand "or" */ |
| 1215 | #define LYS_IFF_F 0x03 /**< feature */ |
Radek Krejci | 2ff0d57 | 2020-05-21 15:27:28 +0200 | [diff] [blame] | 1216 | /** @} ifftokens */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1217 | |
| 1218 | /** |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 1219 | * @brief Compiled YANG revision statement |
| 1220 | */ |
| 1221 | struct lysc_revision { |
| 1222 | char date[LY_REV_SIZE]; /**< revision-date (mandatory) */ |
| 1223 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1224 | }; |
| 1225 | |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1226 | struct lysc_range { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1227 | struct lysc_range_part { |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 1228 | union { /**< min boundary */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1229 | int64_t min_64; /**< for int8, int16, int32, int64 and decimal64 ( >= LY_TYPE_DEC64) */ |
| 1230 | uint64_t min_u64; /**< for uint8, uint16, uint32, uint64, string and binary ( < LY_TYPE_DEC64) */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1231 | }; |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 1232 | union { /**< max boundary */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1233 | int64_t max_64; /**< for int8, int16, int32, int64 and decimal64 ( >= LY_TYPE_DEC64) */ |
| 1234 | uint64_t max_u64; /**< for uint8, uint16, uint32, uint64, string and binary ( < LY_TYPE_DEC64) */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1235 | }; |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1236 | } *parts; /**< compiled range expression ([sized array](@ref sizedarrays)) */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1237 | const char *dsc; /**< description */ |
| 1238 | const char *ref; /**< reference */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1239 | const char *emsg; /**< error-message */ |
| 1240 | const char *eapptag; /**< error-app-tag value */ |
| 1241 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1242 | }; |
| 1243 | |
| 1244 | struct lysc_pattern { |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 1245 | const char *expr; /**< original, not compiled, regular expression */ |
| 1246 | pcre2_code *code; /**< compiled regular expression */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1247 | const char *dsc; /**< description */ |
| 1248 | const char *ref; /**< reference */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1249 | const char *emsg; /**< error-message */ |
| 1250 | const char *eapptag; /**< error-app-tag value */ |
| 1251 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 4586a02 | 2018-11-13 11:29:26 +0100 | [diff] [blame] | 1252 | uint32_t inverted:1; /**< invert-match flag */ |
| 1253 | uint32_t refcount:31; /**< reference counter */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1254 | }; |
| 1255 | |
| 1256 | struct lysc_must { |
| 1257 | struct lys_module *module; /**< module where the must was defined */ |
| 1258 | struct lyxp_expr *cond; /**< XPath when condition */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1259 | const char *dsc; /**< description */ |
| 1260 | const char *ref; /**< reference */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1261 | const char *emsg; /**< error-message */ |
| 1262 | const char *eapptag; /**< error-app-tag value */ |
| 1263 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1264 | }; |
| 1265 | |
| 1266 | struct lysc_type { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1267 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 1268 | struct lyd_value *dflt; /**< type's default value if any */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1269 | struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1270 | 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 Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1271 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1272 | uint32_t refcount; /**< reference counter for type sharing */ |
| 1273 | }; |
| 1274 | |
| 1275 | struct lysc_type_num { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1276 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 1277 | struct lyd_value *dflt; /**< type's default value if any */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1278 | struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1279 | 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 Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1280 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1281 | uint32_t refcount; /**< reference counter for type sharing */ |
| 1282 | struct lysc_range *range; /**< Optional range limitation */ |
| 1283 | }; |
| 1284 | |
| 1285 | struct lysc_type_dec { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1286 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 1287 | struct lyd_value *dflt; /**< type's default value if any */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1288 | struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1289 | 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 Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1290 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1291 | uint32_t refcount; /**< reference counter for type sharing */ |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1292 | uint8_t fraction_digits; /**< fraction digits specification */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1293 | struct lysc_range *range; /**< Optional range limitation */ |
| 1294 | }; |
| 1295 | |
| 1296 | struct lysc_type_str { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1297 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 1298 | struct lyd_value *dflt; /**< type's default value if any */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1299 | struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1300 | 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 Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1301 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1302 | uint32_t refcount; /**< reference counter for type sharing */ |
| 1303 | struct lysc_range *length; /**< Optional length limitation */ |
Radek Krejci | 4586a02 | 2018-11-13 11:29:26 +0100 | [diff] [blame] | 1304 | struct lysc_pattern **patterns; /**< Optional list of pointers to pattern limitations ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1305 | }; |
| 1306 | |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 1307 | struct lysc_type_bitenum_item { |
| 1308 | const char *name; /**< enumeration identifier */ |
| 1309 | const char *dsc; /**< description */ |
| 1310 | const char *ref; /**< reference */ |
| 1311 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1312 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
| 1313 | union { |
| 1314 | int32_t value; /**< integer value associated with the enumeration */ |
| 1315 | uint32_t position; /**< non-negative integer value associated with the bit */ |
| 1316 | }; |
| 1317 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ and LYS_SET_VALUE |
| 1318 | values are allowed */ |
| 1319 | }; |
| 1320 | |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1321 | struct lysc_type_enum { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1322 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1323 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1324 | struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1325 | 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 Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1326 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1327 | uint32_t refcount; /**< reference counter for type sharing */ |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 1328 | struct lysc_type_bitenum_item *enums; /**< enumerations list ([sized array](@ref sizedarrays)), mandatory (at least 1 item) */ |
| 1329 | }; |
| 1330 | |
| 1331 | struct lysc_type_bits { |
| 1332 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1333 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1334 | struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1335 | 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 Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 1336 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1337 | uint32_t refcount; /**< reference counter for type sharing */ |
Radek Krejci | 849a62a | 2019-05-22 15:29:05 +0200 | [diff] [blame] | 1338 | struct lysc_type_bitenum_item *bits; /**< bits list ([sized array](@ref sizedarrays)), mandatory (at least 1 item), |
| 1339 | the items are ordered by their position value. */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1340 | }; |
| 1341 | |
| 1342 | struct lysc_type_leafref { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1343 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1344 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1345 | struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1346 | 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 Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1347 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1348 | uint32_t refcount; /**< reference counter for type sharing */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1349 | const char *path; /**< target path */ |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 1350 | struct lys_module *path_context; /**< module where the path is defined, so it provides context to resolve prefixes */ |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 1351 | struct lysc_type *realtype; /**< pointer to the real (first non-leafref in possible leafrefs chain) type. */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1352 | uint8_t require_instance; /**< require-instance flag */ |
| 1353 | }; |
| 1354 | |
| 1355 | struct lysc_type_identityref { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1356 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1357 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1358 | struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1359 | 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 Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1360 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1361 | uint32_t refcount; /**< reference counter for type sharing */ |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1362 | struct lysc_ident **bases; /**< list of pointers to the base identities ([sized array](@ref sizedarrays)), |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1363 | mandatory (at least 1 item) */ |
| 1364 | }; |
| 1365 | |
| 1366 | struct lysc_type_instanceid { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1367 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1368 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1369 | struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1370 | 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 Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1371 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1372 | uint32_t refcount; /**< reference counter for type sharing */ |
| 1373 | uint8_t require_instance; /**< require-instance flag */ |
| 1374 | }; |
| 1375 | |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1376 | struct lysc_type_union { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1377 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1378 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1379 | struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1380 | 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 Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1381 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1382 | uint32_t refcount; /**< reference counter for type sharing */ |
| 1383 | struct lysc_type **types; /**< list of types in the union ([sized array](@ref sizedarrays)), mandatory (at least 1 item) */ |
| 1384 | }; |
| 1385 | |
| 1386 | struct lysc_type_bin { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1387 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1388 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1389 | struct lys_module *dflt_mod; /**< module where the lysc_type::dflt value was defined (needed to correctly map prefixes). */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1390 | 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 Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1391 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1392 | uint32_t refcount; /**< reference counter for type sharing */ |
| 1393 | struct lysc_range *length; /**< Optional length limitation */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1394 | }; |
| 1395 | |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1396 | struct lysc_action_inout { |
| 1397 | struct lysc_node *data; /**< first child node (linked list) */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1398 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1399 | }; |
| 1400 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1401 | struct lysc_action { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 1402 | uint16_t nodetype; /**< LYS_RPC or LYS_ACTION */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1403 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1404 | struct lys_module *module; /**< module structure */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1405 | 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. */ |
| 1406 | struct lysc_node *parent; /**< parent node (NULL in case of top level node - RPC) */ |
| 1407 | |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1408 | struct lysc_ext_instance *input_exts; /**< list of the extension instances of input ([sized array](@ref sizedarrays)) */ |
| 1409 | struct lysc_ext_instance *output_exts; /**< list of the extension instances of outpu ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1410 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1411 | const char *name; /**< action/RPC name (mandatory) */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1412 | const char *dsc; /**< description */ |
| 1413 | const char *ref; /**< reference */ |
| 1414 | |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1415 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1416 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
| 1417 | |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1418 | struct lysc_action_inout input; /**< RPC's/action's input */ |
| 1419 | struct lysc_action_inout output; /**< RPC's/action's output */ |
| 1420 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1421 | }; |
| 1422 | |
| 1423 | struct lysc_notif { |
| 1424 | uint16_t nodetype; /**< LYS_NOTIF */ |
| 1425 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1426 | struct lys_module *module; /**< module structure */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1427 | 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 Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1428 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1429 | |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1430 | struct lysc_node *data; /**< first child node (linked list) */ |
| 1431 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1432 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1433 | const char *name; /**< Notification name (mandatory) */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1434 | const char *dsc; /**< description */ |
| 1435 | const char *ref; /**< reference */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1436 | |
| 1437 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1438 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1439 | }; |
| 1440 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1441 | /** |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 1442 | * @brief Compiled YANG data node |
| 1443 | */ |
| 1444 | struct lysc_node { |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1445 | uint16_t nodetype; /**< type of the node (mandatory) */ |
| 1446 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1447 | struct lys_module *module; /**< module structure */ |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1448 | struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or |
| 1449 | in case of implicit case node. */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1450 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1451 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1452 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1453 | never NULL. If there is no sibling node, pointer points to the node |
| 1454 | itself. In case of the first node, this pointer points to the last |
| 1455 | node in the list. */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1456 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1457 | const char *dsc; /**< description */ |
| 1458 | const char *ref; /**< reference */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1459 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1460 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1461 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1462 | }; |
| 1463 | |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1464 | struct lysc_node_container { |
| 1465 | uint16_t nodetype; /**< LYS_CONTAINER */ |
| 1466 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1467 | struct lys_module *module; /**< module structure */ |
| 1468 | 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. */ |
| 1469 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1470 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1471 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1472 | never NULL. If there is no sibling node, pointer points to the node |
| 1473 | itself. In case of the first node, this pointer points to the last |
| 1474 | node in the list. */ |
| 1475 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1476 | const char *dsc; /**< description */ |
| 1477 | const char *ref; /**< reference */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1478 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1479 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1480 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1481 | |
| 1482 | struct lysc_node *child; /**< first child node (linked list) */ |
| 1483 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1484 | struct lysc_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */ |
| 1485 | struct lysc_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1486 | }; |
| 1487 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1488 | struct lysc_node_case { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1489 | uint16_t nodetype; /**< LYS_CASE */ |
| 1490 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1491 | struct lys_module *module; /**< module structure */ |
| 1492 | 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. */ |
| 1493 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1494 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1495 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1496 | never NULL. If there is no sibling node, pointer points to the node |
| 1497 | itself. In case of the first node, this pointer points to the last |
| 1498 | node in the list. */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1499 | const char *name; /**< name of the case, including the implicit case */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1500 | const char *dsc; /**< description */ |
| 1501 | const char *ref; /**< reference */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1502 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1503 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1504 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1505 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1506 | 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 Krejci | fe13da4 | 2019-02-15 14:51:01 +0100 | [diff] [blame] | 1507 | each other as siblings with the parent pointer pointing to appropriate case node. */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1508 | }; |
| 1509 | |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1510 | struct lysc_node_choice { |
| 1511 | uint16_t nodetype; /**< LYS_CHOICE */ |
| 1512 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1513 | struct lys_module *module; /**< module structure */ |
| 1514 | 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. */ |
| 1515 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1516 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1517 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1518 | never NULL. If there is no sibling node, pointer points to the node |
| 1519 | itself. In case of the first node, this pointer points to the last |
| 1520 | node in the list. */ |
| 1521 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1522 | const char *dsc; /**< description */ |
| 1523 | const char *ref; /**< reference */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1524 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1525 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1526 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1527 | |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 1528 | struct lysc_node_case *cases; /**< list of the cases (linked list). Note that all the children of all the cases are linked each other |
| 1529 | as siblings. Their parent pointers points to the specific case they belongs to, so distinguish the |
| 1530 | case is simple. */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1531 | struct lysc_node_case *dflt; /**< default case of the choice, only a pointer into the cases array. */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1532 | }; |
| 1533 | |
| 1534 | struct lysc_node_leaf { |
| 1535 | uint16_t nodetype; /**< LYS_LEAF */ |
| 1536 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1537 | struct lys_module *module; /**< module structure */ |
| 1538 | 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. */ |
| 1539 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1540 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1541 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1542 | never NULL. If there is no sibling node, pointer points to the node |
| 1543 | itself. In case of the first node, this pointer points to the last |
| 1544 | node in the list. */ |
| 1545 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1546 | const char *dsc; /**< description */ |
| 1547 | const char *ref; /**< reference */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1548 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1549 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1550 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1551 | |
| 1552 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1553 | struct lysc_type *type; /**< type of the leaf node (mandatory) */ |
Radek Krejci | b57cf1e | 2018-11-23 14:07:05 +0100 | [diff] [blame] | 1554 | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1555 | const char *units; /**< units of the leaf's type */ |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 1556 | struct lyd_value *dflt; /**< default value */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1557 | struct lys_module *dflt_mod; /**< module where the lysc_node_leaf::dflt value was defined (needed to correctly map prefixes). */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1558 | }; |
| 1559 | |
| 1560 | struct lysc_node_leaflist { |
| 1561 | uint16_t nodetype; /**< LYS_LEAFLIST */ |
| 1562 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1563 | struct lys_module *module; /**< module structure */ |
| 1564 | 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. */ |
| 1565 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1566 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1567 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1568 | never NULL. If there is no sibling node, pointer points to the node |
| 1569 | itself. In case of the first node, this pointer points to the last |
| 1570 | node in the list. */ |
| 1571 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1572 | const char *dsc; /**< description */ |
| 1573 | const char *ref; /**< reference */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1574 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | b57cf1e | 2018-11-23 14:07:05 +0100 | [diff] [blame] | 1575 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1576 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | b57cf1e | 2018-11-23 14:07:05 +0100 | [diff] [blame] | 1577 | |
| 1578 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1579 | struct lysc_type *type; /**< type of the leaf node (mandatory) */ |
| 1580 | |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1581 | const char *units; /**< units of the leaf's type */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1582 | struct lyd_value **dflts; /**< list ([sized array](@ref sizedarrays)) of default values */ |
| 1583 | struct lys_module **dflts_mods; /**< list ([sized array](@ref sizedarrays)) of modules where the lysc_node_leaflist::dflts values were defined |
| 1584 | (needed to correctly map prefixes). */ |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1585 | uint32_t min; /**< min-elements constraint */ |
| 1586 | uint32_t max; /**< max-elements constraint */ |
| 1587 | |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1588 | }; |
| 1589 | |
| 1590 | struct lysc_node_list { |
| 1591 | uint16_t nodetype; /**< LYS_LIST */ |
| 1592 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1593 | struct lys_module *module; /**< module structure */ |
| 1594 | 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. */ |
| 1595 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1596 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1597 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1598 | never NULL. If there is no sibling node, pointer points to the node |
| 1599 | itself. In case of the first node, this pointer points to the last |
| 1600 | node in the list. */ |
| 1601 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1602 | const char *dsc; /**< description */ |
| 1603 | const char *ref; /**< reference */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1604 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1605 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1606 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1607 | |
| 1608 | struct lysc_node *child; /**< first child node (linked list) */ |
| 1609 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1610 | struct lysc_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */ |
| 1611 | struct lysc_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
| 1612 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1613 | struct lysc_node_leaf ***uniques; /**< list of sized arrays of pointers to the unique nodes ([sized array](@ref sizedarrays)) */ |
| 1614 | uint32_t min; /**< min-elements constraint */ |
| 1615 | uint32_t max; /**< max-elements constraint */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1616 | }; |
| 1617 | |
| 1618 | struct lysc_node_anydata { |
| 1619 | uint16_t nodetype; /**< LYS_ANYXML or LYS_ANYDATA */ |
| 1620 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1621 | struct lys_module *module; /**< module structure */ |
| 1622 | 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. */ |
| 1623 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1624 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1625 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1626 | never NULL. If there is no sibling node, pointer points to the node |
| 1627 | itself. In case of the first node, this pointer points to the last |
| 1628 | node in the list. */ |
| 1629 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1630 | const char *dsc; /**< description */ |
| 1631 | const char *ref; /**< reference */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1632 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1633 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1634 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 1635 | |
| 1636 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1637 | }; |
| 1638 | |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1639 | /** |
| 1640 | * @brief Compiled YANG schema tree structure representing YANG module. |
| 1641 | * |
| 1642 | * Semantically validated YANG schema tree for data tree parsing. |
| 1643 | * Contains only the necessary information for the data validation. |
| 1644 | */ |
| 1645 | struct lysc_module { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1646 | struct lys_module *mod; /**< covering module structure */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1647 | struct lysc_import *imports; /**< list of imported modules ([sized array](@ref sizedarrays)) */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1648 | |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1649 | struct lysc_feature *features; /**< list of feature definitions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 2a408df | 2018-10-29 16:32:26 +0100 | [diff] [blame] | 1650 | struct lysc_ident *identities; /**< list of identities ([sized array](@ref sizedarrays)) */ |
| 1651 | struct lysc_node *data; /**< list of module's top-level data nodes (linked list) */ |
| 1652 | struct lysc_action *rpcs; /**< list of RPCs ([sized array](@ref sizedarrays)) */ |
| 1653 | struct lysc_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1654 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 1655 | }; |
| 1656 | |
| 1657 | /** |
Radek Krejci | 53ea615 | 2018-12-13 15:21:15 +0100 | [diff] [blame] | 1658 | * @brief Get the groupings sized array of the given (parsed) schema node. |
| 1659 | * Decides the node's type and in case it has a groupings array, returns it. |
| 1660 | * @param[in] node Node to examine. |
| 1661 | * @return The node's groupings sized array if any, NULL otherwise. |
| 1662 | */ |
| 1663 | const struct lysp_grp *lysp_node_groupings(const struct lysp_node *node); |
| 1664 | |
| 1665 | /** |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1666 | * @brief Get the typedefs sized array of the given (parsed) schema node. |
| 1667 | * Decides the node's type and in case it has a typedefs array, returns it. |
| 1668 | * @param[in] node Node to examine. |
| 1669 | * @return The node's typedefs sized array if any, NULL otherwise. |
| 1670 | */ |
| 1671 | const struct lysp_tpdf *lysp_node_typedefs(const struct lysp_node *node); |
| 1672 | |
| 1673 | /** |
| 1674 | * @brief Get the actions/RPCs sized array of the given (parsed) schema node. |
| 1675 | * Decides the node's type and in case it has a actions/RPCs array, returns it. |
| 1676 | * @param[in] node Node to examine. |
| 1677 | * @return The node's actions/RPCs sized array if any, NULL otherwise. |
| 1678 | */ |
| 1679 | const struct lysp_action *lysp_node_actions(const struct lysp_node *node); |
| 1680 | |
| 1681 | /** |
| 1682 | * @brief Get the Notifications sized array of the given (parsed) schema node. |
| 1683 | * Decides the node's type and in case it has a Notifications array, returns it. |
| 1684 | * @param[in] node Node to examine. |
| 1685 | * @return The node's Notifications sized array if any, NULL otherwise. |
| 1686 | */ |
| 1687 | const struct lysp_notif *lysp_node_notifs(const struct lysp_node *node); |
| 1688 | |
| 1689 | /** |
| 1690 | * @brief Get the children linked list of the given (parsed) schema node. |
| 1691 | * Decides the node's type and in case it has a children list, returns it. |
| 1692 | * @param[in] node Node to examine. |
| 1693 | * @return The node's children linked list if any, NULL otherwise. |
| 1694 | */ |
| 1695 | const struct lysp_node *lysp_node_children(const struct lysp_node *node); |
| 1696 | |
| 1697 | /** |
| 1698 | * @brief Get the actions/RPCs sized array of the given (compiled) schema node. |
| 1699 | * Decides the node's type and in case it has a actions/RPCs array, returns it. |
| 1700 | * @param[in] node Node to examine. |
| 1701 | * @return The node's actions/RPCs sized array if any, NULL otherwise. |
| 1702 | */ |
| 1703 | const struct lysc_action *lysc_node_actions(const struct lysc_node *node); |
| 1704 | |
| 1705 | /** |
| 1706 | * @brief Get the Notifications sized array of the given (compiled) schema node. |
| 1707 | * Decides the node's type and in case it has a Notifications array, returns it. |
| 1708 | * @param[in] node Node to examine. |
| 1709 | * @return The node's Notifications sized array if any, NULL otherwise. |
| 1710 | */ |
| 1711 | const struct lysc_notif *lysc_node_notifs(const struct lysc_node *node); |
| 1712 | |
| 1713 | /** |
| 1714 | * @brief Get the children linked list of the given (compiled) schema node. |
| 1715 | * Decides the node's type and in case it has a children list, returns it. |
| 1716 | * @param[in] node Node to examine. |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1717 | * @param[in] flags Config flag to distinguish input (LYS_CONFIG_W) and output (LYS_CONFIG_R) data in case of RPC/action node. |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1718 | * @return The node's children linked list if any, NULL otherwise. |
| 1719 | */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1720 | const struct lysc_node *lysc_node_children(const struct lysc_node *node, uint16_t flags); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1721 | |
| 1722 | /** |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1723 | * @brief Get how the if-feature statement currently evaluates. |
| 1724 | * |
| 1725 | * @param[in] iff Compiled if-feature statement to evaluate. |
| 1726 | * @return If the statement evaluates to true, 1 is returned. 0 is returned when the statement evaluates to false. |
| 1727 | */ |
| 1728 | int lysc_iffeature_value(const struct lysc_iffeature *iff); |
| 1729 | |
| 1730 | /** |
| 1731 | * @brief Get the current status of the provided feature. |
| 1732 | * |
| 1733 | * @param[in] feature Compiled feature statement to examine. |
| 1734 | * @return |
| 1735 | * - 1 if feature is enabled, |
| 1736 | * - 0 if feature is disabled, |
| 1737 | * - -1 in case of error (invalid argument) |
| 1738 | */ |
| 1739 | int lysc_feature_value(const struct lysc_feature *feature); |
| 1740 | |
| 1741 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1742 | * @brief Types of the different schema paths. |
| 1743 | */ |
| 1744 | typedef enum { |
| 1745 | LYSC_PATH_LOG /**< Descriptive path format used in log messages */ |
| 1746 | } LYSC_PATH_TYPE; |
| 1747 | |
| 1748 | /** |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1749 | * @brief Generate path of the given node in the requested format. |
| 1750 | * |
| 1751 | * @param[in] node Schema path of this node will be generated. |
| 1752 | * @param[in] pathtype Format of the path to generate. |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 1753 | * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path. |
| 1754 | * If NULL, memory for the complete path is allocated. |
| 1755 | * @param[in] buflen Size of the provided @p buffer. |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1756 | * @return NULL in case of memory allocation error, path of the node otherwise. |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 1757 | * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it. |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1758 | */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1759 | char *lysc_path(const struct lysc_node *node, LYSC_PATH_TYPE pathtype, char *buffer, size_t buflen); |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 1760 | |
| 1761 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1762 | * @brief Available YANG schema tree structures representing YANG module. |
| 1763 | */ |
| 1764 | struct lys_module { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1765 | struct ly_ctx *ctx; /**< libyang context of the module (mandatory) */ |
| 1766 | const char *name; /**< name of the module (mandatory) */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1767 | const char *revision; /**< revision of the module (if present) */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1768 | const char *ns; /**< namespace of the module (module - mandatory) */ |
| 1769 | const char *prefix; /**< module prefix or submodule belongsto prefix of main module (mandatory) */ |
| 1770 | const char *filepath; /**< path, if the schema was read from a file, NULL in case of reading from memory */ |
| 1771 | const char *org; /**< party/company responsible for the module */ |
| 1772 | const char *contact; /**< contact information for the module */ |
| 1773 | const char *dsc; /**< description of the module */ |
| 1774 | const char *ref; /**< cross-reference for the module */ |
| 1775 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1776 | struct lysp_module *parsed; /**< Simply parsed (unresolved) YANG schema tree */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1777 | struct lysc_module *compiled; /**< Compiled and fully validated YANG schema tree for data parsing. |
| 1778 | Available only for implemented modules. */ |
| 1779 | struct lysc_feature *off_features;/**< List of pre-compiled features of the module in non implemented modules ([sized array](@ref sizedarrays)). |
| 1780 | These features are always disabled and cannot be enabled until the module |
| 1781 | become implemented. The features are present in this form to allow their linkage |
| 1782 | from if-feature statements of the compiled schemas and their proper use in case |
| 1783 | the module became implemented in future (no matter if implicitly via augment/deviate |
| 1784 | or explicitly via ly_ctx_module_implement()). */ |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1785 | uint8_t implemented; /**< flag if the module is implemented, not just imported. The module is implemented if |
| 1786 | the flag has non-zero value. Specific values are used internally: |
| 1787 | 1 - implemented module |
| 1788 | 2 - recently implemented module by dependency, it can be reverted in rollback procedure */ |
| 1789 | uint8_t latest_revision; /**< flag to mark the latest available revision: |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1790 | 1 - the latest revision in searchdirs was not searched yet and this is the |
| 1791 | latest revision in the current context |
| 1792 | 2 - searchdirs were searched and this is the latest available revision */ |
| 1793 | uint8_t version; /**< yang-version (LYS_VERSION values) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1794 | }; |
| 1795 | |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1796 | /** |
| 1797 | * @brief Enable specified feature in the module |
| 1798 | * |
| 1799 | * By default, when the module is loaded by libyang parser, all features are disabled. |
| 1800 | * |
Radek Krejci | ca3db00 | 2018-11-01 10:31:01 +0100 | [diff] [blame] | 1801 | * If all features are being enabled, it must be possible respecting their if-feature conditions. For example, |
| 1802 | * enabling all features on the following feature set will fail since it is not possible to enable both features |
| 1803 | * (and it is unclear which of them should be enabled then). In this case the LY_EDENIED is returned and the feature |
| 1804 | * is untouched. |
| 1805 | * |
| 1806 | * feature f1; |
| 1807 | * feature f2 { if-feature 'not f1';} |
| 1808 | * |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1809 | * @param[in] module Module where the feature will be enabled. |
| 1810 | * @param[in] feature Name of the feature to enable. To enable all features at once, use asterisk (`*`) character. |
| 1811 | * @return LY_ERR value. |
| 1812 | */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1813 | LY_ERR lys_feature_enable(const struct lys_module *module, const char *feature); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1814 | |
| 1815 | /** |
| 1816 | * @brief Disable specified feature in the module |
| 1817 | * |
| 1818 | * By default, when the module is loaded by libyang parser, all features are disabled. |
| 1819 | * |
| 1820 | * @param[in] module Module where the feature will be disabled. |
| 1821 | * @param[in] feature Name of the feature to disable. To disable all features at once, use asterisk (`*`) character. |
| 1822 | * @return LY_ERR value |
| 1823 | */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1824 | LY_ERR lys_feature_disable(const struct lys_module *module, const char *feature); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1825 | |
| 1826 | /** |
| 1827 | * @brief Get the current status of the specified feature in the module. |
| 1828 | * |
| 1829 | * @param[in] module Module where the feature is defined. |
| 1830 | * @param[in] feature Name of the feature to inspect. |
| 1831 | * @return |
| 1832 | * - 1 if feature is enabled, |
| 1833 | * - 0 if feature is disabled, |
| 1834 | * - -1 in case of error (e.g. feature is not defined or invalid arguments) |
| 1835 | */ |
| 1836 | int lys_feature_value(const struct lys_module *module, const char *feature); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1837 | |
| 1838 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1839 | * @brief Load a schema into the specified context. |
| 1840 | * |
| 1841 | * @param[in] ctx libyang context where to process the data model. |
| 1842 | * @param[in] data The string containing the dumped data model in the specified |
| 1843 | * format. |
| 1844 | * @param[in] format Format of the input data (YANG or YIN). |
| 1845 | * @return Pointer to the data model structure or NULL on error. |
| 1846 | */ |
Radek Krejci | d14e969 | 2018-11-01 11:00:37 +0100 | [diff] [blame] | 1847 | struct lys_module *lys_parse_mem(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1848 | |
| 1849 | /** |
| 1850 | * @brief Read a schema from file descriptor into the specified context. |
| 1851 | * |
| 1852 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 1853 | * |
| 1854 | * @param[in] ctx libyang context where to process the data model. |
| 1855 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 1856 | * in the specified format. |
| 1857 | * @param[in] format Format of the input data (YANG or YIN). |
| 1858 | * @return Pointer to the data model structure or NULL on error. |
| 1859 | */ |
Radek Krejci | d14e969 | 2018-11-01 11:00:37 +0100 | [diff] [blame] | 1860 | struct lys_module *lys_parse_fd(struct ly_ctx *ctx, int fd, LYS_INFORMAT format); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1861 | |
| 1862 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1863 | * @brief Read a schema into the specified context from a file. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1864 | * |
| 1865 | * @param[in] ctx libyang context where to process the data model. |
| 1866 | * @param[in] path Path to the file with the model in the specified format. |
| 1867 | * @param[in] format Format of the input data (YANG or YIN). |
| 1868 | * @return Pointer to the data model structure or NULL on error. |
| 1869 | */ |
Radek Krejci | d14e969 | 2018-11-01 11:00:37 +0100 | [diff] [blame] | 1870 | struct lys_module *lys_parse_path(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1871 | |
| 1872 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1873 | * @brief Search for the schema file in the specified searchpaths. |
| 1874 | * |
| 1875 | * @param[in] searchpaths NULL-terminated array of paths to be searched (recursively). Current working |
| 1876 | * directory is searched automatically (but non-recursively if not in the provided list). Caller can use |
| 1877 | * result of the ly_ctx_get_searchdirs(). |
| 1878 | * @param[in] cwd Flag to implicitly search also in the current working directory (non-recursively). |
| 1879 | * @param[in] name Name of the schema to find. |
| 1880 | * @param[in] revision Revision of the schema to find. If NULL, the newest found schema filepath is returned. |
| 1881 | * @param[out] localfile Mandatory output variable containing absolute path of the found schema. If no schema |
| 1882 | * complying the provided restriction is found, NULL is set. |
| 1883 | * @param[out] format Optional output variable containing expected format of the schema document according to the |
| 1884 | * file suffix. |
| 1885 | * @return LY_ERR value (LY_SUCCESS is returned even if the file is not found, then the *localfile is NULL). |
| 1886 | */ |
| 1887 | LY_ERR lys_search_localfile(const char * const *searchpaths, int cwd, const char *name, const char *revision, char **localfile, LYS_INFORMAT *format); |
| 1888 | |
| 1889 | /** |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1890 | * @brief Get next schema tree (sibling) node element that can be instantiated in a data tree. Returned node can |
| 1891 | * be from an augment. |
| 1892 | * |
| 1893 | * lys_getnext() is supposed to be called sequentially. In the first call, the \p last parameter is usually NULL |
| 1894 | * and function starts returning i) the first \p parent's child or ii) the first top level element of the \p module. |
| 1895 | * Consequent calls suppose to provide the previously returned node as the \p last parameter and still the same |
| 1896 | * \p parent and \p module parameters. |
| 1897 | * |
| 1898 | * Without options, the function is used to traverse only the schema nodes that can be paired with corresponding |
| 1899 | * data nodes in a data tree. By setting some \p options the behavior can be modified to the extent that |
| 1900 | * all the schema nodes are iteratively returned. |
| 1901 | * |
| 1902 | * @param[in] last Previously returned schema tree node, or NULL in case of the first call. |
| 1903 | * @param[in] parent Parent of the subtree where the function starts processing. |
| 1904 | * @param[in] module In case of iterating on top level elements, the \p parent is NULL and |
| 1905 | * module must be specified. |
| 1906 | * @param[in] options [ORed options](@ref sgetnextflags). |
| 1907 | * @return Next schema tree node that can be instantiated in a data tree, NULL in case there is no such element. |
| 1908 | */ |
| 1909 | const struct lysc_node *lys_getnext(const struct lysc_node *last, const struct lysc_node *parent, |
| 1910 | const struct lysc_module *module, int options); |
| 1911 | |
| 1912 | /** |
| 1913 | * @defgroup sgetnextflags lys_getnext() flags |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1914 | * @{ |
| 1915 | */ |
| 1916 | #define LYS_GETNEXT_WITHCHOICE 0x01 /**< lys_getnext() option to allow returning #LYS_CHOICE nodes instead of looking into them */ |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1917 | #define LYS_GETNEXT_NOCHOICE 0x02 /**< lys_getnext() option to ignore (kind of conditional) nodes within choice node */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1918 | #define LYS_GETNEXT_WITHCASE 0x04 /**< lys_getnext() option to allow returning #LYS_CASE nodes instead of looking into them */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1919 | #define LYS_GETNEXT_INTONPCONT 0x40 /**< lys_getnext() option to look into non-presence container, instead of returning container itself */ |
| 1920 | #define LYS_GETNEXT_NOSTATECHECK 0x100 /**< lys_getnext() option to skip checking module validity (import-only, disabled) and |
| 1921 | relevant if-feature conditions state */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1922 | #define LYS_GETNEXT_OUTPUT 0x200 /**< lys_getnext() option to provide RPC's/action's output schema nodes instead of input schema nodes |
| 1923 | provided by default */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1924 | /** @} sgetnextflags */ |
| 1925 | |
| 1926 | /** |
| 1927 | * @brief Get child node according to the specified criteria. |
| 1928 | * |
| 1929 | * @param[in] parent Optional parent of the node to find. If not specified, the module's top-level nodes are searched. |
| 1930 | * @param[in] module module of the node to find. It is also limitation for the children node of the given parent. |
| 1931 | * @param[in] name Name of the node to find. |
| 1932 | * @param[in] name_len Optional length of the name in case it is not NULL-terminated string. |
| 1933 | * @param[in] nodetype Optional criteria (to speedup) specifying nodetype(s) of the node to find. |
| 1934 | * Used as a bitmask, so multiple nodetypes can be specified. |
| 1935 | * @param[in] options [ORed options](@ref sgetnextflags). |
| 1936 | * @return Found node if any. |
| 1937 | */ |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 1938 | const struct lysc_node *lys_find_child(const struct lysc_node *parent, const struct lys_module *module, |
| 1939 | const char *name, size_t name_len, uint16_t nodetype, int options); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1940 | |
| 1941 | /** |
Radek Krejci | 09e8d0a | 2019-11-17 12:14:15 +0800 | [diff] [blame] | 1942 | * @brief Get schema node specified by the schema path. |
| 1943 | * |
| 1944 | * In case the @p qpath uses prefixes (from imports or of the schema itself), the @p context_node must be specified |
| 1945 | * even if the path is absolute. In case the @p context_node is not provided, the names of the schemas are expected as the |
| 1946 | * node's prefixes in the @qpath. It also means that the relative paths are accepted only with the schema prefixes, |
| 1947 | * not the full names. |
| 1948 | * |
| 1949 | * @param[in] ctx libyang context for logging and getting the correct schema if @p contet_node not provided. |
| 1950 | * @param[in] context_node Context node for relative paths and/or as a source of the context module to resolve node's |
| 1951 | * prefixes in @qpath. |
| 1952 | * @param[in] qpath Schema path to be resolved. Not prefixed nodes inherits the prefix from its parent nodes. It means |
| 1953 | * that the first node in the path must be prefixed. Both, import prefixes as well as full schema names are accepted as |
| 1954 | * prefixes according to the @p context_node parameter presence. |
| 1955 | * @return NULL in case of invalid path. |
| 1956 | * @return found schema node. |
| 1957 | */ |
| 1958 | const struct lysc_node *lys_find_node(struct ly_ctx *ctx, const struct lysc_node *context_node, const char *qpath); |
| 1959 | |
| 1960 | /** |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 1961 | * @brief Make the specific module implemented. |
| 1962 | * |
| 1963 | * @param[in] mod Module to make implemented. It is not an error |
| 1964 | * to provide already implemented module, it just does nothing. |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 1965 | * @return LY_SUCCESS on success. |
| 1966 | * @return LY_EDENIED in case the context contains some other revision of the same module which is already implemented. |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 1967 | */ |
| 1968 | LY_ERR lys_set_implemented(struct lys_module *mod); |
| 1969 | |
| 1970 | /** |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1971 | * @brief Check if the schema node is disabled in the schema tree, i.e. there is any disabled if-feature statement |
| 1972 | * affecting the node. |
| 1973 | * |
| 1974 | * @param[in] node Schema node to check. |
| 1975 | * @param[in] recursive - 0 to check if-feature only in the \p node schema node, |
| 1976 | * - 1 to check if-feature in all ascendant schema nodes until there is a node possibly having an instance in a data tree |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 1977 | * @return NULL if enabled, |
Michal Vasko | c193ce9 | 2020-03-06 11:04:48 +0100 | [diff] [blame] | 1978 | * @return pointer to the node with the unsatisfied (disabled) if-feature expression. |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1979 | */ |
Michal Vasko | c193ce9 | 2020-03-06 11:04:48 +0100 | [diff] [blame] | 1980 | const struct lysc_node *lysc_node_is_disabled(const struct lysc_node *node, int recursive); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1981 | |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 1982 | /** |
| 1983 | * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value. |
| 1984 | * |
| 1985 | * This function check just the type's restriction, if you want to check also the data tree context (e.g. in case of |
| 1986 | * require-instance restriction), use lyd_value_validate(). |
| 1987 | * |
| 1988 | * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL) |
| 1989 | * @param[in] node Schema node for the @p value. |
| 1990 | * @param[in] value String value to be checked. |
| 1991 | * @param[in] value_len Length of the given @p value (mandatory). |
| 1992 | * @param[in] get_prefix Callback function to resolve prefixes used in the @p value string. |
| 1993 | * @param[in] get_prefix_data Private data for the @p get_prefix callback. |
| 1994 | * @param[in] format Input format of the @p value. |
| 1995 | * @return LY_SUCCESS on success |
| 1996 | * @return LY_ERR value if an error occurred. |
| 1997 | */ |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 1998 | LY_ERR lys_value_validate(const struct ly_ctx *ctx, const struct lysc_node *node, const char *value, size_t value_len, |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 1999 | ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format); |
| 2000 | |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 2001 | /** |
| 2002 | * @brief Stringify schema nodetype. |
| 2003 | * @param[in] nodetype Nodetype to stringify. |
| 2004 | * @return Constant string with the name of the node's type. |
| 2005 | */ |
| 2006 | const char *lys_nodetype2str(uint16_t nodetype); |
| 2007 | |
Radek Krejci | 2ff0d57 | 2020-05-21 15:27:28 +0200 | [diff] [blame] | 2008 | /** @} schematree */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 2009 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 2010 | #ifdef __cplusplus |
| 2011 | } |
| 2012 | #endif |
| 2013 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 2014 | #endif /* LY_TREE_SCHEMA_H_ */ |