Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file tree_schema_internal.h |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief internal functions for 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_INTERNAL_H_ |
| 16 | #define LY_TREE_SCHEMA_INTERNAL_H_ |
| 17 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 18 | #define LOGVAL_YANG(CTX, ...) LOGVAL((CTX)->ctx, LY_VLOG_LINE, &(CTX)->line, __VA_ARGS__) |
| 19 | |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 20 | /* These 2 macros checks YANG's identifier grammar rule */ |
| 21 | #define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_') |
| 22 | #define is_yangidentchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || \ |
| 23 | c == '_' || c == '-' || c == '.') |
| 24 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 25 | /** |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 26 | * @brief List of YANG statement groups - the (sub)module's substatements |
| 27 | */ |
| 28 | enum yang_module_stmt { |
| 29 | Y_MOD_MODULE_HEADER, |
| 30 | Y_MOD_LINKAGE, |
| 31 | Y_MOD_META, |
| 32 | Y_MOD_REVISION, |
| 33 | Y_MOD_BODY |
| 34 | }; |
| 35 | |
| 36 | /** |
| 37 | * @brief Types of arguments of YANG statements |
| 38 | */ |
| 39 | enum yang_arg { |
| 40 | Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */ |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 41 | Y_PREF_IDENTIF_ARG, /**< YANG "identifier-ref-arg-str" or node-identifier rule */ |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 42 | Y_STR_ARG, /**< YANG "string" rule */ |
| 43 | Y_MAYBE_STR_ARG /**< optional YANG "string" rule */ |
| 44 | }; |
| 45 | |
| 46 | /** |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 47 | * @brief internal context for schema parsers |
| 48 | */ |
| 49 | struct ly_parser_ctx { |
| 50 | struct ly_ctx *ctx; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 51 | struct ly_set tpdfs_nodes; |
| 52 | struct ly_set grps_nodes; |
| 53 | uint64_t line; /**< line number */ |
| 54 | uint64_t indent; /**< current position on the line for YANG indentation */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 55 | uint8_t mod_version; /**< module's version */ |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 56 | }; |
| 57 | |
| 58 | /** |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 59 | * @brief internal context for compilation |
| 60 | */ |
| 61 | struct lysc_ctx { |
| 62 | struct ly_ctx *ctx; |
| 63 | struct lys_module *mod; |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame^] | 64 | struct lys_module *mod_def; /**< context module for the definitions of the nodes being currently |
| 65 | processed - groupings are supposed to be evaluated in place where |
| 66 | defined, but its content instances are supposed to be placed into |
| 67 | the target module (mod) */ |
| 68 | struct ly_set groupings; /**< stack for groupings circular check */ |
| 69 | struct ly_set unres; /**< to validate leafref's target and xpath of when/must */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 70 | uint16_t path_len; |
| 71 | #define LYSC_CTX_BUFSIZE 4078 |
| 72 | char path[LYSC_CTX_BUFSIZE]; |
| 73 | }; |
| 74 | |
| 75 | /** |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 76 | * @brief Check the currently present prefixes in the module for collision with the new one. |
| 77 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 78 | * @param[in] ctx Context for logging. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 79 | * @param[in] imports List of current imports of the module to check prefix collision. |
| 80 | * @param[in] module_prefix Prefix of the module to check collision. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 81 | * @param[in] value Newly added prefix value (including its location to distinguish collision with itself). |
| 82 | * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise |
| 83 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 84 | LY_ERR lysp_check_prefix(struct ly_parser_ctx *ctx, struct lysp_import *imports, const char *module_prefix, const char **value); |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 85 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 86 | /** |
| 87 | * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT) |
| 88 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 89 | * @param[in] ctx Optional context for logging. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 90 | * @param[in] date Date string to check (non-necessarily terminated by \0) |
| 91 | * @param[in] date_len Length of the date string, 10 expected. |
| 92 | * @param[in] stmt Statement name for error message. |
| 93 | * @return LY_ERR value. |
| 94 | */ |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 95 | LY_ERR lysp_check_date(struct ly_parser_ctx *ctx, const char *date, int date_len, const char *stmt); |
| 96 | |
| 97 | /** |
| 98 | * @brief Check names of typedefs in the parsed module to detect collisions. |
| 99 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 100 | * @param[in] ctx Parser context for logging and to maintain tpdfs_nodes |
| 101 | * @param[in] mod Module where the type is being defined. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 102 | * @return LY_ERR value. |
| 103 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 104 | LY_ERR lysp_check_typedefs(struct ly_parser_ctx *ctx, struct lysp_module *mod); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 105 | |
| 106 | /** |
| 107 | * @brief Just move the newest revision into the first position, does not sort the rest |
| 108 | * @param[in] revs Sized-array of the revisions in a printable schema tree. |
| 109 | */ |
| 110 | void lysp_sort_revisions(struct lysp_revision *revs); |
| 111 | |
| 112 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 113 | * @brief Find type specified type definition |
| 114 | * |
| 115 | * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module. |
| 116 | * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents. |
| 117 | * @param[in] start_module Module where the type is being instantiated for search for typedefs. |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 118 | * @param[out] type Built-in type identifier of the id. If #LY_TYPE_UNKNOWN, tpdf is expected to contain found YANG schema typedef statement. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 119 | * @param[out] tpdf Found type definition. |
| 120 | * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef. |
| 121 | * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types. |
| 122 | */ |
| 123 | LY_ERR lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module, |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 124 | LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 125 | |
| 126 | /** |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 127 | * @brief Find and parse module of the given name. |
| 128 | * |
| 129 | * @param[in] ctx libyang context. |
| 130 | * @param[in] name Name of the module to load. |
| 131 | * @param[in] revison Optional revision of the module to load. If NULL, the newest revision is loaded. |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 132 | * @param[in] implement Flag if the loaded module is supposed to be marked as implemented. |
| 133 | * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context, |
| 134 | * but only the compiled structure is available. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 135 | * @param[out] mod Parsed module structure. |
| 136 | * @return LY_ERR value. |
| 137 | */ |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 138 | LY_ERR lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, int implement, int require_parsed, struct lys_module **mod); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 139 | |
| 140 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 141 | * @brief Parse included submodule into the simply parsed YANG module. |
| 142 | * |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 143 | * @param[in] ctx parser context |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 144 | * @param[in] mod Module including a submodule. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 145 | * @param[in,out] inc Include structure holding all available information about the include statement, the parsed |
| 146 | * submodule is stored into this structure. |
| 147 | * @return LY_ERR value. |
| 148 | */ |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 149 | LY_ERR lysp_load_submodule(struct ly_parser_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 150 | |
| 151 | /** |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 152 | * @defgroup scflags Schema compile flags |
| 153 | * @ingroup schematree |
| 154 | * |
| 155 | * @{ |
| 156 | */ |
| 157 | #define LYSC_OPT_FREE_SP 1 /**< Free the input printable schema */ |
| 158 | /** @} scflags */ |
| 159 | |
| 160 | /** |
| 161 | * @brief Compile printable schema into a validated schema linking all the references. |
| 162 | * |
| 163 | * @param[in, out] mod Schema structure holding pointers to both schema structure types. The ::lys_module#parsed |
| 164 | * member is used as input and ::lys_module#compiled is used to hold the result of the compilation. |
| 165 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 166 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 167 | */ |
| 168 | LY_ERR lys_compile(struct lys_module *mod, int options); |
| 169 | |
| 170 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 171 | * @brief Get address of a node's actions list if any. |
| 172 | * |
| 173 | * Decides the node's type and in case it has an actions list, returns its address. |
| 174 | * @param[in] node Node to check. |
| 175 | * @return Address of the node's actions member if any, NULL otherwise. |
| 176 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 177 | struct lysp_action **lysp_node_actions_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 178 | |
| 179 | /** |
| 180 | * @brief Get address of a node's notifications list if any. |
| 181 | * |
| 182 | * Decides the node's type and in case it has a notifications list, returns its address. |
| 183 | * @param[in] node Node to check. |
| 184 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 185 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 186 | struct lysp_notif **lysp_node_notifs_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 187 | |
| 188 | /** |
| 189 | * @brief Get address of a node's child pointer if any. |
| 190 | * |
| 191 | * Decides the node's type and in case it has a children list, returns its address. |
| 192 | * @param[in] node Node to check. |
| 193 | * @return Address of the node's child member if any, NULL otherwise. |
| 194 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 195 | struct lysp_node **lysp_node_children_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 196 | |
| 197 | /** |
| 198 | * @brief Get address of a node's child pointer if any. |
| 199 | * |
| 200 | * Decides the node's type and in case it has a children list, returns its address. |
| 201 | * @param[in] node Node to check. |
| 202 | * @return Address of the node's child member if any, NULL otherwise. |
| 203 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 204 | struct lysc_node **lysc_node_children_p(const struct lysc_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 205 | |
| 206 | /** |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 207 | * @brief Get the covering schema module structure for the given parsed module structure. |
| 208 | * @param[in] ctx libyang context to search. |
| 209 | * @param[in] mod Parsed schema structure. |
| 210 | * @return Corresponding lys_module structure for the given parsed schema structure. |
| 211 | */ |
| 212 | struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod); |
| 213 | |
| 214 | /** |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 215 | * @brief Find the module referenced by prefix in the provided parsed mod. |
| 216 | * |
| 217 | * @param[in] mod Schema module where the prefix was used. |
| 218 | * @param[in] prefix Prefix used to reference a module. |
| 219 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 220 | * @return Pointer to the module or NULL if the module is not found. |
| 221 | */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 222 | struct lysp_module *lysp_module_find_prefix(const struct lysp_module *mod, const char *prefix, size_t len); |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 223 | |
| 224 | /** |
| 225 | * @brief Find the module referenced by prefix in the provided compiled mod. |
| 226 | * |
| 227 | * @param[in] mod Schema module where the prefix was used. |
| 228 | * @param[in] prefix Prefix used to reference a module. |
| 229 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 230 | * @return Pointer to the module or NULL if the module is not found. |
| 231 | */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 232 | struct lysc_module *lysc_module_find_prefix(const struct lysc_module *mod, const char *prefix, size_t len); |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 233 | |
| 234 | /** |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 235 | * @brief Check statement's status for invalid combination. |
| 236 | * |
| 237 | * The modX parameters are used just to determine if both flags are in the same module, |
| 238 | * so any of the schema module structure can be used, but both modules must be provided |
| 239 | * in the same type. |
| 240 | * |
| 241 | * @param[in] ctx Compile context for logging. |
| 242 | * @param[in] flags1 Flags of the referencing node. |
| 243 | * @param[in] mod1 Module of the referencing node, |
| 244 | * @param[in] name1 Schema node name of the referencing node. |
| 245 | * @param[in] flags2 Flags of the referenced node. |
| 246 | * @param[in] mod2 Module of the referenced node, |
| 247 | * @param[in] name2 Schema node name of the referenced node. |
| 248 | * @return LY_ERR value |
| 249 | */ |
| 250 | LY_ERR lysc_check_status(struct lysc_ctx *ctx, |
| 251 | uint16_t flags1, void *mod1, const char *name1, |
| 252 | uint16_t flags2, void *mod2, const char *name2); |
| 253 | |
| 254 | /** |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 255 | * @brief Parse a node-identifier. |
| 256 | * |
| 257 | * node-identifier = [prefix ":"] identifier |
| 258 | * |
| 259 | * @param[in, out] id Identifier to parse. When returned, it points to the first character which is not part of the identifier. |
| 260 | * @param[out] prefix Node's prefix, NULL if there is not any. |
| 261 | * @param[out] prefix_len Length of the node's prefix, 0 if there is not any. |
| 262 | * @param[out] name Node's name. |
| 263 | * @param[out] nam_len Length of the node's name. |
| 264 | * @return LY_ERR value: LY_SUCCESS or LY_EINVAL in case of invalid character in the id. |
| 265 | */ |
| 266 | LY_ERR lys_parse_nodeid(const char **id, const char **prefix, size_t *prefix_len, const char **name, size_t *name_len); |
| 267 | |
| 268 | /** |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 269 | * @brief Find the node according to the given descendant schema node id. |
| 270 | * Used in unique, refine and uses's augment statements |
| 271 | * |
| 272 | * @param[in] ctx Compile context |
| 273 | * @param[in] nodeid Descendant-schema-nodeid (according to the YANG grammar) |
| 274 | * @param[in] nodeid_len Length of the given nodeid, if it is not NULL-terminated string. |
| 275 | * @param[in] context_node Node where the nodeid is specified to correctly resolve prefixes and to start searching. |
| 276 | * @param[in] nodetype Optional (can be 0) restriction for target's nodetype. If target exists, but does not match |
| 277 | * the given nodetype, LY_EDENIED is returned, but no error message is printed. The value can be even an ORed value to allow |
| 278 | * multiple nodetypes. |
| 279 | * @param[out] target Found target node if any. |
| 280 | * @return LY_ERR values - LY_ENOTFOUND, LY_EVALID, LY_EDENIED or LY_SUCCESS. |
| 281 | */ |
| 282 | LY_ERR lys_resolve_descendant_schema_nodeid(struct lysc_ctx *ctx, const char *nodeid, size_t nodeid_len, const struct lysc_node *context_node, |
| 283 | int nodetype, const struct lysc_node **target); |
| 284 | |
| 285 | /** |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 286 | * @brief Find the module referenced by prefix in the provided mod. |
| 287 | * |
| 288 | * @param[in] mod Schema module where the prefix was used. |
| 289 | * @param[in] prefix Prefix used to reference a module. |
| 290 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 291 | * @return Pointer to the module or NULL if the module is not found. |
| 292 | */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 293 | struct lys_module *lys_module_find_prefix(const struct lys_module *mod, const char *prefix, size_t len); |
| 294 | |
| 295 | /** |
| 296 | * @brief Stringify schema nodetype. |
| 297 | * @param[in] nodetype Nodetype to stringify. |
| 298 | * @return Constant string with the name of the node's type. |
| 299 | */ |
| 300 | const char *lys_nodetype2str(uint16_t nodetype); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 301 | |
| 302 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 303 | * @brief Parse YANG module from a string. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 304 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 305 | * The modules are added into the context and the latest_revision flag is updated. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 306 | * |
| 307 | * @param[in] ctx libyang context where to process the data model. |
| 308 | * @param[in] data The string containing the dumped data model in the specified |
| 309 | * format. |
| 310 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 311 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 312 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 313 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 314 | * @return Pointer to the data model structure or NULL on error. |
| 315 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 316 | struct lys_module *lys_parse_mem_module(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, int implement, |
| 317 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data), |
| 318 | void *check_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 319 | |
| 320 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 321 | * @brief Parse YANG submodule from a string. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 322 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 323 | * The latest_revision flag of submodule is updated. |
| 324 | * |
| 325 | * @param[in] ctx libyang context where to process the data model. |
| 326 | * @param[in] data The string containing the dumped data model in the specified |
| 327 | * format. |
| 328 | * @param[in] format Format of the input data (YANG or YIN). |
| 329 | * @param[in] main_ctx Parser context of the main module. |
| 330 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 331 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
| 332 | * @return Pointer to the data model structure or NULL on error. |
| 333 | */ |
| 334 | struct lysp_submodule *lys_parse_mem_submodule(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, struct ly_parser_ctx *main_ctx, |
| 335 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data), |
| 336 | void *check_data); |
| 337 | |
| 338 | /** |
| 339 | * @brief Parse YANG module or submodule from a file descriptor. |
| 340 | * |
| 341 | * The modules are added into the context, submodules not. The latest_revision flag is updated in both cases. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 342 | * |
| 343 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 344 | * |
| 345 | * @param[in] ctx libyang context where to process the data model. |
| 346 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 347 | * in the specified format. |
| 348 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 349 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 350 | * @param[in] main_ctx Parser context of the main module in case of parsing submodule. This flag decides if the module |
| 351 | * or submodule was expected to be parsed. |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 352 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 353 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 354 | * @return Pointer to the data model structure or NULL on error. |
| 355 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 356 | void *lys_parse_fd_(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement, struct ly_parser_ctx *main_ctx, |
| 357 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data), |
| 358 | void *check_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 359 | |
| 360 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 361 | * @brief Parse YANG module from a file descriptor. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 362 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 363 | * The modules are added into the context. The latest_revision flag is updated. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 364 | * |
| 365 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 366 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 367 | * @param[in] ctx libyang context where to process the data model. |
| 368 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 369 | * in the specified format. |
| 370 | * @param[in] format Format of the input data (YANG or YIN). |
| 371 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
| 372 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 373 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
| 374 | * @return Pointer to the data model structure or NULL on error. |
| 375 | */ |
| 376 | struct lys_module *lys_parse_fd_module(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement, |
| 377 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data), |
| 378 | void *check_data); |
| 379 | |
| 380 | /** |
| 381 | * @brief Parse YANG submodule from a file descriptor. |
| 382 | * |
| 383 | * The latest_revision flag of submodules is updated. |
| 384 | * |
| 385 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 386 | * |
| 387 | * @param[in] ctx libyang context where to process the data model. |
| 388 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 389 | * in the specified format. |
| 390 | * @param[in] format Format of the input data (YANG or YIN). |
| 391 | * @param[in] main_ctx Parser context of the main module. |
| 392 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 393 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
| 394 | * @return Pointer to the data model structure or NULL on error. |
| 395 | */ |
| 396 | struct lysp_submodule *lys_parse_fd_submodule(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, struct ly_parser_ctx *main_ctx, |
| 397 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data), |
| 398 | void *check_data); |
| 399 | |
| 400 | /** |
| 401 | * @brief Parse YANG module from a filepath. |
| 402 | * |
| 403 | * The modules are added into the context. The latest_revision flag is updated. |
| 404 | * |
| 405 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 406 | * |
| 407 | * @param[in] ctx libyang context where to process the data model. |
| 408 | * @param[in] path Path to the file with the model in the specified format. |
| 409 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 410 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 411 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 412 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 413 | * @return Pointer to the data model structure or NULL on error. |
| 414 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 415 | struct lys_module *lys_parse_path_(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, int implement, |
| 416 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data), |
| 417 | void *check_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 418 | |
| 419 | /** |
| 420 | * @brief Load the (sub)module into the context. |
| 421 | * |
| 422 | * This function does not check the presence of the (sub)module in context, it should be done before calling this function. |
| 423 | * |
| 424 | * module_name and submodule_name are alternatives - only one of the |
| 425 | * |
| 426 | * @param[in] ctx libyang context where to work. |
| 427 | * @param[in] name Name of the (sub)module to load. |
| 428 | * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded. |
| 429 | * @param[in] implement Flag if the (sub)module is supposed to be marked as implemented. |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 430 | * @param[in] main_ctx Parser context of the main module in case of loading submodule. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 431 | * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*). |
| 432 | * If it is a module, it is already in the context! |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 433 | * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided. |
| 434 | */ |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 435 | LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement, struct ly_parser_ctx *main_ctx, |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 436 | void **result); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 437 | |
| 438 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame^] | 439 | * @brief Create pre-compiled features array. |
| 440 | * |
| 441 | * Features are compiled in two steps to allow forward references between them via their if-feature statements. |
| 442 | * In case of not implemented schemas, the precompiled list of features is stored in lys_module structure and |
| 443 | * the compilation is not finished (if-feature and extensions are missing) and all the features are permanently |
| 444 | * disabled without a chance to change it. The list is used as target for any if-feature statement in any |
| 445 | * implemented module to get valid data to evaluate its result. The compilation is finished via |
| 446 | * lys_feature_precompile_finish() in implemented modules. In case a not implemented module becomes implemented, |
| 447 | * the precompiled list is reused to finish the compilation to preserve pointers already used in various compiled |
| 448 | * if-feature structures. |
| 449 | * |
| 450 | * @param[in] ctx libyang context. |
| 451 | * @param[in] features_p Array if the parsed features definitions to precompile. |
| 452 | * @param[in,out] features Pointer to the storage of the (pre)compiled features array where the new features are |
| 453 | * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed features are going |
| 454 | * to be processed. |
| 455 | * @return LY_ERR value. |
| 456 | */ |
| 457 | LY_ERR lys_feature_precompile(struct ly_ctx *ctx, struct lysp_feature *features_p, struct lysc_feature **features); |
| 458 | |
| 459 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 460 | * @brief Free the parsed submodule structure. |
| 461 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 462 | * @param[in,out] submod Parsed schema submodule structure to free. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 463 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 464 | void lysp_submodule_free(struct ly_ctx *ctx, struct lysp_submodule *submod); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 465 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 466 | /** |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 467 | * @brief Free the compiled type structure. |
| 468 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 469 | * @param[in,out] type Compiled type structure to be freed. The structure has refcount, so it is freed only in case the value is decreased to 0. |
| 470 | */ |
| 471 | void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type); |
| 472 | |
| 473 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame^] | 474 | * @brief Free the compiled if-feature structure. |
| 475 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 476 | * @param[in,out] iff Compiled if-feature structure to be cleaned. |
| 477 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 478 | */ |
| 479 | void lysc_iffeature_free(struct ly_ctx *ctx, struct lysc_iffeature *iff); |
| 480 | |
| 481 | /** |
| 482 | * @brief Free the compiled extension instance structure. |
| 483 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 484 | * @param[in,out] ext Compiled extension instance structure to be cleaned. |
| 485 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 486 | */ |
| 487 | void lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext); |
| 488 | |
| 489 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 490 | * @brief Free the compiled node structure. |
| 491 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 492 | * @param[in,out] node Compiled node structure to be freed. |
| 493 | */ |
| 494 | void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node); |
| 495 | |
| 496 | /** |
| 497 | * @brief Free the compiled schema structure. |
| 498 | * @param[in,out] module Compiled schema module structure to free. |
| 499 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 500 | */ |
| 501 | void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 502 | |
| 503 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 504 | * @brief Free the schema structure. It just frees, it does not remove the schema from its context. |
| 505 | * @param[in,out] module Schema module structure to free. |
| 506 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 507 | */ |
| 508 | void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 509 | |
| 510 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 511 | * @brief Parse submodule from YANG data. |
| 512 | * @param[in] ctx Parser context. |
| 513 | * @param[in] data Input data to be parsed. |
| 514 | * @param[out] submod Pointer to the parsed submodule structure. |
| 515 | * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 516 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 517 | LY_ERR yang_parse_submodule(struct ly_parser_ctx *ctx, const char *data, struct lysp_submodule **submod); |
| 518 | |
| 519 | /** |
| 520 | * @brief Parse module from YANG data. |
| 521 | * @param[in] ctx Parser context. |
| 522 | * @param[in] data Input data to be parsed. |
| 523 | * @param[in, out] mod Prepared module structure where the parsed information, including the parsed |
| 524 | * module structure, will be filled in. |
| 525 | * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID. |
| 526 | */ |
| 527 | LY_ERR yang_parse_module(struct ly_parser_ctx *ctx, const char *data, struct lys_module *mod); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 528 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 529 | #endif /* LY_TREE_SCHEMA_INTERNAL_H_ */ |