Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file libyang.h |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief The main libyang public header. |
| 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_LIBYANG_H_ |
| 16 | #define LY_LIBYANG_H_ |
| 17 | |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 18 | #include <stdint.h> |
| 19 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 20 | #ifdef __cplusplus |
| 21 | extern "C" { |
| 22 | #endif |
| 23 | |
| 24 | /** |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 25 | * @defgroup context Context |
| 26 | * @{ |
| 27 | * |
| 28 | * Structures and functions to manipulate with the libyang "containers". The \em context concept allows callers |
| 29 | * to work in environments with different sets of YANG schemas. More detailed information can be found at |
| 30 | * @ref howtocontext page. |
| 31 | */ |
| 32 | |
| 33 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 34 | * @struct ly_ctx |
| 35 | * @brief libyang context handler. |
| 36 | */ |
| 37 | struct ly_ctx; |
| 38 | |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 39 | /**@} context */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 40 | |
| 41 | #include "log.h" |
| 42 | #include "set.h" |
| 43 | #include "dict.h" |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 44 | #include "tree_schema.h" |
| 45 | |
| 46 | /** |
| 47 | * @ingroup context |
| 48 | * @{ |
| 49 | */ |
| 50 | |
| 51 | /** |
| 52 | * @defgroup contextoptions Context options |
| 53 | * @ingroup context |
| 54 | * |
| 55 | * Options to change context behavior. |
| 56 | * @{ |
| 57 | */ |
| 58 | |
| 59 | #define LY_CTX_ALLIMPLEMENTED 0x01 /**< All the imports of the schema being parsed are treated implemented. */ |
| 60 | #define LY_CTX_TRUSTED 0x02 /**< Handle the schema being parsed as trusted and skip its validation |
| 61 | tests. Note that while this option improves performance, it can |
| 62 | lead to an undefined behavior if the schema is not correct. */ |
| 63 | #define LY_CTX_NOYANGLIBRARY 0x04 /**< Do not internally implement ietf-yang-library module. The option |
| 64 | causes that function ly_ctx_info() does not work (returns NULL) until |
| 65 | the ietf-yang-library module is loaded manually. While any revision |
| 66 | of this schema can be loaded with this option, note that the only |
| 67 | revisions implemented by ly_ctx_info() are 2016-04-09 and 2018-01-17. |
Radek Krejci | ca828d9 | 2018-09-20 14:19:43 +0200 | [diff] [blame] | 68 | This option cannot be changed on existing context. */ |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 69 | #define LY_CTX_DISABLE_SEARCHDIRS 0x08 /**< Do not search for schemas in context's searchdirs neither in current |
| 70 | working directory. It is entirely skipped and the only way to get |
| 71 | schema data for imports or for ly_ctx_load_module() is to use the |
| 72 | callbacks provided by caller via ly_ctx_set_module_imp_clb() */ |
| 73 | #define LY_CTX_DISABLE_SEARCHDIR_CWD 0x10 /**< Do not automatically search for schemas in current working |
| 74 | directory, which is by default searched automatically (despite not |
| 75 | recursively). */ |
| 76 | #define LY_CTX_PREFER_SEARCHDIRS 0x20 /**< When searching for schema, prefer searchdirs instead of user callback. */ |
| 77 | /**@} contextoptions */ |
| 78 | |
| 79 | /** |
| 80 | * @brief Create libyang context. |
| 81 | * |
| 82 | * Context is used to hold all information about schemas. Usually, the application is supposed |
| 83 | * to work with a single context in which libyang is holding all schemas (and other internal |
| 84 | * information) according to which the data trees will be processed and validated. So, the schema |
| 85 | * trees are tightly connected with the specific context and they are held by the context internally |
| 86 | * - caller does not need to keep pointers to the schemas returned by lys_parse(), context knows |
| 87 | * about them. The data trees created with lyd_parse() are still connected with the specific context, |
| 88 | * but they are not internally held by the context. The data tree just points and lean on some data |
| 89 | * held by the context (schema tree, string dictionary, etc.). Therefore, in case of data trees, caller |
| 90 | * is supposed to keep pointers returned by the lyd_parse() and manage the data tree on its own. This |
| 91 | * also affects the number of instances of both tree types. While you can have only one instance of |
| 92 | * specific schema connected with a single context, number of data tree instances is not connected. |
| 93 | * |
| 94 | * @param[in] search_dir Directory where libyang will search for the imported or included modules |
| 95 | * and submodules. If no such directory is available, NULL is accepted. |
| 96 | * @param[in] options Context options, see @ref contextoptions. |
| 97 | * @param[out] new_ctx Pointer to the created libyang context if LY_SUCCESS returned. |
| 98 | * @return LY_ERR return value. |
| 99 | */ |
| 100 | LY_ERR ly_ctx_new(const char *search_dir, int options, struct ly_ctx **new_ctx); |
| 101 | |
| 102 | /** |
| 103 | * @brief Add the search path into libyang context |
| 104 | * |
| 105 | * To reset search paths set in the context, use ly_ctx_unset_searchdirs() and then |
| 106 | * set search paths again. |
| 107 | * |
| 108 | * @param[in] ctx Context to be modified. |
| 109 | * @param[in] search_dir New search path to add to the current paths previously set in ctx. |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 110 | * @return LY_ERR return value. |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 111 | */ |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 112 | LY_ERR ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 113 | |
| 114 | /** |
| 115 | * @brief Clean the search path(s) from the libyang context |
| 116 | * |
| 117 | * @param[in] ctx Context to be modified. |
Radek Krejci | 0759b79 | 2018-09-20 13:53:15 +0200 | [diff] [blame] | 118 | * @param[in] value Searchdir to be removed, use NULL to remove them all. |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 119 | * @return LY_ERR return value |
| 120 | */ |
Radek Krejci | 0759b79 | 2018-09-20 13:53:15 +0200 | [diff] [blame] | 121 | LY_ERR ly_ctx_unset_searchdirs(struct ly_ctx *ctx, const char *value); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 122 | |
| 123 | /** |
| 124 | * @brief Get the NULL-terminated list of the search paths in libyang context. Do not modify the result! |
| 125 | * |
| 126 | * @param[in] ctx Context to query. |
| 127 | * @return NULL-terminated list (array) of the search paths, NULL if no searchpath was set. |
| 128 | * Do not modify the provided data in any way! |
| 129 | */ |
| 130 | const char * const *ly_ctx_get_searchdirs(const struct ly_ctx *ctx); |
| 131 | |
| 132 | /** |
| 133 | * @brief Get the currently set context's options. |
| 134 | * |
| 135 | * @param[in] ctx Context to query. |
| 136 | * @return Combination of all the currently set context's options, see @ref contextoptions. |
| 137 | */ |
Radek Krejci | 3fbe89a | 2018-09-20 13:54:46 +0200 | [diff] [blame] | 138 | int ly_ctx_get_options(const struct ly_ctx *ctx); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 139 | |
| 140 | /** |
Radek Krejci | ca828d9 | 2018-09-20 14:19:43 +0200 | [diff] [blame] | 141 | * @brief Set some of the context's options, see @ref contextoptions. |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 142 | * @param[in] ctx Context to be modified. |
Radek Krejci | ca828d9 | 2018-09-20 14:19:43 +0200 | [diff] [blame] | 143 | * @param[in] option Combination of the context's options to be set, see @ref contextoptions. |
| 144 | * @return LY_ERR value. |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 145 | */ |
Radek Krejci | ca828d9 | 2018-09-20 14:19:43 +0200 | [diff] [blame] | 146 | LY_ERR ly_ctx_set_option(struct ly_ctx *ctx, int option); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 147 | |
| 148 | /** |
Radek Krejci | ca828d9 | 2018-09-20 14:19:43 +0200 | [diff] [blame] | 149 | * @brief Unset some of the context's options, see @ref contextoptions. |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 150 | * @param[in] ctx Context to be modified. |
Radek Krejci | ca828d9 | 2018-09-20 14:19:43 +0200 | [diff] [blame] | 151 | * @param[in] option Combination of the context's options to be unset, see @ref contextoptions. |
| 152 | * @return LY_ERR value. |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 153 | */ |
Radek Krejci | ca828d9 | 2018-09-20 14:19:43 +0200 | [diff] [blame] | 154 | LY_ERR ly_ctx_unset_option(struct ly_ctx *ctx, int option); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 155 | |
| 156 | /** |
| 157 | * @brief Get current ID of the modules set. The value is available also |
| 158 | * as module-set-id in ly_ctx_info() result. |
| 159 | * |
| 160 | * @param[in] ctx Context to be examined. |
| 161 | * @return Numeric identifier of the current context's modules set. |
| 162 | */ |
| 163 | uint16_t ly_ctx_get_module_set_id(const struct ly_ctx *ctx); |
| 164 | |
| 165 | /** |
| 166 | * @brief Free all internal structures of the specified context. |
| 167 | * |
| 168 | * The function should be used before terminating the application to destroy |
| 169 | * and free all structures internally used by libyang. If the caller uses |
| 170 | * multiple contexts, the function should be called for each used context. |
| 171 | * |
| 172 | * All instance data are supposed to be freed before destroying the context. |
| 173 | * Data models are destroyed automatically as part of ly_ctx_destroy() call. |
| 174 | * |
| 175 | * @param[in] ctx libyang context to destroy |
| 176 | * @param[in] private_destructor Optional destructor function for private objects assigned |
| 177 | * to the nodes via lys_set_private(). If NULL, the private objects are not freed by libyang. |
| 178 | * Remember the differences between the structures derived from ::lys_node and always check |
| 179 | * ::lys_node#nodetype. |
| 180 | */ |
| 181 | void ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 182 | |
| 183 | /** @} context */ |
| 184 | |
| 185 | #ifdef __cplusplus |
| 186 | } |
| 187 | #endif |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 188 | |
| 189 | #endif /* LY_LIBYANG_H_ */ |