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 | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 20 | /** |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 21 | * @brief List of YANG statement groups - the (sub)module's substatements |
| 22 | */ |
| 23 | enum yang_module_stmt { |
| 24 | Y_MOD_MODULE_HEADER, |
| 25 | Y_MOD_LINKAGE, |
| 26 | Y_MOD_META, |
| 27 | Y_MOD_REVISION, |
| 28 | Y_MOD_BODY |
| 29 | }; |
| 30 | |
| 31 | /** |
| 32 | * @brief Types of arguments of YANG statements |
| 33 | */ |
| 34 | enum yang_arg { |
| 35 | Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */ |
| 36 | Y_PREF_IDENTIF_ARG, /**< YANG "identifier-ref-arg-str" rule */ |
| 37 | Y_STR_ARG, /**< YANG "string" rule */ |
| 38 | Y_MAYBE_STR_ARG /**< optional YANG "string" rule */ |
| 39 | }; |
| 40 | |
| 41 | /** |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 42 | * @brief internal context for schema parsers |
| 43 | */ |
| 44 | struct ly_parser_ctx { |
| 45 | struct ly_ctx *ctx; |
Radek Krejci | faa1eac | 2018-10-30 14:34:55 +0100 | [diff] [blame] | 46 | struct lysp_module *mod; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 47 | struct ly_set tpdfs_nodes; |
| 48 | struct ly_set grps_nodes; |
| 49 | uint64_t line; /**< line number */ |
| 50 | uint64_t indent; /**< current position on the line for YANG indentation */ |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 51 | }; |
| 52 | |
| 53 | /** |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 54 | * @brief internal context for compilation |
| 55 | */ |
| 56 | struct lysc_ctx { |
| 57 | struct ly_ctx *ctx; |
| 58 | struct lys_module *mod; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 59 | 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] | 60 | uint16_t path_len; |
| 61 | #define LYSC_CTX_BUFSIZE 4078 |
| 62 | char path[LYSC_CTX_BUFSIZE]; |
| 63 | }; |
| 64 | |
| 65 | /** |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 66 | * @brief Check the currently present prefixes in the module for collision with the new one. |
| 67 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 68 | * @param[in] ctx Context for logging. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 69 | * @param[in] module Schema tree to check. |
| 70 | * @param[in] value Newly added prefix value (including its location to distinguish collision with itself). |
| 71 | * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise |
| 72 | */ |
| 73 | LY_ERR lysp_check_prefix(struct ly_parser_ctx *ctx, struct lysp_module *module, const char **value); |
| 74 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 75 | /** |
| 76 | * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT) |
| 77 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 78 | * @param[in] ctx Optional context for logging. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 79 | * @param[in] date Date string to check (non-necessarily terminated by \0) |
| 80 | * @param[in] date_len Length of the date string, 10 expected. |
| 81 | * @param[in] stmt Statement name for error message. |
| 82 | * @return LY_ERR value. |
| 83 | */ |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 84 | LY_ERR lysp_check_date(struct ly_parser_ctx *ctx, const char *date, int date_len, const char *stmt); |
| 85 | |
| 86 | /** |
| 87 | * @brief Check names of typedefs in the parsed module to detect collisions. |
| 88 | * |
| 89 | * @param[in] ctx Parser context, module where the type is being defined is taken from here. |
| 90 | * @return LY_ERR value. |
| 91 | */ |
| 92 | LY_ERR lysp_check_typedefs(struct ly_parser_ctx *ctx); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 93 | |
| 94 | /** |
| 95 | * @brief Just move the newest revision into the first position, does not sort the rest |
| 96 | * @param[in] revs Sized-array of the revisions in a printable schema tree. |
| 97 | */ |
| 98 | void lysp_sort_revisions(struct lysp_revision *revs); |
| 99 | |
| 100 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 101 | * @brief Find type specified type definition |
| 102 | * |
| 103 | * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module. |
| 104 | * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents. |
| 105 | * @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] | 106 | * @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] | 107 | * @param[out] tpdf Found type definition. |
| 108 | * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef. |
| 109 | * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types. |
| 110 | */ |
| 111 | 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] | 112 | 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] | 113 | |
| 114 | /** |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 115 | * @brief Find and parse module of the given name. |
| 116 | * |
| 117 | * @param[in] ctx libyang context. |
| 118 | * @param[in] name Name of the module to load. |
| 119 | * @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] | 120 | * @param[in] implement Flag if the loaded module is supposed to be marked as implemented. |
| 121 | * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context, |
| 122 | * but only the compiled structure is available. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 123 | * @param[out] mod Parsed module structure. |
| 124 | * @return LY_ERR value. |
| 125 | */ |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 126 | 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] | 127 | |
| 128 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 129 | * @brief Parse included submodule into the simply parsed YANG module. |
| 130 | * |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 131 | * @param[in] ctx parser context |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 132 | * @param[in] mod Module including a submodule. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 133 | * @param[in,out] inc Include structure holding all available information about the include statement, the parsed |
| 134 | * submodule is stored into this structure. |
| 135 | * @return LY_ERR value. |
| 136 | */ |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 137 | 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] | 138 | |
| 139 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 140 | * @brief Get address of a node's typedefs list if any. |
| 141 | * |
| 142 | * Decides the node's type and in case it has an typedefs list, returns its address. |
| 143 | * @param[in] node Node to check. |
| 144 | * @return Address of the node's tpdf member if any, NULL otherwise. |
| 145 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame^] | 146 | struct lysp_tpdf **lysp_node_typedefs_p(const struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 147 | |
| 148 | /** |
| 149 | * @brief Get address of a node's actions list if any. |
| 150 | * |
| 151 | * Decides the node's type and in case it has an actions list, returns its address. |
| 152 | * @param[in] node Node to check. |
| 153 | * @return Address of the node's actions member if any, NULL otherwise. |
| 154 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame^] | 155 | struct lysp_action **lysp_node_actions_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 156 | |
| 157 | /** |
| 158 | * @brief Get address of a node's notifications list if any. |
| 159 | * |
| 160 | * Decides the node's type and in case it has a notifications list, returns its address. |
| 161 | * @param[in] node Node to check. |
| 162 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 163 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame^] | 164 | struct lysp_notif **lysp_node_notifs_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 165 | |
| 166 | /** |
| 167 | * @brief Get address of a node's child pointer if any. |
| 168 | * |
| 169 | * Decides the node's type and in case it has a children list, returns its address. |
| 170 | * @param[in] node Node to check. |
| 171 | * @return Address of the node's child member if any, NULL otherwise. |
| 172 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame^] | 173 | struct lysp_node **lysp_node_children_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 174 | |
| 175 | /** |
| 176 | * @brief Get address of a node's child pointer if any. |
| 177 | * |
| 178 | * Decides the node's type and in case it has a children list, returns its address. |
| 179 | * @param[in] node Node to check. |
| 180 | * @return Address of the node's child member if any, NULL otherwise. |
| 181 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame^] | 182 | struct lysc_node **lysc_node_children_p(const struct lysc_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 183 | |
| 184 | /** |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 185 | * @brief Get the covering schema module structure for the given parsed module structure. |
| 186 | * @param[in] ctx libyang context to search. |
| 187 | * @param[in] mod Parsed schema structure. |
| 188 | * @return Corresponding lys_module structure for the given parsed schema structure. |
| 189 | */ |
| 190 | struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod); |
| 191 | |
| 192 | /** |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 193 | * @brief Find the module referenced by prefix in the provided parsed mod. |
| 194 | * |
| 195 | * @param[in] mod Schema module where the prefix was used. |
| 196 | * @param[in] prefix Prefix used to reference a module. |
| 197 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 198 | * @return Pointer to the module or NULL if the module is not found. |
| 199 | */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 200 | 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] | 201 | |
| 202 | /** |
| 203 | * @brief Find the module referenced by prefix in the provided compiled mod. |
| 204 | * |
| 205 | * @param[in] mod Schema module where the prefix was used. |
| 206 | * @param[in] prefix Prefix used to reference a module. |
| 207 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 208 | * @return Pointer to the module or NULL if the module is not found. |
| 209 | */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 210 | 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] | 211 | |
| 212 | /** |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 213 | * @brief Check statement's status for invalid combination. |
| 214 | * |
| 215 | * The modX parameters are used just to determine if both flags are in the same module, |
| 216 | * so any of the schema module structure can be used, but both modules must be provided |
| 217 | * in the same type. |
| 218 | * |
| 219 | * @param[in] ctx Compile context for logging. |
| 220 | * @param[in] flags1 Flags of the referencing node. |
| 221 | * @param[in] mod1 Module of the referencing node, |
| 222 | * @param[in] name1 Schema node name of the referencing node. |
| 223 | * @param[in] flags2 Flags of the referenced node. |
| 224 | * @param[in] mod2 Module of the referenced node, |
| 225 | * @param[in] name2 Schema node name of the referenced node. |
| 226 | * @return LY_ERR value |
| 227 | */ |
| 228 | LY_ERR lysc_check_status(struct lysc_ctx *ctx, |
| 229 | uint16_t flags1, void *mod1, const char *name1, |
| 230 | uint16_t flags2, void *mod2, const char *name2); |
| 231 | |
| 232 | /** |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 233 | * @brief Parse a node-identifier. |
| 234 | * |
| 235 | * node-identifier = [prefix ":"] identifier |
| 236 | * |
| 237 | * @param[in, out] id Identifier to parse. When returned, it points to the first character which is not part of the identifier. |
| 238 | * @param[out] prefix Node's prefix, NULL if there is not any. |
| 239 | * @param[out] prefix_len Length of the node's prefix, 0 if there is not any. |
| 240 | * @param[out] name Node's name. |
| 241 | * @param[out] nam_len Length of the node's name. |
| 242 | * @return LY_ERR value: LY_SUCCESS or LY_EINVAL in case of invalid character in the id. |
| 243 | */ |
| 244 | LY_ERR lys_parse_nodeid(const char **id, const char **prefix, size_t *prefix_len, const char **name, size_t *name_len); |
| 245 | |
| 246 | /** |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 247 | * @brief Find the node according to the given descendant schema node id. |
| 248 | * Used in unique, refine and uses's augment statements |
| 249 | * |
| 250 | * @param[in] ctx Compile context |
| 251 | * @param[in] nodeid Descendant-schema-nodeid (according to the YANG grammar) |
| 252 | * @param[in] nodeid_len Length of the given nodeid, if it is not NULL-terminated string. |
| 253 | * @param[in] context_node Node where the nodeid is specified to correctly resolve prefixes and to start searching. |
| 254 | * @param[in] nodetype Optional (can be 0) restriction for target's nodetype. If target exists, but does not match |
| 255 | * the given nodetype, LY_EDENIED is returned, but no error message is printed. The value can be even an ORed value to allow |
| 256 | * multiple nodetypes. |
| 257 | * @param[out] target Found target node if any. |
| 258 | * @return LY_ERR values - LY_ENOTFOUND, LY_EVALID, LY_EDENIED or LY_SUCCESS. |
| 259 | */ |
| 260 | LY_ERR lys_resolve_descendant_schema_nodeid(struct lysc_ctx *ctx, const char *nodeid, size_t nodeid_len, const struct lysc_node *context_node, |
| 261 | int nodetype, const struct lysc_node **target); |
| 262 | |
| 263 | /** |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 264 | * @brief Find the module referenced by prefix in the provided mod. |
| 265 | * |
| 266 | * @param[in] mod Schema module where the prefix was used. |
| 267 | * @param[in] prefix Prefix used to reference a module. |
| 268 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 269 | * @return Pointer to the module or NULL if the module is not found. |
| 270 | */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 271 | struct lys_module *lys_module_find_prefix(const struct lys_module *mod, const char *prefix, size_t len); |
| 272 | |
| 273 | /** |
| 274 | * @brief Stringify schema nodetype. |
| 275 | * @param[in] nodetype Nodetype to stringify. |
| 276 | * @return Constant string with the name of the node's type. |
| 277 | */ |
| 278 | const char *lys_nodetype2str(uint16_t nodetype); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 279 | |
| 280 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 281 | * @brief Parse YANG module and submodule from a string. |
| 282 | * |
| 283 | * In contrast to public lys_parse_mem(), also submodules can be parsed here. However, |
| 284 | * while the modules are added into the context, submodules not. The latest_revision |
| 285 | * flag is updated in both cases. |
| 286 | * |
| 287 | * @param[in] ctx libyang context where to process the data model. |
| 288 | * @param[in] data The string containing the dumped data model in the specified |
| 289 | * format. |
| 290 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 291 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 292 | * @param[in] main_ctx Parser context of the main module in case of parsing submodule. |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 293 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 294 | * @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] | 295 | * @return Pointer to the data model structure or NULL on error. |
| 296 | */ |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 297 | struct lys_module *lys_parse_mem_(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, int implement, struct ly_parser_ctx *main_ctx, |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 298 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, void *data), void *check_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 299 | |
| 300 | /** |
| 301 | * @brief Parse YANG module and submodule from a file descriptor. |
| 302 | * |
| 303 | * In contrast to public lys_parse_mem(), also submodules can be parsed here. However, |
| 304 | * while the modules are added into the context, submodules not. The latest_revision |
| 305 | * flag is updated in both cases. |
| 306 | * |
| 307 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 308 | * |
| 309 | * @param[in] ctx libyang context where to process the data model. |
| 310 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 311 | * in the specified format. |
| 312 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 313 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 314 | * @param[in] main_ctx Parser context of the main module in case of parsing submodule. |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 315 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 316 | * @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] | 317 | * @return Pointer to the data model structure or NULL on error. |
| 318 | */ |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 319 | struct lys_module *lys_parse_fd_(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement, struct ly_parser_ctx *main_ctx, |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 320 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, void *data), void *check_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 321 | |
| 322 | /** |
| 323 | * @brief Parse YANG module and submodule from a file descriptor. |
| 324 | * |
| 325 | * In contrast to public lys_parse_mem(), also submodules can be parsed here. However, |
| 326 | * while the modules are added into the context, submodules not. The latest_revision |
| 327 | * flag is updated in both cases. |
| 328 | * |
| 329 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 330 | * |
| 331 | * @brief REad a schema into the specified context from a file. |
| 332 | * |
| 333 | * @param[in] ctx libyang context where to process the data model. |
| 334 | * @param[in] path Path to the file with the model in the specified format. |
| 335 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 336 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 337 | * @param[in] main_ctx Parser context of the main module in case of parsing submodule. |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 338 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 339 | * @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] | 340 | * @return Pointer to the data model structure or NULL on error. |
| 341 | */ |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 342 | struct lys_module *lys_parse_path_(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, int implement, struct ly_parser_ctx *main_ctx, |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 343 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, void *data), void *check_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 344 | |
| 345 | /** |
| 346 | * @brief Load the (sub)module into the context. |
| 347 | * |
| 348 | * This function does not check the presence of the (sub)module in context, it should be done before calling this function. |
| 349 | * |
| 350 | * module_name and submodule_name are alternatives - only one of the |
| 351 | * |
| 352 | * @param[in] ctx libyang context where to work. |
| 353 | * @param[in] name Name of the (sub)module to load. |
| 354 | * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded. |
| 355 | * @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] | 356 | * @param[in] main_ctx Parser context of the main module in case of loading submodule. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 357 | * @param[out] result Parsed YANG schema tree of the requested module. If it is a module, it is already in the context! |
| 358 | * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided. |
| 359 | */ |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 360 | LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement, struct ly_parser_ctx *main_ctx, |
| 361 | struct lys_module **result); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 362 | |
| 363 | /** |
| 364 | * @brief Make the module implemented. |
| 365 | * Does not check for collision in context, it must be done before calling the function, this is a simple switch. |
| 366 | * @param[in] mod Module to make implemented. |
| 367 | */ |
| 368 | void lys_module_implement(struct lys_module *mod); |
| 369 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 370 | /** |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 371 | * @brief Free the compiled type structure. |
| 372 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 373 | * @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. |
| 374 | */ |
| 375 | void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type); |
| 376 | |
| 377 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 378 | * @brief Free the compiled node structure. |
| 379 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 380 | * @param[in,out] node Compiled node structure to be freed. |
| 381 | */ |
| 382 | void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node); |
| 383 | |
| 384 | /** |
| 385 | * @brief Free the compiled schema structure. |
| 386 | * @param[in,out] module Compiled schema module structure to free. |
| 387 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 388 | */ |
| 389 | void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 390 | |
| 391 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 392 | * @brief Free the schema structure. It just frees, it does not remove the schema from its context. |
| 393 | * @param[in,out] module Schema module structure to free. |
| 394 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 395 | */ |
| 396 | void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 397 | |
| 398 | /** |
| 399 | * @brief |
| 400 | */ |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 401 | LY_ERR yang_parse(struct ly_parser_ctx *ctx, const char *data, struct lysp_module **mod_p); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 402 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 403 | #endif /* LY_TREE_SCHEMA_INTERNAL_H_ */ |