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 | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 18 | #include <stdint.h> |
| 19 | |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame^] | 20 | #include "plugins_exts.h" |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 21 | #include "set.h" |
| 22 | #include "tree_schema.h" |
| 23 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 24 | #define LOGVAL_YANG(CTX, ...) LOGVAL((CTX)->ctx, LY_VLOG_LINE, &(CTX)->line, __VA_ARGS__) |
| 25 | |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 26 | /* These 2 macros checks YANG's identifier grammar rule */ |
| 27 | #define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_') |
| 28 | #define is_yangidentchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || \ |
| 29 | c == '_' || c == '-' || c == '.') |
| 30 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 31 | /** |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 32 | * @brief List of YANG statement groups - the (sub)module's substatements |
| 33 | */ |
| 34 | enum yang_module_stmt { |
| 35 | Y_MOD_MODULE_HEADER, |
| 36 | Y_MOD_LINKAGE, |
| 37 | Y_MOD_META, |
| 38 | Y_MOD_REVISION, |
| 39 | Y_MOD_BODY |
| 40 | }; |
| 41 | |
| 42 | /** |
| 43 | * @brief Types of arguments of YANG statements |
| 44 | */ |
| 45 | enum yang_arg { |
| 46 | Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */ |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 47 | 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] | 48 | Y_STR_ARG, /**< YANG "string" rule */ |
| 49 | Y_MAYBE_STR_ARG /**< optional YANG "string" rule */ |
| 50 | }; |
| 51 | |
| 52 | /** |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 53 | * @brief internal context for schema parsers |
| 54 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 55 | struct lys_parser_ctx { |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 56 | struct ly_ctx *ctx; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 57 | struct ly_set tpdfs_nodes; |
| 58 | struct ly_set grps_nodes; |
| 59 | uint64_t line; /**< line number */ |
| 60 | uint64_t indent; /**< current position on the line for YANG indentation */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 61 | uint8_t mod_version; /**< module's version */ |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 62 | }; |
| 63 | |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 64 | struct lysc_incomplete_dflt { |
| 65 | struct lyd_value *dflt; |
| 66 | struct lys_module *dflt_mod; |
| 67 | struct lysc_node *context_node; |
| 68 | }; |
| 69 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 70 | /** |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 71 | * @brief Internal structure for lys_get_prefix(). |
| 72 | */ |
| 73 | struct lys_get_prefix_data { |
| 74 | const struct lys_module *context_mod; |
| 75 | struct ly_set prefixes; |
| 76 | }; |
| 77 | |
| 78 | /** |
| 79 | * @brief Schema mapping of YANG modules to prefixes in values. |
| 80 | * |
| 81 | * Implementation of ly_clb_get_prefix. Inverse function to lys_resolve_prefix. |
| 82 | * |
| 83 | * In this case the @p mod is searched in the list of imports and the import's prefix |
| 84 | * (not the module's itself) prefix is returned. |
| 85 | */ |
| 86 | const char *lys_get_prefix(const struct lys_module *mod, void *private); |
| 87 | |
| 88 | /** |
| 89 | * @brief Schema mapping of prefix in values to YANG modules (imports). |
| 90 | * |
| 91 | * Implementation of ly_clb_resolve_prefix. Inverse function to lys_get_prefix(). |
| 92 | * |
| 93 | * In this case the @p prefix is searched in the list of imports' prefixes (not the prefixes of the imported modules themselves). |
| 94 | */ |
| 95 | const struct lys_module *lys_resolve_prefix(struct ly_ctx *ctx, const char *prefix, size_t prefix_len, void *private); |
| 96 | |
| 97 | /** |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 98 | * @brief Check the currently present prefixes in the module for collision with the new one. |
| 99 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 100 | * @param[in] ctx Context for logging. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 101 | * @param[in] imports List of current imports of the module to check prefix collision. |
| 102 | * @param[in] module_prefix Prefix of the module to check collision. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 103 | * @param[in] value Newly added prefix value (including its location to distinguish collision with itself). |
| 104 | * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise |
| 105 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 106 | LY_ERR lysp_check_prefix(struct lys_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] | 107 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 108 | /** |
| 109 | * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT) |
| 110 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 111 | * @param[in] ctx Optional context for logging. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 112 | * @param[in] date Date string to check (non-necessarily terminated by \0) |
| 113 | * @param[in] date_len Length of the date string, 10 expected. |
| 114 | * @param[in] stmt Statement name for error message. |
| 115 | * @return LY_ERR value. |
| 116 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 117 | LY_ERR lysp_check_date(struct lys_parser_ctx *ctx, const char *date, int date_len, const char *stmt); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 118 | |
| 119 | /** |
| 120 | * @brief Check names of typedefs in the parsed module to detect collisions. |
| 121 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 122 | * @param[in] ctx Parser context for logging and to maintain tpdfs_nodes |
| 123 | * @param[in] mod Module where the type is being defined. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 124 | * @return LY_ERR value. |
| 125 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 126 | LY_ERR lysp_check_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 127 | |
| 128 | /** |
| 129 | * @brief Just move the newest revision into the first position, does not sort the rest |
| 130 | * @param[in] revs Sized-array of the revisions in a printable schema tree. |
| 131 | */ |
| 132 | void lysp_sort_revisions(struct lysp_revision *revs); |
| 133 | |
| 134 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 135 | * @brief Find type specified type definition |
| 136 | * |
| 137 | * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module. |
| 138 | * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents. |
| 139 | * @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] | 140 | * @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] | 141 | * @param[out] tpdf Found type definition. |
| 142 | * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef. |
| 143 | * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types. |
| 144 | */ |
| 145 | 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] | 146 | 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] | 147 | |
| 148 | /** |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 149 | * @brief Find and parse module of the given name. |
| 150 | * |
| 151 | * @param[in] ctx libyang context. |
| 152 | * @param[in] name Name of the module to load. |
| 153 | * @param[in] revison Optional revision of the module to load. If NULL, the newest revision is loaded. |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 154 | * @param[in] implement Flag if the loaded module is supposed to be marked as implemented. If revision is NULL and implement flag set, |
| 155 | * the implemented module in the context is returned despite it might not be of the latest revision, because in this case the module |
| 156 | * of the latest revision can not be made implemented. |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 157 | * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context, |
| 158 | * but only the compiled structure is available. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 159 | * @param[out] mod Parsed module structure. |
| 160 | * @return LY_ERR value. |
| 161 | */ |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 162 | 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] | 163 | |
| 164 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 165 | * @brief Parse included submodule into the simply parsed YANG module. |
| 166 | * |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 167 | * @param[in] ctx parser context |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 168 | * @param[in] mod Module including a submodule. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 169 | * @param[in,out] inc Include structure holding all available information about the include statement, the parsed |
| 170 | * submodule is stored into this structure. |
| 171 | * @return LY_ERR value. |
| 172 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 173 | LY_ERR lysp_load_submodule(struct lys_parser_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 174 | |
| 175 | /** |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 176 | * @defgroup scflags Schema compile flags |
| 177 | * @ingroup schematree |
| 178 | * |
| 179 | * @{ |
| 180 | */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 181 | #define LYSC_OPT_RPC_INPUT LYS_CONFIG_W /**< Internal option when compiling schema tree of RPC/action input */ |
| 182 | #define LYSC_OPT_RPC_OUTPUT LYS_CONFIG_R /**< Internal option when compiling schema tree of RPC/action output */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 183 | #define LYSC_OPT_RPC_MASK LYS_CONFIG_MASK /**< mask for the internal RPC options */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 184 | #define LYSC_OPT_FREE_SP 0x04 /**< Free the input printable schema */ |
| 185 | #define LYSC_OPT_INTERNAL 0x08 /**< Internal compilation caused by dependency */ |
| 186 | #define LYSC_OPT_NOTIFICATION 0x10 /**< Internal option when compiling schema tree of Notification */ |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 187 | |
| 188 | #define LYSC_OPT_GROUPING 0x20 /** Compiling (validation) of a non-instantiated grouping. |
| 189 | In this case not all the restrictions are checked since they can be valid only |
| 190 | in the real placement of the grouping. TODO - what specifically is not done */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 191 | /** @} scflags */ |
| 192 | |
| 193 | /** |
| 194 | * @brief Compile printable schema into a validated schema linking all the references. |
| 195 | * |
| 196 | * @param[in, out] mod Schema structure holding pointers to both schema structure types. The ::lys_module#parsed |
| 197 | * member is used as input and ::lys_module#compiled is used to hold the result of the compilation. |
| 198 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 199 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 200 | */ |
| 201 | LY_ERR lys_compile(struct lys_module *mod, int options); |
| 202 | |
| 203 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 204 | * @brief Get address of a node's actions list if any. |
| 205 | * |
| 206 | * Decides the node's type and in case it has an actions list, returns its address. |
| 207 | * @param[in] node Node to check. |
| 208 | * @return Address of the node's actions member if any, NULL otherwise. |
| 209 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 210 | struct lysp_action **lysp_node_actions_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 211 | |
| 212 | /** |
| 213 | * @brief Get address of a node's notifications list if any. |
| 214 | * |
| 215 | * Decides the node's type and in case it has a notifications list, returns its address. |
| 216 | * @param[in] node Node to check. |
| 217 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 218 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 219 | struct lysp_notif **lysp_node_notifs_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 220 | |
| 221 | /** |
| 222 | * @brief Get address of a node's child pointer if any. |
| 223 | * |
| 224 | * Decides the node's type and in case it has a children list, returns its address. |
| 225 | * @param[in] node Node to check. |
| 226 | * @return Address of the node's child member if any, NULL otherwise. |
| 227 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 228 | struct lysp_node **lysp_node_children_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 229 | |
| 230 | /** |
| 231 | * @brief Get address of a node's child pointer if any. |
| 232 | * |
| 233 | * Decides the node's type and in case it has a children list, returns its address. |
| 234 | * @param[in] node Node to check. |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 235 | * @param[in] flags Config flag to distinguish input (LYS_CONFIG_W) and output (LYS_CONFIG_R) data in case of RPC/action node. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 236 | * @return Address of the node's child member if any, NULL otherwise. |
| 237 | */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 238 | struct lysc_node **lysc_node_children_p(const struct lysc_node *node, uint16_t flags); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 239 | |
| 240 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 241 | * @brief Get address of a node's notifs pointer if any. |
| 242 | * |
| 243 | * Decides the node's type and in case it has a notifs array, returns its address. |
| 244 | * @param[in] node Node to check. |
| 245 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 246 | */ |
| 247 | struct lysc_notif **lysc_node_notifs_p(struct lysc_node *node); |
| 248 | |
| 249 | /** |
| 250 | * @brief Get address of a node's actions pointer if any. |
| 251 | * |
| 252 | * Decides the node's type and in case it has a actions array, returns its address. |
| 253 | * @param[in] node Node to check. |
| 254 | * @return Address of the node's actions member if any, NULL otherwise. |
| 255 | */ |
| 256 | struct lysc_action **lysc_node_actions_p(struct lysc_node *node); |
| 257 | |
| 258 | /** |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 259 | * @brief Iterate over the specified type of the extension instances |
| 260 | * |
| 261 | * @param[in] ext ([Sized array](@ref sizedarrays)) of extensions to explore |
| 262 | * @param[in] index Index in the \p ext array where to start searching (first call with 0, the consequent calls with |
| 263 | * the returned index increased by 1 (until the iteration is not terminated by returning LY_ARRAY_SIZE(ext). |
| 264 | * @param[in] substmt Type of the extension (its belongins to the specific substatement) to iterate, use |
| 265 | * #LYEXT_SUBSTMT_ALL to go through all the extensions in the array |
| 266 | * @result index in the ext array, LY_ARRAY_SIZE(ext) value if not present. |
| 267 | */ |
| 268 | unsigned int lysp_ext_instance_iter(struct lysp_ext_instance *ext, unsigned int index, LYEXT_SUBSTMT substmt); |
| 269 | |
| 270 | /** |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 271 | * @brief Get the covering schema module structure for the given parsed module structure. |
| 272 | * @param[in] ctx libyang context to search. |
| 273 | * @param[in] mod Parsed schema structure. |
| 274 | * @return Corresponding lys_module structure for the given parsed schema structure. |
| 275 | */ |
| 276 | struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod); |
| 277 | |
| 278 | /** |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 279 | * @brief Find the module referenced by prefix in the provided parsed mod. |
| 280 | * |
| 281 | * @param[in] mod Schema module where the prefix was used. |
| 282 | * @param[in] prefix Prefix used to reference a module. |
| 283 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 284 | * @return Pointer to the module or NULL if the module is not found. |
| 285 | */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 286 | 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] | 287 | |
| 288 | /** |
| 289 | * @brief Find the module referenced by prefix in the provided compiled mod. |
| 290 | * |
| 291 | * @param[in] mod Schema module where the prefix was used. |
| 292 | * @param[in] prefix Prefix used to reference a module. |
| 293 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 294 | * @return Pointer to the module or NULL if the module is not found. |
| 295 | */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 296 | 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] | 297 | |
| 298 | /** |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 299 | * @brief Check statement's status for invalid combination. |
| 300 | * |
| 301 | * The modX parameters are used just to determine if both flags are in the same module, |
| 302 | * so any of the schema module structure can be used, but both modules must be provided |
| 303 | * in the same type. |
| 304 | * |
| 305 | * @param[in] ctx Compile context for logging. |
| 306 | * @param[in] flags1 Flags of the referencing node. |
| 307 | * @param[in] mod1 Module of the referencing node, |
| 308 | * @param[in] name1 Schema node name of the referencing node. |
| 309 | * @param[in] flags2 Flags of the referenced node. |
| 310 | * @param[in] mod2 Module of the referenced node, |
| 311 | * @param[in] name2 Schema node name of the referenced node. |
| 312 | * @return LY_ERR value |
| 313 | */ |
| 314 | LY_ERR lysc_check_status(struct lysc_ctx *ctx, |
| 315 | uint16_t flags1, void *mod1, const char *name1, |
| 316 | uint16_t flags2, void *mod2, const char *name2); |
| 317 | |
| 318 | /** |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 319 | * @brief Find the node according to the given descendant/absolute schema nodeid. |
| 320 | * Used in unique, refine and augment statements. |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 321 | * |
| 322 | * @param[in] ctx Compile context |
| 323 | * @param[in] nodeid Descendant-schema-nodeid (according to the YANG grammar) |
| 324 | * @param[in] nodeid_len Length of the given nodeid, if it is not NULL-terminated string. |
| 325 | * @param[in] context_node Node where the nodeid is specified to correctly resolve prefixes and to start searching. |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 326 | * If no context node is provided, the nodeid is actually expected to be the absolute schema node . |
| 327 | * @param[in] context_module Explicit module to resolve prefixes in @nodeid. |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 328 | * @param[in] nodetype Optional (can be 0) restriction for target's nodetype. If target exists, but does not match |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 329 | * the given nodetype, LY_EDENIED is returned (and target is provided), but no error message is printed. |
| 330 | * The value can be even an ORed value to allow multiple nodetypes. |
| 331 | * @param[in] implement Flag if the modules mentioned in the nodeid are supposed to be made implemented. |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 332 | * @param[out] target Found target node if any. In case of RPC/action input/output node, LYS_ACTION node is actually returned |
| 333 | * since the input/output has not a standalone node structure and it is part of ::lysc_action which is better compatible with ::lysc_node. |
| 334 | * @param[out] result_flag Output parameter to announce if the schema nodeid goes through the action's input/output or a Notification. |
| 335 | * The LYSC_OPT_RPC_INPUT, LYSC_OPT_RPC_OUTPUT and LYSC_OPT_NOTIFICATION are used as flags. |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 336 | * @return LY_ERR values - LY_ENOTFOUND, LY_EVALID, LY_EDENIED or LY_SUCCESS. |
| 337 | */ |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 338 | LY_ERR lys_resolve_schema_nodeid(struct lysc_ctx *ctx, const char *nodeid, size_t nodeid_len, const struct lysc_node *context_node, |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 339 | const struct lys_module *context_module, int nodetype, int implement, |
| 340 | const struct lysc_node **target, uint16_t *result_flag); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 341 | |
| 342 | /** |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 343 | * @brief Find the module referenced by prefix in the provided mod. |
| 344 | * |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 345 | * Reverse function to lys_prefix_find_module(). |
| 346 | * |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 347 | * @param[in] mod Schema module where the prefix was used. |
| 348 | * @param[in] prefix Prefix used to reference a module. |
| 349 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 350 | * @return Pointer to the module or NULL if the module is not found. |
| 351 | */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 352 | struct lys_module *lys_module_find_prefix(const struct lys_module *mod, const char *prefix, size_t len); |
| 353 | |
| 354 | /** |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 355 | * @brief Find the prefix used to referenced the import module in the provided mod. |
| 356 | * |
| 357 | * Reverse function to lys_module_find_prefix(). |
| 358 | * |
| 359 | * Note that original prefixes are present only in the parsed schema. In case it is not available |
| 360 | * (only compiled schema available), the own prefix of the import module is returned instead. |
| 361 | * |
| 362 | * @param[in] mod Schema module where the import module was used. |
| 363 | * @param[in] import Module referenced in mod. |
| 364 | * @return Prefix of the import module. |
| 365 | */ |
| 366 | const char *lys_prefix_find_module(const struct lys_module *mod, const struct lys_module *import); |
| 367 | |
| 368 | /** |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 369 | * @brief Stringify YANG built-in type. |
| 370 | * @param[in] basetype Built-in tyep ID to stringify. |
| 371 | * @return Constant string with the name of the built-in type. |
| 372 | */ |
| 373 | const char *lys_datatype2str(LY_DATA_TYPE basetype); |
| 374 | |
| 375 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 376 | * @brief Parse YANG module from a string. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 377 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 378 | * 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] | 379 | * |
| 380 | * @param[in] ctx libyang context where to process the data model. |
| 381 | * @param[in] data The string containing the dumped data model in the specified |
| 382 | * format. |
| 383 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 384 | * @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] | 385 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 386 | * @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] | 387 | * @return Pointer to the data model structure or NULL on error. |
| 388 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 389 | struct lys_module *lys_parse_mem_module(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, int implement, |
| 390 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data), |
| 391 | void *check_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 392 | |
| 393 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 394 | * @brief Parse YANG submodule from a string. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 395 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 396 | * The latest_revision flag of submodule is updated. |
| 397 | * |
| 398 | * @param[in] ctx libyang context where to process the data model. |
| 399 | * @param[in] data The string containing the dumped data model in the specified |
| 400 | * format. |
| 401 | * @param[in] format Format of the input data (YANG or YIN). |
| 402 | * @param[in] main_ctx Parser context of the main module. |
| 403 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 404 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
| 405 | * @return Pointer to the data model structure or NULL on error. |
| 406 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 407 | struct lysp_submodule *lys_parse_mem_submodule(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, struct lys_parser_ctx *main_ctx, |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 408 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data), |
| 409 | void *check_data); |
| 410 | |
| 411 | /** |
| 412 | * @brief Parse YANG module or submodule from a file descriptor. |
| 413 | * |
| 414 | * 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] | 415 | * |
| 416 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 417 | * |
| 418 | * @param[in] ctx libyang context where to process the data model. |
| 419 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 420 | * in the specified format. |
| 421 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 422 | * @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] | 423 | * @param[in] main_ctx Parser context of the main module in case of parsing submodule. This flag decides if the module |
| 424 | * or submodule was expected to be parsed. |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 425 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 426 | * @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] | 427 | * @return Pointer to the data model structure or NULL on error. |
| 428 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 429 | void *lys_parse_fd_(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement, struct lys_parser_ctx *main_ctx, |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 430 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data), |
| 431 | void *check_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 432 | |
| 433 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 434 | * @brief Parse YANG module from a file descriptor. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 435 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 436 | * 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] | 437 | * |
| 438 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 439 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 440 | * @param[in] ctx libyang context where to process the data model. |
| 441 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 442 | * in the specified format. |
| 443 | * @param[in] format Format of the input data (YANG or YIN). |
| 444 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
| 445 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 446 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
| 447 | * @return Pointer to the data model structure or NULL on error. |
| 448 | */ |
| 449 | struct lys_module *lys_parse_fd_module(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement, |
| 450 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data), |
| 451 | void *check_data); |
| 452 | |
| 453 | /** |
| 454 | * @brief Parse YANG submodule from a file descriptor. |
| 455 | * |
| 456 | * The latest_revision flag of submodules is updated. |
| 457 | * |
| 458 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 459 | * |
| 460 | * @param[in] ctx libyang context where to process the data model. |
| 461 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 462 | * in the specified format. |
| 463 | * @param[in] format Format of the input data (YANG or YIN). |
| 464 | * @param[in] main_ctx Parser context of the main module. |
| 465 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 466 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
| 467 | * @return Pointer to the data model structure or NULL on error. |
| 468 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 469 | struct lysp_submodule *lys_parse_fd_submodule(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, struct lys_parser_ctx *main_ctx, |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 470 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data), |
| 471 | void *check_data); |
| 472 | |
| 473 | /** |
| 474 | * @brief Parse YANG module from a filepath. |
| 475 | * |
| 476 | * The modules are added into the context. The latest_revision flag is updated. |
| 477 | * |
| 478 | * \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] | 479 | * |
| 480 | * @param[in] ctx libyang context where to process the data model. |
| 481 | * @param[in] path Path to the file with the model in the specified format. |
| 482 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 483 | * @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] | 484 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 485 | * @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] | 486 | * @return Pointer to the data model structure or NULL on error. |
| 487 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 488 | struct lys_module *lys_parse_path_(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, int implement, |
| 489 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data), |
| 490 | void *check_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 491 | |
| 492 | /** |
| 493 | * @brief Load the (sub)module into the context. |
| 494 | * |
| 495 | * This function does not check the presence of the (sub)module in context, it should be done before calling this function. |
| 496 | * |
| 497 | * module_name and submodule_name are alternatives - only one of the |
| 498 | * |
| 499 | * @param[in] ctx libyang context where to work. |
| 500 | * @param[in] name Name of the (sub)module to load. |
| 501 | * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded. |
| 502 | * @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] | 503 | * @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] | 504 | * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*). |
| 505 | * If it is a module, it is already in the context! |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 506 | * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided. |
| 507 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 508 | LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement, struct lys_parser_ctx *main_ctx, |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 509 | void **result); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 510 | |
| 511 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 512 | * @brief Create pre-compiled features array. |
| 513 | * |
| 514 | * Features are compiled in two steps to allow forward references between them via their if-feature statements. |
| 515 | * In case of not implemented schemas, the precompiled list of features is stored in lys_module structure and |
| 516 | * the compilation is not finished (if-feature and extensions are missing) and all the features are permanently |
| 517 | * disabled without a chance to change it. The list is used as target for any if-feature statement in any |
| 518 | * implemented module to get valid data to evaluate its result. The compilation is finished via |
| 519 | * lys_feature_precompile_finish() in implemented modules. In case a not implemented module becomes implemented, |
| 520 | * the precompiled list is reused to finish the compilation to preserve pointers already used in various compiled |
| 521 | * if-feature structures. |
| 522 | * |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 523 | * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p module. |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 524 | * @param[in] ctx libyang context. |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 525 | * @param[in] module Module of the features. |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame^] | 526 | * @param[in] features_p Array of the parsed features definitions to precompile. |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 527 | * @param[in,out] features Pointer to the storage of the (pre)compiled features array where the new features are |
| 528 | * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed features are going |
| 529 | * to be processed. |
| 530 | * @return LY_ERR value. |
| 531 | */ |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame^] | 532 | LY_ERR lys_feature_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module, |
| 533 | struct lysp_feature *features_p, struct lysc_feature **features); |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 534 | |
| 535 | /** |
| 536 | * @brief Get the @ref ifftokens from the given position in the 2bits array |
| 537 | * (libyang format of the if-feature expression). |
| 538 | * @param[in] list The 2bits array with the compiled if-feature expression. |
| 539 | * @param[in] pos Position (0-based) to specify from which position get the operator. |
| 540 | */ |
| 541 | uint8_t lysc_iff_getop(uint8_t *list, int pos); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 542 | |
| 543 | /** |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame^] | 544 | * @brief Internal wrapper around lys_compile_extension() to be able to prepare list of compiled extension definition |
| 545 | * even for the parsed (not-implemented) module - see lys_module::off_extensions. |
| 546 | * |
| 547 | * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p module. |
| 548 | * @param[in] ctx libyang context. |
| 549 | * @param[in] module Module of the extensions. |
| 550 | * @param[in] extensions_p Array of the parsed extension definitions to precompile. |
| 551 | * @param[in,out] extensions Pointer to the storage of the (pre)compiled extensions array where the new extensions are |
| 552 | * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed extensions are going |
| 553 | * to be processed. |
| 554 | * @return LY_ERR value. |
| 555 | */ |
| 556 | LY_ERR lys_extension_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module, |
| 557 | struct lysp_ext *extensions_p, struct lysc_ext **extensions); |
| 558 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 559 | * @brief Macro to free [sized array](@ref sizedarrays) of items using the provided free function. The ARRAY itself is also freed, |
| 560 | * but the memory is not sanitized. |
| 561 | */ |
| 562 | #define FREE_ARRAY(CTX, ARRAY, FUNC) {uint64_t c__; LY_ARRAY_FOR(ARRAY, c__){FUNC(CTX, &(ARRAY)[c__]);}LY_ARRAY_FREE(ARRAY);} |
| 563 | |
| 564 | /** |
| 565 | * @brief Macro to free the specified MEMBER of a structure using the provided free function. The memory is not sanitized. |
| 566 | */ |
| 567 | #define FREE_MEMBER(CTX, MEMBER, FUNC) if (MEMBER) {FUNC(CTX, MEMBER);free(MEMBER);} |
| 568 | |
| 569 | /** |
| 570 | * @brief Macro to free [sized array](@ref sizedarrays) of strings stored in the context's dictionary. The ARRAY itself is also freed, |
| 571 | * but the memory is not sanitized. |
| 572 | */ |
| 573 | #define FREE_STRINGS(CTX, ARRAY) {uint64_t c__; LY_ARRAY_FOR(ARRAY, c__){FREE_STRING(CTX, ARRAY[c__]);}LY_ARRAY_FREE(ARRAY);} |
| 574 | |
| 575 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 576 | * @brief Free the parsed submodule structure. |
| 577 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 578 | * @param[in,out] submod Parsed schema submodule structure to free. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 579 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 580 | void lysp_submodule_free(struct ly_ctx *ctx, struct lysp_submodule *submod); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 581 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 582 | /** |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 583 | * @brief Free the compiled type structure. |
| 584 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 585 | * @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. |
| 586 | */ |
| 587 | void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type); |
| 588 | |
| 589 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 590 | * @brief Free the compiled if-feature structure. |
| 591 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 592 | * @param[in,out] iff Compiled if-feature structure to be cleaned. |
| 593 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 594 | */ |
| 595 | void lysc_iffeature_free(struct ly_ctx *ctx, struct lysc_iffeature *iff); |
| 596 | |
| 597 | /** |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 598 | * @brief Free the compiled must structure. |
| 599 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 600 | * @param[in,out] must Compiled must structure to be cleaned. |
| 601 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 602 | */ |
| 603 | void lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must); |
| 604 | |
| 605 | /** |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 606 | * @brief Free the data inside compiled input/output structure. |
| 607 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 608 | * @param[in,out] inout Compiled inout structure to be cleaned. |
| 609 | * Since the structure is part of the RPC/action structure, it is not freed itself. |
| 610 | */ |
| 611 | void lysc_action_inout_free(struct ly_ctx *ctx, struct lysc_action_inout *inout); |
| 612 | |
| 613 | /** |
| 614 | * @brief Free the data inside compiled RPC/action structure. |
| 615 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 616 | * @param[in,out] action Compiled action structure to be cleaned. |
| 617 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 618 | */ |
| 619 | void lysc_action_free(struct ly_ctx *ctx, struct lysc_action *action); |
| 620 | |
| 621 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 622 | * @brief Free the items inside the compiled Notification structure. |
| 623 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 624 | * @param[in,out] action Compiled Notification structure to be cleaned. |
| 625 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 626 | */ |
| 627 | void lysc_notif_free(struct ly_ctx *ctx, struct lysc_notif *notif); |
| 628 | |
| 629 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 630 | * @brief Free the compiled extension instance structure. |
| 631 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 632 | * @param[in,out] ext Compiled extension instance structure to be cleaned. |
| 633 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 634 | */ |
| 635 | void lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext); |
| 636 | |
| 637 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 638 | * @brief Free the compiled node structure. |
| 639 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 640 | * @param[in,out] node Compiled node structure to be freed. |
| 641 | */ |
| 642 | void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node); |
| 643 | |
| 644 | /** |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 645 | * @brief Free the compiled container node structure. |
| 646 | * |
| 647 | * Only the container-specific members are freed, for generic node free function, |
| 648 | * use lysc_node_free(). |
| 649 | * |
| 650 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 651 | * @param[in,out] node Compiled container node structure to be freed. |
| 652 | */ |
| 653 | void lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node); |
| 654 | |
| 655 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 656 | * @brief Free the compiled schema structure. |
| 657 | * @param[in,out] module Compiled schema module structure to free. |
| 658 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 659 | */ |
| 660 | void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 661 | |
| 662 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 663 | * @brief Free the schema structure. It just frees, it does not remove the schema from its context. |
| 664 | * @param[in,out] module Schema module structure to free. |
| 665 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 666 | */ |
| 667 | void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 668 | |
| 669 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 670 | * @brief Parse submodule from YANG data. |
| 671 | * @param[in] ctx Parser context. |
| 672 | * @param[in] data Input data to be parsed. |
| 673 | * @param[out] submod Pointer to the parsed submodule structure. |
| 674 | * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 675 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 676 | LY_ERR yang_parse_submodule(struct lys_parser_ctx *ctx, const char *data, struct lysp_submodule **submod); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 677 | |
| 678 | /** |
| 679 | * @brief Parse module from YANG data. |
| 680 | * @param[in] ctx Parser context. |
| 681 | * @param[in] data Input data to be parsed. |
| 682 | * @param[in, out] mod Prepared module structure where the parsed information, including the parsed |
| 683 | * module structure, will be filled in. |
| 684 | * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID. |
| 685 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 686 | LY_ERR yang_parse_module(struct lys_parser_ctx *ctx, const char *data, struct lys_module *mod); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 687 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 688 | /** |
| 689 | * @brief Make the specific module implemented, use the provided value as flag. |
| 690 | * |
| 691 | * @param[in] ctx libyang context to change. |
| 692 | * @param[in] mod Module from the given context to make implemented. It is not an error |
| 693 | * to provide already implemented module, it just does nothing. |
| 694 | * @param[in] implemented Flag value for the ::lys_module#implemented item. |
| 695 | * @return LY_SUCCESS or LY_EDENIED in case the context contains some other revision of the |
| 696 | * same module which is already implemented. |
| 697 | */ |
| 698 | LY_ERR ly_ctx_module_implement_internal(struct ly_ctx *ctx, struct lys_module *mod, uint8_t implemented); |
| 699 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 700 | #endif /* LY_TREE_SCHEMA_INTERNAL_H_ */ |