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; |
| 46 | uint64_t line; /* line number */ |
| 47 | uint64_t indent; /* current position on the line for YANG indentation */ |
| 48 | }; |
| 49 | |
| 50 | /** |
| 51 | * @brief Check the currently present prefixes in the module for collision with the new one. |
| 52 | * |
| 53 | * @param[in] ctx yang parser context. |
| 54 | * @param[in] module Schema tree to check. |
| 55 | * @param[in] value Newly added prefix value (including its location to distinguish collision with itself). |
| 56 | * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise |
| 57 | */ |
| 58 | LY_ERR lysp_check_prefix(struct ly_parser_ctx *ctx, struct lysp_module *module, const char **value); |
| 59 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 60 | /** |
| 61 | * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT) |
| 62 | * |
| 63 | * @param[in] ctx Context to store log message. |
| 64 | * @param[in] date Date string to check (non-necessarily terminated by \0) |
| 65 | * @param[in] date_len Length of the date string, 10 expected. |
| 66 | * @param[in] stmt Statement name for error message. |
| 67 | * @return LY_ERR value. |
| 68 | */ |
| 69 | LY_ERR lysp_check_date(struct ly_ctx *ctx, const char *date, int date_len, const char *stmt); |
| 70 | |
| 71 | /** |
| 72 | * @brief Just move the newest revision into the first position, does not sort the rest |
| 73 | * @param[in] revs Sized-array of the revisions in a printable schema tree. |
| 74 | */ |
| 75 | void lysp_sort_revisions(struct lysp_revision *revs); |
| 76 | |
| 77 | /** |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 78 | * @brief Find and parse module of the given name. |
| 79 | * |
| 80 | * @param[in] ctx libyang context. |
| 81 | * @param[in] name Name of the module to load. |
| 82 | * @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] | 83 | * @param[in] implement Flag if the loaded module is supposed to be marked as implemented. |
| 84 | * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context, |
| 85 | * but only the compiled structure is available. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 86 | * @param[out] mod Parsed module structure. |
| 87 | * @return LY_ERR value. |
| 88 | */ |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 89 | 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] | 90 | |
| 91 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 92 | * @brief Parse included submodule into the simply parsed YANG module. |
| 93 | * |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 94 | * @param[in] ctx libyang context |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 95 | * @param[in] mod Module including a submodule. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 96 | * @param[in,out] inc Include structure holding all available information about the include statement, the parsed |
| 97 | * submodule is stored into this structure. |
| 98 | * @return LY_ERR value. |
| 99 | */ |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 100 | LY_ERR lysp_load_submodule(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 101 | |
| 102 | /** |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame^] | 103 | * @brief Find the module referenced by prefix in the provided parsed mod. |
| 104 | * |
| 105 | * @param[in] mod Schema module where the prefix was used. |
| 106 | * @param[in] prefix Prefix used to reference a module. |
| 107 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 108 | * @return Pointer to the module or NULL if the module is not found. |
| 109 | */ |
| 110 | struct lys_module *lysp_module_find_prefix(struct lysp_module *mod, const char *prefix, size_t len); |
| 111 | |
| 112 | /** |
| 113 | * @brief Find the module referenced by prefix in the provided compiled mod. |
| 114 | * |
| 115 | * @param[in] mod Schema module where the prefix was used. |
| 116 | * @param[in] prefix Prefix used to reference a module. |
| 117 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 118 | * @return Pointer to the module or NULL if the module is not found. |
| 119 | */ |
| 120 | struct lys_module *lysc_module_find_prefix(struct lysc_module *mod, const char *prefix, size_t len); |
| 121 | |
| 122 | /** |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 123 | * @brief Find the module referenced by prefix in the provided mod. |
| 124 | * |
| 125 | * @param[in] mod Schema module where the prefix was used. |
| 126 | * @param[in] prefix Prefix used to reference a module. |
| 127 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 128 | * @return Pointer to the module or NULL if the module is not found. |
| 129 | */ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame^] | 130 | struct lys_module *lys_module_find_prefix(struct lys_module *mod, const char *prefix, size_t len); |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 131 | |
| 132 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 133 | * @brief Parse YANG module and submodule from a string. |
| 134 | * |
| 135 | * In contrast to public lys_parse_mem(), also submodules can be parsed here. However, |
| 136 | * while the modules are added into the context, submodules not. The latest_revision |
| 137 | * flag is updated in both cases. |
| 138 | * |
| 139 | * @param[in] ctx libyang context where to process the data model. |
| 140 | * @param[in] data The string containing the dumped data model in the specified |
| 141 | * format. |
| 142 | * @param[in] format Format of the input data (YANG or YIN). |
| 143 | * @param[in] revision If a specific revision is required, it is checked before the parsed |
| 144 | * schema is accepted. |
| 145 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
| 146 | * @return Pointer to the data model structure or NULL on error. |
| 147 | */ |
| 148 | struct lys_module *lys_parse_mem_(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, const char *revision, int implement); |
| 149 | |
| 150 | /** |
| 151 | * @brief Parse YANG module and submodule from a file descriptor. |
| 152 | * |
| 153 | * In contrast to public lys_parse_mem(), also submodules can be parsed here. However, |
| 154 | * while the modules are added into the context, submodules not. The latest_revision |
| 155 | * flag is updated in both cases. |
| 156 | * |
| 157 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 158 | * |
| 159 | * @param[in] ctx libyang context where to process the data model. |
| 160 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 161 | * in the specified format. |
| 162 | * @param[in] format Format of the input data (YANG or YIN). |
| 163 | * @param[in] revision If a specific revision is required, it is checked before the parsed |
| 164 | * schema is accepted. |
| 165 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
| 166 | * @return Pointer to the data model structure or NULL on error. |
| 167 | */ |
| 168 | struct lys_module *lys_parse_fd_(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, const char *revision, int implement); |
| 169 | |
| 170 | /** |
| 171 | * @brief Parse YANG module and submodule from a file descriptor. |
| 172 | * |
| 173 | * In contrast to public lys_parse_mem(), also submodules can be parsed here. However, |
| 174 | * while the modules are added into the context, submodules not. The latest_revision |
| 175 | * flag is updated in both cases. |
| 176 | * |
| 177 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 178 | * |
| 179 | * @brief REad a schema into the specified context from a file. |
| 180 | * |
| 181 | * @param[in] ctx libyang context where to process the data model. |
| 182 | * @param[in] path Path to the file with the model in the specified format. |
| 183 | * @param[in] format Format of the input data (YANG or YIN). |
| 184 | * @param[in] revision If a specific revision is required, it is checked before the parsed |
| 185 | * schema is accepted. |
| 186 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
| 187 | * @return Pointer to the data model structure or NULL on error. |
| 188 | */ |
| 189 | struct lys_module *lys_parse_path_(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, const char *revision, int implement); |
| 190 | |
| 191 | /** |
| 192 | * @brief Load the (sub)module into the context. |
| 193 | * |
| 194 | * This function does not check the presence of the (sub)module in context, it should be done before calling this function. |
| 195 | * |
| 196 | * module_name and submodule_name are alternatives - only one of the |
| 197 | * |
| 198 | * @param[in] ctx libyang context where to work. |
| 199 | * @param[in] name Name of the (sub)module to load. |
| 200 | * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded. |
| 201 | * @param[in] implement Flag if the (sub)module is supposed to be marked as implemented. |
| 202 | * @param[out] result Parsed YANG schema tree of the requested module. If it is a module, it is already in the context! |
| 203 | * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided. |
| 204 | */ |
| 205 | LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement, struct lys_module **result); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 206 | |
| 207 | /** |
| 208 | * @brief Make the module implemented. |
| 209 | * Does not check for collision in context, it must be done before calling the function, this is a simple switch. |
| 210 | * @param[in] mod Module to make implemented. |
| 211 | */ |
| 212 | void lys_module_implement(struct lys_module *mod); |
| 213 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 214 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 215 | * @brief Free the schema structure. It just frees, it does not remove the schema from its context. |
| 216 | * @param[in,out] module Schema module structure to free. |
| 217 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 218 | */ |
| 219 | void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 220 | |
| 221 | /** |
| 222 | * @brief |
| 223 | */ |
| 224 | LY_ERR yang_parse(struct ly_ctx *ctx, const char *data, struct lysp_module **mod_p); |
| 225 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 226 | #endif /* LY_TREE_SCHEMA_INTERNAL_H_ */ |