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