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