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 | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 18 | #include <pcre.h> |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 19 | #include <stdint.h> |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame^] | 20 | #include <stdio.h> |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 21 | |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 22 | #include "extensions.h" |
| 23 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 24 | #ifdef __cplusplus |
| 25 | extern "C" { |
| 26 | #endif |
| 27 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 28 | /** |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 29 | * @brief XPath representation. |
| 30 | */ |
| 31 | struct lyxp_expr; |
| 32 | |
| 33 | /** |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 34 | * @brief Macro selector for other LY_ARRAY_* macros, do not use directly! |
| 35 | */ |
| 36 | #define LY_ARRAY_SELECT(_1, _2, NAME, ...) NAME |
| 37 | |
| 38 | /** |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 39 | * @brief Helper macro to go through sized-arrays with a pointer iterator. |
| 40 | * |
| 41 | * Use with opening curly bracket (`{`). |
| 42 | * |
| 43 | * @param[in] ARRAY Array to go through |
| 44 | * @param[in] TYPE Type of the records in the ARRAY |
| 45 | * @param[out] ITER Iterating pointer to the item being processed in each loop |
| 46 | */ |
| 47 | #define LY_ARRAY_FOR_ITER(ARRAY, TYPE, ITER) \ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 48 | for (ITER = ARRAY; \ |
| 49 | (ARRAY) && ((void*)ITER - (void*)ARRAY)/(sizeof(TYPE)) < (*((uint32_t*)(ARRAY) - 1)); \ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 50 | ITER = (void*)((TYPE*)ITER + 1)) |
| 51 | |
| 52 | /** |
| 53 | * @brief Helper macro to go through sized-arrays with a numeric iterator. |
| 54 | * |
| 55 | * Use with opening curly bracket (`{`). |
| 56 | * |
| 57 | * To access an item with the INDEX value, use always LY_ARRAY_INDEX macro! |
| 58 | * |
| 59 | * @param[in] ARRAY Array to go through |
| 60 | * @param[out] INDEX Iterating index of the item being processed in each loop |
| 61 | */ |
| 62 | #define LY_ARRAY_FOR_INDEX(ARRAY, INDEX) \ |
| 63 | for (INDEX = 0; \ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 64 | ARRAY && INDEX < (*((uint32_t*)(ARRAY) - 1)); \ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 65 | ++INDEX) |
| 66 | |
| 67 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 68 | * @defgroup schematree Schema Tree |
| 69 | * @{ |
| 70 | * |
| 71 | * Data structures and functions to manipulate and access schema tree. |
| 72 | */ |
| 73 | |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 74 | /** |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 75 | * @brief Get a number of records in the ARRAY. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 76 | * |
| 77 | * Does not check if array exists! |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 78 | */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 79 | #define LY_ARRAY_SIZE(ARRAY) (*((uint32_t*)(ARRAY) - 1)) |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 80 | |
| 81 | /** |
| 82 | * @brief Sized-array iterator (for-loop). |
| 83 | * |
| 84 | * Use with opening curly bracket (`{`). |
| 85 | * |
| 86 | * There are 2 variants: |
| 87 | * |
| 88 | * LY_ARRAY_FOR(ARRAY, TYPE, ITER) |
| 89 | * |
| 90 | * Where ARRAY is a sized-array to go through, TYPE is the type of the items in the ARRAY and ITER is a pointer variable |
| 91 | * providing the items of the ARRAY in the loops. This functionality is provided by LY_ARRAY_FOR_ITER macro |
| 92 | * |
| 93 | * LY_ARRAY_FOR(ARRAY, INDEX) |
| 94 | * |
| 95 | * The ARRAY is again a sized-array to go through, the INDEX is a variable (unsigned integer) for storing iterating ARRAY's index |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 96 | * to access the items of ARRAY in the loops. This functionality is provided by LY_ARRAY_FOR_INDEX macro. |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 97 | */ |
| 98 | #define LY_ARRAY_FOR(ARRAY, ...) LY_ARRAY_SELECT(__VA_ARGS__, LY_ARRAY_FOR_ITER, LY_ARRAY_FOR_INDEX)(ARRAY, __VA_ARGS__) |
Radek Krejci | 5fac359 | 2018-10-12 15:23:45 +0200 | [diff] [blame] | 99 | |
| 100 | /** |
| 101 | * @brief Macro to iterate via all sibling elements without affecting the list itself |
| 102 | * |
| 103 | * Works for all types of nodes despite it is data or schema tree, but all the |
| 104 | * parameters must be pointers to the same type. |
| 105 | * |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 106 | * Use with opening curly bracket (`{`). All parameters must be of the same type. |
Radek Krejci | 5fac359 | 2018-10-12 15:23:45 +0200 | [diff] [blame] | 107 | * |
| 108 | * @param START Pointer to the starting element. |
| 109 | * @param ELEM Iterator. |
| 110 | */ |
| 111 | #define LY_LIST_FOR(START, ELEM) \ |
| 112 | for ((ELEM) = (START); \ |
| 113 | (ELEM); \ |
| 114 | (ELEM) = (ELEM)->next) |
| 115 | |
| 116 | /** |
Radek Krejci | 5fac359 | 2018-10-12 15:23:45 +0200 | [diff] [blame] | 117 | * @brief Macro to iterate via all sibling elements allowing to modify the list itself (e.g. removing elements) |
| 118 | * |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 119 | * Use with opening curly bracket (`{`). All parameters must be of the same type. |
Radek Krejci | 5fac359 | 2018-10-12 15:23:45 +0200 | [diff] [blame] | 120 | * |
| 121 | * @param START Pointer to the starting element. |
| 122 | * @param NEXT Temporary storage to allow removing of the current iterator content. |
| 123 | * @param ELEM Iterator. |
| 124 | */ |
| 125 | #define LY_LIST_FOR_SAFE(START, NEXT, ELEM) \ |
| 126 | for ((ELEM) = (START); \ |
| 127 | (ELEM) ? (NEXT = (ELEM)->next, 1) : 0; \ |
| 128 | (ELEM) = (NEXT)) |
| 129 | |
| 130 | /** |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 131 | * @brief Schema input formats accepted by libyang [parser functions](@ref howtoschemasparsers). |
| 132 | */ |
| 133 | typedef enum { |
| 134 | LYS_IN_UNKNOWN = 0, /**< unknown format, used as return value in case of error */ |
| 135 | LYS_IN_YANG = 1, /**< YANG schema input format */ |
| 136 | LYS_IN_YIN = 2 /**< YIN schema input format */ |
| 137 | } LYS_INFORMAT; |
| 138 | |
| 139 | /** |
| 140 | * @brief Schema output formats accepted by libyang [printer functions](@ref howtoschemasprinters). |
| 141 | */ |
| 142 | typedef enum { |
| 143 | LYS_OUT_UNKNOWN = 0, /**< unknown format, used as return value in case of error */ |
| 144 | LYS_OUT_YANG = 1, /**< YANG schema output format */ |
| 145 | LYS_OUT_YIN = 2, /**< YIN schema output format */ |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame^] | 146 | LYS_OUT_YANG_COMPILED, /**< YANG schema output format of the compiled schema tree */ |
| 147 | |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 148 | LYS_OUT_TREE, /**< Tree schema output format, for more information see the [printers](@ref howtoschemasprinters) page */ |
| 149 | LYS_OUT_INFO, /**< Info schema output format, for more information see the [printers](@ref howtoschemasprinters) page */ |
| 150 | LYS_OUT_JSON, /**< JSON schema output format, reflecting YIN format with conversion of attributes to object's members */ |
| 151 | } LYS_OUTFORMAT; |
| 152 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 153 | #define LY_REV_SIZE 11 /**< revision data string length (including terminating NULL byte) */ |
| 154 | |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 155 | #define LYS_UNKNOWN 0x0000 /**< uninitalized unknown statement node */ |
| 156 | #define LYS_CONTAINER 0x0001 /**< container statement node */ |
| 157 | #define LYS_CHOICE 0x0002 /**< choice statement node */ |
| 158 | #define LYS_LEAF 0x0004 /**< leaf statement node */ |
| 159 | #define LYS_LEAFLIST 0x0008 /**< leaf-list statement node */ |
| 160 | #define LYS_LIST 0x0010 /**< list statement node */ |
| 161 | #define LYS_ANYXML 0x0020 /**< anyxml statement node */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 162 | #define LYS_ANYDATA 0x0120 /**< anydata statement node, in tests it can be used for both #LYS_ANYXML and #LYS_ANYDATA */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 163 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 164 | #define LYS_CASE 0x0040 /**< case statement node */ |
| 165 | #define LYS_USES 0x0080 /**< uses statement node */ |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame^] | 166 | #define LYS_INPUT 0x100 |
| 167 | #define LYS_OUTPUT 0x200 |
| 168 | #define LYS_INOUT 0x300 |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 169 | #define LYS_ACTION 0x400 /**< RPC or action */ |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 170 | #define LYS_NOTIF 0x800 |
| 171 | #define LYS_GROUPING 0x1000 |
| 172 | #define LYS_AUGMENT 0x2000 |
| 173 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 174 | /** |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 175 | * @brief YANG built-in types |
| 176 | */ |
| 177 | typedef enum { |
| 178 | LY_TYPE_UNKNOWN = 0, /**< Unknown type */ |
| 179 | LY_TYPE_BINARY, /**< Any binary data ([RFC 6020 sec 9.8](http://tools.ietf.org/html/rfc6020#section-9.8)) */ |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 180 | LY_TYPE_UINT8, /**< 8-bit unsigned integer ([RFC 6020 sec 9.2](http://tools.ietf.org/html/rfc6020#section-9.2)) */ |
| 181 | LY_TYPE_UINT16, /**< 16-bit unsigned integer ([RFC 6020 sec 9.2](http://tools.ietf.org/html/rfc6020#section-9.2)) */ |
| 182 | LY_TYPE_UINT32, /**< 32-bit unsigned integer ([RFC 6020 sec 9.2](http://tools.ietf.org/html/rfc6020#section-9.2)) */ |
| 183 | LY_TYPE_UINT64, /**< 64-bit unsigned integer ([RFC 6020 sec 9.2](http://tools.ietf.org/html/rfc6020#section-9.2)) */ |
| 184 | LY_TYPE_STRING, /**< Human-readable string ([RFC 6020 sec 9.4](http://tools.ietf.org/html/rfc6020#section-9.4)) */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 185 | LY_TYPE_BITS, /**< A set of bits or flags ([RFC 6020 sec 9.7](http://tools.ietf.org/html/rfc6020#section-9.7)) */ |
| 186 | LY_TYPE_BOOL, /**< "true" or "false" ([RFC 6020 sec 9.5](http://tools.ietf.org/html/rfc6020#section-9.5)) */ |
| 187 | LY_TYPE_DEC64, /**< 64-bit signed decimal number ([RFC 6020 sec 9.3](http://tools.ietf.org/html/rfc6020#section-9.3))*/ |
| 188 | LY_TYPE_EMPTY, /**< A leaf that does not have any value ([RFC 6020 sec 9.11](http://tools.ietf.org/html/rfc6020#section-9.11)) */ |
| 189 | LY_TYPE_ENUM, /**< Enumerated strings ([RFC 6020 sec 9.6](http://tools.ietf.org/html/rfc6020#section-9.6)) */ |
| 190 | LY_TYPE_IDENT, /**< A reference to an abstract identity ([RFC 6020 sec 9.10](http://tools.ietf.org/html/rfc6020#section-9.10)) */ |
| 191 | LY_TYPE_INST, /**< References a data tree node ([RFC 6020 sec 9.13](http://tools.ietf.org/html/rfc6020#section-9.13)) */ |
| 192 | LY_TYPE_LEAFREF, /**< A reference to a leaf instance ([RFC 6020 sec 9.9](http://tools.ietf.org/html/rfc6020#section-9.9))*/ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 193 | LY_TYPE_UNION, /**< Choice of member types ([RFC 6020 sec 9.12](http://tools.ietf.org/html/rfc6020#section-9.12)) */ |
| 194 | LY_TYPE_INT8, /**< 8-bit signed integer ([RFC 6020 sec 9.2](http://tools.ietf.org/html/rfc6020#section-9.2)) */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 195 | LY_TYPE_INT16, /**< 16-bit signed integer ([RFC 6020 sec 9.2](http://tools.ietf.org/html/rfc6020#section-9.2)) */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 196 | LY_TYPE_INT32, /**< 32-bit signed integer ([RFC 6020 sec 9.2](http://tools.ietf.org/html/rfc6020#section-9.2)) */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 197 | LY_TYPE_INT64, /**< 64-bit signed integer ([RFC 6020 sec 9.2](http://tools.ietf.org/html/rfc6020#section-9.2)) */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 198 | } LY_DATA_TYPE; |
| 199 | #define LY_DATA_TYPE_COUNT 20 /**< Number of different types */ |
| 200 | |
Radek Krejci | 5969f27 | 2018-11-23 10:03:58 +0100 | [diff] [blame] | 201 | /** |
| 202 | * @brief Stringified YANG built-in data types |
| 203 | */ |
Radek Krejci | d505e3d | 2018-11-13 09:04:17 +0100 | [diff] [blame] | 204 | extern const char* ly_data_type2str[LY_DATA_TYPE_COUNT]; |
| 205 | |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 206 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 207 | * @brief YANG import-stmt |
| 208 | */ |
| 209 | struct lysp_import { |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 210 | struct lys_module *module; /**< pointer to the imported module |
| 211 | (mandatory, but resolved when the referring module is completely parsed) */ |
| 212 | const char *name; /**< name of the imported module (mandatory) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 213 | const char *prefix; /**< prefix for the data from the imported schema (mandatory) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 214 | const char *dsc; /**< description */ |
| 215 | const char *ref; /**< reference */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 216 | 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] | 217 | char rev[LY_REV_SIZE]; /**< revision-date of the imported module */ |
| 218 | }; |
| 219 | |
| 220 | /** |
| 221 | * @brief YANG include-stmt |
| 222 | */ |
| 223 | struct lysp_include { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 224 | struct lysp_submodule *submodule;/**< pointer to the parsed submodule structure |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 225 | (mandatory, but resolved when the referring module is completely parsed) */ |
| 226 | const char *name; /**< name of the included submodule (mandatory) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 227 | const char *dsc; /**< description */ |
| 228 | const char *ref; /**< reference */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 229 | 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] | 230 | char rev[LY_REV_SIZE]; /**< revision-date of the included submodule */ |
| 231 | }; |
| 232 | |
| 233 | /** |
| 234 | * @brief YANG extension-stmt |
| 235 | */ |
| 236 | struct lysp_ext { |
| 237 | const char *name; /**< extension name */ |
| 238 | const char *argument; /**< argument name, NULL if not specified */ |
| 239 | const char *dsc; /**< description statement */ |
| 240 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 241 | 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] | 242 | uint16_t flags; /**< LYS_STATUS_* and LYS_YINELEM values (@ref snodeflags) */ |
| 243 | }; |
| 244 | |
| 245 | /** |
| 246 | * @brief Helper structure for generic storage of the extension instances content. |
| 247 | */ |
| 248 | struct lysp_stmt { |
| 249 | const char *stmt; /**< identifier of the statement */ |
| 250 | const char *arg; /**< statement's argument */ |
| 251 | struct lysp_stmt *next; /**< link to the next statement */ |
Michal Vasko | bc2559f | 2018-09-07 10:17:50 +0200 | [diff] [blame] | 252 | struct lysp_stmt *child; /**< list of the statement's substatements (linked list) */ |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame^] | 253 | uint16_t flags; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 254 | }; |
| 255 | |
| 256 | /** |
| 257 | * @brief YANG extension instance |
| 258 | */ |
| 259 | struct lysp_ext_instance { |
| 260 | const char *name; /**< extension identifier, including possible prefix */ |
| 261 | const char *argument; /**< optional value of the extension's argument */ |
Michal Vasko | d92e42a | 2018-09-07 08:35:02 +0200 | [diff] [blame] | 262 | LYEXT_SUBSTMT insubstmt; /**< value identifying placement of the extension instance */ |
| 263 | uint32_t insubstmt_index; /**< in case the instance is in a substatement, this identifies |
| 264 | the index of that substatement */ |
Michal Vasko | bc2559f | 2018-09-07 10:17:50 +0200 | [diff] [blame] | 265 | struct lysp_stmt *child; /**< list of the extension's substatements (linked list) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 266 | }; |
| 267 | |
| 268 | /** |
| 269 | * @brief YANG feature-stmt |
| 270 | */ |
| 271 | struct lysp_feature { |
| 272 | const char *name; /**< feature name (mandatory) */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 273 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 274 | const char *dsc; /**< description statement */ |
| 275 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 276 | 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] | 277 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values allowed */ |
| 278 | }; |
| 279 | |
| 280 | /** |
| 281 | * @brief YANG identity-stmt |
| 282 | */ |
| 283 | struct lysp_ident { |
| 284 | const char *name; /**< identity name (mandatory), including possible prefix */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 285 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
| 286 | const char **bases; /**< list of base identifiers ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 287 | const char *dsc; /**< description statement */ |
| 288 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 289 | 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] | 290 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ values are allowed */ |
| 291 | }; |
| 292 | |
Michal Vasko | 71e64ca | 2018-09-07 16:30:29 +0200 | [diff] [blame] | 293 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 294 | * @brief Covers restrictions: range, length, pattern, must |
| 295 | */ |
| 296 | struct lysp_restr { |
| 297 | const char *arg; /**< The restriction expression/value (mandatory); |
| 298 | in case of pattern restriction, the first byte has a special meaning: |
| 299 | 0x06 (ACK) for regular match and 0x15 (NACK) for invert-match */ |
| 300 | const char *emsg; /**< error-message */ |
| 301 | const char *eapptag; /**< error-app-tag value */ |
| 302 | const char *dsc; /**< description */ |
| 303 | const char *ref; /**< reference */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 304 | 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] | 305 | }; |
| 306 | |
| 307 | /** |
Michal Vasko | 71e64ca | 2018-09-07 16:30:29 +0200 | [diff] [blame] | 308 | * @brief YANG revision-stmt |
| 309 | */ |
| 310 | struct lysp_revision { |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 311 | char date[LY_REV_SIZE]; /**< revision date (madatory) */ |
Michal Vasko | 71e64ca | 2018-09-07 16:30:29 +0200 | [diff] [blame] | 312 | const char *dsc; /**< description statement */ |
| 313 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 314 | 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] | 315 | }; |
| 316 | |
| 317 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 318 | * @brief Enumeration/Bit value definition |
| 319 | */ |
| 320 | struct lysp_type_enum { |
| 321 | const char *name; /**< name (mandatory) */ |
| 322 | const char *dsc; /**< description statement */ |
| 323 | const char *ref; /**< reference statement */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 324 | int64_t value; /**< enum's value or bit's position */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 325 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 326 | 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] | 327 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ and LYS_SET_VALUE |
| 328 | values are allowed */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 329 | }; |
| 330 | |
| 331 | /** |
| 332 | * @brief YANG type-stmt |
| 333 | * |
| 334 | * Some of the items in the structure may be mandatory, but it is necessary to resolve the type's base type first |
| 335 | */ |
| 336 | struct lysp_type { |
| 337 | const char *name; /**< name of the type (mandatory) */ |
| 338 | struct lysp_restr *range; /**< allowed values range - numerical, decimal64 */ |
| 339 | struct lysp_restr *length; /**< allowed length of the value - string, binary */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 340 | struct lysp_restr *patterns; /**< list of patterns ([sized array](@ref sizedarrays)) - string */ |
| 341 | struct lysp_type_enum *enums; /**< list of enum-stmts ([sized array](@ref sizedarrays)) - enum */ |
| 342 | struct lysp_type_enum *bits; /**< list of bit-stmts ([sized array](@ref sizedarrays)) - bits */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 343 | const char *path; /**< path - leafref */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 344 | const char **bases; /**< list of base identifiers ([sized array](@ref sizedarrays)) - identityref */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 345 | struct lysp_type *types; /**< list of sub-types ([sized array](@ref sizedarrays)) - union */ |
| 346 | 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] | 347 | |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 348 | struct lysc_type *compiled; /**< pointer to the compiled type */ |
| 349 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 350 | uint8_t fraction_digits; /**< number of fraction digits - decimal64 */ |
| 351 | uint8_t require_instance; /**< require-instance flag - leafref, instance */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 352 | uint16_t flags; /**< [schema node flags](@ref spnodeflags) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 353 | }; |
| 354 | |
| 355 | /** |
| 356 | * @brief YANG typedef-stmt |
| 357 | */ |
| 358 | struct lysp_tpdf { |
| 359 | const char *name; /**< name of the newly defined type (mandatory) */ |
| 360 | const char *units; /**< units of the newly defined type */ |
| 361 | const char *dflt; /**< default value of the newly defined type */ |
| 362 | const char *dsc; /**< description statement */ |
| 363 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 364 | 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] | 365 | 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] | 366 | uint16_t flags; /**< [schema node flags](@ref spnodeflags) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 367 | }; |
| 368 | |
| 369 | /** |
| 370 | * @brief YANG grouping-stmt |
| 371 | */ |
| 372 | struct lysp_grp { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 373 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level grouping) */ |
| 374 | uint16_t nodetype; /**< LYS_GROUPING */ |
| 375 | 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] | 376 | const char *name; /**< grouping name (mandatory) */ |
| 377 | const char *dsc; /**< description statement */ |
| 378 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 379 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 380 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 381 | struct lysp_node *data; /**< list of data nodes (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 382 | struct lysp_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */ |
| 383 | struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
| 384 | 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] | 385 | }; |
| 386 | |
| 387 | /** |
| 388 | * @brief YANG when-stmt |
| 389 | */ |
| 390 | struct lysp_when { |
| 391 | const char *cond; /**< specified condition (mandatory) */ |
| 392 | const char *dsc; /**< description statement */ |
| 393 | const char *ref; /**< reference statement */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 394 | 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] | 395 | }; |
| 396 | |
| 397 | /** |
| 398 | * @brief YANG refine-stmt |
| 399 | */ |
| 400 | struct lysp_refine { |
| 401 | const char *nodeid; /**< target descendant schema nodeid (mandatory) */ |
| 402 | const char *dsc; /**< description statement */ |
| 403 | const char *ref; /**< reference statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 404 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 405 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 406 | const char *presence; /**< presence description */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 407 | const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 408 | uint32_t min; /**< min-elements constraint */ |
| 409 | uint32_t max; /**< max-elements constraint, 0 means unbounded */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 410 | 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] | 411 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 412 | }; |
| 413 | |
| 414 | /** |
| 415 | * @brief YANG uses-augment-stmt and augment-stmt |
| 416 | */ |
| 417 | struct lysp_augment { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 418 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level augment) */ |
| 419 | uint16_t nodetype; /**< LYS_AUGMENT */ |
| 420 | 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] | 421 | const char *nodeid; /**< target schema nodeid (mandatory) - absolute for global augments, descendant for uses's augments */ |
| 422 | const char *dsc; /**< description statement */ |
| 423 | const char *ref; /**< reference statement */ |
| 424 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 425 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 426 | struct lysp_node *child; /**< list of data nodes (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 427 | struct lysp_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */ |
| 428 | struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
| 429 | 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] | 430 | }; |
| 431 | |
| 432 | /** |
| 433 | * @defgroup deviatetypes Deviate types |
| 434 | * @{ |
| 435 | */ |
| 436 | #define LYS_DEV_NOT_SUPPORTED 1 /**< deviate type not-supported */ |
| 437 | #define LYS_DEV_ADD 2 /**< deviate type add */ |
| 438 | #define LYS_DEV_DELETE 3 /**< deviate type delete */ |
| 439 | #define LYS_DEV_REPLACE 4 /**< deviate type replace */ |
| 440 | /** @} */ |
| 441 | |
| 442 | /** |
| 443 | * @brief Generic deviate structure to get type and cast to lysp_deviate_* structure |
| 444 | */ |
| 445 | struct lysp_deviate { |
| 446 | uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */ |
| 447 | struct lysp_deviate *next; /**< next deviate structure in the list */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 448 | 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] | 449 | }; |
| 450 | |
| 451 | struct lysp_deviate_add { |
| 452 | uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */ |
| 453 | struct lysp_deviate *next; /**< next deviate structure in the list */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 454 | 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] | 455 | const char *units; /**< units of the values */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 456 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 457 | const char **uniques; /**< list of uniques specifications ([sized array](@ref sizedarrays)) */ |
| 458 | const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 459 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 460 | uint32_t min; /**< min-elements constraint */ |
| 461 | uint32_t max; /**< max-elements constraint, 0 means unbounded */ |
| 462 | }; |
| 463 | |
| 464 | struct lysp_deviate_del { |
| 465 | uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */ |
| 466 | struct lysp_deviate *next; /**< next deviate structure in the list */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 467 | 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] | 468 | const char *units; /**< units of the values */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 469 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 470 | const char **uniques; /**< list of uniques specifications ([sized array](@ref sizedarrays)) */ |
| 471 | const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 472 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 473 | }; |
| 474 | |
| 475 | struct lysp_deviate_rpl { |
| 476 | uint8_t mod; /**< [type](@ref deviatetypes) of the deviate modification */ |
| 477 | struct lysp_deviate *next; /**< next deviate structure in the list */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 478 | 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] | 479 | struct lysp_type *type; /**< type of the node */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 480 | const char *units; /**< units of the values */ |
| 481 | const char *dflt; /**< default value */ |
| 482 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 483 | uint32_t min; /**< min-elements constraint */ |
| 484 | uint32_t max; /**< max-elements constraint, 0 means unbounded */ |
| 485 | }; |
| 486 | |
| 487 | struct lysp_deviation { |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 488 | const char *nodeid; /**< target absolute schema nodeid (mandatory) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 489 | const char *dsc; /**< description statement */ |
| 490 | const char *ref; /**< reference statement */ |
| 491 | struct lysp_deviate* deviates; /**< list of deviate specifications (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 492 | 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] | 493 | }; |
| 494 | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 495 | /** |
| 496 | * @defgroup spnodeflags Parsed schema nodes flags |
| 497 | * @ingroup snodeflags |
| 498 | * |
| 499 | * Various flags for parsed schema nodes. |
| 500 | * |
| 501 | * 1 - container 6 - anydata/anyxml 11 - output 16 - grouping 21 - enum |
| 502 | * 2 - choice 7 - case 12 - feature 17 - uses 22 - type |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame^] | 503 | * 3 - leaf 8 - notification 13 - identity 18 - refine 23 - stmt |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 504 | * 4 - leaflist 9 - rpc 14 - extension 19 - augment |
| 505 | * 5 - list 10 - input 15 - typedef 20 - deviate |
| 506 | * |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame^] | 507 | * 1 1 1 1 1 1 1 1 1 1 2 2 2 2 |
| 508 | * 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 |
| 509 | * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 510 | * 1 LYS_CONFIG_W |x|x|x|x|x|x|x| | | | | | | | | | |x| |x| | | | |
| 511 | * LYS_SET_BASE | | | | | | | | | | | | | | | | | | | | | |x| | |
| 512 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 513 | * 2 LYS_CONFIG_R |x|x|x|x|x|x|x| | | | | | | | | | |x| |x| | | | |
| 514 | * LYS_SET_BIT | | | | | | | | | | | | | | | | | | | | | |x| | |
| 515 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 516 | * 3 LYS_STATUS_CURR |x|x|x|x|x|x|x|x|x| | |x|x|x|x|x|x| |x|x|x| | | |
| 517 | * LYS_SET_ENUM | | | | | | | | | | | | | | | | | | | | | |x| | |
| 518 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 519 | * 4 LYS_STATUS_DEPRC |x|x|x|x|x|x|x|x|x| | |x|x|x|x|x|x| |x|x|x| | | |
| 520 | * LYS_SET_FRDIGITS | | | | | | | | | | | | | | | | | | | | | |x| | |
| 521 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 522 | * 5 LYS_STATUS_OBSLT |x|x|x|x|x|x|x|x|x| | |x|x|x|x|x|x| |x|x|x| | | |
| 523 | * LYS_SET_LENGTH | | | | | | | | | | | | | | | | | | | | | |x| | |
| 524 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 525 | * 6 LYS_MAND_TRUE | |x|x| | |x| | | | | | | | | | | |x| |x| | | | |
| 526 | * LYS_SET_PATH | | | | | | | | | | | | | | | | | | | | | |x| | |
| 527 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 528 | * 7 LYS_MAND_FALSE | |x|x| | |x| | | | | | | | | | | |x| |x| | | | |
| 529 | * LYS_ORDBY_USER | | | |x|x| | | | | | | | | | | | | | | | | | | |
| 530 | * LYS_SET_PATTERN | | | | | | | | | | | | | | | | | | | | | |x| | |
| 531 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 532 | * 8 LYS_ORDBY_SYSTEM | | | |x|x| | | | | | | | | | | | | | | | | | | |
| 533 | * LYS_YINELEM_TRUE | | | | | | | | | | | | | |x| | | | | | | | | | |
| 534 | * LYS_SET_RANGE | | | | | | | | | | | | | | | | | | | | | |x| | |
| 535 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 536 | * 9 LYS_YINELEM_FALSE| | | | | | | | | | | | | |x| | | | | | | | | | |
| 537 | * LYS_SET_TYPE | | | | | | | | | | | | | | | | | | | | | |x| | |
| 538 | * LYS_SINGLEQUOTED | | | | | | | | | | | | | | | | | | | | | | |x| |
| 539 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 540 | * 10 LYS_SET_VALUE | | | | | | | | | | | | | | | | | | | | |x| | | |
| 541 | * LYS_SET_REQINST | | | | | | | | | | | | | | | | | | | | | |x| | |
| 542 | * LYS_SET_MIN | | | |x|x| | | | | | | | | | | | |x| |x| | | | |
| 543 | * LYS_DOUBLEQUOTED | | | | | | | | | | | | | | | | | | | | | | |x| |
| 544 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 545 | * 11 LYS_SET_MAX | | | |x|x| | | | | | | | | | | | |x| |x| | | | |
| 546 | * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 547 | * |
| 548 | */ |
| 549 | |
| 550 | /** |
| 551 | * @defgroup scnodeflags Compiled schema nodes flags |
| 552 | * @ingroup snodeflags |
| 553 | * |
| 554 | * Various flags for compiled schema nodes. |
| 555 | * |
| 556 | * 1 - container 6 - anydata/anyxml 11 - output |
| 557 | * 2 - choice 7 - case 12 - feature |
| 558 | * 3 - leaf 8 - notification 13 - identity |
| 559 | * 4 - leaflist 9 - rpc 14 - extension |
| 560 | * 5 - list 10 - input |
| 561 | * |
| 562 | * 1 1 1 1 1 |
| 563 | * bit name 1 2 3 4 5 6 7 8 9 0 1 2 3 4 |
| 564 | * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 565 | * 1 LYS_CONFIG_W |x|x|x|x|x|x|x| | | | | | | | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 566 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 567 | * 2 LYS_CONFIG_R |x|x|x|x|x|x|x| | | | | | | | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 568 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 569 | * 3 LYS_STATUS_CURR |x|x|x|x|x|x|x|x|x| | |x|x|x| |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 570 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 571 | * 4 LYS_STATUS_DEPRC |x|x|x|x|x|x|x|x|x| | |x|x|x| |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 572 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 573 | * 5 LYS_STATUS_OBSLT |x|x|x|x|x|x|x|x|x| | |x|x|x| |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 574 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 575 | * 6 LYS_MAND_TRUE |x|x|x|x|x|x| | | | | | | | | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 576 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 577 | * 7 LYS_ORDBY_USER | | | |x|x| | | | | | | | | | |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 578 | * LYS_MAND_FALSE | |x|x| | |x| | | | | | | | | |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 579 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 580 | * 8 LYS_ORDBY_SYSTEM | | | |x|x| | | | | | | | | | |
| 581 | * LYS_PRESENCE |x| | | | | | | | | | | | | | |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 582 | * LYS_UNIQUE | | |x| | | | | | | | | | | | |
| 583 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 584 | * 9 LYS_KEY | | |x| | | | | | | | | | | | |
| 585 | * LYS_FENABLED | | | | | | | | | | | |x| | | |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 586 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 587 | * 10 LYS_SET_DFLT | | |x|x| | |x| | | | | | | | |
| 588 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 589 | * 11 LYS_SET_UNITS | | |x|x| | | | | | | | | | | |
Radek Krejci | 93dcc39 | 2019-02-19 10:43:38 +0100 | [diff] [blame] | 590 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 591 | * 11 LYS_SET_CONFIG |x|x|x|x|x|x|x| | |x|x| | | | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 592 | * ---------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 593 | * |
| 594 | */ |
| 595 | |
| 596 | /** |
| 597 | * @defgroup snodeflags Schema nodes flags |
| 598 | * @ingroup schematree |
| 599 | * @{ |
| 600 | */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 601 | #define LYS_CONFIG_W 0x01 /**< config true; */ |
| 602 | #define LYS_CONFIG_R 0x02 /**< config false; */ |
| 603 | #define LYS_CONFIG_MASK 0x03 /**< mask for config value */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 604 | #define LYS_STATUS_CURR 0x04 /**< status current; */ |
| 605 | #define LYS_STATUS_DEPRC 0x08 /**< status deprecated; */ |
| 606 | #define LYS_STATUS_OBSLT 0x10 /**< status obsolete; */ |
| 607 | #define LYS_STATUS_MASK 0x1C /**< mask for status value */ |
| 608 | #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] | 609 | ::lysp_node_leaf/::lysc_node_leaf and ::lysp_node_anydata/::lysc_node_anydata. |
| 610 | The ::lysc_node_leaflist and ::lysc_node_leaflist have this flag in case that min-elements > 0. |
| 611 | The ::lysc_node_container has this flag if it is not a presence container and it has at least one |
| 612 | child with LYS_MAND_TRUE. */ |
Radek Krejci | f1421c2 | 2019-02-19 13:05:20 +0100 | [diff] [blame] | 613 | #define LYS_MAND_FALSE 0x40 /**< mandatory false; applicable only to ::lysp_node_choice/::lysc_node_choice, |
| 614 | ::lysp_node_leaf/::lysc_node_leaf and ::lysp_node_anydata/::lysc_node_anydata. |
| 615 | 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] | 616 | #define LYS_MAND_MASK 0x60 /**< mask for mandatory values */ |
Radek Krejci | 7adf4ff | 2018-12-05 08:55:00 +0100 | [diff] [blame] | 617 | #define LYS_PRESENCE 0x80 /**< flag for presence property of a container, applicable only to ::lysc_node_container */ |
| 618 | #define LYS_UNIQUE 0x80 /**< flag for leafs being part of a unique set, applicable only to ::lysc_node_leaf */ |
| 619 | #define LYS_KEY 0x100 /**< flag for leafs being a key of a list, applicable only to ::lysc_node_leaf */ |
| 620 | #define LYS_FENABLED 0x100 /**< feature enabled flag, applicable only to ::lysc_feature */ |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 621 | #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] | 622 | ::lysc_node_list/::lysp_node_list */ |
| 623 | #define LYS_ORDBY_USER 0x40 /**< ordered-by user lists, applicable only to ::lysc_node_leaflist/::lysp_node_leaflist and |
| 624 | ::lysc_node_list/::lysp_node_list */ |
| 625 | #define LYS_ORDBY_MASK 0x60 /**< mask for ordered-by values */ |
| 626 | #define LYS_YINELEM_TRUE 0x80 /**< yin-element true for extension's argument */ |
| 627 | #define LYS_YINELEM_FALSE 0x100 /**< yin-element false for extension's argument */ |
| 628 | #define LYS_YINELEM_MASK 0x180 /**< mask for yin-element value */ |
| 629 | #define LYS_SET_VALUE 0x200 /**< value attribute is set */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 630 | #define LYS_SET_MIN 0x200 /**< min attribute is set */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 631 | #define LYS_SET_MAX 0x400 /**< max attribute is set */ |
Radek Krejci | d505e3d | 2018-11-13 09:04:17 +0100 | [diff] [blame] | 632 | |
| 633 | #define LYS_SET_BASE 0x0001 /**< type's flag for present base substatement */ |
| 634 | #define LYS_SET_BIT 0x0002 /**< type's flag for present bit substatement */ |
| 635 | #define LYS_SET_ENUM 0x0004 /**< type's flag for present enum substatement */ |
| 636 | #define LYS_SET_FRDIGITS 0x0008 /**< type's flag for present fraction-digits substatement */ |
| 637 | #define LYS_SET_LENGTH 0x0010 /**< type's flag for present length substatement */ |
| 638 | #define LYS_SET_PATH 0x0020 /**< type's flag for present path substatement */ |
| 639 | #define LYS_SET_PATTERN 0x0040 /**< type's flag for present pattern substatement */ |
| 640 | #define LYS_SET_RANGE 0x0080 /**< type's flag for present range substatement */ |
| 641 | #define LYS_SET_TYPE 0x0100 /**< type's flag for present type substatement */ |
| 642 | #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] | 643 | #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] | 644 | cases of choice. This information is important for refines, since it is prohibited to make leafs |
| 645 | 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] | 646 | away when it is refined to be mandatory node. Similarly it is used for deviations to distinguish |
| 647 | between own default or the default values taken from the type. */ |
| 648 | #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] | 649 | #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] | 650 | |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame^] | 651 | #define LYS_SINGLEQUOTED 0x100 /**< flag for single-quoted argument of an extension instance's substatement */ |
| 652 | #define LYS_DOUBLEQUOTED 0x200 /**< flag for double-quoted argument of an extension instance's substatement */ |
| 653 | |
Radek Krejci | fe90963 | 2019-02-12 15:34:42 +0100 | [diff] [blame] | 654 | #define LYS_FLAGS_COMPILED_MASK 0xff /**< mask for flags that maps to the compiled structures */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 655 | /** @} */ |
Michal Vasko | b55f6c1 | 2018-09-12 11:13:15 +0200 | [diff] [blame] | 656 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 657 | /** |
| 658 | * @brief Generic YANG data node |
| 659 | */ |
| 660 | struct lysp_node { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 661 | 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] | 662 | uint16_t nodetype; /**< type of the node (mandatory) */ |
| 663 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 664 | 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] | 665 | const char *name; /**< node name (mandatory) */ |
| 666 | const char *dsc; /**< description statement */ |
| 667 | const char *ref; /**< reference statement */ |
| 668 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 669 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 670 | 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] | 671 | }; |
| 672 | |
| 673 | /** |
| 674 | * @brief Extension structure of the lysp_node for YANG container |
| 675 | */ |
| 676 | struct lysp_node_container { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 677 | 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] | 678 | uint16_t nodetype; /**< LYS_CONTAINER */ |
| 679 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 680 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 681 | const char *name; /**< node name (mandatory) */ |
| 682 | const char *dsc; /**< description statement */ |
| 683 | const char *ref; /**< reference statement */ |
| 684 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 685 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 686 | 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] | 687 | |
| 688 | /* container */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 689 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 690 | const char *presence; /**< presence description */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 691 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 692 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 693 | struct lysp_node *child; /**< list of data nodes (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 694 | struct lysp_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */ |
| 695 | struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 696 | }; |
| 697 | |
| 698 | struct lysp_node_leaf { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 699 | 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] | 700 | uint16_t nodetype; /**< LYS_LEAF */ |
| 701 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 702 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 703 | const char *name; /**< node name (mandatory) */ |
| 704 | const char *dsc; /**< description statement */ |
| 705 | const char *ref; /**< reference statement */ |
| 706 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 707 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 708 | 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] | 709 | |
| 710 | /* leaf */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 711 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 712 | struct lysp_type type; /**< type of the leaf node (mandatory) */ |
| 713 | const char *units; /**< units of the leaf's type */ |
| 714 | const char *dflt; /**< default value */ |
| 715 | }; |
| 716 | |
| 717 | struct lysp_node_leaflist { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 718 | 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] | 719 | uint16_t nodetype; /**< LYS_LEAFLIST */ |
| 720 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 721 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 722 | const char *name; /**< node name (mandatory) */ |
| 723 | const char *dsc; /**< description statement */ |
| 724 | const char *ref; /**< reference statement */ |
| 725 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 726 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 727 | 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] | 728 | |
| 729 | /* leaf-list */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 730 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 731 | struct lysp_type type; /**< type of the leaf node (mandatory) */ |
| 732 | const char *units; /**< units of the leaf's type */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 733 | const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 734 | uint32_t min; /**< min-elements constraint */ |
| 735 | uint32_t max; /**< max-elements constraint, 0 means unbounded */ |
| 736 | }; |
| 737 | |
| 738 | struct lysp_node_list { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 739 | 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] | 740 | uint16_t nodetype; /**< LYS_LIST */ |
| 741 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 742 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 743 | const char *name; /**< node name (mandatory) */ |
| 744 | const char *dsc; /**< description statement */ |
| 745 | const char *ref; /**< reference statement */ |
| 746 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 747 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 748 | 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] | 749 | |
| 750 | /* list */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 751 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 752 | const char *key; /**< keys specification */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 753 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 754 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 755 | struct lysp_node *child; /**< list of data nodes (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 756 | struct lysp_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */ |
| 757 | struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 758 | const char **uniques; /**< list of unique specifications ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 759 | uint32_t min; /**< min-elements constraint */ |
| 760 | uint32_t max; /**< max-elements constraint, 0 means unbounded */ |
| 761 | }; |
| 762 | |
| 763 | struct lysp_node_choice { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 764 | 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] | 765 | uint16_t nodetype; /**< LYS_CHOICE */ |
| 766 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 767 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 768 | const char *name; /**< node name (mandatory) */ |
| 769 | const char *dsc; /**< description statement */ |
| 770 | const char *ref; /**< reference statement */ |
| 771 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 772 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 773 | 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] | 774 | |
| 775 | /* choice */ |
| 776 | struct lysp_node *child; /**< list of data nodes (linked list) */ |
| 777 | const char* dflt; /**< default case */ |
| 778 | }; |
| 779 | |
| 780 | struct lysp_node_case { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 781 | 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] | 782 | uint16_t nodetype; /**< LYS_CASE */ |
| 783 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 784 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 785 | const char *name; /**< node name (mandatory) */ |
| 786 | const char *dsc; /**< description statement */ |
| 787 | const char *ref; /**< reference statement */ |
| 788 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 789 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 790 | 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] | 791 | |
| 792 | /* case */ |
| 793 | struct lysp_node *child; /**< list of data nodes (linked list) */ |
| 794 | }; |
| 795 | |
| 796 | struct lysp_node_anydata { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 797 | 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] | 798 | uint16_t nodetype; /**< LYS_ANYXML || LYS_ANYDATA */ |
| 799 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 800 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 801 | const char *name; /**< node name (mandatory) */ |
| 802 | const char *dsc; /**< description statement */ |
| 803 | const char *ref; /**< reference statement */ |
| 804 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 805 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 806 | 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] | 807 | |
| 808 | /* anyxml/anydata */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 809 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 810 | }; |
| 811 | |
| 812 | struct lysp_node_uses { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 813 | 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] | 814 | uint16_t nodetype; /**< LYS_USES */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 815 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 816 | struct lysp_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 817 | const char *name; /**< grouping name reference (mandatory) */ |
| 818 | const char *dsc; /**< description statement */ |
| 819 | const char *ref; /**< reference statement */ |
| 820 | struct lysp_when *when; /**< when statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 821 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 822 | 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] | 823 | |
| 824 | /* uses */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 825 | struct lysp_refine *refines; /**< list of uses's refines ([sized array](@ref sizedarrays)) */ |
| 826 | 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] | 827 | }; |
| 828 | |
| 829 | /** |
| 830 | * @brief YANG input-stmt and output-stmt |
| 831 | */ |
| 832 | struct lysp_action_inout { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 833 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
| 834 | uint16_t nodetype; /**< LYS_INOUT */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 835 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 836 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 837 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 838 | struct lysp_node *data; /**< list of data nodes (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 839 | 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] | 840 | }; |
| 841 | |
| 842 | /** |
| 843 | * @brief YANG rpc-stmt and action-stmt |
| 844 | */ |
| 845 | struct lysp_action { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 846 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
| 847 | uint16_t nodetype; /**< LYS_ACTION */ |
| 848 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 849 | const char *name; /**< grouping name reference (mandatory) */ |
| 850 | const char *dsc; /**< description statement */ |
| 851 | const char *ref; /**< reference statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 852 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 853 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 854 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 855 | struct lysp_action_inout input; /**< RPC's/Action's input */ |
| 856 | struct lysp_action_inout output; /**< RPC's/Action's output */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 857 | 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] | 858 | }; |
| 859 | |
| 860 | /** |
| 861 | * @brief YANG notification-stmt |
| 862 | */ |
| 863 | struct lysp_notif { |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 864 | struct lysp_node *parent; /**< parent node (NULL if this is a top-level node) */ |
| 865 | uint16_t nodetype; /**< LYS_NOTIF */ |
| 866 | 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] | 867 | const char *name; /**< grouping name reference (mandatory) */ |
| 868 | const char *dsc; /**< description statement */ |
| 869 | const char *ref; /**< reference statement */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 870 | const char **iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 871 | struct lysp_restr *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 872 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 873 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 874 | struct lysp_node *data; /**< list of data nodes (linked list) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 875 | 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] | 876 | }; |
| 877 | |
| 878 | /** |
Radek Krejci | f0fceb6 | 2018-09-05 14:58:45 +0200 | [diff] [blame] | 879 | * @brief supported YANG schema version values |
| 880 | */ |
| 881 | typedef enum LYS_VERSION { |
| 882 | LYS_VERSION_UNDEF = 0, /**< no specific version, YANG 1.0 as default */ |
| 883 | LYS_VERSION_1_0 = 1, /**< YANG 1.0 */ |
| 884 | LYS_VERSION_1_1 = 2 /**< YANG 1.1 */ |
| 885 | } LYS_VERSION; |
| 886 | |
| 887 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 888 | * @brief Printable YANG schema tree structure representing YANG module. |
| 889 | * |
| 890 | * Simple structure corresponding to the YANG format. The schema is only syntactically validated. |
| 891 | */ |
| 892 | struct lysp_module { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 893 | struct lys_module *mod; /**< covering module structure */ |
| 894 | |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 895 | struct lysp_revision *revs; /**< list of the module revisions ([sized array](@ref sizedarrays)), the first revision |
| 896 | in the list is always the last (newest) revision of the module */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 897 | struct lysp_import *imports; /**< list of imported modules ([sized array](@ref sizedarrays)) */ |
| 898 | struct lysp_include *includes; /**< list of included submodules ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 899 | struct lysp_ext *extensions; /**< list of extension statements ([sized array](@ref sizedarrays)) */ |
| 900 | struct lysp_feature *features; /**< list of feature definitions ([sized array](@ref sizedarrays)) */ |
| 901 | struct lysp_ident *identities; /**< list of identities ([sized array](@ref sizedarrays)) */ |
| 902 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 903 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 904 | 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] | 905 | struct lysp_augment *augments; /**< list of augments ([sized array](@ref sizedarrays)) */ |
| 906 | struct lysp_action *rpcs; /**< list of RPCs ([sized array](@ref sizedarrays)) */ |
| 907 | struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
| 908 | struct lysp_deviation *deviations; /**< list of deviations ([sized array](@ref sizedarrays)) */ |
| 909 | 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] | 910 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 911 | uint8_t parsing:1; /**< flag for circular check */ |
| 912 | }; |
| 913 | |
| 914 | struct lysp_submodule { |
| 915 | const char *belongsto; /**< belongs to parent module (submodule - mandatory) */ |
| 916 | |
| 917 | struct lysp_revision *revs; /**< list of the module revisions ([sized array](@ref sizedarrays)), the first revision |
| 918 | in the list is always the last (newest) revision of the module */ |
| 919 | struct lysp_import *imports; /**< list of imported modules ([sized array](@ref sizedarrays)) */ |
| 920 | struct lysp_include *includes; /**< list of included submodules ([sized array](@ref sizedarrays)) */ |
| 921 | struct lysp_ext *extensions; /**< list of extension statements ([sized array](@ref sizedarrays)) */ |
| 922 | struct lysp_feature *features; /**< list of feature definitions ([sized array](@ref sizedarrays)) */ |
| 923 | struct lysp_ident *identities; /**< list of identities ([sized array](@ref sizedarrays)) */ |
| 924 | struct lysp_tpdf *typedefs; /**< list of typedefs ([sized array](@ref sizedarrays)) */ |
| 925 | struct lysp_grp *groupings; /**< list of groupings ([sized array](@ref sizedarrays)) */ |
| 926 | struct lysp_node *data; /**< list of module's top-level data nodes (linked list) */ |
| 927 | struct lysp_augment *augments; /**< list of augments ([sized array](@ref sizedarrays)) */ |
| 928 | struct lysp_action *rpcs; /**< list of RPCs ([sized array](@ref sizedarrays)) */ |
| 929 | struct lysp_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
| 930 | struct lysp_deviation *deviations; /**< list of deviations ([sized array](@ref sizedarrays)) */ |
| 931 | struct lysp_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 932 | |
| 933 | uint8_t parsing:1; /**< flag for circular check */ |
| 934 | |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 935 | uint8_t latest_revision:2; /**< flag to mark the latest available revision: |
| 936 | 1 - the latest revision in searchdirs was not searched yet and this is the |
| 937 | latest revision in the current context |
| 938 | 2 - searchdirs were searched and this is the latest available revision */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 939 | const char *name; /**< name of the module (mandatory) */ |
| 940 | const char *filepath; /**< path, if the schema was read from a file, NULL in case of reading from memory */ |
| 941 | const char *prefix; /**< submodule belongsto prefix of main module (mandatory) */ |
| 942 | const char *org; /**< party/company responsible for the module */ |
| 943 | const char *contact; /**< contact information for the module */ |
| 944 | const char *dsc; /**< description of the module */ |
| 945 | const char *ref; /**< cross-reference for the module */ |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 946 | uint8_t version; /**< yang-version (LYS_VERSION values) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 947 | }; |
| 948 | |
| 949 | /** |
Radek Krejci | 3f5e3db | 2018-10-11 15:57:47 +0200 | [diff] [blame] | 950 | * @brief Free the printable YANG schema tree structure. |
| 951 | * |
| 952 | * @param[in] module Printable YANG schema tree structure to free. |
| 953 | */ |
| 954 | void lysp_module_free(struct lysp_module *module); |
| 955 | |
| 956 | /** |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 957 | * @brief YANG extension instance |
| 958 | */ |
| 959 | struct lysc_ext_instance { |
| 960 | struct lyext_plugin *plugin; /**< pointer to the plugin implementing the extension (if present) */ |
| 961 | void *parent; /**< pointer to the parent element holding the extension instance(s), use |
| 962 | ::lysc_ext_instance#parent_type to access the schema element */ |
| 963 | const char *argument; /**< optional value of the extension's argument */ |
| 964 | LYEXT_SUBSTMT insubstmt; /**< value identifying placement of the extension instance */ |
| 965 | uint32_t insubstmt_index; /**< in case the instance is in a substatement that can appear multiple times, |
| 966 | this identifies the index of the substatement for this extension instance */ |
Radek Krejci | 2a408df | 2018-10-29 16:32:26 +0100 | [diff] [blame] | 967 | LYEXT_PARENT parent_type; /**< type of the parent structure */ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 968 | #if 0 |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 969 | uint8_t ext_type; /**< extension type (#LYEXT_TYPE) */ |
| 970 | uint8_t padding; /**< 32b padding */ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 971 | struct lys_module *module; /**< pointer to the extension instance's module (mandatory) */ |
| 972 | LYS_NODE nodetype; /**< LYS_EXT */ |
| 973 | #endif |
Radek Krejci | 2a408df | 2018-10-29 16:32:26 +0100 | [diff] [blame] | 974 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 975 | void *priv; /**< private caller's data, not used by libyang */ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 976 | }; |
| 977 | |
| 978 | /** |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 979 | * @brief Compiled YANG if-feature-stmt |
| 980 | */ |
| 981 | struct lysc_iffeature { |
| 982 | uint8_t *expr; /**< 2bits array describing the if-feature expression in prefix format, see @ref ifftokens */ |
| 983 | struct lysc_feature **features; /**< array of pointers to the features used in expression ([sized array](@ref sizedarrays)) */ |
| 984 | }; |
| 985 | |
| 986 | /** |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 987 | * @brief YANG import-stmt |
| 988 | */ |
| 989 | struct lysc_import { |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 990 | struct lys_module *module; /**< link to the imported module */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 991 | const char *prefix; /**< prefix for the data from the imported schema (mandatory) */ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 992 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 993 | }; |
| 994 | |
| 995 | /** |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 996 | * @brief YANG when-stmt |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 997 | */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 998 | struct lysc_when { |
| 999 | struct lyxp_expr *cond; /**< XPath when condition */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1000 | const char *dsc; /**< description */ |
| 1001 | const char *ref; /**< reference */ |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 1002 | struct lysc_node *context; /**< context node for evaluating the expression */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1003 | 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] | 1004 | uint32_t refcount; /**< reference counter since some of the when statements are shared among several nodes */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1005 | }; |
| 1006 | |
| 1007 | /** |
Radek Krejci | 2a408df | 2018-10-29 16:32:26 +0100 | [diff] [blame] | 1008 | * @brief YANG identity-stmt |
| 1009 | */ |
| 1010 | struct lysc_ident { |
| 1011 | const char *name; /**< identity name (mandatory), including possible prefix */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1012 | const char *dsc; /**< description */ |
| 1013 | const char *ref; /**< reference */ |
Radek Krejci | 2a408df | 2018-10-29 16:32:26 +0100 | [diff] [blame] | 1014 | struct lysc_ident **derived; /**< list of (pointers to the) derived identities ([sized array](@ref sizedarrays)) */ |
| 1015 | 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] | 1016 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 2a408df | 2018-10-29 16:32:26 +0100 | [diff] [blame] | 1017 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_ values are allowed */ |
| 1018 | }; |
| 1019 | |
| 1020 | /** |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1021 | * @brief YANG feature-stmt |
| 1022 | */ |
| 1023 | struct lysc_feature { |
| 1024 | const char *name; /**< feature name (mandatory) */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1025 | const char *dsc; /**< description */ |
| 1026 | const char *ref; /**< reference */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1027 | struct lysc_feature **depfeatures;/**< list of pointers to other features depending on this one ([sized array](@ref sizedarrays)) */ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1028 | 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] | 1029 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1030 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* and |
| 1031 | #LYS_FENABLED values allowed */ |
| 1032 | }; |
| 1033 | |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1034 | /** |
| 1035 | * @defgroup ifftokens if-feature expression tokens |
| 1036 | * Tokens of if-feature expression used in ::lysc_iffeature#expr |
| 1037 | * |
| 1038 | * @{ |
| 1039 | */ |
| 1040 | #define LYS_IFF_NOT 0x00 /**< operand "not" */ |
| 1041 | #define LYS_IFF_AND 0x01 /**< operand "and" */ |
| 1042 | #define LYS_IFF_OR 0x02 /**< operand "or" */ |
| 1043 | #define LYS_IFF_F 0x03 /**< feature */ |
| 1044 | /** |
| 1045 | * @} |
| 1046 | */ |
| 1047 | |
| 1048 | /** |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 1049 | * @brief Compiled YANG revision statement |
| 1050 | */ |
| 1051 | struct lysc_revision { |
| 1052 | char date[LY_REV_SIZE]; /**< revision-date (mandatory) */ |
| 1053 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1054 | }; |
| 1055 | |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1056 | struct lysc_range { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1057 | struct lysc_range_part { |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1058 | union { /**< min boundary TODO decimal */ |
| 1059 | int64_t min_64; /**< for int8, int16, int32 and int64 */ |
| 1060 | uint64_t min_u64; /**< for uint8, uint16, uint32 and uint64 */ |
| 1061 | }; |
| 1062 | union { /**< max boundary TODO decimal */ |
| 1063 | int64_t max_64; /**< for int8, int16, int32 and int64 */ |
| 1064 | uint64_t max_u64; /**< for uint8, uint16, uint32 and uint64 */ |
| 1065 | }; |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1066 | } *parts; /**< compiled range expression ([sized array](@ref sizedarrays)) */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1067 | const char *dsc; /**< description */ |
| 1068 | const char *ref; /**< reference */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1069 | const char *emsg; /**< error-message */ |
| 1070 | const char *eapptag; /**< error-app-tag value */ |
| 1071 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1072 | }; |
| 1073 | |
| 1074 | struct lysc_pattern { |
| 1075 | pcre *expr; /**< compiled regular expression */ |
| 1076 | pcre_extra *expr_extra; /**< additional information to speed up matching */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1077 | const char *dsc; /**< description */ |
| 1078 | const char *ref; /**< reference */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1079 | const char *emsg; /**< error-message */ |
| 1080 | const char *eapptag; /**< error-app-tag value */ |
| 1081 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 4586a02 | 2018-11-13 11:29:26 +0100 | [diff] [blame] | 1082 | uint32_t inverted:1; /**< invert-match flag */ |
| 1083 | uint32_t refcount:31; /**< reference counter */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1084 | }; |
| 1085 | |
| 1086 | struct lysc_must { |
| 1087 | struct lys_module *module; /**< module where the must was defined */ |
| 1088 | struct lyxp_expr *cond; /**< XPath when condition */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1089 | const char *dsc; /**< description */ |
| 1090 | const char *ref; /**< reference */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1091 | const char *emsg; /**< error-message */ |
| 1092 | const char *eapptag; /**< error-app-tag value */ |
| 1093 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1094 | }; |
| 1095 | |
| 1096 | struct lysc_type { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1097 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1098 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1099 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1100 | uint32_t refcount; /**< reference counter for type sharing */ |
| 1101 | }; |
| 1102 | |
| 1103 | struct lysc_type_num { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1104 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1105 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1106 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1107 | uint32_t refcount; /**< reference counter for type sharing */ |
| 1108 | struct lysc_range *range; /**< Optional range limitation */ |
| 1109 | }; |
| 1110 | |
| 1111 | struct lysc_type_dec { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1112 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1113 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1114 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1115 | uint32_t refcount; /**< reference counter for type sharing */ |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 1116 | uint8_t fraction_digits; /**< fraction digits specification */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1117 | struct lysc_range *range; /**< Optional range limitation */ |
| 1118 | }; |
| 1119 | |
| 1120 | struct lysc_type_str { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1121 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1122 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1123 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1124 | uint32_t refcount; /**< reference counter for type sharing */ |
| 1125 | struct lysc_range *length; /**< Optional length limitation */ |
Radek Krejci | 4586a02 | 2018-11-13 11:29:26 +0100 | [diff] [blame] | 1126 | 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] | 1127 | }; |
| 1128 | |
| 1129 | struct lysc_type_enum { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1130 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1131 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1132 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1133 | uint32_t refcount; /**< reference counter for type sharing */ |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1134 | struct lysc_type_enum_item { |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1135 | const char *name; /**< enumeration identifier */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1136 | const char *dsc; /**< description */ |
| 1137 | const char *ref; /**< reference */ |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1138 | 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] | 1139 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1140 | int32_t value; /**< integer value associated with the enumeration */ |
| 1141 | } *enums; /**< enumerations list ([sized array](@ref sizedarrays)), mandatory (at least 1 item) */ |
| 1142 | }; |
| 1143 | |
| 1144 | struct lysc_type_leafref { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1145 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1146 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1147 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1148 | uint32_t refcount; /**< reference counter for type sharing */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1149 | const char* path; /**< target path */ |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 1150 | struct lys_module *path_context; /**< module where the path is defined, so it provides context to resolve prefixes */ |
Radek Krejci | 412ddfa | 2018-11-23 11:44:11 +0100 | [diff] [blame] | 1151 | 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] | 1152 | uint8_t require_instance; /**< require-instance flag */ |
| 1153 | }; |
| 1154 | |
| 1155 | struct lysc_type_identityref { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1156 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1157 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1158 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1159 | uint32_t refcount; /**< reference counter for type sharing */ |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 1160 | 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] | 1161 | mandatory (at least 1 item) */ |
| 1162 | }; |
| 1163 | |
| 1164 | struct lysc_type_instanceid { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1165 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1166 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1167 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1168 | uint32_t refcount; /**< reference counter for type sharing */ |
| 1169 | uint8_t require_instance; /**< require-instance flag */ |
| 1170 | }; |
| 1171 | |
| 1172 | struct lysc_type_bits { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1173 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1174 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1175 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1176 | uint32_t refcount; /**< reference counter for type sharing */ |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1177 | struct lysc_type_bits_item { |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1178 | const char *name; /**< bit identifier */ |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 1179 | const char *dsc; /**< description */ |
| 1180 | const char *ref; /**< reference */ |
Radek Krejci | 8b76466 | 2018-11-14 14:15:13 +0100 | [diff] [blame] | 1181 | 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] | 1182 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1183 | uint32_t position; /**< non-negative integer value associated with the bit */ |
| 1184 | } *bits; /**< bits list ([sized array](@ref sizedarrays)), mandatory (at least 1 item) */ |
| 1185 | }; |
| 1186 | |
| 1187 | struct lysc_type_union { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1188 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1189 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1190 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1191 | uint32_t refcount; /**< reference counter for type sharing */ |
| 1192 | struct lysc_type **types; /**< list of types in the union ([sized array](@ref sizedarrays)), mandatory (at least 1 item) */ |
| 1193 | }; |
| 1194 | |
| 1195 | struct lysc_type_bin { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1196 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1197 | const char *dflt; /**< type's default value if any */ |
Radek Krejci | 2167ee1 | 2018-11-02 16:09:07 +0100 | [diff] [blame] | 1198 | LY_DATA_TYPE basetype; /**< Base type of the type */ |
| 1199 | uint32_t refcount; /**< reference counter for type sharing */ |
| 1200 | struct lysc_range *length; /**< Optional length limitation */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1201 | }; |
| 1202 | |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1203 | struct lysc_action_inout { |
| 1204 | struct lysc_node *data; /**< first child node (linked list) */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1205 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1206 | }; |
| 1207 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1208 | struct lysc_action { |
| 1209 | uint16_t nodetype; /**< LYS_ACTION */ |
| 1210 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1211 | struct lys_module *module; /**< module structure */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1212 | struct lysp_action *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */ |
| 1213 | struct lysc_node *parent; /**< parent node (NULL in case of top level node - RPC) */ |
| 1214 | |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1215 | struct lysc_ext_instance *input_exts; /**< list of the extension instances of input ([sized array](@ref sizedarrays)) */ |
| 1216 | 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] | 1217 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1218 | const char *name; /**< action/RPC name (mandatory) */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1219 | const char *dsc; /**< description */ |
| 1220 | const char *ref; /**< reference */ |
| 1221 | |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1222 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1223 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
| 1224 | |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1225 | struct lysc_action_inout input; /**< RPC's/action's input */ |
| 1226 | struct lysc_action_inout output; /**< RPC's/action's output */ |
| 1227 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1228 | }; |
| 1229 | |
| 1230 | struct lysc_notif { |
| 1231 | uint16_t nodetype; /**< LYS_NOTIF */ |
| 1232 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1233 | struct lys_module *module; /**< module structure */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1234 | struct lysp_notif *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1235 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1236 | |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1237 | struct lysc_node *data; /**< first child node (linked list) */ |
| 1238 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1239 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1240 | const char *name; /**< Notification name (mandatory) */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1241 | const char *dsc; /**< description */ |
| 1242 | const char *ref; /**< reference */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1243 | |
| 1244 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
| 1245 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1246 | }; |
| 1247 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1248 | /** |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 1249 | * @brief Compiled YANG data node |
| 1250 | */ |
| 1251 | struct lysc_node { |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1252 | uint16_t nodetype; /**< type of the node (mandatory) */ |
| 1253 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1254 | struct lys_module *module; /**< module structure */ |
| 1255 | struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */ |
| 1256 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1257 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1258 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1259 | never NULL. If there is no sibling node, pointer points to the node |
| 1260 | itself. In case of the first node, this pointer points to the last |
| 1261 | node in the list. */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1262 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1263 | const char *dsc; /**< description */ |
| 1264 | const char *ref; /**< reference */ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1265 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1266 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1267 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1268 | }; |
| 1269 | |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1270 | struct lysc_node_container { |
| 1271 | uint16_t nodetype; /**< LYS_CONTAINER */ |
| 1272 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1273 | struct lys_module *module; /**< module structure */ |
| 1274 | struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */ |
| 1275 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1276 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1277 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1278 | never NULL. If there is no sibling node, pointer points to the node |
| 1279 | itself. In case of the first node, this pointer points to the last |
| 1280 | node in the list. */ |
| 1281 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1282 | const char *dsc; /**< description */ |
| 1283 | const char *ref; /**< reference */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1284 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1285 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1286 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1287 | |
| 1288 | struct lysc_node *child; /**< first child node (linked list) */ |
| 1289 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1290 | struct lysc_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */ |
| 1291 | struct lysc_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1292 | }; |
| 1293 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1294 | struct lysc_node_case { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1295 | uint16_t nodetype; /**< LYS_CASE */ |
| 1296 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1297 | struct lys_module *module; /**< module structure */ |
| 1298 | struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */ |
| 1299 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1300 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1301 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1302 | never NULL. If there is no sibling node, pointer points to the node |
| 1303 | itself. In case of the first node, this pointer points to the last |
| 1304 | node in the list. */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1305 | const char *name; /**< name of the case, including the implicit case */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1306 | const char *dsc; /**< description */ |
| 1307 | const char *ref; /**< reference */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1308 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1309 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1310 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1311 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1312 | 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] | 1313 | 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] | 1314 | }; |
| 1315 | |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1316 | struct lysc_node_choice { |
| 1317 | uint16_t nodetype; /**< LYS_CHOICE */ |
| 1318 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1319 | struct lys_module *module; /**< module structure */ |
| 1320 | struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */ |
| 1321 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1322 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1323 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1324 | never NULL. If there is no sibling node, pointer points to the node |
| 1325 | itself. In case of the first node, this pointer points to the last |
| 1326 | node in the list. */ |
| 1327 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1328 | const char *dsc; /**< description */ |
| 1329 | const char *ref; /**< reference */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1330 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1331 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1332 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1333 | |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 1334 | struct lysc_node_case *cases; /**< list of the cases (linked list). Note that all the children of all the cases are linked each other |
| 1335 | as siblings. Their parent pointers points to the specific case they belongs to, so distinguish the |
| 1336 | case is simple. */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1337 | 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] | 1338 | }; |
| 1339 | |
| 1340 | struct lysc_node_leaf { |
| 1341 | uint16_t nodetype; /**< LYS_LEAF */ |
| 1342 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1343 | struct lys_module *module; /**< module structure */ |
| 1344 | struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */ |
| 1345 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1346 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1347 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1348 | never NULL. If there is no sibling node, pointer points to the node |
| 1349 | itself. In case of the first node, this pointer points to the last |
| 1350 | node in the list. */ |
| 1351 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1352 | const char *dsc; /**< description */ |
| 1353 | const char *ref; /**< reference */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1354 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1355 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1356 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1357 | |
| 1358 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1359 | struct lysc_type *type; /**< type of the leaf node (mandatory) */ |
Radek Krejci | b57cf1e | 2018-11-23 14:07:05 +0100 | [diff] [blame] | 1360 | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 1361 | const char *units; /**< units of the leaf's type */ |
| 1362 | const char *dflt; /**< default value */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1363 | }; |
| 1364 | |
| 1365 | struct lysc_node_leaflist { |
| 1366 | uint16_t nodetype; /**< LYS_LEAFLIST */ |
| 1367 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1368 | struct lys_module *module; /**< module structure */ |
| 1369 | struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */ |
| 1370 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1371 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1372 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1373 | never NULL. If there is no sibling node, pointer points to the node |
| 1374 | itself. In case of the first node, this pointer points to the last |
| 1375 | node in the list. */ |
| 1376 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1377 | const char *dsc; /**< description */ |
| 1378 | const char *ref; /**< reference */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1379 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | b57cf1e | 2018-11-23 14:07:05 +0100 | [diff] [blame] | 1380 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1381 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | b57cf1e | 2018-11-23 14:07:05 +0100 | [diff] [blame] | 1382 | |
| 1383 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1384 | struct lysc_type *type; /**< type of the leaf node (mandatory) */ |
| 1385 | |
Radek Krejci | 0e5d838 | 2018-11-28 16:37:53 +0100 | [diff] [blame] | 1386 | const char *units; /**< units of the leaf's type */ |
| 1387 | const char **dflts; /**< list of default values ([sized array](@ref sizedarrays)) */ |
| 1388 | uint32_t min; /**< min-elements constraint */ |
| 1389 | uint32_t max; /**< max-elements constraint */ |
| 1390 | |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1391 | }; |
| 1392 | |
| 1393 | struct lysc_node_list { |
| 1394 | uint16_t nodetype; /**< LYS_LIST */ |
| 1395 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1396 | struct lys_module *module; /**< module structure */ |
| 1397 | struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */ |
| 1398 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1399 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1400 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1401 | never NULL. If there is no sibling node, pointer points to the node |
| 1402 | itself. In case of the first node, this pointer points to the last |
| 1403 | node in the list. */ |
| 1404 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1405 | const char *dsc; /**< description */ |
| 1406 | const char *ref; /**< reference */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1407 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1408 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1409 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1410 | |
| 1411 | struct lysc_node *child; /**< first child node (linked list) */ |
| 1412 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
| 1413 | struct lysc_action *actions; /**< list of actions ([sized array](@ref sizedarrays)) */ |
| 1414 | struct lysc_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
| 1415 | |
| 1416 | struct lysc_node_leaf **keys; /**< list of pointers to the keys ([sized array](@ref sizedarrays)) */ |
| 1417 | struct lysc_node_leaf ***uniques; /**< list of sized arrays of pointers to the unique nodes ([sized array](@ref sizedarrays)) */ |
| 1418 | uint32_t min; /**< min-elements constraint */ |
| 1419 | uint32_t max; /**< max-elements constraint */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1420 | }; |
| 1421 | |
| 1422 | struct lysc_node_anydata { |
| 1423 | uint16_t nodetype; /**< LYS_ANYXML or LYS_ANYDATA */ |
| 1424 | uint16_t flags; /**< [schema node flags](@ref snodeflags) */ |
| 1425 | struct lys_module *module; /**< module structure */ |
| 1426 | struct lysp_node *sp; /**< simply parsed (SP) original of the node, NULL if the SP schema was removed or in case of implicit case node. */ |
| 1427 | struct lysc_node *parent; /**< parent node (NULL in case of top level node) */ |
| 1428 | struct lysc_node *next; /**< next sibling node (NULL if there is no one) */ |
| 1429 | struct lysc_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 1430 | never NULL. If there is no sibling node, pointer points to the node |
| 1431 | itself. In case of the first node, this pointer points to the last |
| 1432 | node in the list. */ |
| 1433 | const char *name; /**< node name (mandatory) */ |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 1434 | const char *dsc; /**< description */ |
| 1435 | const char *ref; /**< reference */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1436 | struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1437 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1438 | struct lysc_when **when; /**< list of pointers to when statements ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 1439 | |
| 1440 | struct lysc_must *musts; /**< list of must restrictions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | bd8d9ba | 2018-11-02 16:06:26 +0100 | [diff] [blame] | 1441 | }; |
| 1442 | |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1443 | /** |
| 1444 | * @brief Compiled YANG schema tree structure representing YANG module. |
| 1445 | * |
| 1446 | * Semantically validated YANG schema tree for data tree parsing. |
| 1447 | * Contains only the necessary information for the data validation. |
| 1448 | */ |
| 1449 | struct lysc_module { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1450 | struct lys_module *mod; /**< covering module structure */ |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1451 | struct lysc_import *imports; /**< list of imported modules ([sized array](@ref sizedarrays)) */ |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1452 | |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 1453 | struct lysc_feature *features; /**< list of feature definitions ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 2a408df | 2018-10-29 16:32:26 +0100 | [diff] [blame] | 1454 | struct lysc_ident *identities; /**< list of identities ([sized array](@ref sizedarrays)) */ |
| 1455 | struct lysc_node *data; /**< list of module's top-level data nodes (linked list) */ |
| 1456 | struct lysc_action *rpcs; /**< list of RPCs ([sized array](@ref sizedarrays)) */ |
| 1457 | struct lysc_notif *notifs; /**< list of notifications ([sized array](@ref sizedarrays)) */ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1458 | 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] | 1459 | }; |
| 1460 | |
| 1461 | /** |
Radek Krejci | 53ea615 | 2018-12-13 15:21:15 +0100 | [diff] [blame] | 1462 | * @brief Get the groupings sized array of the given (parsed) schema node. |
| 1463 | * Decides the node's type and in case it has a groupings array, returns it. |
| 1464 | * @param[in] node Node to examine. |
| 1465 | * @return The node's groupings sized array if any, NULL otherwise. |
| 1466 | */ |
| 1467 | const struct lysp_grp *lysp_node_groupings(const struct lysp_node *node); |
| 1468 | |
| 1469 | /** |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1470 | * @brief Get the typedefs sized array of the given (parsed) schema node. |
| 1471 | * Decides the node's type and in case it has a typedefs array, returns it. |
| 1472 | * @param[in] node Node to examine. |
| 1473 | * @return The node's typedefs sized array if any, NULL otherwise. |
| 1474 | */ |
| 1475 | const struct lysp_tpdf *lysp_node_typedefs(const struct lysp_node *node); |
| 1476 | |
| 1477 | /** |
| 1478 | * @brief Get the actions/RPCs sized array of the given (parsed) schema node. |
| 1479 | * Decides the node's type and in case it has a actions/RPCs array, returns it. |
| 1480 | * @param[in] node Node to examine. |
| 1481 | * @return The node's actions/RPCs sized array if any, NULL otherwise. |
| 1482 | */ |
| 1483 | const struct lysp_action *lysp_node_actions(const struct lysp_node *node); |
| 1484 | |
| 1485 | /** |
| 1486 | * @brief Get the Notifications sized array of the given (parsed) schema node. |
| 1487 | * Decides the node's type and in case it has a Notifications array, returns it. |
| 1488 | * @param[in] node Node to examine. |
| 1489 | * @return The node's Notifications sized array if any, NULL otherwise. |
| 1490 | */ |
| 1491 | const struct lysp_notif *lysp_node_notifs(const struct lysp_node *node); |
| 1492 | |
| 1493 | /** |
| 1494 | * @brief Get the children linked list of the given (parsed) schema node. |
| 1495 | * Decides the node's type and in case it has a children list, returns it. |
| 1496 | * @param[in] node Node to examine. |
| 1497 | * @return The node's children linked list if any, NULL otherwise. |
| 1498 | */ |
| 1499 | const struct lysp_node *lysp_node_children(const struct lysp_node *node); |
| 1500 | |
| 1501 | /** |
| 1502 | * @brief Get the actions/RPCs sized array of the given (compiled) schema node. |
| 1503 | * Decides the node's type and in case it has a actions/RPCs array, returns it. |
| 1504 | * @param[in] node Node to examine. |
| 1505 | * @return The node's actions/RPCs sized array if any, NULL otherwise. |
| 1506 | */ |
| 1507 | const struct lysc_action *lysc_node_actions(const struct lysc_node *node); |
| 1508 | |
| 1509 | /** |
| 1510 | * @brief Get the Notifications sized array of the given (compiled) schema node. |
| 1511 | * Decides the node's type and in case it has a Notifications array, returns it. |
| 1512 | * @param[in] node Node to examine. |
| 1513 | * @return The node's Notifications sized array if any, NULL otherwise. |
| 1514 | */ |
| 1515 | const struct lysc_notif *lysc_node_notifs(const struct lysc_node *node); |
| 1516 | |
| 1517 | /** |
| 1518 | * @brief Get the children linked list of the given (compiled) schema node. |
| 1519 | * Decides the node's type and in case it has a children list, returns it. |
| 1520 | * @param[in] node Node to examine. |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1521 | * @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] | 1522 | * @return The node's children linked list if any, NULL otherwise. |
| 1523 | */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1524 | 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] | 1525 | |
| 1526 | /** |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1527 | * @brief Get how the if-feature statement currently evaluates. |
| 1528 | * |
| 1529 | * @param[in] iff Compiled if-feature statement to evaluate. |
| 1530 | * @return If the statement evaluates to true, 1 is returned. 0 is returned when the statement evaluates to false. |
| 1531 | */ |
| 1532 | int lysc_iffeature_value(const struct lysc_iffeature *iff); |
| 1533 | |
| 1534 | /** |
| 1535 | * @brief Get the current status of the provided feature. |
| 1536 | * |
| 1537 | * @param[in] feature Compiled feature statement to examine. |
| 1538 | * @return |
| 1539 | * - 1 if feature is enabled, |
| 1540 | * - 0 if feature is disabled, |
| 1541 | * - -1 in case of error (invalid argument) |
| 1542 | */ |
| 1543 | int lysc_feature_value(const struct lysc_feature *feature); |
| 1544 | |
| 1545 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1546 | * @brief Available YANG schema tree structures representing YANG module. |
| 1547 | */ |
| 1548 | struct lys_module { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1549 | struct ly_ctx *ctx; /**< libyang context of the module (mandatory) */ |
| 1550 | const char *name; /**< name of the module (mandatory) */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1551 | const char *revision; /**< revision of the module (if present) */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1552 | const char *ns; /**< namespace of the module (module - mandatory) */ |
| 1553 | const char *prefix; /**< module prefix or submodule belongsto prefix of main module (mandatory) */ |
| 1554 | const char *filepath; /**< path, if the schema was read from a file, NULL in case of reading from memory */ |
| 1555 | const char *org; /**< party/company responsible for the module */ |
| 1556 | const char *contact; /**< contact information for the module */ |
| 1557 | const char *dsc; /**< description of the module */ |
| 1558 | const char *ref; /**< cross-reference for the module */ |
| 1559 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1560 | struct lysp_module *parsed; /**< Simply parsed (unresolved) YANG schema tree */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1561 | struct lysc_module *compiled; /**< Compiled and fully validated YANG schema tree for data parsing. |
| 1562 | Available only for implemented modules. */ |
| 1563 | struct lysc_feature *off_features;/**< List of pre-compiled features of the module in non implemented modules ([sized array](@ref sizedarrays)). |
| 1564 | These features are always disabled and cannot be enabled until the module |
| 1565 | become implemented. The features are present in this form to allow their linkage |
| 1566 | from if-feature statements of the compiled schemas and their proper use in case |
| 1567 | the module became implemented in future (no matter if implicitly via augment/deviate |
| 1568 | or explicitly via ly_ctx_module_implement()). */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1569 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1570 | uint8_t implemented; /**< flag if the module is implemented, not just imported. The module is implemented if |
| 1571 | the flag has non-zero value. Specific values are used internally: |
| 1572 | 1 - implemented module |
| 1573 | 2 - recently implemented module by dependency, it can be reverted in rollback procedure */ |
| 1574 | uint8_t latest_revision; /**< flag to mark the latest available revision: |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1575 | 1 - the latest revision in searchdirs was not searched yet and this is the |
| 1576 | latest revision in the current context |
| 1577 | 2 - searchdirs were searched and this is the latest available revision */ |
| 1578 | uint8_t version; /**< yang-version (LYS_VERSION values) */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1579 | }; |
| 1580 | |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1581 | /** |
| 1582 | * @brief Enable specified feature in the module |
| 1583 | * |
| 1584 | * By default, when the module is loaded by libyang parser, all features are disabled. |
| 1585 | * |
Radek Krejci | ca3db00 | 2018-11-01 10:31:01 +0100 | [diff] [blame] | 1586 | * If all features are being enabled, it must be possible respecting their if-feature conditions. For example, |
| 1587 | * enabling all features on the following feature set will fail since it is not possible to enable both features |
| 1588 | * (and it is unclear which of them should be enabled then). In this case the LY_EDENIED is returned and the feature |
| 1589 | * is untouched. |
| 1590 | * |
| 1591 | * feature f1; |
| 1592 | * feature f2 { if-feature 'not f1';} |
| 1593 | * |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1594 | * @param[in] module Module where the feature will be enabled. |
| 1595 | * @param[in] feature Name of the feature to enable. To enable all features at once, use asterisk (`*`) character. |
| 1596 | * @return LY_ERR value. |
| 1597 | */ |
| 1598 | LY_ERR lys_feature_enable(struct lys_module *module, const char *feature); |
| 1599 | |
| 1600 | /** |
| 1601 | * @brief Disable specified feature in the module |
| 1602 | * |
| 1603 | * By default, when the module is loaded by libyang parser, all features are disabled. |
| 1604 | * |
| 1605 | * @param[in] module Module where the feature will be disabled. |
| 1606 | * @param[in] feature Name of the feature to disable. To disable all features at once, use asterisk (`*`) character. |
| 1607 | * @return LY_ERR value |
| 1608 | */ |
| 1609 | LY_ERR lys_feature_disable(struct lys_module *module, const char *feature); |
| 1610 | |
| 1611 | /** |
| 1612 | * @brief Get the current status of the specified feature in the module. |
| 1613 | * |
| 1614 | * @param[in] module Module where the feature is defined. |
| 1615 | * @param[in] feature Name of the feature to inspect. |
| 1616 | * @return |
| 1617 | * - 1 if feature is enabled, |
| 1618 | * - 0 if feature is disabled, |
| 1619 | * - -1 in case of error (e.g. feature is not defined or invalid arguments) |
| 1620 | */ |
| 1621 | int lys_feature_value(const struct lys_module *module, const char *feature); |
Radek Krejci | dd4e8d4 | 2018-10-16 14:55:43 +0200 | [diff] [blame] | 1622 | |
| 1623 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1624 | * @brief Load a schema into the specified context. |
| 1625 | * |
| 1626 | * @param[in] ctx libyang context where to process the data model. |
| 1627 | * @param[in] data The string containing the dumped data model in the specified |
| 1628 | * format. |
| 1629 | * @param[in] format Format of the input data (YANG or YIN). |
| 1630 | * @return Pointer to the data model structure or NULL on error. |
| 1631 | */ |
Radek Krejci | d14e969 | 2018-11-01 11:00:37 +0100 | [diff] [blame] | 1632 | struct lys_module *lys_parse_mem(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1633 | |
| 1634 | /** |
| 1635 | * @brief Read a schema from file descriptor into the specified context. |
| 1636 | * |
| 1637 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 1638 | * |
| 1639 | * @param[in] ctx libyang context where to process the data model. |
| 1640 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 1641 | * in the specified format. |
| 1642 | * @param[in] format Format of the input data (YANG or YIN). |
| 1643 | * @return Pointer to the data model structure or NULL on error. |
| 1644 | */ |
Radek Krejci | d14e969 | 2018-11-01 11:00:37 +0100 | [diff] [blame] | 1645 | struct lys_module *lys_parse_fd(struct ly_ctx *ctx, int fd, LYS_INFORMAT format); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1646 | |
| 1647 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1648 | * @brief Read a schema into the specified context from a file. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1649 | * |
| 1650 | * @param[in] ctx libyang context where to process the data model. |
| 1651 | * @param[in] path Path to the file with the model in the specified format. |
| 1652 | * @param[in] format Format of the input data (YANG or YIN). |
| 1653 | * @return Pointer to the data model structure or NULL on error. |
| 1654 | */ |
Radek Krejci | d14e969 | 2018-11-01 11:00:37 +0100 | [diff] [blame] | 1655 | struct lys_module *lys_parse_path(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1656 | |
| 1657 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1658 | * @brief Search for the schema file in the specified searchpaths. |
| 1659 | * |
| 1660 | * @param[in] searchpaths NULL-terminated array of paths to be searched (recursively). Current working |
| 1661 | * directory is searched automatically (but non-recursively if not in the provided list). Caller can use |
| 1662 | * result of the ly_ctx_get_searchdirs(). |
| 1663 | * @param[in] cwd Flag to implicitly search also in the current working directory (non-recursively). |
| 1664 | * @param[in] name Name of the schema to find. |
| 1665 | * @param[in] revision Revision of the schema to find. If NULL, the newest found schema filepath is returned. |
| 1666 | * @param[out] localfile Mandatory output variable containing absolute path of the found schema. If no schema |
| 1667 | * complying the provided restriction is found, NULL is set. |
| 1668 | * @param[out] format Optional output variable containing expected format of the schema document according to the |
| 1669 | * file suffix. |
| 1670 | * @return LY_ERR value (LY_SUCCESS is returned even if the file is not found, then the *localfile is NULL). |
| 1671 | */ |
| 1672 | LY_ERR lys_search_localfile(const char * const *searchpaths, int cwd, const char *name, const char *revision, char **localfile, LYS_INFORMAT *format); |
| 1673 | |
| 1674 | /** |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1675 | * @brief Get next schema tree (sibling) node element that can be instantiated in a data tree. Returned node can |
| 1676 | * be from an augment. |
| 1677 | * |
| 1678 | * lys_getnext() is supposed to be called sequentially. In the first call, the \p last parameter is usually NULL |
| 1679 | * and function starts returning i) the first \p parent's child or ii) the first top level element of the \p module. |
| 1680 | * Consequent calls suppose to provide the previously returned node as the \p last parameter and still the same |
| 1681 | * \p parent and \p module parameters. |
| 1682 | * |
| 1683 | * Without options, the function is used to traverse only the schema nodes that can be paired with corresponding |
| 1684 | * data nodes in a data tree. By setting some \p options the behavior can be modified to the extent that |
| 1685 | * all the schema nodes are iteratively returned. |
| 1686 | * |
| 1687 | * @param[in] last Previously returned schema tree node, or NULL in case of the first call. |
| 1688 | * @param[in] parent Parent of the subtree where the function starts processing. |
| 1689 | * @param[in] module In case of iterating on top level elements, the \p parent is NULL and |
| 1690 | * module must be specified. |
| 1691 | * @param[in] options [ORed options](@ref sgetnextflags). |
| 1692 | * @return Next schema tree node that can be instantiated in a data tree, NULL in case there is no such element. |
| 1693 | */ |
| 1694 | const struct lysc_node *lys_getnext(const struct lysc_node *last, const struct lysc_node *parent, |
| 1695 | const struct lysc_module *module, int options); |
| 1696 | |
| 1697 | /** |
| 1698 | * @defgroup sgetnextflags lys_getnext() flags |
| 1699 | * @ingroup schematree |
| 1700 | * |
| 1701 | * @{ |
| 1702 | */ |
| 1703 | #define LYS_GETNEXT_WITHCHOICE 0x01 /**< lys_getnext() option to allow returning #LYS_CHOICE nodes instead of looking into them */ |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 1704 | #define LYS_GETNEXT_NOCHOICE 0x02 /**< lys_getnext() option to ignore (kind of conditional) nodes within choice node */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1705 | #define LYS_GETNEXT_WITHCASE 0x04 /**< lys_getnext() option to allow returning #LYS_CASE nodes instead of looking into them */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1706 | #define LYS_GETNEXT_INTONPCONT 0x40 /**< lys_getnext() option to look into non-presence container, instead of returning container itself */ |
| 1707 | #define LYS_GETNEXT_NOSTATECHECK 0x100 /**< lys_getnext() option to skip checking module validity (import-only, disabled) and |
| 1708 | relevant if-feature conditions state */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1709 | #define LYS_GETNEXT_OUTPUT 0x200 /**< lys_getnext() option to provide RPC's/action's output schema nodes instead of input schema nodes |
| 1710 | provided by default */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1711 | /** @} sgetnextflags */ |
| 1712 | |
| 1713 | /** |
| 1714 | * @brief Get child node according to the specified criteria. |
| 1715 | * |
| 1716 | * @param[in] parent Optional parent of the node to find. If not specified, the module's top-level nodes are searched. |
| 1717 | * @param[in] module module of the node to find. It is also limitation for the children node of the given parent. |
| 1718 | * @param[in] name Name of the node to find. |
| 1719 | * @param[in] name_len Optional length of the name in case it is not NULL-terminated string. |
| 1720 | * @param[in] nodetype Optional criteria (to speedup) specifying nodetype(s) of the node to find. |
| 1721 | * Used as a bitmask, so multiple nodetypes can be specified. |
| 1722 | * @param[in] options [ORed options](@ref sgetnextflags). |
| 1723 | * @return Found node if any. |
| 1724 | */ |
| 1725 | const struct lysc_node *lys_child(const struct lysc_node *parent, const struct lys_module *module, |
| 1726 | const char *name, size_t name_len, uint16_t nodetype, int options); |
| 1727 | |
| 1728 | /** |
| 1729 | * @brief Check if the schema node is disabled in the schema tree, i.e. there is any disabled if-feature statement |
| 1730 | * affecting the node. |
| 1731 | * |
| 1732 | * @param[in] node Schema node to check. |
| 1733 | * @param[in] recursive - 0 to check if-feature only in the \p node schema node, |
| 1734 | * - 1 to check if-feature in all ascendant schema nodes until there is a node possibly having an instance in a data tree |
| 1735 | * @return - NULL if enabled, |
| 1736 | * - pointer to the node with the unsatisfied (disabling) if-feature expression. |
| 1737 | */ |
| 1738 | const struct lysc_iffeature *lys_is_disabled(const struct lysc_node *node, int recursive); |
| 1739 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1740 | /** @} */ |
| 1741 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 1742 | #ifdef __cplusplus |
| 1743 | } |
| 1744 | #endif |
| 1745 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1746 | #endif /* LY_TREE_SCHEMA_H_ */ |