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