Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file context.h |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief internal context structures and functions |
| 5 | * |
| 6 | * Copyright (c) 2015 - 2017 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_CONTEXT_H_ |
| 16 | #define LY_CONTEXT_H_ |
| 17 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 18 | #include <stdint.h> |
| 19 | |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 20 | #include "log.h" |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 21 | #include "tree_schema.h" |
| 22 | |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 23 | #ifdef __cplusplus |
| 24 | extern "C" { |
| 25 | #endif |
| 26 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 27 | /** |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 28 | * @defgroup context Context |
| 29 | * @{ |
| 30 | * |
| 31 | * Structures and functions to manipulate with the libyang "containers". The \em context concept allows callers |
| 32 | * to work in environments with different sets of YANG schemas. More detailed information can be found at |
| 33 | * @ref howtocontext page. |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 34 | */ |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 35 | |
| 36 | /** |
| 37 | * @struct ly_ctx |
| 38 | * @brief libyang context handler. |
| 39 | */ |
| 40 | struct ly_ctx; |
| 41 | |
| 42 | /** |
| 43 | * @defgroup contextoptions Context options |
| 44 | * @ingroup context |
| 45 | * |
| 46 | * Options to change context behavior. |
| 47 | * @{ |
| 48 | */ |
| 49 | |
| 50 | #define LY_CTX_ALLIMPLEMENTED 0x01 /**< All the imports of the schema being parsed are treated implemented. */ |
| 51 | #define LY_CTX_TRUSTED 0x02 /**< Handle the schema being parsed as trusted and skip its validation |
| 52 | tests. Note that while this option improves performance, it can |
| 53 | lead to an undefined behavior if the schema is not correct. */ |
| 54 | #define LY_CTX_NOYANGLIBRARY 0x04 /**< Do not internally implement ietf-yang-library module. The option |
| 55 | causes that function ly_ctx_info() does not work (returns NULL) until |
| 56 | the ietf-yang-library module is loaded manually. While any revision |
| 57 | of this schema can be loaded with this option, note that the only |
| 58 | revisions implemented by ly_ctx_info() are 2016-04-09 and 2018-01-17. |
| 59 | This option cannot be changed on existing context. */ |
| 60 | #define LY_CTX_DISABLE_SEARCHDIRS 0x08 /**< Do not search for schemas in context's searchdirs neither in current |
| 61 | working directory. It is entirely skipped and the only way to get |
| 62 | schema data for imports or for ly_ctx_load_module() is to use the |
| 63 | callbacks provided by caller via ly_ctx_set_module_imp_clb() */ |
| 64 | #define LY_CTX_DISABLE_SEARCHDIR_CWD 0x10 /**< Do not automatically search for schemas in current working |
| 65 | directory, which is by default searched automatically (despite not |
| 66 | recursively). */ |
| 67 | #define LY_CTX_PREFER_SEARCHDIRS 0x20 /**< When searching for schema, prefer searchdirs instead of user callback. */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 68 | |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 69 | /**@} contextoptions */ |
| 70 | |
| 71 | /** |
| 72 | * @brief Create libyang context. |
| 73 | * |
| 74 | * Context is used to hold all information about schemas. Usually, the application is supposed |
| 75 | * to work with a single context in which libyang is holding all schemas (and other internal |
| 76 | * information) according to which the data trees will be processed and validated. So, the schema |
| 77 | * trees are tightly connected with the specific context and they are held by the context internally |
| 78 | * - caller does not need to keep pointers to the schemas returned by lys_parse(), context knows |
| 79 | * about them. The data trees created with lyd_parse() are still connected with the specific context, |
| 80 | * but they are not internally held by the context. The data tree just points and lean on some data |
| 81 | * held by the context (schema tree, string dictionary, etc.). Therefore, in case of data trees, caller |
| 82 | * is supposed to keep pointers returned by the lyd_parse() and manage the data tree on its own. This |
| 83 | * also affects the number of instances of both tree types. While you can have only one instance of |
| 84 | * specific schema connected with a single context, number of data tree instances is not connected. |
| 85 | * |
| 86 | * @param[in] search_dir Directory where libyang will search for the imported or included modules |
| 87 | * and submodules. If no such directory is available, NULL is accepted. |
| 88 | * @param[in] options Context options, see @ref contextoptions. |
| 89 | * @param[out] new_ctx Pointer to the created libyang context if LY_SUCCESS returned. |
| 90 | * @return LY_ERR return value. |
| 91 | */ |
| 92 | LY_ERR ly_ctx_new(const char *search_dir, int options, struct ly_ctx **new_ctx); |
| 93 | |
| 94 | /** |
| 95 | * @brief Add the search path into libyang context |
| 96 | * |
| 97 | * To reset search paths set in the context, use ly_ctx_unset_searchdirs() and then |
| 98 | * set search paths again. |
| 99 | * |
| 100 | * @param[in] ctx Context to be modified. |
| 101 | * @param[in] search_dir New search path to add to the current paths previously set in ctx. |
| 102 | * @return LY_ERR return value. |
| 103 | */ |
| 104 | LY_ERR ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir); |
| 105 | |
| 106 | /** |
| 107 | * @brief Clean the search path(s) from the libyang context |
| 108 | * |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 109 | * To remove the search path by its index, use ly_ctx_unset_searchdir(). |
| 110 | * |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 111 | * @param[in] ctx Context to be modified. |
| 112 | * @param[in] value Searchdir to be removed, use NULL to remove them all. |
| 113 | * @return LY_ERR return value |
| 114 | */ |
| 115 | LY_ERR ly_ctx_unset_searchdirs(struct ly_ctx *ctx, const char *value); |
| 116 | |
| 117 | /** |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 118 | * @brief Remove the specific search path from the libyang context. |
| 119 | * |
| 120 | * To remove the search path by its value, use ly_ctx_unset_searchdirs(). |
| 121 | * |
| 122 | * @param[in] ctx Context to be modified. |
| 123 | * @param[in] index Index of the searchdir to be removed. |
| 124 | * @return LY_ERR return value |
| 125 | */ |
| 126 | LY_ERR ly_ctx_unset_searchdir(struct ly_ctx *ctx, unsigned int index); |
| 127 | |
| 128 | /** |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 129 | * @brief Get the NULL-terminated list of the search paths in libyang context. Do not modify the result! |
| 130 | * |
| 131 | * @param[in] ctx Context to query. |
| 132 | * @return NULL-terminated list (array) of the search paths, NULL if no searchpath was set. |
| 133 | * Do not modify the provided data in any way! |
| 134 | */ |
| 135 | const char * const *ly_ctx_get_searchdirs(const struct ly_ctx *ctx); |
| 136 | |
| 137 | /** |
| 138 | * @brief Get the currently set context's options. |
| 139 | * |
| 140 | * @param[in] ctx Context to query. |
| 141 | * @return Combination of all the currently set context's options, see @ref contextoptions. |
| 142 | */ |
| 143 | int ly_ctx_get_options(const struct ly_ctx *ctx); |
| 144 | |
| 145 | /** |
| 146 | * @brief Set some of the context's options, see @ref contextoptions. |
| 147 | * @param[in] ctx Context to be modified. |
| 148 | * @param[in] option Combination of the context's options to be set, see @ref contextoptions. |
| 149 | * @return LY_ERR value. |
| 150 | */ |
| 151 | LY_ERR ly_ctx_set_option(struct ly_ctx *ctx, int option); |
| 152 | |
| 153 | /** |
| 154 | * @brief Unset some of the context's options, see @ref contextoptions. |
| 155 | * @param[in] ctx Context to be modified. |
| 156 | * @param[in] option Combination of the context's options to be unset, see @ref contextoptions. |
| 157 | * @return LY_ERR value. |
| 158 | */ |
| 159 | LY_ERR ly_ctx_unset_option(struct ly_ctx *ctx, int option); |
| 160 | |
| 161 | /** |
| 162 | * @brief Get current ID of the modules set. The value is available also |
| 163 | * as module-set-id in ly_ctx_info() result. |
| 164 | * |
| 165 | * @param[in] ctx Context to be examined. |
| 166 | * @return Numeric identifier of the current context's modules set. |
| 167 | */ |
| 168 | uint16_t ly_ctx_get_module_set_id(const struct ly_ctx *ctx); |
| 169 | |
| 170 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 171 | * @brief Callback for retrieving missing included or imported models in a custom way. |
| 172 | * |
| 173 | * When submod_name is provided, the submodule is requested instead of the module (in this case only |
| 174 | * the module name without its revision is provided). |
| 175 | * |
| 176 | * If an @arg free_module_data callback is provided, it will be used later to free the allegedly const data |
| 177 | * which were returned by this callback. |
| 178 | * |
| 179 | * @param[in] mod_name Missing module name. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 180 | * @param[in] mod_rev Optional missing module revision. If NULL and submod_name is not provided, the latest revision is |
| 181 | * requested, the parsed module is then marked by the latest_revision flag. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 182 | * @param[in] submod_name Optional missing submodule name. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 183 | * @param[in] submod_rev Optional missing submodule revision. If NULL and submod_name is provided, the latest revision is |
| 184 | * requested, the parsed submodule is then marked by the latest_revision flag. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 185 | * @param[in] user_data User-supplied callback data. |
| 186 | * @param[out] format Format of the returned module data. |
| 187 | * @param[out] module_data Requested module data. |
| 188 | * @param[out] free_module_data Callback for freeing the returned module data. If not set, the data will be left untouched. |
| 189 | * @return LY_ERR value. If the returned value differs from LY_SUCCESS, libyang continue in trying to get the module data |
| 190 | * according to the settings of its mechanism to search for the imported/included schemas. |
| 191 | */ |
| 192 | typedef LY_ERR (*ly_module_imp_clb)(const char *mod_name, const char *mod_rev, const char *submod_name, const char *sub_rev, |
| 193 | void *user_data, LYS_INFORMAT *format, const char **module_data, |
| 194 | void (**free_module_data)(void *model_data, void *user_data)); |
| 195 | |
| 196 | /** |
| 197 | * @brief Get the custom callback for missing import/include module retrieval. |
| 198 | * |
| 199 | * @param[in] ctx Context to read from. |
| 200 | * @param[in] user_data Optional pointer for getting the user-supplied callback data. |
| 201 | * @return Callback or NULL if not set. |
| 202 | */ |
| 203 | ly_module_imp_clb ly_ctx_get_module_imp_clb(const struct ly_ctx *ctx, void **user_data); |
| 204 | |
| 205 | /** |
| 206 | * @brief Set missing include or import module callback. It is meant to be used when the models |
| 207 | * are not locally available (such as when downloading modules from a NETCONF server), it should |
| 208 | * not be required in other cases. |
| 209 | * |
| 210 | * @param[in] ctx Context that will use this callback. |
| 211 | * @param[in] clb Callback responsible for returning the missing model. |
| 212 | * @param[in] user_data Arbitrary data that will always be passed to the callback \p clb. |
| 213 | */ |
| 214 | void ly_ctx_set_module_imp_clb(struct ly_ctx *ctx, ly_module_imp_clb clb, void *user_data); |
| 215 | |
| 216 | /** |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 217 | * @brief Get YANG module of the given name and revision. |
| 218 | * |
| 219 | * @param[in] ctx Context to work in. |
| 220 | * @param[in] name Name of the YANG module to get. |
| 221 | * @param[in] revision Requested revision date of the YANG module to get. If not specified, |
| 222 | * the schema with no revision is returned, if it is present in the context. |
| 223 | * @return Pointer to the YANG module, NULL if no schema in the context follows the name and revision requirements. |
| 224 | */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 225 | struct lys_module *ly_ctx_get_module(const struct ly_ctx *ctx, const char *name, const char *revision); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 226 | |
| 227 | /** |
| 228 | * @brief Get the latest revision of the YANG module specified by its name. |
| 229 | * |
| 230 | * YANG modules with no revision are supposed to be the oldest one. |
| 231 | * |
| 232 | * @param[in] ctx Context where to search. |
| 233 | * @param[in] name Name of the YANG module to get. |
| 234 | * @return The latest revision of the specified YANG module in the given context, NULL if no YANG module of the |
| 235 | * given name is present in the context. |
| 236 | */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 237 | struct lys_module *ly_ctx_get_module_latest(const struct ly_ctx *ctx, const char *name); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 238 | |
| 239 | /** |
| 240 | * @brief Get the (only) implemented YANG module specified by its name. |
| 241 | * |
| 242 | * @param[in] ctx Context where to search. |
| 243 | * @param[in] name Name of the YANG module to get. |
| 244 | * @return The only implemented YANG module revision of the given name in the given context. NULL if there is no |
| 245 | * implemented module of the given name. |
| 246 | */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 247 | struct lys_module *ly_ctx_get_module_implemented(const struct ly_ctx *ctx, const char *name); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 248 | |
| 249 | /** |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 250 | * @brief Get the (only) implemented YANG module specified by its name. |
| 251 | * |
| 252 | * @param[in] ctx Context where to search. |
| 253 | * @param[in] name Name of the YANG module to get. |
| 254 | * @return The only implemented YANG module revision of the given name in the given context. NULL if there is no |
| 255 | * implemented module of the given name. |
| 256 | */ |
| 257 | /** |
| 258 | * @brief Iterate over all modules in the given context. |
| 259 | * |
| 260 | * @param[in] ctx Context with the modules. |
| 261 | * @param[in,out] index Index of the next module to get. Value of 0 starts from the beginning. |
| 262 | * The value is updated with each call, so to iterate over all modules the same variable is supposed |
| 263 | * to be used in all calls starting with value 0. |
| 264 | * @return Next context module, NULL if the last was already returned. |
| 265 | */ |
| 266 | const struct lys_module *ly_ctx_get_module_iter(const struct ly_ctx *ctx, unsigned int *index); |
| 267 | |
| 268 | /** |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 269 | * @brief Get YANG module of the given namespace and revision. |
| 270 | * |
| 271 | * @param[in] ctx Context to work in. |
| 272 | * @param[in] ns Namespace of the YANG module to get. |
| 273 | * @param[in] revision Requested revision date of the YANG module to get. If not specified, |
| 274 | * the schema with no revision is returned, if it is present in the context. |
| 275 | * @return Pointer to the YANG module, NULL if no schema in the context follows the namespace and revision requirements. |
| 276 | */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 277 | struct lys_module *ly_ctx_get_module_ns(const struct ly_ctx *ctx, const char *ns, const char *revision); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 278 | |
| 279 | /** |
| 280 | * @brief Get the latest revision of the YANG module specified by its namespace. |
| 281 | * |
| 282 | * YANG modules with no revision are supposed to be the oldest one. |
| 283 | * |
| 284 | * @param[in] ctx Context where to search. |
| 285 | * @param[in] ns Namespace of the YANG module to get. |
| 286 | * @return The latest revision of the specified YANG module in the given context, NULL if no YANG module of the |
| 287 | * given namespace is present in the context. |
| 288 | */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 289 | struct lys_module *ly_ctx_get_module_latest_ns(const struct ly_ctx *ctx, const char *ns); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 290 | |
| 291 | /** |
| 292 | * @brief Get the (only) implemented YANG module specified by its namespace. |
| 293 | * |
| 294 | * @param[in] ctx Context where to search. |
| 295 | * @param[in] ns Namespace of the YANG module to get. |
| 296 | * @return The only implemented YANG module revision of the given namespace in the given context. NULL if there is no |
| 297 | * implemented module of the given namespace. |
| 298 | */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 299 | struct lys_module *ly_ctx_get_module_implemented_ns(const struct ly_ctx *ctx, const char *ns); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 300 | |
| 301 | /** |
Radek Krejci | e9e987e | 2018-10-31 12:50:27 +0100 | [diff] [blame] | 302 | * @brief Reset cached latest revision information of the schemas in the context. |
| 303 | * |
| 304 | * When a (sub)module is imported/included without revision, the latest revision is |
| 305 | * searched. libyang searches for the latest revision in searchdirs and/or via provided |
| 306 | * import callback ly_module_imp_clb() just once. Then it is expected that the content |
| 307 | * of searchdirs or data returned by the callback does not change. So when it changes, |
| 308 | * it is necessary to force searching for the latest revision in case of loading another |
| 309 | * module, which what this function does. |
| 310 | * |
| 311 | * The latest revision information is also reset when the searchdirs set changes via |
| 312 | * ly_ctx_set_searchdir(). |
| 313 | * |
| 314 | * @param[in] ctx libyang context where the latest revision information is going to be reset. |
| 315 | */ |
| 316 | void ly_ctx_reset_latests(struct ly_ctx *ctx); |
| 317 | |
| 318 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 319 | * @brief Make the specific module implemented. |
| 320 | * |
| 321 | * @param[in] ctx libyang context to change. |
| 322 | * @param[in] mod Module from the given context to make implemented. It is not an error |
| 323 | * to provide already implemented module, it just does nothing. |
| 324 | * @return LY_SUCCESS or LY_EDENIED in case the context contains some other revision of the |
| 325 | * same module which is already implemented. |
| 326 | */ |
| 327 | LY_ERR ly_ctx_module_implement(struct ly_ctx *ctx, struct lys_module *mod); |
| 328 | |
| 329 | /** |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 330 | * @brief Try to find the model in the searchpaths of \p ctx and load it into it. If custom missing |
| 331 | * module callback is set, it is used instead. |
| 332 | * |
| 333 | * The context itself is searched for the requested module first. If \p revision is not specified |
| 334 | * (the module of the latest revision is requested) and there is implemented revision of the requested |
| 335 | * module in the context, this implemented revision is returned despite there might be a newer revision. |
| 336 | * This behavior is cause by the fact that it is not possible to have multiple implemented revisions of |
| 337 | * the same module in the context. |
| 338 | * |
| 339 | * @param[in] ctx Context to add to. |
| 340 | * @param[in] name Name of the module to load. |
| 341 | * @param[in] revision Optional revision date of the module. If not specified, the latest revision is loaded. |
| 342 | * @return Pointer to the data model structure, NULL if not found or some error occurred. |
| 343 | */ |
| 344 | const struct lys_module *ly_ctx_load_module(struct ly_ctx *ctx, const char *name, const char *revision); |
| 345 | |
| 346 | /** |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 347 | * @brief Free all internal structures of the specified context. |
| 348 | * |
| 349 | * The function should be used before terminating the application to destroy |
| 350 | * and free all structures internally used by libyang. If the caller uses |
| 351 | * multiple contexts, the function should be called for each used context. |
| 352 | * |
| 353 | * All instance data are supposed to be freed before destroying the context. |
| 354 | * Data models are destroyed automatically as part of ly_ctx_destroy() call. |
| 355 | * |
| 356 | * @param[in] ctx libyang context to destroy |
| 357 | * @param[in] private_destructor Optional destructor function for private objects assigned |
| 358 | * to the nodes via lys_set_private(). If NULL, the private objects are not freed by libyang. |
| 359 | * Remember the differences between the structures derived from ::lysc_node and always check |
| 360 | * ::lysc_node#nodetype. |
| 361 | */ |
| 362 | void ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 363 | |
| 364 | /** @} context */ |
| 365 | |
| 366 | #ifdef __cplusplus |
| 367 | } |
| 368 | #endif |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 369 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 370 | #endif /* LY_CONTEXT_H_ */ |