Radek Krejci | 9b4ca39 | 2015-04-10 08:31:27 +0200 | [diff] [blame] | 1 | /** |
Radek Krejci | 3045cf3 | 2015-05-28 10:58:52 +0200 | [diff] [blame] | 2 | * @file libyang.h |
Radek Krejci | 9b4ca39 | 2015-04-10 08:31:27 +0200 | [diff] [blame] | 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
Radek Krejci | 3045cf3 | 2015-05-28 10:58:52 +0200 | [diff] [blame] | 4 | * @brief The main libyang public header. |
Radek Krejci | 9b4ca39 | 2015-04-10 08:31:27 +0200 | [diff] [blame] | 5 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 6 | * Copyright (c) 2015-2016 CESNET, z.s.p.o. |
Radek Krejci | 9b4ca39 | 2015-04-10 08:31:27 +0200 | [diff] [blame] | 7 | * |
Radek Krejci | 54f6fb3 | 2016-02-24 12:56:39 +0100 | [diff] [blame] | 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 |
Michal Vasko | 8de098c | 2016-02-26 10:00:25 +0100 | [diff] [blame] | 11 | * |
Radek Krejci | 54f6fb3 | 2016-02-24 12:56:39 +0100 | [diff] [blame] | 12 | * https://opensource.org/licenses/BSD-3-Clause |
Radek Krejci | 9b4ca39 | 2015-04-10 08:31:27 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #ifndef LY_LIBYANG_H_ |
| 16 | #define LY_LIBYANG_H_ |
| 17 | |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 18 | #include <stdio.h> |
| 19 | |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 20 | #include "tree_schema.h" |
| 21 | #include "tree_data.h" |
Radek Krejci | c6704c8 | 2015-10-06 11:12:45 +0200 | [diff] [blame] | 22 | #include "xml.h" |
Radek Krejci | 41912fe | 2015-10-22 10:22:12 +0200 | [diff] [blame] | 23 | #include "dict.h" |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 24 | |
Radek Krejci | 39d8d0d | 2015-08-17 13:42:45 +0200 | [diff] [blame] | 25 | #ifdef __cplusplus |
| 26 | extern "C" { |
| 27 | #endif |
| 28 | |
Radek Krejci | 60cdf28 | 2016-10-10 16:22:22 +0200 | [diff] [blame] | 29 | #define LY_VERSION_MAJOR @LIBYANG_MAJOR_VERSION@ /**< libyang major version number */ |
| 30 | #define LY_VERSION_MINOR @LIBYANG_MINOR_VERSION@ /**< libyang minor version number */ |
| 31 | #define LY_VERSION_MICRO @LIBYANG_MICRO_VERSION@ /**< libyang micro version number */ |
| 32 | |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 33 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 34 | * @mainpage About |
| 35 | * |
| 36 | * libyang is a library implementing processing of the YANG schemas and data modeled by the YANG language. The |
| 37 | * library is implemented in C for GNU/Linux and provides C API. |
| 38 | * |
| 39 | * @section about-features Main Features |
| 40 | * |
Radek Krejci | 89db059 | 2017-02-16 15:07:13 +0100 | [diff] [blame] | 41 | * - [Parsing (and validating) schemas](@ref howtoschemasparsers) in YANG format. |
| 42 | * - [Parsing (and validating) schemas](@ref howtoschemasparsers) in YIN format. |
| 43 | * - [Parsing, validating and printing instance data](@ref howtodata) in XML format. |
| 44 | * - [Parsing, validating and printing instance data](@ref howtodata) in JSON format |
| 45 | * ([RFC 7951](https://tools.ietf.org/html/rfc7951)). |
| 46 | * - [Manipulation with the instance data](@ref howtodatamanipulators). |
| 47 | * - Support for [YANG extensions](@ref howtoschemaextensions). |
| 48 | * - Support for [default values in the instance data](@ref howtodatawd) ([RFC 6243](https://tools.ietf.org/html/rfc6243)). |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 49 | * |
Radek Krejci | daa080f | 2016-10-05 08:38:09 +0200 | [diff] [blame] | 50 | * The current implementation covers YANG 1.0 ([RFC 6020](https://tools.ietf.org/html/rfc6020)) as well as |
| 51 | * YANG 1.1 ([RFC 7950](https://tools.ietf.org/html/rfc7950)). |
Radek Krejci | 8b13fc0 | 2016-04-18 13:08:04 +0200 | [diff] [blame] | 52 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 53 | * @subsection about-features-others Extra (side-effect) Features |
| 54 | * |
| 55 | * - XML parser. |
| 56 | * - Optimized string storage (dictionary). |
| 57 | * |
| 58 | * @section about-license License |
| 59 | * |
| 60 | * Copyright (c) 2015-2016 CESNET, z.s.p.o. |
| 61 | * |
| 62 | * (The BSD 3-Clause License) |
| 63 | * |
| 64 | * Redistribution and use in source and binary forms, with or without |
| 65 | * modification, are permitted provided that the following conditions |
| 66 | * are met: |
| 67 | * 1. Redistributions of source code must retain the above copyright |
| 68 | * notice, this list of conditions and the following disclaimer. |
| 69 | * 2. Redistributions in binary form must reproduce the above copyright |
| 70 | * notice, this list of conditions and the following disclaimer in |
| 71 | * the documentation and/or other materials provided with the |
| 72 | * distribution. |
| 73 | * 3. Neither the name of the Company nor the names of its contributors |
| 74 | * may be used to endorse or promote products derived from this |
| 75 | * software without specific prior written permission. |
| 76 | */ |
| 77 | |
| 78 | /** |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 79 | * @page howto How To ... |
| 80 | * |
| 81 | * - @subpage howtocontext |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 82 | * - @subpage howtoschemas |
| 83 | * - @subpage howtodata |
Michal Vasko | 0f14ba6 | 2016-03-21 15:38:11 +0100 | [diff] [blame] | 84 | * - @subpage howtoxpath |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 85 | * - @subpage howtoxml |
| 86 | * - @subpage howtothreads |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 87 | * - @subpage howtologger |
| 88 | */ |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 89 | |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 90 | /** @page howtocontext Context |
| 91 | * |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 92 | * The context concept allows callers to work in environments with different sets of YANG schemas. |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 93 | * |
| 94 | * The first step in libyang is to create a new context using ly_ctx_new(). It returns a handler |
| 95 | * used in the following work. |
| 96 | * |
| 97 | * When creating a new context, search dir can be specified (NULL is accepted) to provide directory |
| 98 | * where libyang will automatically search for schemas being imported or included. The search path |
Radek Krejci | 1fbe858 | 2016-09-15 09:40:11 +0200 | [diff] [blame] | 99 | * can be later changed via ly_ctx_set_searchdir() function. If the search dir is specified, it is explored |
Radek Krejci | faa3a29 | 2016-11-13 10:11:29 +0900 | [diff] [blame] | 100 | * first. Except the searchpath, also all its subdirectories (and symlinks) are taken into account. In case |
| 101 | * the module is not found, libyang tries to find the (sub)module also in current working working directory. |
| 102 | * Note, that in this case only the current directory without any other subdirectory is examinde. This |
| 103 | * automatic searching can be completely avoided when the caller sets module searching callback |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 104 | * (#ly_module_imp_clb) via ly_ctx_set_module_imp_clb(). |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 105 | * |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 106 | * Schemas are added into the context using [parser functions](@ref howtoschemasparsers) - \b lys_parse_*(). |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 107 | * In case of schemas, also ly_ctx_load_module() can be used - in that case the #ly_module_imp_clb or automatic |
Radek Krejci | 1fbe858 | 2016-09-15 09:40:11 +0200 | [diff] [blame] | 108 | * search in search dir and in the current working directory is used. |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 109 | * |
| 110 | * Similarly, data trees can be parsed by \b lyd_parse_*() functions. Note, that functions for schemas have \b lys_ |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 111 | * prefix while functions for instance data have \b lyd_ prefix. If during data parsing a schema is required and |
| 112 | * not found in the context, a callback is called, which should add this schema into the context. You can set it |
| 113 | * using ly_ctx_set_module_data_clb() (more in @ref howtodataparsers and @ref howtodatavalidation). |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 114 | * |
Radek Krejci | ee67407 | 2016-09-15 10:37:40 +0200 | [diff] [blame] | 115 | * Context can hold multiple revisions of the same schema, but only one of them can be implemented. The schema is not |
| 116 | * implemented in case it is automatically loaded as import for another module and it is not referenced in such |
| 117 | * a module (and no other) as target of leafref, augment or deviation. All modules with deviation definition are always |
| 118 | * marked as implemented. The imported (not implemented) module can be set implemented by lys_set_implemented(). But |
| 119 | * the implemented module cannot be changed back to just imported module. The imported modules are used only as a |
| 120 | * source of definitions for types (including identities) and uses statements. The data in such a modules are |
| 121 | * ignored - caller is not allowed to create the data defined in the model via data parsers, the default nodes are |
| 122 | * not added into any data tree and mandatory nodes are not checked in the data trees. |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 123 | * |
Radek Krejci | 31fb8be | 2016-06-23 15:26:26 +0200 | [diff] [blame] | 124 | * Context holds all modules and their submodules internally. To get |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 125 | * a specific module or submodule, use ly_ctx_get_module() and ly_ctx_get_submodule(). There are some additional |
Radek Krejci | 31fb8be | 2016-06-23 15:26:26 +0200 | [diff] [blame] | 126 | * alternatives to these functions (with different parameters). If you need to do something with all the modules or |
Michal Vasko | 462be9a | 2016-04-05 11:24:08 +0200 | [diff] [blame] | 127 | * submodules in the context, it is advised to iterate over them using ly_ctx_get_module_iter(), it is |
| 128 | * the most efficient way. Alternatively, the ly_ctx_info() function can be used to get complex information |
| 129 | * about the schemas in the context in the form of data tree defined by |
Radek Krejci | bd9e8d2 | 2016-02-03 14:11:48 +0100 | [diff] [blame] | 130 | * <a href="https://tools.ietf.org/html/draft-ietf-netconf-yang-library-04">ietf-yang-library</a> schema. |
Michal Vasko | ac7f422 | 2016-09-21 09:02:29 +0200 | [diff] [blame] | 131 | * To get a specific node defined in a module in the context, ly_ctx_get_node() can be used. |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 132 | * |
Radek Krejci | 0ec51da | 2016-12-14 16:42:03 +0100 | [diff] [blame] | 133 | * Modules held by a context can be removed by ly_ctx_remove_module(). Besides removing the module, it is possible |
| 134 | * just to disable it with lys_set_disabled(). In this case the module is hidden in the context (disabled modules can |
| 135 | * be iterated via ly_ctx_get_disabled_module_iter()) and not used during the common work with the context. The module |
| 136 | * is enabled explicitly by calling lys_set_enabled() or implicitly by the request to load the schema (directly or |
| 137 | * indirectly via import of another module) into the context. |
| 138 | * |
| 139 | * To clean the context from all the loaded modules (except the [internal modules](@ref howtoschemasparsers)), the |
| 140 | * ly_ctx_clean() function can be used. To remove the context, there is ly_ctx_destroy() function. |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 141 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 142 | * - @subpage howtocontextdict |
| 143 | * |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 144 | * \note API for this group of functions is available in the [context module](@ref context). |
| 145 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 146 | * Functions List |
| 147 | * -------------- |
| 148 | * - ly_ctx_new() |
| 149 | * - ly_ctx_set_searchdir() |
| 150 | * - ly_ctx_get_searchdir() |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 151 | * - ly_ctx_set_module_imp_clb() |
| 152 | * - ly_ctx_get_module_imp_clb() |
| 153 | * - ly_ctx_set_module_data_clb() |
| 154 | * - ly_ctx_get_module_data_clb() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 155 | * - ly_ctx_load_module() |
| 156 | * - ly_ctx_info() |
Michal Vasko | d7957c0 | 2016-04-01 10:27:26 +0200 | [diff] [blame] | 157 | * - ly_ctx_get_module_iter() |
Radek Krejci | 0ec51da | 2016-12-14 16:42:03 +0100 | [diff] [blame] | 158 | * - ly_ctx_get_disabled_module_iter() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 159 | * - ly_ctx_get_module() |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 160 | * - ly_ctx_get_module_older() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 161 | * - ly_ctx_get_module_by_ns() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 162 | * - ly_ctx_get_submodule() |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 163 | * - ly_ctx_get_submodule2() |
Michal Vasko | 3edeaf7 | 2016-02-11 13:17:43 +0100 | [diff] [blame] | 164 | * - ly_ctx_get_node() |
Radek Krejci | 0ec51da | 2016-12-14 16:42:03 +0100 | [diff] [blame] | 165 | * - ly_ctx_remove_module() |
| 166 | * - ly_ctx_clean() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 167 | * - ly_ctx_destroy() |
Radek Krejci | ee67407 | 2016-09-15 10:37:40 +0200 | [diff] [blame] | 168 | * - lys_set_implemented() |
Radek Krejci | 0ec51da | 2016-12-14 16:42:03 +0100 | [diff] [blame] | 169 | * - lys_set_disabled() |
| 170 | * - lys_set_enabled() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 171 | */ |
| 172 | |
| 173 | /** |
| 174 | * @page howtocontextdict Context Dictionary |
| 175 | * |
| 176 | * Context includes dictionary to store strings more effectively. The most of strings repeats quite often in schema |
| 177 | * as well as data trees. Therefore, instead of allocating those strings each time they appear, libyang stores them |
| 178 | * as records in the dictionary. The basic API to the context dictionary is public, so even a caller application can |
| 179 | * use the dictionary. |
| 180 | * |
| 181 | * To insert a string into the dictionary, caller can use lydict_insert() (adding a constant string) or |
| 182 | * lydict_insert_zc() (for dynamically allocated strings that won't be used by the caller after its insertion into |
| 183 | * the dictionary). Both functions return the pointer to the inserted string in the dictionary record. |
| 184 | * |
| 185 | * To remove (reference of the) string from the context dictionary, lydict_remove() is supposed to be used. |
| 186 | * |
| 187 | * \note Incorrect usage of the dictionary can break libyang functionality. |
| 188 | * |
| 189 | * \note API for this group of functions is described in the [XML Parser module](@ref dict). |
| 190 | * |
| 191 | * Functions List |
| 192 | * -------------- |
| 193 | * - lydict_insert() |
| 194 | * - lydict_insert_zc() |
| 195 | * - lydict_remove() |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 196 | */ |
| 197 | |
| 198 | /** |
| 199 | * @page howtoschemas Schemas |
| 200 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 201 | * |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 202 | * Schema is an internal libyang's representation of a YANG data model. Each schema is connected with |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 203 | * its [context](@ref howtocontext) and loaded using [parser functions](@ref howtoschemasparsers). It means, that |
| 204 | * the schema cannot be created (nor changed) programmatically. In libyang, schemas are used only to |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 205 | * access data model definitions. |
| 206 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 207 | * Schema tree nodes are able to hold private objects (via a pointer to a structure, function, variable, ...) used by |
| 208 | * a caller application. Such an object can be assigned to a specific node using lys_set_private() function. |
| 209 | * Note that the object is not freed by libyang when the context is being destroyed. So the caller is responsible |
| 210 | * for freeing the provided structure after the context is destroyed or the private pointer is set to NULL in |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 211 | * appropriate schema nodes where the object was previously set. This can be automated via destructor function |
| 212 | * to free these private objects. The destructor is passed to the ly_ctx_destroy() function. On the other hand, |
| 213 | * freeing the object while the schema tree is still in use can lead to a segmentation fault. |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 214 | * |
| 215 | * - @subpage howtoschemasparsers |
| 216 | * - @subpage howtoschemasfeatures |
Radek Krejci | 16d64a5 | 2017-01-31 14:10:15 +0100 | [diff] [blame] | 217 | * - @subpage howtoschemaextensions |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 218 | * - @subpage howtoschemasprinters |
| 219 | * |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 220 | * \note There are many functions to access information from the schema trees. Details are available in |
| 221 | * the [Schema Tree module](@ref schematree). |
| 222 | * |
Radek Krejci | ee67407 | 2016-09-15 10:37:40 +0200 | [diff] [blame] | 223 | * For information about difference between implemented and imported modules, see the |
| 224 | * [context description](@ref howtocontext). |
| 225 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 226 | * Functions List (not assigned to above subsections) |
| 227 | * -------------------------------------------------- |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 228 | * - lys_getnext() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 229 | * - lys_parent() |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 230 | * - lys_module() |
| 231 | * - lys_node_module() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 232 | * - lys_set_private() |
Radek Krejci | ee67407 | 2016-09-15 10:37:40 +0200 | [diff] [blame] | 233 | * - lys_set_implemented() |
Radek Krejci | 0ec51da | 2016-12-14 16:42:03 +0100 | [diff] [blame] | 234 | * - lys_set_disabled() |
| 235 | * - lys_set_enabled() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 236 | */ |
| 237 | |
| 238 | /** |
| 239 | * @page howtoschemasparsers Parsing Schemas |
| 240 | * |
| 241 | * Schema parser allows to read schema from a specific format. libyang supports the following schema formats: |
| 242 | * |
| 243 | * - YANG |
| 244 | * |
| 245 | * Basic YANG schemas format described in [RFC 6020](http://tools.ietf.org/html/rfc6020). |
| 246 | * Currently, only YANG 1.0 is supported. |
| 247 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 248 | * - YIN |
| 249 | * |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 250 | * Alternative XML-based format to YANG - YANG Independent Notation. The details can be found in |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 251 | * [RFC 6020](http://tools.ietf.org/html/rfc6020#section-11). |
| 252 | * |
| 253 | * When the [context](@ref howtocontext) is created, it already contains the following three schemas, which |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 254 | * are implemented internally by libyang: |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 255 | * - ietf-inet-types@2013-07-15 |
| 256 | * - ietf-yang-types@2013-07-15 |
| 257 | * - ietf-yang-library@2015-07-03 |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 258 | * - yang@2016-02-11 |
| 259 | * |
| 260 | * The last one is libyang's internal module to provide namespace for various YANG attributes defined in RFC 6020 |
| 261 | * (such as `insert` attribute for edit-config's data). |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 262 | * |
| 263 | * Other schemas can be added to the context manually as described in [context page](@ref howtocontext) by the functions |
| 264 | * listed below. Besides the schema parser functions, it is also possible to use ly_ctx_load_module() which tries to |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 265 | * find the required schema automatically - using #ly_module_imp_clb or automatic search in working directory and in the |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 266 | * context's searchpath. |
| 267 | * |
| 268 | * Functions List |
| 269 | * -------------- |
Radek Krejci | 722b007 | 2016-02-01 17:09:45 +0100 | [diff] [blame] | 270 | * - lys_parse_mem() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 271 | * - lys_parse_fd() |
| 272 | * - lys_parse_path() |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 273 | * - ly_ctx_set_module_imp_clb() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 274 | * - ly_ctx_load_module() |
| 275 | */ |
| 276 | |
| 277 | /** |
| 278 | * @page howtoschemasfeatures YANG Features Manipulation |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 279 | * |
| 280 | * The group of functions prefixed by \b lys_features_ are used to access and manipulate with the schema's |
| 281 | * features. |
| 282 | * |
| 283 | * The first two functions are used to access information about the features in the schema. |
| 284 | * lys_features_list() provides list of all features defined in the specific schema and its |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 285 | * submodules. Optionally, it can also provide information about the state of all features. |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 286 | * Alternatively, caller can use lys_features_state() function to get state of one specific |
| 287 | * feature. |
| 288 | * |
| 289 | * The remaining two functions, lys_features_enable() and lys_features_disable(), are used |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 290 | * to enable and disable the specific feature (or all via the '`*`' value). By default, when the module |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 291 | * is loaded by libyang parser, all features are disabled. |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 292 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 293 | * To get know, if a specific schema node is currently disabled or enable, the lys_is_disabled() function can be used. |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 294 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 295 | * Note, that the feature's state can affect some of the output formats (e.g. Tree format). |
| 296 | * |
| 297 | * Functions List |
| 298 | * -------------- |
| 299 | * - lys_features_list() |
| 300 | * - lys_features_enable() |
| 301 | * - lys_features_disable() |
| 302 | * - lys_features_state() |
| 303 | * - lys_is_disabled() |
| 304 | */ |
| 305 | |
| 306 | /** |
Radek Krejci | 16d64a5 | 2017-01-31 14:10:15 +0100 | [diff] [blame] | 307 | * @page howtoschemaextensions YANG Extensions Support |
| 308 | * |
| 309 | * YANG provides extensions as a mechanism how to add new statements into the language. Since they are very generic - |
| 310 | * extension instance can appear anywhere, they can contain any other YANG statement including extension instances and |
| 311 | * their specification has a form of the description text, it is very challenging for libyang to provide working and |
| 312 | * useful implementation. Therefore, you can reach some limitation regarding the extensions support, but the common |
| 313 | * use cases should be covered and supported. |
| 314 | * |
| 315 | * Since libyang does not understand human text, it is not possible to get the complete defintion of the extension from |
Radek Krejci | 89db059 | 2017-02-16 15:07:13 +0100 | [diff] [blame] | 316 | * its description statement. Therefore, libyang allows the schema authors to provide @link lyext_plugin extension |
| 317 | * plugin@endlink that provides information from the extension description to libyang. |
Radek Krejci | 16d64a5 | 2017-01-31 14:10:15 +0100 | [diff] [blame] | 318 | * |
| 319 | * Here are some notes about the implementation of the particular YANG extensions features |
| 320 | * |
| 321 | * - Extension instance can appear anywhere |
| 322 | * This is completely supported. In addition, the extension plugins are allowed to provide callback function to |
| 323 | * check if the extension instance is actually allowed to be instantiated as a substatement of the particular node. |
Radek Krejci | 89db059 | 2017-02-16 15:07:13 +0100 | [diff] [blame] | 324 | * In some case the extension instance is not stored in the libyang structures inside the statement it is |
| 325 | * instantiated since some statements (such as description, position and several others listed as #LYEXT_SUBSTMT) are |
| 326 | * not stored as a structure, but directly as a value. The extension instances of such statements are then actually |
| 327 | * stored besides the extension instances of the parent structure (e.g. in ::lys_type_bit in case of position's |
| 328 | * extension instances). These extension instances are indicated by the ::lys_ext_instance#insubstmt value which |
| 329 | * refers (sometimes in combination with ::lys_ext_instance#insubstmt_index) to the substatement where the particular |
| 330 | * extension is actually instantiated. |
Radek Krejci | 16d64a5 | 2017-01-31 14:10:15 +0100 | [diff] [blame] | 331 | * |
| 332 | * - Extension instance can contain any other YANG statement |
Radek Krejci | 89db059 | 2017-02-16 15:07:13 +0100 | [diff] [blame] | 333 | * This is supported with exceptions - the list of YANG statements is defined as #LY_STMT enumeration with the |
| 334 | * description if the specific statement can appear as an extension instance substatement or if there is some |
| 335 | * limitation regarding its cardinality. It also specifies how the specific statement is stored in the extension |
| 336 | * instance (which data type or structure is used). In some cases, like `include` or `yang-version` statements, it |
| 337 | * make no sense to have them inside an extension instance, so they are not supported by libyang. |
Radek Krejci | 16d64a5 | 2017-01-31 14:10:15 +0100 | [diff] [blame] | 338 | * |
Radek Krejci | 89db059 | 2017-02-16 15:07:13 +0100 | [diff] [blame] | 339 | * The list of allowed substatement for the specific extension instances is provided by the extension plugin. Besides |
| 340 | * the list of substatement, the plugin also specifies where the data are stored and the cardinality for each |
| 341 | * substatement. Other extension instances as an extension instance substatements are always allowed. Note, that if |
| 342 | * there is no extension plugin defined or if the list of the allowed substatements is empty, no substatement (except |
| 343 | * extension instances) is allowed. |
| 344 | * |
| 345 | * There are several extension types (enumerated as #LYEXT_TYPE) according to their purpose and content: |
| 346 | * |
| 347 | * - #LYEXT_FLAG - simple extension with no content (no substatement is allowed). The extension instance serves just as |
| 348 | * a flag with or without an argument and its value. The example of such an extension is NACM's __default-deny-write__ |
| 349 | * or __default-deny-all__. This is the default type of extension for the case there is no extension plugin available |
| 350 | * for the specific extension. Extension instances of this type are represented as ::lys_ext_instance. |
| 351 | * |
| 352 | * - #LYEXT_COMPLEX - complex extension with content. The specific rules for the content and how it is stored in the |
| 353 | * extension instance structure is specified by the plugin. Extension instances of this type are represented as |
| 354 | * ::lys_ext_instance_complex. |
| 355 | * |
| 356 | * Note that the ::lys_ext_instance structure serves as a generic structure for all extension instances. In case the |
| 357 | * ::lys_ext_instance#ext_type is set to a different value than #LYEXT_FLAG, the structure can be cast to the particular |
| 358 | * extension instance structure to access the type-specific members. |
Radek Krejci | 16d64a5 | 2017-01-31 14:10:15 +0100 | [diff] [blame] | 359 | * |
| 360 | * Extension Plugins |
| 361 | * ----------------- |
| 362 | * Extension plugins provide more detailed information about the extension in a understandable form for libyang. These |
| 363 | * information is usually provided in a text form in the extension's description statement. libyang provides several |
| 364 | * plugins for the common IETF extensions (NACM, Metadata, ...) that can be used as a code examples for other |
| 365 | * extensions. |
| 366 | * |
Radek Krejci | 89db059 | 2017-02-16 15:07:13 +0100 | [diff] [blame] | 367 | * There are several types of extension plugins which corresponds to the extension types: |
| 368 | * |
| 369 | * - ::lyext_plugin - the plugin for a simple extensions of type #LYEXT_FLAG. The plugin is supposed to provide |
| 370 | * callbacks for: |
| 371 | * + @link lyext_check_position_clb checking extension position @endlink (if the extension instance can be instantiated |
| 372 | * in a particular parent) |
| 373 | * + @link lyext_check_inherit_clb deciding if the extension is supposed to be inherited @endlink |
| 374 | * (see #LYEXT_OPT_INHERIT). Note that the inherited extension instances are available in the libyang data |
| 375 | * structures, but they are not part of the schema so they are not printed into the schema output formats. |
| 376 | * + @link lyext_check_result_clb checking the result @endlink, the callback is called when the schema is completely |
| 377 | * parsed and all the data are available for the final (possibly complex) checking (or modification) |
| 378 | * - ::lyext_plugin_complex - the plugin for the complex extension instances (#LYEXT_COMPLEX). The structure extends |
| 379 | * the ::lyext_plugin structure by: |
| 380 | * + instance_size - the overall size of the ::lyext_plugin_complex structure to allocate. |
| 381 | * The substatement list is flexible array, so the size of the plugin structure depends on the content of the array. |
| 382 | * + substmt - the list of the allowed substatements to the extension instance, besides the substatement id, it |
| 383 | * also specifies its cardinality and the specific position in the ::lys_ext_instance_complex where the data are |
| 384 | * stored (as offset to the ::lys_ext_instance_complex#content member). The way how the data are stored is |
| 385 | * specified descriptions of #LY_STMT values. |
| 386 | * |
| 387 | * The plugins are loaded from the plugin directory (LIBDIR/libyang/) whenever a context is created. However, the list |
| 388 | * of plugins can be refreshed manually by lyext_load_plugins(). The plugin directory path can be change via the |
| 389 | * `LIBYANG_EXTENSIONS_PLUGINS_DIR` environment variable. Note, that no more available plugins are not removed, only |
| 390 | * the new plugins are loaded. Also note that availability of new plugins does not affect the current schemas in the |
| 391 | * contexts, they are applied only to the newly parsed schemas. |
| 392 | * |
| 393 | * The plugins list can be cleaned by lyext_clean_plugins(). However, since various contexts (respectively their |
| 394 | * schemas) can link to the plugins, the cleanup is successful only when there is no remaining context. |
| 395 | * |
Radek Krejci | 16d64a5 | 2017-01-31 14:10:15 +0100 | [diff] [blame] | 396 | * Functions List |
| 397 | * -------------- |
Radek Krejci | 16d64a5 | 2017-01-31 14:10:15 +0100 | [diff] [blame] | 398 | * - lys_ext_instance_presence() |
| 399 | * - lys_ext_instance_substmt() |
Radek Krejci | 89db059 | 2017-02-16 15:07:13 +0100 | [diff] [blame] | 400 | * - lyext_load_plugins() |
| 401 | * - lyext_clean_plugins() |
Radek Krejci | 16d64a5 | 2017-01-31 14:10:15 +0100 | [diff] [blame] | 402 | */ |
| 403 | |
| 404 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 405 | * @page howtoschemasprinters Printing Schemas |
| 406 | * |
| 407 | * Schema printers allows to serialize internal representation of a schema module in a specific format. libyang |
| 408 | * supports the following schema formats for printing: |
| 409 | * |
| 410 | * - YANG |
| 411 | * |
| 412 | * Basic YANG schemas format described in [RFC 6020](http://tools.ietf.org/html/rfc6020). |
| 413 | * Currently, only YANG 1.0 is supported. |
| 414 | * |
| 415 | * - YIN |
| 416 | * |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 417 | * Alternative XML-based format to YANG - YANG Independent Notation. The details can be found in |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 418 | * [RFC 6020](http://tools.ietf.org/html/rfc6020#section-11). |
| 419 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 420 | * - Tree |
| 421 | * |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 422 | * Simple tree structure of the module where each node is printed as: |
| 423 | * |
| 424 | * <status> <flags> <name> <opts> <type> <if-features> |
| 425 | * |
| 426 | * - `<status>` is one of: |
| 427 | * - `+` for current |
| 428 | * - `x` for deprecated |
| 429 | * - `o` for obsolete |
| 430 | * |
| 431 | * - `<flags>` is one of: |
| 432 | * - `rw` for configuration data |
| 433 | * - `ro` for status data |
| 434 | * - `-x` for RPCs |
| 435 | * - `-n` for Notification |
| 436 | * |
| 437 | * - `<name>` is the name of the node |
| 438 | * - `(<name>)` means that the node is a choice node |
| 439 | * - `:(<name>)` means that the node is a case node |
| 440 | * - if the node is augmented into the tree from another module, it is printed with the module name as |
| 441 | * `<module-name>:<name>`. |
| 442 | * |
| 443 | * - `<opts>` is one of: |
| 444 | * - `?` for an optional leaf or choice |
| 445 | * - `!` for a presence container |
| 446 | * - `*` for a leaf-list or list |
| 447 | * - `[<keys>]` for a list's keys |
| 448 | * |
| 449 | * - `<type>` is the name of the type for leafs and leaf-lists |
| 450 | * - if there is a default value defined, it is printed within angle brackets `<default-value>` |
| 451 | * - if the type is a leafref, the type is printed as -> TARGET` |
| 452 | * |
| 453 | * - `<if-features>` is the list of features this node depends on, printed within curly brackets and |
| 454 | * a question mark `{...}?` |
| 455 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 456 | * |
| 457 | * - Info |
| 458 | * |
| 459 | * Detailed information about the specific node in the schema tree. |
| 460 | * It allows to print information not only about a specific module, but also about its specific part: |
| 461 | * |
| 462 | * - absolute-schema-nodeid |
| 463 | * |
| 464 | * e.g. \a `/modules/module-set-id` in \a `ietf-yang-library` module |
| 465 | * |
| 466 | * - <b>typedef/</b>typedef-name |
| 467 | * |
| 468 | * e.g. \a `typedef/revision-identifier` in \a `ietf-yang-library` module |
| 469 | * |
| 470 | * - <b>feature/</b>feature-name |
| 471 | * |
| 472 | * e.g. \a `feature/ssh` in \a `ietf-netconf-server` module |
| 473 | * |
| 474 | * - <b>grouping/</b>grouping-name/descendant-schema-nodeid |
| 475 | * |
| 476 | * e.g. \a `grouping/module` or \a `grouping/module/module/submodules` in \a `ietf-yang-library` module |
| 477 | * |
| 478 | * - <b>type/</b>leaf-or-leaflist |
| 479 | * |
| 480 | * e.g. \a `type/modules/module-set-id` in \a `ietf-yang-library` module |
| 481 | * |
| 482 | * Printer functions allow to print to the different outputs including a callback function which allows caller |
| 483 | * to have a full control of the output data - libyang passes to the callback a private argument (some internal |
| 484 | * data provided by a caller of lys_print_clb()), string buffer and number of characters to print. Note that the |
| 485 | * callback is supposed to be called multiple times during the lys_print_clb() execution. |
| 486 | * |
| 487 | * Functions List |
| 488 | * -------------- |
| 489 | * - lys_print_mem() |
| 490 | * - lys_print_fd() |
| 491 | * - lys_print_file() |
| 492 | * - lys_print_clb() |
Radek Krejci | d9ba3e3 | 2015-07-30 15:08:18 +0200 | [diff] [blame] | 493 | */ |
| 494 | |
| 495 | /** |
| 496 | * @page howtodata Data Instances |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 497 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 498 | * All data nodes in data trees are connected with their schema node - libyang is not able to represent data of an |
| 499 | * unknown schema. |
| 500 | * |
Michal Vasko | 42aa0ab | 2016-10-25 15:09:32 +0200 | [diff] [blame] | 501 | * Connected to the aforementioned, it is important to mention that there are several kinds of data trees libyang |
| 502 | * can work with. Except for a standard full data tree and configuration data tree, there are trees specific for use |
| 503 | * in NETCONF, which are \<get\> or \<get-config\> replies, \<edit-config\> input content, generic RPC/action request, |
| 504 | * RPC/action reply, or a notification. |
| 505 | * |
| 506 | * Special care is needed when working with action input and RPC/action output, because in these cases the libyang data |
| 507 | * tree does not match the actual data tree NETCONF expects. |
| 508 | * |
| 509 | * <b>Action input</b> differentiates from a standard RPC that the child of \<rpc\> element is not the specific RPC |
| 510 | * request being sent, but a special \<action\> element in the base YANG namespace. It is expected to be present when |
| 511 | * parsing an action input and can optionally be included when the action is printed. |
| 512 | * |
| 513 | * As for <b>RPC output</b>, NETCONF expects the output parameters as direct children of the \<rpc-reply\> element. |
| 514 | * However, libyang encapsulates these parameters in the specific RPC request container. Same as before, it is expected |
| 515 | * to be without this container when parsing and can be printed out. |
| 516 | * |
| 517 | * Lastly, <b>action output</b> is almost similar to RPC output and in NETCONF you actually cannot distinguish them, |
| 518 | * but in case of action output, libyang puts all the output parameters under the action container, which is also |
| 519 | * just a child to all the schema tree ancestors up to the schema top-level, just like in an action input. Same applies |
| 520 | * even in this case, parsed data should be only the output parameters, you can decide how to print it. |
| 521 | * |
| 522 | * So, you do not have to use any special flag when you want to print the data tree the way libyang internally stores |
| 523 | * it, although you will not be able to parse it back, as was mentioned in the paragraphs above. To print data in the |
| 524 | * way NETCONF and libyang expects them to be, use #LYP_NETCONF flag for any printing function. |
| 525 | * |
Michal Vasko | 1ec579e | 2016-09-13 11:24:28 +0200 | [diff] [blame] | 526 | * Please, continue reading a specific subsection or go through all the subsections if you are a new user of libyang. |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 527 | * |
| 528 | * - @subpage howtodataparsers |
| 529 | * - @subpage howtodatamanipulators |
Michal Vasko | 1ec579e | 2016-09-13 11:24:28 +0200 | [diff] [blame] | 530 | * - @subpage howtodatavalidation |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 531 | * - @subpage howtodatawd |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 532 | * - @subpage howtodataprinters |
| 533 | * |
| 534 | * \note API for this group of functions is described in the [Data Instances module](@ref datatree). |
| 535 | * |
| 536 | * Functions List (not assigned to above subsections) |
| 537 | * -------------------------------------------------- |
Michal Vasko | f06fb5b | 2016-09-08 10:05:56 +0200 | [diff] [blame] | 538 | * - lyd_find_instance() |
| 539 | * - lyd_find_xpath() |
Radek Krejci | ae1c3b1 | 2016-09-20 16:30:32 +0200 | [diff] [blame] | 540 | * - lyd_leaf_type() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 541 | */ |
| 542 | |
| 543 | /** |
| 544 | * @page howtodataparsers Parsing Data |
| 545 | * |
| 546 | * Data parser allows to read instances from a specific format. libyang supports the following data formats: |
| 547 | * |
| 548 | * - XML |
| 549 | * |
| 550 | * Original data format used in NETCONF protocol. XML mapping is part of the YANG specification |
| 551 | * ([RFC 6020](http://tools.ietf.org/html/rfc6020)). |
| 552 | * |
| 553 | * - JSON |
| 554 | * |
| 555 | * The alternative data format available in RESTCONF protocol. Specification of JSON encoding of data modeled by YANG |
| 556 | * can be found in [this draft](https://tools.ietf.org/html/draft-ietf-netmod-yang-json-05). |
| 557 | * |
| 558 | * Besides the format of input data, the parser functions accepts additional [options](@ref parseroptions) to specify |
| 559 | * how the input data should be processed. |
| 560 | * |
| 561 | * In contrast to the schema parser, data parser also accepts empty input data if such an empty data tree is valid |
| 562 | * according to the schemas in the libyang context. |
| 563 | * |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 564 | * If a node from a schema, which is not present in the context, is parsed, a callback set by ly_ctx_set_module_data_clb() |
| 565 | * is called and this way the application is given the opportunity to add this schema into the context before the |
| 566 | * parsing would fail. |
| 567 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 568 | * In case of XML input data, there is one additional way to parse input data. Besides parsing the data from a string |
| 569 | * in memory or a file, caller is able to build an XML tree using [libyang XML parser](@ref howtoxml) and then use |
| 570 | * this tree (or a part of it) as input to the lyd_parse_xml() function. |
| 571 | * |
| 572 | * Functions List |
| 573 | * -------------- |
Radek Krejci | 722b007 | 2016-02-01 17:09:45 +0100 | [diff] [blame] | 574 | * - lyd_parse_mem() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 575 | * - lyd_parse_fd() |
| 576 | * - lyd_parse_path() |
| 577 | * - lyd_parse_xml() |
| 578 | */ |
| 579 | |
| 580 | /** |
| 581 | * @page howtodatamanipulators Manipulating Data |
| 582 | * |
| 583 | * There are many functions to create or modify an existing data tree. You can add new nodes, reconnect nodes from |
| 584 | * one tree to another (or e.g. from one list instance to another) or remove nodes. The functions doesn't allow you |
| 585 | * to put a node to a wrong place (by checking the module), but not all validation checks can be made directly |
| 586 | * (or you have to make a valid change by multiple tree modifications) when the tree is being changed. Therefore, |
Michal Vasko | 58f74f1 | 2016-03-24 13:26:06 +0100 | [diff] [blame] | 587 | * there is lyd_validate() function supposed to be called to make sure that the current data tree is valid. If |
| 588 | * working with RPCs, they are invalid also in case the data nodes are not ordered according to the schema, which |
| 589 | * you can fix easily with lyd_schema_sort(). Note, that not performing validation after some data tree changes |
Michal Vasko | 299f983 | 2017-01-06 13:29:22 +0100 | [diff] [blame] | 590 | * can cause failure of various libyang functions later. All functions performing data tree changes are marked |
| 591 | * with the __PARTIAL CHANGE__ flag in their documentation meaning they leave at least partly non-validated data tree. |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 592 | * |
Michal Vasko | 0f14ba6 | 2016-03-21 15:38:11 +0100 | [diff] [blame] | 593 | * Creating data is generally possible in two ways, they can be combined. You can add nodes one-by-one based on |
Michal Vasko | 1ec579e | 2016-09-13 11:24:28 +0200 | [diff] [blame] | 594 | * the node name and/or its parent (lyd_new(), \b lyd_new_anydata_*(), lyd_new_leaf(), and their output variants) or |
Michal Vasko | 58f74f1 | 2016-03-24 13:26:06 +0100 | [diff] [blame] | 595 | * address the nodes using a simple XPath addressing (lyd_new_path()). The latter enables to create a whole path |
| 596 | * of nodes, requires less information about the modified data, and is generally simpler to use. The path format |
| 597 | * specifics can be found [here](@ref howtoxpath). |
Michal Vasko | 0f14ba6 | 2016-03-21 15:38:11 +0100 | [diff] [blame] | 598 | * |
Michal Vasko | 3c12682 | 2016-09-22 13:48:42 +0200 | [diff] [blame] | 599 | * Working with two data subtrees can also be performed two ways. Usually, you would use lyd_insert*() functions. |
| 600 | * They are generally meant for simple inserts of a node into a data tree. For more complicated inserts and when |
| 601 | * merging 2 trees use lyd_merge(). It offers additional options and is basically a more powerful insert. |
Michal Vasko | 45fb282 | 2016-04-18 13:32:17 +0200 | [diff] [blame] | 602 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 603 | * Also remember, that when you are creating/inserting a node, all the objects in that operation must belong to the |
| 604 | * same context. |
| 605 | * |
| 606 | * Modifying the single data tree in multiple threads is not safe. |
| 607 | * |
| 608 | * Functions List |
| 609 | * -------------- |
| 610 | * - lyd_dup() |
Radek Krejci | ab80e3a | 2017-01-09 13:07:31 +0100 | [diff] [blame] | 611 | * - lyd_dup_to_ctx() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 612 | * - lyd_change_leaf() |
| 613 | * - lyd_insert() |
Radek Krejci | db6b166 | 2016-09-15 10:40:16 +0200 | [diff] [blame] | 614 | * - lyd_insert_sibling() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 615 | * - lyd_insert_before() |
| 616 | * - lyd_insert_after() |
| 617 | * - lyd_insert_attr() |
Michal Vasko | 45fb282 | 2016-04-18 13:32:17 +0200 | [diff] [blame] | 618 | * - lyd_merge() |
Radek Krejci | ab80e3a | 2017-01-09 13:07:31 +0100 | [diff] [blame] | 619 | * - lyd_merge_to_ctx() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 620 | * - lyd_new() |
Michal Vasko | 0845b11 | 2016-09-08 10:07:08 +0200 | [diff] [blame] | 621 | * - lyd_new_anydata() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 622 | * - lyd_new_leaf() |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 623 | * - lyd_new_path() |
Michal Vasko | 0ba4615 | 2016-05-11 14:16:55 +0200 | [diff] [blame] | 624 | * - lyd_new_output() |
Michal Vasko | 0845b11 | 2016-09-08 10:07:08 +0200 | [diff] [blame] | 625 | * - lyd_new_output_anydata() |
Michal Vasko | 0ba4615 | 2016-05-11 14:16:55 +0200 | [diff] [blame] | 626 | * - lyd_new_output_leaf() |
Michal Vasko | ae5a53e | 2017-01-05 10:33:41 +0100 | [diff] [blame] | 627 | * - lyd_list_pos() |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 628 | * - lyd_schema_sort() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 629 | * - lyd_unlink() |
| 630 | * - lyd_free() |
| 631 | * - lyd_free_attr() |
| 632 | * - lyd_free_withsiblings() |
Michal Vasko | 1ec579e | 2016-09-13 11:24:28 +0200 | [diff] [blame] | 633 | */ |
| 634 | |
| 635 | /** |
| 636 | * @page howtodatavalidation Validating Data |
| 637 | * |
| 638 | * By default, the represented data are supposed to represent a full YANG datastore content. So if a schema declares |
| 639 | * some mandatory nodes, despite configuration or status, the data are supposed to be present in the data tree being |
| 640 | * loaded or validated. However, it is possible to specify other kinds of data (see @ref parseroptions) allowing some |
| 641 | * exceptions to the validation process. |
| 642 | * |
| 643 | * Data validation is performed implicitly to the input data processed by the parser (\b lyd_parse_*() functions) and |
| 644 | * on demand via the lyd_validate() function. The lyd_validate() is supposed to be used when a (complex or simple) |
| 645 | * change is done on the data tree (via a combination of \b lyd_change_*(), \b lyd_insert*(), \b lyd_new*(), |
| 646 | * lyd_unlink() and lyd_free() functions). |
| 647 | * |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 648 | * Part of data validation is resolving leafrefs and instance-identifiers. Leafrefs are resolved only when a change occured |
| 649 | * in the data tree that could have broken the link. However, as instance-identifiers can point to any node whatsoever |
| 650 | * without an import, it would not be effective to store metadata as in the case of leafrefs. That is why they are resolved |
| 651 | * during every validation. Also, for the same reason, it can easily happen that when parsing/validating data with |
| 652 | * an instance-identifier, it will target a remote node, whose schema is not currently present in the context. To handle |
| 653 | * this case, a callback should be set using ly_ctx_set_module_data_clb(), which can load the schema when required. |
| 654 | * |
Michal Vasko | 1ec579e | 2016-09-13 11:24:28 +0200 | [diff] [blame] | 655 | * Must And When Conditions Accessible Tree |
| 656 | * ---------------------------------------- |
| 657 | * |
| 658 | * In YANG 1.1, there can be \b must and/or \b when expressions in RPC/action input or output, or in notifications that |
| 659 | * require access to the configuration datastore and/or state data. Normally, when working with any of the aforementioned |
| 660 | * data trees, they must contain only the RPC/action/notification itself, without any additional configuration or state |
| 661 | * data. So how can then these conditions be verified during validation? |
| 662 | * |
| 663 | * There is an option to pass this additional data tree to all the functions that perform \b must and \b when condition |
Michal Vasko | 3c4cf90 | 2017-01-03 14:43:38 +0100 | [diff] [blame] | 664 | * checking (\b lyd_parse_*() and lyd_validate()). Also, there are 2 flags of \b struct lys_node that |
| 665 | * mark schema nodes that include paths that require foreign nodes (outside their subtree) for their evaluation. #LYS_XPATH_DEP |
| 666 | * marks nodes with such must and/or when expressions, #LYS_LEAFREF_DEP with such a leafref. |
Michal Vasko | 1ec579e | 2016-09-13 11:24:28 +0200 | [diff] [blame] | 667 | * The subtree root is always the particular operation data node (for RPC it is the RPC data node and all |
| 668 | * the input or output nodes as its children and similarly for action and notification). Note that for action and |
| 669 | * not-top-level notification this means that all their parents are not considered as belonging to their subtree even though |
| 670 | * they are included in their data tree and must be present for the operation validation to pass. The reason for this is that if |
| 671 | * there are any lists in those parents, we cannot know if there are not some other instances of them in the standard |
| 672 | * data tree in addition to the one used in the action/notification invocation. |
| 673 | * |
| 674 | * There were 2 ways of using this mechanism envisioned (explained below), but you can combine or modify them. |
| 675 | * |
| 676 | * ### Fine-grained Data Retrieval ### |
| 677 | * |
| 678 | * This approach is recommended when you do not maintain a full configuration data tree with state data at all times. |
| 679 | * |
| 680 | * Firstly, you should somehow learn that the operation data tree you are currently working with includes some schema |
| 681 | * node instances that have conditions that require foreign data. You can either know this about every operation beforehand |
Michal Vasko | 3c4cf90 | 2017-01-03 14:43:38 +0100 | [diff] [blame] | 682 | * or you go through all the schema nodes looking for the flags #LYS_XPATH_DEP and #LYS_LEAFREF_DEP. Then you should use lys_node_xpath_atomize() |
Michal Vasko | 1ec579e | 2016-09-13 11:24:28 +0200 | [diff] [blame] | 683 | * to retrieve all XPath condition dependencies (in the form of schema nodes) outside the operation subtree. You will likely |
| 684 | * want to use the flag #LYXP_NO_LOCAL to get rid of all the nodes from inside the subtree (you should already have those). |
| 685 | * The last thing to do is to build a data tree that includes at least all the instances of the nodes obtained from lys_node_xpath_atomize() |
| 686 | * (it will be expected). Then you pass this tree to the validation and it should now have access to all the nodes that |
| 687 | * can potentially affect the XPath evaluation and no other. |
| 688 | * |
| 689 | * ### Maintaining Configuration And State Data Tree ### |
| 690 | * |
| 691 | * If you have a full data tree with state data available for the validation process then it is quite simple (compared |
| 692 | * to the first approach). You can simply always pass it to validation of these operations and in cases it is not required |
| 693 | * (no nodes with conditions traversing foreign nodes) only a negligible amount of redundant work is performed and you can |
| 694 | * skip the process of learning whether it is required or not. |
| 695 | * |
| 696 | * Functions List |
| 697 | * -------------- |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 698 | * - lyd_validate() |
| 699 | */ |
| 700 | |
| 701 | /** |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 702 | * @page howtodatawd Default Values |
| 703 | * |
Radek Krejci | db6b166 | 2016-09-15 10:40:16 +0200 | [diff] [blame] | 704 | * libyang provides support for work with default values as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243). |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 705 | * This document defines 4 modes for handling default nodes in a data tree, libyang adds the fifth mode: |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 706 | * - \b explicit - Only the explicitly set configuration data. But in the case of status data, missing default |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 707 | * data are added into the tree. In libyang, this mode is represented by #LYP_WD_EXPLICIT option. |
| 708 | * - \b trim - Data nodes containing the schema default value are removed. This mode is applied using #LYP_WD_TRIM option. |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 709 | * - \b report-all - All the missing default data are added into the data tree. This mode is represented by |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 710 | * #LYP_WD_ALL option. |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 711 | * - \b report-all-tagged - In this case, all the missing default data are added as in case of the `report-all` mode, |
| 712 | * but additionally all the nodes (existing as well as added) containing the schema default value |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 713 | * are tagged (see the note below). libyang uses #LYP_WD_ALL_TAG option for this mode. |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 714 | * - \b report-implicit-tagged - The last mode is similar to the previous one, except only the added nodes are tagged. |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 715 | * This is the libyang's extension and it is represented by #LYP_WD_IMPL_TAG option. |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 716 | * |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 717 | * libyang automatically adds/maintain the default nodes when a data tree is being parsed or validated. Note, that in a |
| 718 | * modified data tree (via e.g. lys_insert() or lys_free()), some of the default nodes can be missing or they can be |
| 719 | * present by mistake. Such a data tree is again corrected during the next lyd_validate() call. |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 720 | * |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 721 | * The implicit (default) nodes, created by libyang, are marked with the ::lyd_node#dflt flag which applies to the |
Radek Krejci | d3cfbc9 | 2016-09-15 10:39:33 +0200 | [diff] [blame] | 722 | * leafs and leaf-lists. In case of containers, the flag means that the container holds only a default node(s) or it |
| 723 | * is an empty container (according to YANG 1.1 spec, all such containers are part of the accessible data tree). |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 724 | * |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 725 | * The presence of the default nodes during the data tree lifetime is affected by the LYD_OPT_ flag used to |
| 726 | * parse/validate the tree: |
| 727 | * - #LYD_OPT_DATA - all the default nodes are present despite they are configuration or status nodes |
| 728 | * - #LYD_OPT_CONFIG - only the configuration data nodes are added into the tree |
| 729 | * - #LYD_OPT_GET, #LYD_OPT_GETCONFIG, #LYD_OPT_EDIT - no default nodes are added |
| 730 | * - #LYD_OPT_RPC, #LYD_OPT_RPCREPLY, #LYD_OPT_NOTIF - the default nodes from the particular subtree are added |
| 731 | * |
Radek Krejci | db6b166 | 2016-09-15 10:40:16 +0200 | [diff] [blame] | 732 | * The with-default modes described above are supported when the data tree is being printed with the |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 733 | * [LYP_WD_ printer flags](@ref printerflags). Note, that in case of #LYP_WD_ALL_TAG and #LYP_WD_IMPL_TAG modes, |
| 734 | * the XML/JSON attributes are printed only if the context includes the ietf-netconf-with-defaults schema. Otherwise, |
Radek Krejci | d3cfbc9 | 2016-09-15 10:39:33 +0200 | [diff] [blame] | 735 | * these modes have the same result as #LYP_WD_ALL. The presence of empty containers (despite they were added explicitly |
| 736 | * or implicitly as part of accessible data tree) depends on #LYP_KEEPEMPTYCONT option. |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 737 | * |
| 738 | * To get know if the particular leaf or leaf-list node contains default value (despite implicit or explicit), you can |
Radek Krejci | db6b166 | 2016-09-15 10:40:16 +0200 | [diff] [blame] | 739 | * use lyd_wd_default() function. |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 740 | * |
| 741 | * Functions List |
| 742 | * -------------- |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 743 | * - lyd_wd_default() |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 744 | * |
| 745 | * - lyd_parse_mem() |
| 746 | * - lyd_parse_fd() |
| 747 | * - lyd_parse_path() |
| 748 | * - lyd_parse_xml() |
| 749 | * - lyd_validate() |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 750 | * - lyd_print_mem() |
| 751 | * - lyd_print_fd() |
| 752 | * - lyd_print_file() |
| 753 | * - lyd_print_clb() |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 754 | */ |
| 755 | |
| 756 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 757 | * @page howtodataprinters Printing Data |
| 758 | * |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 759 | * Data printers allows to serialize internal representation of a data tree in a specific format. libyang |
| 760 | * supports the following data formats for printing: |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 761 | * |
| 762 | * - XML |
| 763 | * |
| 764 | * Basic format as specified in rules of mapping YANG modeled data to XML in |
| 765 | * [RFC 6020](http://tools.ietf.org/html/rfc6020). It is possible to specify if |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 766 | * the indentation (formatting) will be used (by #LYP_FORMAT @ref printerflags "printer option"). |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 767 | * |
| 768 | * - JSON |
| 769 | * |
| 770 | * The alternative data format available in RESTCONF protocol. Specification of JSON encoding of data modeled by YANG |
Radek Krejci | f6ab2cd | 2016-04-18 17:15:26 +0200 | [diff] [blame] | 771 | * can be found in [this draft](https://tools.ietf.org/html/draft-ietf-netmod-yang-json-05).It is possible to specify |
| 772 | * if the indentation (formatting) will be used (by #LYP_FORMAT @ref printerflags "printer option"). |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 773 | * |
| 774 | * Printer functions allow to print to the different outputs including a callback function which allows caller |
| 775 | * to have a full control of the output data - libyang passes to the callback a private argument (some internal |
| 776 | * data provided by a caller of lyd_print_clb()), string buffer and number of characters to print. Note that the |
| 777 | * callback is supposed to be called multiple times during the lyd_print_clb() execution. |
| 778 | * |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 779 | * To print the data tree with default nodes according to the with-defaults capability defined in |
| 780 | * [RFC 6243](https://tools.ietf.org/html/rfc6243), check the [page about the default values](@ref howtodatawd). |
| 781 | * |
Michal Vasko | 42aa0ab | 2016-10-25 15:09:32 +0200 | [diff] [blame] | 782 | * Also, to print the data in NETCONF format, use the #LYP_NETCONF flag. More information can be found on the page |
| 783 | * @ref howtodata. |
| 784 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 785 | * Functions List |
| 786 | * -------------- |
| 787 | * - lyd_print_mem() |
| 788 | * - lyd_print_fd() |
| 789 | * - lyd_print_file() |
| 790 | * - lyd_print_clb() |
| 791 | */ |
| 792 | |
| 793 | /** |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 794 | * @page howtoxpath XPath Addressing |
| 795 | * |
| 796 | * Internally, XPath evaluation is performed on \b when and \b must conditions in the schema. For that almost |
Michal Vasko | 88aae04 | 2016-09-08 08:57:09 +0200 | [diff] [blame] | 797 | * a full XPath 1.0 evaluator was implemented except that only node sets are returned. This XPath implementation |
Michal Vasko | f06fb5b | 2016-09-08 10:05:56 +0200 | [diff] [blame] | 798 | * is available on data trees by calling lyd_find_xpath() and on schema trees by calling lys_find_xpath(). |
Michal Vasko | 46a4bf9 | 2016-09-08 08:23:49 +0200 | [diff] [blame] | 799 | * This XPath conforms to the YANG specification (RFC 6020 section 6.4). Some useful examples: |
Michal Vasko | 8e62769 | 2016-04-19 12:15:47 +0200 | [diff] [blame] | 800 | * |
Michal Vasko | ebea701 | 2016-04-19 14:15:22 +0200 | [diff] [blame] | 801 | * - get all top-level nodes of the __module-name__ |
| 802 | * |
| 803 | * /module-name:* |
| 804 | * |
| 805 | * - get all the descendants of __container__ (excluding __container__) |
| 806 | * |
| 807 | * /module-name:container//\asterisk |
| 808 | * |
| 809 | * - get __list__ instance with __key1__ of value __1__ and __key2__ of value __2__ (this can return more __list__ instances if there are more keys than __key1__ and __key2__) |
| 810 | * |
| 811 | * /module-name:container/list[key1='1'][key2='2'] |
| 812 | * |
| 813 | * - get __leaf-list__ instance with the value __val__ |
| 814 | * |
| 815 | * /module-name:container/leaf-list[.='val'] |
| 816 | * |
| 817 | * - get __aug-leaf__, which was added to __module-name__ from an augment module __augment-module__ |
| 818 | * |
| 819 | * /module-name:container/container2/augment-module:aug-cont/aug-leaf |
| 820 | * |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 821 | * |
| 822 | * A very small subset of this full XPath is recognized by lyd_new_path(). Basically, only a relative or absolute |
Michal Vasko | 58c2aab | 2017-01-05 10:02:05 +0100 | [diff] [blame] | 823 | * path can be specified to identify a new data node. However, lists must be identified by either all their keys and created |
| 824 | * with all of them or using their relative position on their level starting from 1, so for those cases predicates are |
Michal Vasko | ae5a53e | 2017-01-05 10:33:41 +0100 | [diff] [blame] | 825 | * allowed. List positions can be learned using lyd_list_pos(). Key predicates must be ordered the way the keys are |
| 826 | * ordered and all the keys must be specified. Every predicate includes a single key with its value. If an instance |
| 827 | * with such particular set of keys or with such relative position does not exist or no predicate is specified, list |
| 828 | * instance is created. Optionally, leaves and leaf-lists can have predicates specifying their value in the path itself. |
| 829 | * All these paths are valid XPath expressions. Example: |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 830 | * |
Michal Vasko | 1acf850 | 2016-05-05 09:14:07 +0200 | [diff] [blame] | 831 | * /ietf-yang-library:modules-state/module[name='ietf-yang-library'][revision='']/conformance[.='implement'] |
Michal Vasko | 58c2aab | 2017-01-05 10:02:05 +0100 | [diff] [blame] | 832 | * /ietf-yang-library:modules-state/module[1]/conformance[.='implement'] |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 833 | * |
| 834 | * Almost the same XPath is accepted by ly_ctx_get_node(). The difference is that it is not used on data, but schema, |
| 835 | * which means there are no key values and only one node matches one path. In effect, lists do not have to have any |
| 836 | * predicates. If they do, they do not need to have all the keys specified and if values are included, they are ignored. |
| 837 | * Nevertheless, any such expression is still a valid XPath, but can return more nodes if executed on a data tree. |
| 838 | * Examples (all returning the same node): |
| 839 | * |
| 840 | * /ietf-yang-library:modules-state/module/submodules |
| 841 | * /ietf-yang-library:modules-state/module[name]/submodules |
| 842 | * /ietf-yang-library:modules-state/module[name][revision]/submodules |
| 843 | * /ietf-yang-library:modules-state/module[name='ietf-yang-library'][revision]/submodules |
| 844 | * |
| 845 | * Also, `choice`, `case`, `input`, and `output` nodes need to be specified and cannot be skipped in schema XPaths. Use |
Michal Vasko | 8d26e5c | 2016-09-08 10:03:49 +0200 | [diff] [blame] | 846 | * lys_find_xpath() if you want to search based on a data XPath. |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 847 | * |
| 848 | * Also note, that in all cases the node's prefix is specified as the name of the appropriate YANG schema. Any node |
| 849 | * can be prefixed by the module name. However, if the prefix is omitted, the module name is inherited from the previous |
| 850 | * (parent) node. It means, that the first node in the path is always supposed to have a prefix. |
| 851 | * |
| 852 | * Functions List |
| 853 | * -------------- |
Michal Vasko | f06fb5b | 2016-09-08 10:05:56 +0200 | [diff] [blame] | 854 | * - lyd_find_xpath() |
| 855 | * - lys_find_xpath() |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 856 | * - lyd_new_path() |
| 857 | * - ly_ctx_get_node() |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 858 | */ |
| 859 | |
| 860 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 861 | * @page howtoxml libyang XML Support |
| 862 | * |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 863 | * libyang XML parser is able to parse XML documents. The main purpose is to load data modeled by YANG. However, it can |
| 864 | * be used as a standalone XML parser with the following limitations in comparison to a full-featured XML parsers: |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 865 | * - comments are ignored |
| 866 | * - Doctype declaration is ignored |
| 867 | * - CData sections are ignored |
| 868 | * - Process Instructions (PI) are ignored |
| 869 | * |
| 870 | * The API is designed to almost only read-only access. You can simply load XML document, go through the tree as |
| 871 | * you wish and dump the tree to an output. The only "write" functions are lyxml_free() and lyxml_unlink() to remove |
| 872 | * part of the tree or to unlink (separate) a subtree. |
| 873 | * |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 874 | * XML parser is used internally by libyang for parsing YIN schemas and data instances in XML format. |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 875 | * |
| 876 | * \note API for this group of functions is described in the [XML Parser module](@ref xmlparser). |
| 877 | * |
| 878 | * Functions List |
| 879 | * -------------- |
Radek Krejci | 722b007 | 2016-02-01 17:09:45 +0100 | [diff] [blame] | 880 | * - lyxml_parse_mem() |
| 881 | * - lyxml_parse_path() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 882 | * - lyxml_get_attr() |
| 883 | * - lyxml_get_ns() |
Radek Krejci | 722b007 | 2016-02-01 17:09:45 +0100 | [diff] [blame] | 884 | * - lyxml_print_mem() |
| 885 | * - lyxml_print_fd() |
| 886 | * - lyxml_print_file() |
| 887 | * - lyxml_print_clb() |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 888 | * - lyxml_unlink() |
| 889 | * - lyxml_free() |
| 890 | */ |
| 891 | |
| 892 | /** |
| 893 | * @page howtothreads libyang in Threads |
| 894 | * |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 895 | * libyang can be used in multithreaded applications keeping in mind the following rules: |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 896 | * - libyang context manipulation (adding new schemas) is not thread safe and it is supposed to be done in a main |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 897 | * thread before any other work with context, schemas or data instances. Destroying the context is supposed to |
Michal Vasko | e77dc99 | 2017-01-18 12:09:42 +0100 | [diff] [blame] | 898 | * be done when no other thread accesses context, schemas nor data trees, |
| 899 | * - data parser (\b lyd_parse*() functions) can be used simultaneously in multiple threads (also the returned |
| 900 | * #ly_errno is thread safe), |
| 901 | * - data manipulation (lyd_new(), lyd_insert(), lyd_unlink(), lyd_free() and many other |
| 902 | * functions) a single data tree is not thread safe, |
| 903 | * - data printing of a single data tree is thread-safe. |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 904 | */ |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 905 | |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 906 | /** |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 907 | * |
| 908 | * @page howtologger Logger |
| 909 | * |
| 910 | * There are 4 verbosity levels defined as ::LY_LOG_LEVEL. The level can be |
| 911 | * changed by the ly_verb() function. By default, the verbosity level is |
| 912 | * set to #LY_LLERR value. |
| 913 | * |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 914 | * When an error is encountered, the error message and error number are stored for |
| 915 | * later use. Caller is able to access the last error message via ly_errmsg() and the |
| 916 | * corresponding last error code via #ly_errno. If that was a validation error (#ly_errno |
| 917 | * is set to #LY_EVALID), also validation error code (via #ly_vecode) and path to the |
| 918 | * error node (via ly_errpath()) are available. |
| 919 | * |
| 920 | * For some specific cases, a YANG schema can define error message and/or error tag (mainly for |
Michal Vasko | ebea701 | 2016-04-19 14:15:22 +0200 | [diff] [blame] | 921 | * use in NETCONF). If a message is set, it is provided via ly_errmsg(). If a tag is set in schema, |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 922 | * it is available via ly_erraptag() (if not set, the returned string is empty). |
| 923 | * |
Michal Vasko | ebea701 | 2016-04-19 14:15:22 +0200 | [diff] [blame] | 924 | * By default, all libyang messages are printed to `stderr`. However, the caller is able to set their own logging |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 925 | * callback function. In that case, instead of printing messages, libyang passes error level, message and path |
| 926 | * (if any) to the caller's callback function. In case of error level, the message and path are still |
| 927 | * automatically stored and available via the functions and macros described above. |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 928 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 929 | * \note API for this group of functions is described in the [logger module](@ref logger). |
| 930 | * |
| 931 | * Functions List |
| 932 | * -------------- |
| 933 | * - ly_verb() |
| 934 | * - ly_set_log_clb() |
| 935 | * - ly_get_log_clb() |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 936 | * - ly_errmsg() |
| 937 | * - ly_errpath() |
| 938 | * - ly_errapptag() |
| 939 | * - #ly_errno |
| 940 | * - #ly_vecode |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 941 | */ |
| 942 | |
| 943 | /** |
| 944 | * @defgroup context Context |
Radek Krejci | 3045cf3 | 2015-05-28 10:58:52 +0200 | [diff] [blame] | 945 | * @{ |
| 946 | * |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 947 | * Structures and functions to manipulate with the libyang "containers". The \em context concept allows callers |
| 948 | * to work in environments with different sets of YANG schemas. More detailed information can be found at |
| 949 | * @ref howtocontext page. |
Radek Krejci | 3045cf3 | 2015-05-28 10:58:52 +0200 | [diff] [blame] | 950 | */ |
| 951 | |
| 952 | /** |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 953 | * @brief libyang context handler. |
| 954 | */ |
| 955 | struct ly_ctx; |
| 956 | |
| 957 | /** |
| 958 | * @brief Create libyang context |
| 959 | * |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 960 | * Context is used to hold all information about schemas. Usually, the application is supposed |
Radek Krejci | 91b833c | 2015-09-04 11:49:43 +0200 | [diff] [blame] | 961 | * to work with a single context in which libyang is holding all schemas (and other internal |
| 962 | * information) according to which the data trees will be processed and validated. So, the schema |
| 963 | * trees are tightly connected with the specific context and they are held by the context internally |
| 964 | * - caller does not need to keep pointers to the schemas returned by lys_parse(), context knows |
| 965 | * about them. The data trees created with lyd_parse() are still connected with the specific context, |
| 966 | * but they are not internally held by the context. The data tree just points and lean on some data |
| 967 | * held by the context (schema tree, string dictionary, etc.). Therefore, in case of data trees, caller |
| 968 | * is supposed to keep pointers returned by the lyd_parse() and manage the data tree on its own. This |
| 969 | * also affects the number of instances of both tree types. While you can have only one instance of |
| 970 | * specific schema connected with a single context, number of data tree instances is not connected. |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 971 | * |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 972 | * @param[in] search_dir Directory where libyang will search for the imported or included modules |
| 973 | * and submodules. If no such directory is available, NULL is accepted. |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 974 | * |
Radek Krejci | 3045cf3 | 2015-05-28 10:58:52 +0200 | [diff] [blame] | 975 | * @return Pointer to the created libyang context, NULL in case of error. |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 976 | */ |
| 977 | struct ly_ctx *ly_ctx_new(const char *search_dir); |
| 978 | |
| 979 | /** |
Michal Vasko | 60ba9a6 | 2015-07-03 14:42:31 +0200 | [diff] [blame] | 980 | * @brief Change the search path in libyang context |
| 981 | * |
| 982 | * @param[in] ctx Context to be modified. |
| 983 | * @param[in] search_dir New search path to replace the current one in ctx. |
| 984 | */ |
| 985 | void ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir); |
| 986 | |
| 987 | /** |
Radek Krejci | 5a79757 | 2015-10-21 15:45:45 +0200 | [diff] [blame] | 988 | * @brief Get current value of the search path in libyang context |
| 989 | * |
| 990 | * @param[in] ctx Context to query. |
| 991 | * @return Current value of the search path. |
| 992 | */ |
Michal Vasko | 1e62a09 | 2015-12-01 12:27:20 +0100 | [diff] [blame] | 993 | const char *ly_ctx_get_searchdir(const struct ly_ctx *ctx); |
Radek Krejci | 5a79757 | 2015-10-21 15:45:45 +0200 | [diff] [blame] | 994 | |
| 995 | /** |
Radek Krejci | 7ab2515 | 2015-08-07 14:48:45 +0200 | [diff] [blame] | 996 | * @brief Get data of an internal ietf-yang-library module. |
| 997 | * |
| 998 | * @param[in] ctx Context with the modules. |
| 999 | * @return Root data node corresponding to the model, NULL on error. |
| 1000 | * Caller is responsible for freeing the returned data tree using lyd_free(). |
| 1001 | */ |
| 1002 | struct lyd_node *ly_ctx_info(struct ly_ctx *ctx); |
| 1003 | |
| 1004 | /** |
Radek Krejci | 0ec51da | 2016-12-14 16:42:03 +0100 | [diff] [blame] | 1005 | * @brief Iterate over all (enabled) modules in a context. |
Michal Vasko | d7957c0 | 2016-04-01 10:27:26 +0200 | [diff] [blame] | 1006 | * |
| 1007 | * @param[in] ctx Context with the modules. |
| 1008 | * @param[in,out] idx Index of the next module to be returned. Value of 0 starts from the beginning. |
| 1009 | * @return Next context module, NULL if the last was already returned. |
| 1010 | */ |
| 1011 | const struct lys_module *ly_ctx_get_module_iter(const struct ly_ctx *ctx, uint32_t *idx); |
| 1012 | |
| 1013 | /** |
Radek Krejci | 0ec51da | 2016-12-14 16:42:03 +0100 | [diff] [blame] | 1014 | * @brief Iterate over the disabled modules in a context. |
| 1015 | * |
| 1016 | * @param[in] ctx Context with the modules. |
| 1017 | * @param[in,out] idx Index of the next module to be returned. Value of 0 starts from the beginning. |
| 1018 | * @return Next context module, NULL if the last was already returned. |
| 1019 | */ |
| 1020 | const struct lys_module *ly_ctx_get_disabled_module_iter(const struct ly_ctx *ctx, uint32_t *idx); |
| 1021 | |
| 1022 | /** |
Radek Krejci | fd4e6e3 | 2015-08-10 15:00:51 +0200 | [diff] [blame] | 1023 | * @brief Get pointer to the schema tree of the module of the specified name. |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 1024 | * |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 1025 | * @param[in] ctx Context to work in. |
| 1026 | * @param[in] name Name of the YANG module to get. |
Radek Krejci | f647e61 | 2015-07-30 11:36:07 +0200 | [diff] [blame] | 1027 | * @param[in] revision Optional revision date of the YANG module to get. If not specified, |
| 1028 | * the schema in the newest revision is returned if any. |
| 1029 | * @return Pointer to the data model structure, NULL if no schema following the name and |
Radek Krejci | fd4e6e3 | 2015-08-10 15:00:51 +0200 | [diff] [blame] | 1030 | * revision requirements is present in the context. |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 1031 | */ |
Michal Vasko | 1e62a09 | 2015-12-01 12:27:20 +0100 | [diff] [blame] | 1032 | const struct lys_module *ly_ctx_get_module(const struct ly_ctx *ctx, const char *name, const char *revision); |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 1033 | |
| 1034 | /** |
Radek Krejci | 21601a3 | 2016-03-07 11:39:27 +0100 | [diff] [blame] | 1035 | * @brief Get pointer to the older schema tree to the specified one in the provided context. |
| 1036 | * |
| 1037 | * The module is not necessarily from the provided \p ctx. If there are multiple schemas older than the |
| 1038 | * provided one, the newest of them is returned. |
| 1039 | * |
| 1040 | * The function can be used in combination with ly_ctx_get_module() to get all revisions of a module in a context: |
| 1041 | * \code{.c} |
| 1042 | * for (mod = ly_ctx_get_module(ctx, name, NULL); mod; mod = ly_ctx_get_module_older(ctx, mod)) { |
| 1043 | * ... |
| 1044 | * } |
| 1045 | * \endcode |
| 1046 | * |
| 1047 | * @param[in] ctx Context to work in. |
| 1048 | * @param[in] module YANG module to compare with |
| 1049 | * @return Pointer to the data model structure, NULL if no older schema is present in the context. |
| 1050 | */ |
| 1051 | const struct lys_module *ly_ctx_get_module_older(const struct ly_ctx *ctx, const struct lys_module *module); |
| 1052 | |
| 1053 | /** |
Michal Vasko | 99b0aad | 2015-12-01 12:28:51 +0100 | [diff] [blame] | 1054 | * @brief Try to find the model in the searchpath of \p ctx and load it into it. If custom missing |
| 1055 | * module callback is set, it is used instead. |
Michal Vasko | 8246596 | 2015-11-10 11:03:11 +0100 | [diff] [blame] | 1056 | * |
Radek Krejci | 31fb8be | 2016-06-23 15:26:26 +0200 | [diff] [blame] | 1057 | * If there is a possibility that the requested module is already in the context, you should call |
| 1058 | * the ly_ctx_get_module() first to avoid a lot of work performed by ly_ctx_load_module(). |
| 1059 | * |
Michal Vasko | 8246596 | 2015-11-10 11:03:11 +0100 | [diff] [blame] | 1060 | * @param[in] ctx Context to add to. |
Michal Vasko | 8246596 | 2015-11-10 11:03:11 +0100 | [diff] [blame] | 1061 | * @param[in] name Name of the module to load. |
| 1062 | * @param[in] revision Optional revision date of the module. If not specified, it is |
| 1063 | * assumed that there is only one model revision in the searchpath (the first matching file |
| 1064 | * is parsed). |
| 1065 | * @return Pointer to the data model structure, NULL if not found or some error occured. |
| 1066 | */ |
Michal Vasko | 99b0aad | 2015-12-01 12:28:51 +0100 | [diff] [blame] | 1067 | const struct lys_module *ly_ctx_load_module(struct ly_ctx *ctx, const char *name, const char *revision); |
| 1068 | |
| 1069 | /** |
| 1070 | * @brief Callback for retrieving missing included or imported models in a custom way. |
| 1071 | * |
Michal Vasko | 8447515 | 2016-07-25 16:16:25 +0200 | [diff] [blame] | 1072 | * @param[in] mod_name Missing module name. |
| 1073 | * @param[in] mod_rev Optional missing module revision. |
| 1074 | * @param[in] submod_name Optional missing submodule name. |
| 1075 | * @param[in] submod_rev Optional missing submodule revision. |
Michal Vasko | 99b0aad | 2015-12-01 12:28:51 +0100 | [diff] [blame] | 1076 | * @param[in] user_data User-supplied callback data. |
| 1077 | * @param[out] format Format of the returned module data. |
Michal Vasko | 880dceb | 2016-03-03 15:44:56 +0100 | [diff] [blame] | 1078 | * @param[out] free_module_data Callback for freeing the returned module data. If not set, the data will be left untouched. |
Radek Krejci | 31fb8be | 2016-06-23 15:26:26 +0200 | [diff] [blame] | 1079 | * @return Requested module data or NULL if the callback is not able to provide the requested schema content for any reason. |
Michal Vasko | 99b0aad | 2015-12-01 12:28:51 +0100 | [diff] [blame] | 1080 | */ |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 1081 | typedef char *(*ly_module_imp_clb)(const char *mod_name, const char *mod_rev, const char *submod_name, const char *sub_rev, |
| 1082 | void *user_data, LYS_INFORMAT *format, void (**free_module_data)(void *model_data)); |
Michal Vasko | 99b0aad | 2015-12-01 12:28:51 +0100 | [diff] [blame] | 1083 | |
| 1084 | /** |
Michal Vasko | 98b5f95 | 2016-10-26 12:14:40 +0200 | [diff] [blame] | 1085 | * @brief Set missing include or import module callback. It is meant to be used when the models |
| 1086 | * are not locally available (such as when downloading modules from a NETCONF server), it should |
| 1087 | * not be required in other cases. |
Michal Vasko | 99b0aad | 2015-12-01 12:28:51 +0100 | [diff] [blame] | 1088 | * |
| 1089 | * @param[in] ctx Context that will use this callback. |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 1090 | * @param[in] clb Callback responsible for returning the missing model. |
Michal Vasko | 99b0aad | 2015-12-01 12:28:51 +0100 | [diff] [blame] | 1091 | * @param[in] user_data Arbitrary data that will always be passed to the callback \p clb. |
| 1092 | */ |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 1093 | void ly_ctx_set_module_imp_clb(struct ly_ctx *ctx, ly_module_imp_clb clb, void *user_data); |
Michal Vasko | 99b0aad | 2015-12-01 12:28:51 +0100 | [diff] [blame] | 1094 | |
| 1095 | /** |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 1096 | * @brief Get the custom callback for missing import/include module retrieval. |
| 1097 | * |
| 1098 | * @param[in] ctx Context to read from. |
| 1099 | * @param[in] user_data Optional pointer for getting the user-supplied callback data. |
| 1100 | * @return Callback or NULL if not set. |
| 1101 | */ |
| 1102 | ly_module_imp_clb ly_ctx_get_module_imp_clb(const struct ly_ctx *ctx, void **user_data); |
| 1103 | |
| 1104 | /** |
| 1105 | * @brief Callback for retrieving missing modules in the context, for which some data was found. |
| 1106 | * |
| 1107 | * Either \p name or \p ns is ALWAYS set, but both can also be set. |
| 1108 | * |
| 1109 | * @param[in,out] ctx Context with the missing module. |
| 1110 | * @param[in] name Missing module name. |
| 1111 | * @param[in] ns Missing module namespace. |
| 1112 | * @param[in] options Bitmask of LY_MODCLB_* values or 0. |
| 1113 | * @param[in] user_data User-supplied callback data. |
| 1114 | * @return Newly added or modified module, NULL on failure. |
| 1115 | */ |
| 1116 | typedef const struct lys_module *(*ly_module_data_clb)(struct ly_ctx *ctx, const char *name, const char *ns, |
| 1117 | int options, void *user_data); |
| 1118 | |
| 1119 | /* Module is in the context, but is not implemented, so to continue with the data operation, it must be implemented. */ |
| 1120 | #define LY_MODCLB_NOT_IMPLEMENTED 0x01 |
| 1121 | |
| 1122 | /** |
| 1123 | * @brief Set the missing data module callback. It will be called when some data is parsed or searched for and their module |
| 1124 | * is not found in the context or is not implemented. |
| 1125 | * |
| 1126 | * @param[in] ctx Context that will use this callback. |
| 1127 | * @param[in] clb Callback responsible for returning the missing model. |
| 1128 | * @param[in] user_data Arbitrary data that will always be passed to the callback \p clb. |
| 1129 | */ |
| 1130 | void ly_ctx_set_module_data_clb(struct ly_ctx *ctx, ly_module_data_clb clb, void *user_data); |
| 1131 | |
| 1132 | /** |
| 1133 | * @brief Get the missing data module calback. |
Michal Vasko | 99b0aad | 2015-12-01 12:28:51 +0100 | [diff] [blame] | 1134 | * |
| 1135 | * @param[in] ctx Context to read from. |
| 1136 | * @param[in] user_data Optional pointer for getting the user-supplied callbck data. |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 1137 | * @return Callback or NULL if not set. |
Michal Vasko | 99b0aad | 2015-12-01 12:28:51 +0100 | [diff] [blame] | 1138 | */ |
Michal Vasko | f53187d | 2017-01-13 13:23:14 +0100 | [diff] [blame] | 1139 | ly_module_data_clb ly_ctx_get_module_data_clb(const struct ly_ctx *ctx, void **user_data); |
Michal Vasko | 8246596 | 2015-11-10 11:03:11 +0100 | [diff] [blame] | 1140 | |
| 1141 | /** |
Radek Krejci | fd4e6e3 | 2015-08-10 15:00:51 +0200 | [diff] [blame] | 1142 | * @brief Get pointer to the schema tree of the module of the specified namespace |
| 1143 | * |
| 1144 | * @param[in] ctx Context to work in. |
| 1145 | * @param[in] ns Namespace of the YANG module to get. |
| 1146 | * @param[in] revision Optional revision date of the YANG module to get. If not specified, |
| 1147 | * the schema in the newest revision is returned if any. |
| 1148 | * @return Pointer to the data model structure, NULL if no schema following the namespace and |
| 1149 | * revision requirements is present in the context. |
| 1150 | */ |
Michal Vasko | 1e62a09 | 2015-12-01 12:27:20 +0100 | [diff] [blame] | 1151 | const struct lys_module *ly_ctx_get_module_by_ns(const struct ly_ctx *ctx, const char *ns, const char *revision); |
Radek Krejci | fd4e6e3 | 2015-08-10 15:00:51 +0200 | [diff] [blame] | 1152 | |
| 1153 | /** |
Radek Krejci | 62f0da7 | 2016-03-07 11:35:43 +0100 | [diff] [blame] | 1154 | * @brief Get submodule of a main module. |
| 1155 | * |
| 1156 | * If you already have the pointer to the submodule's main module, use ly_ctx_get_submodule2() instead. |
Michal Vasko | 7bf0688 | 2015-07-03 15:33:56 +0200 | [diff] [blame] | 1157 | * |
Radek Krejci | a7533f2 | 2016-03-07 07:37:45 +0100 | [diff] [blame] | 1158 | * @param[in] ctx Context to work in. |
Michal Vasko | f6d94c6 | 2016-04-05 11:21:54 +0200 | [diff] [blame] | 1159 | * @param[in] module Name of the main (belongs-to) module. If NULL, all module submodules are searched. |
| 1160 | * @param[in] revision Optional revision date of \p module. If NULL, all revisions of \p module |
| 1161 | * are searched. If set, \p module must also be set. |
Radek Krejci | a7533f2 | 2016-03-07 07:37:45 +0100 | [diff] [blame] | 1162 | * @param[in] submodule Name of the submodule to get. |
Michal Vasko | f6d94c6 | 2016-04-05 11:21:54 +0200 | [diff] [blame] | 1163 | * @param[in] sub_revision Optional revision date of \p submodule. If NULL, the newest revision of \p submodule |
| 1164 | * is returned. |
Michal Vasko | 7bf0688 | 2015-07-03 15:33:56 +0200 | [diff] [blame] | 1165 | * @return Pointer to the data model structure. |
| 1166 | */ |
Radek Krejci | a7533f2 | 2016-03-07 07:37:45 +0100 | [diff] [blame] | 1167 | const struct lys_submodule *ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *module, const char *revision, |
Michal Vasko | f6d94c6 | 2016-04-05 11:21:54 +0200 | [diff] [blame] | 1168 | const char *submodule, const char *sub_revision); |
Michal Vasko | 7bf0688 | 2015-07-03 15:33:56 +0200 | [diff] [blame] | 1169 | |
| 1170 | /** |
Radek Krejci | 62f0da7 | 2016-03-07 11:35:43 +0100 | [diff] [blame] | 1171 | * @brief Get submodule of a main module. |
| 1172 | * |
| 1173 | * If you have only the name (and optionally revision) of the submodule's main module, use ly_ctx_get_submodule() |
| 1174 | * instead. |
| 1175 | * |
| 1176 | * @param[in] main_module Main module (belongs to) of the searched submodule. |
| 1177 | * @param[in] submodule Name of the submodule to get. |
| 1178 | * @return Pointer to the data model structure. |
| 1179 | */ |
| 1180 | const struct lys_submodule *ly_ctx_get_submodule2(const struct lys_module *main_module, const char *submodule); |
| 1181 | |
| 1182 | /** |
Michal Vasko | 3547c53 | 2016-03-14 09:40:50 +0100 | [diff] [blame] | 1183 | * @brief Get schema node according to the given schema node identifier in JSON format. |
Michal Vasko | 3edeaf7 | 2016-02-11 13:17:43 +0100 | [diff] [blame] | 1184 | * |
Michal Vasko | 3547c53 | 2016-03-14 09:40:50 +0100 | [diff] [blame] | 1185 | * If the \p nodeid is absolute, the first node identifier must be prefixed with |
| 1186 | * the module name. Then every other identifier either has an explicit module name or |
| 1187 | * the module name of the previous node is assumed. Examples: |
Michal Vasko | 3edeaf7 | 2016-02-11 13:17:43 +0100 | [diff] [blame] | 1188 | * |
| 1189 | * /ietf-netconf-monitoring:get-schema/input/identifier |
| 1190 | * /ietf-interfaces:interfaces/interface/ietf-ip:ipv4/address/ip |
| 1191 | * |
Michal Vasko | 3547c53 | 2016-03-14 09:40:50 +0100 | [diff] [blame] | 1192 | * If the \p nodeid is relative, \p start is mandatory and is the starting point |
| 1193 | * for the resolution. The first node identifier does not need a module name. |
| 1194 | * |
Michal Vasko | 7b54f7e | 2016-05-03 15:07:31 +0200 | [diff] [blame] | 1195 | * Predicates on lists are accepted (ignored) in the form of "<key>(=<value>)" |
| 1196 | * and on leaves/leaf-lists ".(=<value>)". |
| 1197 | * |
Michal Vasko | 3edeaf7 | 2016-02-11 13:17:43 +0100 | [diff] [blame] | 1198 | * @param[in] ctx Context to work in. |
Michal Vasko | 3547c53 | 2016-03-14 09:40:50 +0100 | [diff] [blame] | 1199 | * @param[in] start Starting node for a relative schema node identifier, in which |
| 1200 | * case it is mandatory. |
| 1201 | * @param[in] nodeid JSON schema node identifier. |
Michal Vasko | 3edeaf7 | 2016-02-11 13:17:43 +0100 | [diff] [blame] | 1202 | * @return Resolved schema node or NULL. |
| 1203 | */ |
Michal Vasko | 3547c53 | 2016-03-14 09:40:50 +0100 | [diff] [blame] | 1204 | const struct lys_node *ly_ctx_get_node(struct ly_ctx *ctx, const struct lys_node *start, const char *nodeid); |
Michal Vasko | 3edeaf7 | 2016-02-11 13:17:43 +0100 | [diff] [blame] | 1205 | |
| 1206 | /** |
Radek Krejci | 0ec51da | 2016-12-14 16:42:03 +0100 | [diff] [blame] | 1207 | * @brief Remove the specified module from its context. |
Radek Krejci | 8c107fe | 2016-10-17 16:00:18 +0200 | [diff] [blame] | 1208 | * |
Radek Krejci | 0ec51da | 2016-12-14 16:42:03 +0100 | [diff] [blame] | 1209 | * Beside the selected module, also all other modules depending on all the modules being removed |
| 1210 | * will be removed as well. |
Radek Krejci | 8c107fe | 2016-10-17 16:00:18 +0200 | [diff] [blame] | 1211 | * |
| 1212 | * libyang internal modules (those present when the context is created) cannot be removed. |
| 1213 | * |
Radek Krejci | 0ec51da | 2016-12-14 16:42:03 +0100 | [diff] [blame] | 1214 | * @param[in] module Module to be removed. |
Radek Krejci | 8c107fe | 2016-10-17 16:00:18 +0200 | [diff] [blame] | 1215 | * @param[in] private_destructor Optional destructor function for private objects assigned |
| 1216 | * to the nodes via lys_set_private(). If NULL, the private objects are not freed by libyang. |
Radek Krejci | 0ec51da | 2016-12-14 16:42:03 +0100 | [diff] [blame] | 1217 | * @return EXIT_SUCCESS or EXIT_FAILURE (in case of invalid parameter). |
Radek Krejci | 8c107fe | 2016-10-17 16:00:18 +0200 | [diff] [blame] | 1218 | */ |
Radek Krejci | 0ec51da | 2016-12-14 16:42:03 +0100 | [diff] [blame] | 1219 | int ly_ctx_remove_module(const struct lys_module *module, |
Radek Krejci | 8c107fe | 2016-10-17 16:00:18 +0200 | [diff] [blame] | 1220 | void (*private_destructor)(const struct lys_node *node, void *priv)); |
| 1221 | |
| 1222 | /** |
| 1223 | * @brief Remove all the modules from the context except the internal modules. Also the addition data in |
| 1224 | * dictionary are kept. |
| 1225 | * |
| 1226 | * @param[in] ctx Context to work in. |
| 1227 | * @param[in] private_destructor Optional destructor function for private objects assigned |
| 1228 | * to the nodes via lys_set_private(). If NULL, the private objects are not freed by libyang. |
| 1229 | */ |
| 1230 | void ly_ctx_clean(struct ly_ctx *ctx, void (*private_destructor)(const struct lys_node *node, void *priv)); |
| 1231 | |
| 1232 | /** |
Radek Krejci | 3045cf3 | 2015-05-28 10:58:52 +0200 | [diff] [blame] | 1233 | * @brief Free all internal structures of the specified context. |
| 1234 | * |
| 1235 | * The function should be used before terminating the application to destroy |
| 1236 | * and free all structures internally used by libyang. If the caller uses |
| 1237 | * multiple contexts, the function should be called for each used context. |
| 1238 | * |
| 1239 | * All instance data are supposed to be freed before destroying the context. |
| 1240 | * Data models are destroyed automatically as part of ly_ctx_destroy() call. |
| 1241 | * |
| 1242 | * @param[in] ctx libyang context to destroy |
Radek Krejci | fa0b5e0 | 2016-02-04 13:57:03 +0100 | [diff] [blame] | 1243 | * @param[in] private_destructor Optional destructor function for private objects assigned |
| 1244 | * to the nodes via lys_set_private(). If NULL, the private objects are not freed by libyang. |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 1245 | */ |
Radek Krejci | fa0b5e0 | 2016-02-04 13:57:03 +0100 | [diff] [blame] | 1246 | void ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lys_node *node, void *priv)); |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 1247 | |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 1248 | /**@} context */ |
| 1249 | |
| 1250 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1251 | * @defgroup nodeset Tree nodes set |
Radek Krejci | dc15443 | 2016-01-21 11:10:59 +0100 | [diff] [blame] | 1252 | * @ingroup datatree |
| 1253 | * @ingroup schematree |
| 1254 | * @{ |
| 1255 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1256 | * Structure and functions to hold and manipulate with sets of nodes from schema or data trees. |
| 1257 | */ |
| 1258 | |
| 1259 | /** |
Radek Krejci | 8f08df1 | 2016-03-21 11:11:30 +0100 | [diff] [blame] | 1260 | * @brief set array of ::ly_set |
| 1261 | * It is kept in union to keep ::ly_set generic for data as well as schema trees |
| 1262 | */ |
| 1263 | union ly_set_set { |
| 1264 | struct lys_node **s; /**< array of pointers to a ::lys_node objects */ |
| 1265 | struct lyd_node **d; /**< array of pointers to a ::lyd_node objects */ |
| 1266 | void **g; /**< dummy array for generic work */ |
| 1267 | }; |
| 1268 | |
| 1269 | /** |
Radek Krejci | dc15443 | 2016-01-21 11:10:59 +0100 | [diff] [blame] | 1270 | * @brief Structure to hold a set of (not necessary somehow connected) ::lyd_node or ::lys_node objects. |
| 1271 | * Caller is supposed to not mix the type of objects added to the set and according to its knowledge about |
| 1272 | * the set content, it is supposed to access the set via the sset, dset or set members of the structure. |
| 1273 | * |
Radek Krejci | 09891a2 | 2016-06-10 10:59:22 +0200 | [diff] [blame] | 1274 | * Until ly_set_rm() or ly_set_rm_index() is used, the set keeps the order of the inserted items as they |
| 1275 | * were added into the set, so the first added item is on array index 0. |
| 1276 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1277 | * To free the structure, use ly_set_free() function, to manipulate with the structure, use other |
| 1278 | * ly_set_* functions. |
Radek Krejci | dc15443 | 2016-01-21 11:10:59 +0100 | [diff] [blame] | 1279 | */ |
| 1280 | struct ly_set { |
| 1281 | unsigned int size; /**< allocated size of the set array */ |
| 1282 | unsigned int number; /**< number of elements in (used size of) the set array */ |
Radek Krejci | 8f08df1 | 2016-03-21 11:11:30 +0100 | [diff] [blame] | 1283 | union ly_set_set set; /**< set array - union to keep ::ly_set generic for data as well as schema trees */ |
Radek Krejci | dc15443 | 2016-01-21 11:10:59 +0100 | [diff] [blame] | 1284 | }; |
| 1285 | |
| 1286 | /** |
Radek Krejci | 09891a2 | 2016-06-10 10:59:22 +0200 | [diff] [blame] | 1287 | * @brief Option for ly_set_add() to allow duplicities in the ly_set structure so the |
| 1288 | * set is not used as a set, but as a list of (container for) items. |
| 1289 | */ |
| 1290 | #define LY_SET_OPT_USEASLIST 0x01 |
| 1291 | |
| 1292 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1293 | * @brief Create and initiate new ::ly_set structure. |
Radek Krejci | dc15443 | 2016-01-21 11:10:59 +0100 | [diff] [blame] | 1294 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1295 | * @return Created ::ly_set structure or NULL in case of error. |
Radek Krejci | dc15443 | 2016-01-21 11:10:59 +0100 | [diff] [blame] | 1296 | */ |
| 1297 | struct ly_set *ly_set_new(void); |
| 1298 | |
| 1299 | /** |
Radek Krejci | e8c1b57 | 2016-07-26 15:09:52 +0200 | [diff] [blame] | 1300 | * @brief Duplicate the existing set. |
| 1301 | * |
| 1302 | * @param[in] set Original set to duplicate |
| 1303 | * @return Duplication of the original set. |
| 1304 | */ |
| 1305 | struct ly_set *ly_set_dup(const struct ly_set *set); |
| 1306 | |
| 1307 | /** |
Radek Krejci | dc15443 | 2016-01-21 11:10:59 +0100 | [diff] [blame] | 1308 | * @brief Add a ::lyd_node or ::lys_node object into the set |
| 1309 | * |
Radek Krejci | 29cb50d | 2016-05-09 16:31:13 +0200 | [diff] [blame] | 1310 | * Since it is a set, the function checks for duplicity and if the |
| 1311 | * node is already in the set, the index of the previously added |
| 1312 | * node is returned. |
| 1313 | * |
Radek Krejci | dc15443 | 2016-01-21 11:10:59 +0100 | [diff] [blame] | 1314 | * @param[in] set Set where the \p node will be added. |
| 1315 | * @param[in] node The ::lyd_node or ::lys_node object to be added into the \p set; |
Radek Krejci | 09891a2 | 2016-06-10 10:59:22 +0200 | [diff] [blame] | 1316 | * @param[in] options Options to change behavior of the function. Accepted options are: |
| 1317 | * - #LY_SET_OPT_USEASLIST - do not check for duplicities |
Radek Krejci | 29cb50d | 2016-05-09 16:31:13 +0200 | [diff] [blame] | 1318 | * @return -1 on failure, index of the \p node in the set on success |
Radek Krejci | dc15443 | 2016-01-21 11:10:59 +0100 | [diff] [blame] | 1319 | */ |
Radek Krejci | 09891a2 | 2016-06-10 10:59:22 +0200 | [diff] [blame] | 1320 | int ly_set_add(struct ly_set *set, void *node, int options); |
Radek Krejci | dc15443 | 2016-01-21 11:10:59 +0100 | [diff] [blame] | 1321 | |
| 1322 | /** |
Radek Krejci | 99e6d9a | 2016-10-20 13:01:43 +0200 | [diff] [blame] | 1323 | * @brief Get know if the set contains the specified object. |
| 1324 | * @param[in] set Set to explore. |
| 1325 | * @param[in] node Object to be found in the set. |
| 1326 | * @return Index of the object in the set or -1 if the object is not present in the set. |
Radek Krejci | 3e11229 | 2016-10-20 13:10:30 +0200 | [diff] [blame] | 1327 | */ |
Radek Krejci | 99e6d9a | 2016-10-20 13:01:43 +0200 | [diff] [blame] | 1328 | int ly_set_contains(const struct ly_set *set, void *node); |
| 1329 | |
| 1330 | /** |
Radek Krejci | 29ed408 | 2016-05-09 14:25:56 +0200 | [diff] [blame] | 1331 | * @brief Remove all objects from the set, but keep the set container for further use. |
| 1332 | * |
| 1333 | * @param[in] set Set to clean. |
| 1334 | * @return 0 on success |
| 1335 | */ |
| 1336 | int ly_set_clean(struct ly_set *set); |
| 1337 | |
| 1338 | /** |
Radek Krejci | dc15443 | 2016-01-21 11:10:59 +0100 | [diff] [blame] | 1339 | * @brief Remove a ::lyd_node or ::lys_node object from the set. |
| 1340 | * |
| 1341 | * Note that after removing a node from a set, indexes of other nodes in the set can change |
| 1342 | * (the last object is placed instead of the removed object). |
| 1343 | * |
| 1344 | * @param[in] set Set from which the \p node will be removed. |
| 1345 | * @param[in] node The ::lyd_node or ::lys_node object to be removed from the \p set; |
| 1346 | * @return 0 on success |
| 1347 | */ |
| 1348 | int ly_set_rm(struct ly_set *set, void *node); |
| 1349 | |
| 1350 | /** |
| 1351 | * @brief Remove a ::lyd_node or ::lys_node object from the set index. |
| 1352 | * |
| 1353 | * Note that after removing a node from a set, indexes of other nodes in the set can change |
| 1354 | * (the last object is placed instead of the removed object). |
| 1355 | * |
| 1356 | * @param[in] set Set from which a node will be removed. |
| 1357 | * @param[in] index Index of the ::lyd_node or ::lys_node object in the \p set to be removed from the \p set; |
| 1358 | * @return 0 on success |
| 1359 | */ |
| 1360 | int ly_set_rm_index(struct ly_set *set, unsigned int index); |
| 1361 | |
| 1362 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1363 | * @brief Free the ::ly_set data. Frees only the set structure content, not the referred data. |
Radek Krejci | dc15443 | 2016-01-21 11:10:59 +0100 | [diff] [blame] | 1364 | * |
| 1365 | * @param[in] set The set to be freed. |
| 1366 | */ |
| 1367 | void ly_set_free(struct ly_set *set); |
| 1368 | |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1369 | /**@} nodeset */ |
Radek Krejci | 6140e4e | 2015-10-09 15:50:55 +0200 | [diff] [blame] | 1370 | |
| 1371 | /** |
Radek Krejci | 5044be3 | 2016-01-18 17:05:51 +0100 | [diff] [blame] | 1372 | * @defgroup printerflags Printer flags |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1373 | * @ingroup datatree |
Radek Krejci | 5044be3 | 2016-01-18 17:05:51 +0100 | [diff] [blame] | 1374 | * |
| 1375 | * Validity flags for data nodes. |
| 1376 | * |
| 1377 | * @{ |
| 1378 | */ |
Michal Vasko | 6216f27 | 2016-10-18 11:49:47 +0200 | [diff] [blame] | 1379 | #define LYP_WITHSIBLINGS 0x01 /**< Flag for printing also the (following) sibling nodes of the data node. */ |
| 1380 | #define LYP_FORMAT 0x02 /**< Flag for formatted output. */ |
| 1381 | #define LYP_KEEPEMPTYCONT 0x04 /**< Preserve empty non-presence containers */ |
| 1382 | #define LYP_WD_MASK 0xF0 /**< Mask for with-defaults modes */ |
| 1383 | #define LYP_WD_EXPLICIT 0x00 /**< Explicit mode - print only data explicitly being present in the data tree. |
| 1384 | Note that this is the default value when no WD option is specified. */ |
| 1385 | #define LYP_WD_TRIM 0x10 /**< Do not print the nodes with the value equal to their default value */ |
| 1386 | #define LYP_WD_ALL 0x20 /**< Include implicit default nodes */ |
| 1387 | #define LYP_WD_ALL_TAG 0x40 /**< Same as #LYP_WD_ALL but also adds attribute 'default' with value 'true' to |
| 1388 | all nodes that has its default value. The 'default' attribute has namespace: |
| 1389 | urn:ietf:params:xml:ns:netconf:default:1.0 and thus the attributes are |
| 1390 | printed only when the ietf-netconf-with-defaults module is present in libyang |
Michal Vasko | e77dc99 | 2017-01-18 12:09:42 +0100 | [diff] [blame] | 1391 | context (but in that case this namespace is always printed). */ |
Michal Vasko | 6216f27 | 2016-10-18 11:49:47 +0200 | [diff] [blame] | 1392 | #define LYP_WD_IMPL_TAG 0x80 /**< Same as LYP_WD_ALL_TAG but the attributes are added only to the nodes that |
| 1393 | are not explicitly present in the original data tree despite their |
| 1394 | value is equal to their default value. There is the same limitation regarding |
| 1395 | the presence of ietf-netconf-with-defaults module in libyang context. */ |
Michal Vasko | afa7a64 | 2016-10-18 15:11:38 +0200 | [diff] [blame] | 1396 | #define LYP_NETCONF 0x100 /**< Print the data tree for use in NETCONF meaning: |
Michal Vasko | 6216f27 | 2016-10-18 11:49:47 +0200 | [diff] [blame] | 1397 | - for RPC output - skip the top-level RPC node, |
| 1398 | - for action output - skip all the parents of and the action node itself, |
| 1399 | - for action input - enclose the data in an action element in the base YANG namespace, |
| 1400 | - for all other data - print the whole data tree normally. */ |
Radek Krejci | 5044be3 | 2016-01-18 17:05:51 +0100 | [diff] [blame] | 1401 | |
| 1402 | /** |
| 1403 | * @} |
| 1404 | */ |
| 1405 | |
| 1406 | /** |
Radek Krejci | 3045cf3 | 2015-05-28 10:58:52 +0200 | [diff] [blame] | 1407 | * @defgroup logger Logger |
| 1408 | * @{ |
| 1409 | * |
| 1410 | * Publicly visible functions and values of the libyang logger. For more |
| 1411 | * information, see \ref howtologger. |
| 1412 | */ |
| 1413 | |
| 1414 | /** |
| 1415 | * @typedef LY_LOG_LEVEL |
| 1416 | * @brief Verbosity levels of the libyang logger. |
| 1417 | */ |
| 1418 | typedef enum { |
Michal Vasko | 8f7e8d9 | 2016-07-01 11:33:58 +0200 | [diff] [blame] | 1419 | LY_LLSILENT = -1, /**< Print no messages. */ |
| 1420 | LY_LLERR = 0, /**< Print only error messages, default value. */ |
| 1421 | LY_LLWRN, /**< Print error and warning messages. */ |
| 1422 | LY_LLVRB, /**< Besides errors and warnings, print some other verbose messages. */ |
| 1423 | LY_LLDBG /**< Print all messages including some development debug messages. */ |
Radek Krejci | 3045cf3 | 2015-05-28 10:58:52 +0200 | [diff] [blame] | 1424 | } LY_LOG_LEVEL; |
| 1425 | |
| 1426 | /** |
| 1427 | * @brief Set logger verbosity level. |
| 1428 | * @param[in] level Verbosity level. |
| 1429 | */ |
| 1430 | void ly_verb(LY_LOG_LEVEL level); |
| 1431 | |
| 1432 | /** |
Michal Vasko | f1d62cf | 2015-12-07 13:17:11 +0100 | [diff] [blame] | 1433 | * @brief Set logger callback. |
Michal Vasko | 1366114 | 2016-04-11 10:53:53 +0200 | [diff] [blame] | 1434 | * |
| 1435 | * !IMPORTANT! If an error has a specific error-app-tag defined in the model, it will NOT be set |
| 1436 | * at the time of calling this callback. It will be set right after, so to retrieve it |
| 1437 | * it must be checked afterwards with ly_errapptag(). |
| 1438 | * |
Michal Vasko | f1d62cf | 2015-12-07 13:17:11 +0100 | [diff] [blame] | 1439 | * @param[in] clb Logging callback. |
Radek Krejci | adb5761 | 2016-02-16 13:34:34 +0100 | [diff] [blame] | 1440 | * @param[in] path flag to resolve and provide path as the third parameter of the callback function. In case of |
| 1441 | * validation and some other errors, it can be useful to get the path to the problematic element. Note, |
| 1442 | * that according to the tree type and the specific situation, the path can slightly differs (keys |
| 1443 | * presence) or it can be NULL, so consider it as an optional parameter. If the flag is 0, libyang will |
| 1444 | * not bother with resolving the path. |
Michal Vasko | f1d62cf | 2015-12-07 13:17:11 +0100 | [diff] [blame] | 1445 | */ |
Radek Krejci | adb5761 | 2016-02-16 13:34:34 +0100 | [diff] [blame] | 1446 | void ly_set_log_clb(void (*clb)(LY_LOG_LEVEL level, const char *msg, const char *path), int path); |
Michal Vasko | f1d62cf | 2015-12-07 13:17:11 +0100 | [diff] [blame] | 1447 | |
| 1448 | /** |
| 1449 | * @brief Get logger callback. |
| 1450 | * @return Logger callback (can be NULL). |
| 1451 | */ |
Radek Krejci | adb5761 | 2016-02-16 13:34:34 +0100 | [diff] [blame] | 1452 | void (*ly_get_log_clb(void))(LY_LOG_LEVEL, const char *, const char *); |
Michal Vasko | f1d62cf | 2015-12-07 13:17:11 +0100 | [diff] [blame] | 1453 | |
| 1454 | /** |
Radek Krejci | 3045cf3 | 2015-05-28 10:58:52 +0200 | [diff] [blame] | 1455 | * @typedef LY_ERR |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 1456 | * @brief libyang's error codes available via ly_errno extern variable. |
Radek Krejci | 9b4ca39 | 2015-04-10 08:31:27 +0200 | [diff] [blame] | 1457 | * @ingroup logger |
| 1458 | */ |
| 1459 | typedef enum { |
Radek Krejci | ae6817a | 2015-08-10 14:02:06 +0200 | [diff] [blame] | 1460 | LY_SUCCESS, /**< no error, not set by functions, included just to complete #LY_ERR enumeration */ |
Radek Krejci | 6e4ffbb | 2015-06-16 10:34:41 +0200 | [diff] [blame] | 1461 | LY_EMEM, /**< Memory allocation failure */ |
| 1462 | LY_ESYS, /**< System call failure */ |
| 1463 | LY_EINVAL, /**< Invalid value */ |
| 1464 | LY_EINT, /**< Internal error */ |
Radek Krejci | 2c121b3 | 2017-02-24 10:03:16 +0100 | [diff] [blame^] | 1465 | LY_EVALID, /**< Validation failure */ |
| 1466 | LY_EEXT /**< Extension error reported by an extension plugin */ |
Radek Krejci | 3045cf3 | 2015-05-28 10:58:52 +0200 | [diff] [blame] | 1467 | } LY_ERR; |
Radek Krejci | 7d9f46a | 2016-01-29 13:53:18 +0100 | [diff] [blame] | 1468 | |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 1469 | /** |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1470 | * @typedef LY_VECODE |
| 1471 | * @brief libyang's codes of validation error. Whenever ly_errno is set to LY_EVALID, the ly_vecode is also set |
| 1472 | * to the appropriate LY_VECODE value. |
Radek Krejci | a37b39c | 2016-03-09 16:38:18 +0100 | [diff] [blame] | 1473 | * @ingroup logger |
| 1474 | */ |
| 1475 | typedef enum { |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1476 | LYVE_SUCCESS = 0, /**< no error */ |
Radek Krejci | a37b39c | 2016-03-09 16:38:18 +0100 | [diff] [blame] | 1477 | |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1478 | LYVE_XML_MISS, /**< missing XML object */ |
| 1479 | LYVE_XML_INVAL, /**< invalid XML object */ |
| 1480 | LYVE_XML_INCHAR, /**< invalid XML character */ |
Radek Krejci | a37b39c | 2016-03-09 16:38:18 +0100 | [diff] [blame] | 1481 | |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1482 | LYVE_EOF, /**< unexpected end of input data */ |
| 1483 | LYVE_INSTMT, /**< invalid statement (schema) */ |
| 1484 | /* */ |
Michal Vasko | ca7cbc4 | 2016-07-01 11:36:53 +0200 | [diff] [blame] | 1485 | LYVE_INPAR, /**< invalid (in)direct parent (schema) */ |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1486 | LYVE_INID, /**< invalid identifier (schema) */ |
| 1487 | LYVE_INDATE, /**< invalid date format */ |
| 1488 | LYVE_INARG, /**< invalid value of a statement argument (schema) */ |
| 1489 | LYVE_MISSSTMT, /**< missing required statement (schema) */ |
| 1490 | /* */ |
| 1491 | LYVE_MISSARG, /**< missing required statement argument (schema) */ |
| 1492 | LYVE_TOOMANY, /**< too many instances of some object */ |
| 1493 | LYVE_DUPID, /**< duplicated identifier (schema) */ |
| 1494 | LYVE_DUPLEAFLIST, /**< multiple instances of leaf-list */ |
| 1495 | LYVE_DUPLIST, /**< multiple instances of list */ |
Michal Vasko | a540df2 | 2016-04-11 16:14:35 +0200 | [diff] [blame] | 1496 | LYVE_NOUNIQ, /**< unique leaves match on 2 list instances (data) */ |
Radek Krejci | e663e01 | 2016-08-01 17:12:34 +0200 | [diff] [blame] | 1497 | LYVE_ENUM_INVAL, /**< invalid enum value (schema) */ |
| 1498 | LYVE_ENUM_INNAME, /**< invalid enum name (schema) */ |
| 1499 | /* */ |
| 1500 | /* */ |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1501 | LYVE_ENUM_WS, /**< enum name with leading/trailing whitespaces (schema) */ |
Radek Krejci | e663e01 | 2016-08-01 17:12:34 +0200 | [diff] [blame] | 1502 | LYVE_BITS_INVAL, /**< invalid bits value (schema) */ |
| 1503 | LYVE_BITS_INNAME, /**< invalid bits name (schema) */ |
| 1504 | /* */ |
| 1505 | /* */ |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1506 | LYVE_INMOD, /**< invalid module name */ |
| 1507 | /* */ |
| 1508 | LYVE_KEY_NLEAF, /**< list key is not a leaf (schema) */ |
| 1509 | LYVE_KEY_TYPE, /**< invalid list key type (schema) */ |
| 1510 | LYVE_KEY_CONFIG, /**< key config value differs from the list config value */ |
| 1511 | LYVE_KEY_MISS, /**< list key not found (schema) */ |
| 1512 | LYVE_KEY_DUP, /**< duplicated key identifier (schema) */ |
| 1513 | LYVE_INREGEX, /**< invalid regular expression (schema) */ |
| 1514 | LYVE_INRESOLV, /**< no resolvents found (schema) */ |
| 1515 | LYVE_INSTATUS, /**< invalid derivation because of status (schema) */ |
Radek Krejci | d8fb03c | 2016-06-13 15:52:22 +0200 | [diff] [blame] | 1516 | LYVE_CIRC_LEAFREFS,/**< circular chain of leafrefs detected (schema) */ |
Radek Krejci | e8c1b57 | 2016-07-26 15:09:52 +0200 | [diff] [blame] | 1517 | LYVE_CIRC_FEATURES,/**< circular chain of features detected (schema) */ |
Radek Krejci | 151b8cc | 2016-06-22 10:14:21 +0200 | [diff] [blame] | 1518 | LYVE_CIRC_IMPORTS, /**< circular chain of imports detected (schema) */ |
| 1519 | LYVE_CIRC_INCLUDES,/**< circular chain of includes detected (schema) */ |
Michal Vasko | 88de3e4 | 2016-06-29 11:05:32 +0200 | [diff] [blame] | 1520 | LYVE_INVER, /**< non-matching YANG versions of module and its submodules (schema) */ |
Radek Krejci | 0fd6a99 | 2016-11-08 19:42:20 +0100 | [diff] [blame] | 1521 | LYVE_SUBMODULE, /**< submodule given instead of a module */ |
Radek Krejci | a37b39c | 2016-03-09 16:38:18 +0100 | [diff] [blame] | 1522 | |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1523 | LYVE_OBSDATA, /**< obsolete data instantiation (data) */ |
| 1524 | /* */ |
| 1525 | LYVE_NORESOLV, /**< no resolvents found for an expression (data) */ |
| 1526 | LYVE_INELEM, /**< invalid element (data) */ |
| 1527 | /* */ |
| 1528 | LYVE_MISSELEM, /**< missing required element (data) */ |
| 1529 | LYVE_INVAL, /**< invalid value of an element (data) */ |
Radek Krejci | 9bfcbde | 2016-04-07 16:30:15 +0200 | [diff] [blame] | 1530 | LYVE_INVALATTR, /**< invalid attribute value (data) */ |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1531 | LYVE_INATTR, /**< invalid attribute in an element (data) */ |
| 1532 | LYVE_MISSATTR, /**< missing attribute in an element (data) */ |
Michal Vasko | 6ac6828 | 2016-04-11 10:56:47 +0200 | [diff] [blame] | 1533 | LYVE_NOCONSTR, /**< value out of range/length/pattern (data) */ |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1534 | LYVE_INCHAR, /**< unexpected characters (data) */ |
| 1535 | LYVE_INPRED, /**< predicate resolution fail (data) */ |
| 1536 | LYVE_MCASEDATA, /**< data for more cases of a choice (data) */ |
Michal Vasko | 6ac6828 | 2016-04-11 10:56:47 +0200 | [diff] [blame] | 1537 | LYVE_NOMUST, /**< unsatisfied must condition (data) */ |
| 1538 | LYVE_NOWHEN, /**< unsatisfied when condition (data) */ |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1539 | LYVE_INORDER, /**< invalid order of elements (data) */ |
Radek Krejci | 03b71f7 | 2016-03-16 11:10:09 +0100 | [diff] [blame] | 1540 | LYVE_INWHEN, /**< irresolvable when condition (data) */ |
Michal Vasko | 6ac6828 | 2016-04-11 10:56:47 +0200 | [diff] [blame] | 1541 | LYVE_NOMIN, /**< min-elements constraint not honored (data) */ |
| 1542 | LYVE_NOMAX, /**< max-elements constraint not honored (data) */ |
| 1543 | LYVE_NOREQINS, /**< required instance does not exits (data) */ |
| 1544 | LYVE_NOLEAFREF, /**< leaf pointed to by leafref does not exist (data) */ |
| 1545 | LYVE_NOMANDCHOICE, /**< no mandatory choice case branch exists (data) */ |
Radek Krejci | a37b39c | 2016-03-09 16:38:18 +0100 | [diff] [blame] | 1546 | |
Michal Vasko | 5b3492c | 2016-07-20 09:37:40 +0200 | [diff] [blame] | 1547 | LYVE_XPATH_INSNODE,/**< schema node not found */ |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1548 | LYVE_XPATH_INTOK, /**< unexpected XPath token */ |
| 1549 | LYVE_XPATH_EOF, /**< unexpected end of an XPath expression */ |
| 1550 | LYVE_XPATH_INOP, /**< invalid XPath operation operands */ |
| 1551 | /* */ |
| 1552 | LYVE_XPATH_INCTX, /**< invalid XPath context type */ |
Michal Vasko | 541dff4 | 2016-10-26 11:29:25 +0200 | [diff] [blame] | 1553 | LYVE_XPATH_INMOD, /**< invalid module name */ |
Michal Vasko | 9390977 | 2016-10-26 10:32:10 +0200 | [diff] [blame] | 1554 | LYVE_XPATH_INFUNC, /**< invalid XPath function name */ |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1555 | LYVE_XPATH_INARGCOUNT, /**< invalid number of arguments for an XPath function */ |
Michal Vasko | 6fae136 | 2016-03-11 15:10:00 +0100 | [diff] [blame] | 1556 | LYVE_XPATH_INARGTYPE, /**< invalid type of arguments for an XPath function */ |
Michal Vasko | 11f8da7 | 2016-08-24 15:54:57 +0200 | [diff] [blame] | 1557 | LYVE_XPATH_DUMMY, /**< invaid use of the XPath dummy node */ |
Michal Vasko | 6fae136 | 2016-03-11 15:10:00 +0100 | [diff] [blame] | 1558 | |
| 1559 | LYVE_PATH_INCHAR, /**< invalid characters (path) */ |
Michal Vasko | e733d68 | 2016-03-14 09:08:27 +0100 | [diff] [blame] | 1560 | LYVE_PATH_INMOD, /**< invalid module name (path) */ |
| 1561 | LYVE_PATH_MISSMOD, /**< missing module name (path) */ |
Michal Vasko | 6fae136 | 2016-03-11 15:10:00 +0100 | [diff] [blame] | 1562 | LYVE_PATH_INNODE, /**< invalid node name (path) */ |
Michal Vasko | 6fae136 | 2016-03-11 15:10:00 +0100 | [diff] [blame] | 1563 | LYVE_PATH_INKEY, /**< invalid key name (path) */ |
| 1564 | LYVE_PATH_MISSKEY, /**< missing some list keys (path) */ |
| 1565 | LYVE_PATH_EXISTS, /**< target node already exists (path) */ |
| 1566 | LYVE_PATH_MISSPAR, /**< some parent of the target node is missing (path) */ |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1567 | } LY_VECODE; |
Radek Krejci | a37b39c | 2016-03-09 16:38:18 +0100 | [diff] [blame] | 1568 | |
| 1569 | /** |
Radek Krejci | 7d9f46a | 2016-01-29 13:53:18 +0100 | [diff] [blame] | 1570 | * @cond INTERNAL |
Radek Krejci | 386714d | 2016-02-15 10:24:30 +0100 | [diff] [blame] | 1571 | * Get address of (thread-specific) `ly_errno' variable. |
Radek Krejci | 26715a4 | 2015-07-29 14:10:45 +0200 | [diff] [blame] | 1572 | */ |
Radek Krejci | 7d9f46a | 2016-01-29 13:53:18 +0100 | [diff] [blame] | 1573 | LY_ERR *ly_errno_location(void); |
| 1574 | |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1575 | LY_VECODE *ly_vecode_location(void); |
Radek Krejci | a37b39c | 2016-03-09 16:38:18 +0100 | [diff] [blame] | 1576 | |
Radek Krejci | 7d9f46a | 2016-01-29 13:53:18 +0100 | [diff] [blame] | 1577 | /** |
| 1578 | * @endcond INTERNAL |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1579 | * @brief libyang specific (thread-safe) errno (see #LY_ERR for the list of possible values and their meaning). |
Radek Krejci | 7d9f46a | 2016-01-29 13:53:18 +0100 | [diff] [blame] | 1580 | */ |
| 1581 | #define ly_errno (*ly_errno_location()) |
Radek Krejci | 9b4ca39 | 2015-04-10 08:31:27 +0200 | [diff] [blame] | 1582 | |
Radek Krejci | 386714d | 2016-02-15 10:24:30 +0100 | [diff] [blame] | 1583 | /** |
Radek Krejci | a37b39c | 2016-03-09 16:38:18 +0100 | [diff] [blame] | 1584 | * @brief libyang's validation error code |
| 1585 | */ |
Michal Vasko | f5035ce | 2016-03-11 10:21:31 +0100 | [diff] [blame] | 1586 | #define ly_vecode (*ly_vecode_location()) |
Radek Krejci | a37b39c | 2016-03-09 16:38:18 +0100 | [diff] [blame] | 1587 | |
| 1588 | /** |
Michal Vasko | 1366114 | 2016-04-11 10:53:53 +0200 | [diff] [blame] | 1589 | * @brief Get the last (thread-specific) error message. If the coresponding module defined |
| 1590 | * a specific error message, it will be used instead the default one. |
Radek Krejci | 6e8fc0b | 2016-02-16 14:33:37 +0100 | [diff] [blame] | 1591 | * |
| 1592 | * Sometimes, the error message is extended with path of the element where is the problem. |
| 1593 | * The path is available via ly_errpath(). |
| 1594 | * |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 1595 | * @return Text of the last error message, empty string if there is no error. |
Radek Krejci | 386714d | 2016-02-15 10:24:30 +0100 | [diff] [blame] | 1596 | */ |
| 1597 | const char *ly_errmsg(void); |
| 1598 | |
Radek Krejci | 6e8fc0b | 2016-02-16 14:33:37 +0100 | [diff] [blame] | 1599 | /** |
| 1600 | * @brief Get the last (thread-specific) path of the element where was an error. |
| 1601 | * |
| 1602 | * The path always corresponds to the error message available via ly_errmsg(), so |
| 1603 | * whenever a subsequent error message is printed, the path is erased or rewritten. |
Radek Krejci | 3cc1096 | 2016-04-13 15:03:27 +0200 | [diff] [blame] | 1604 | * The path reflects the type of the processed tree - data path for data tree functions |
| 1605 | * and schema path in case of schema tree functions. In case of processing YIN schema |
| 1606 | * or XML data, the path can be just XML path. In such a case, the corresponding |
| 1607 | * ly_vecode (value 1-3) is set. |
Radek Krejci | 6e8fc0b | 2016-02-16 14:33:37 +0100 | [diff] [blame] | 1608 | * |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 1609 | * @return Path of the error element, empty string if error path does not apply to the last error. |
Radek Krejci | 6e8fc0b | 2016-02-16 14:33:37 +0100 | [diff] [blame] | 1610 | */ |
| 1611 | const char *ly_errpath(void); |
| 1612 | |
Michal Vasko | 1366114 | 2016-04-11 10:53:53 +0200 | [diff] [blame] | 1613 | /** |
| 1614 | * @brief Get the last (thread-specific) error-app-tag if there was a specific one defined |
| 1615 | * in the module for the last error. |
| 1616 | * |
| 1617 | * The app-tag always corresponds to the error message available via ly_errmsg(), so |
| 1618 | * whenever a subsequent error message is printed, the app-tag is erased or rewritten. |
| 1619 | * |
Radek Krejci | b50551c | 2016-04-19 09:15:38 +0200 | [diff] [blame] | 1620 | * @return Error-app-tag of the last error, empty string if the error-app-tag does not apply to the last error. |
Michal Vasko | 1366114 | 2016-04-11 10:53:53 +0200 | [diff] [blame] | 1621 | */ |
| 1622 | const char *ly_errapptag(void); |
| 1623 | |
Radek Krejci | 3045cf3 | 2015-05-28 10:58:52 +0200 | [diff] [blame] | 1624 | /**@} logger */ |
Radek Krejci | 9b4ca39 | 2015-04-10 08:31:27 +0200 | [diff] [blame] | 1625 | |
Radek Krejci | 39d8d0d | 2015-08-17 13:42:45 +0200 | [diff] [blame] | 1626 | #ifdef __cplusplus |
| 1627 | } |
| 1628 | #endif |
| 1629 | |
Radek Krejci | 9b4ca39 | 2015-04-10 08:31:27 +0200 | [diff] [blame] | 1630 | #endif /* LY_LIBYANG_H_ */ |