blob: 4f1d8dd86414e2dfa4a42cc0aa0aef544ebd1ba7 [file] [log] [blame]
Radek Krejci9b4ca392015-04-10 08:31:27 +02001/**
Radek Krejci3045cf32015-05-28 10:58:52 +02002 * @file libyang.h
Radek Krejci9b4ca392015-04-10 08:31:27 +02003 * @author Radek Krejci <rkrejci@cesnet.cz>
Radek Krejci3045cf32015-05-28 10:58:52 +02004 * @brief The main libyang public header.
Radek Krejci9b4ca392015-04-10 08:31:27 +02005 *
Radek Krejcidef50022016-02-01 16:38:32 +01006 * Copyright (c) 2015-2016 CESNET, z.s.p.o.
Radek Krejci9b4ca392015-04-10 08:31:27 +02007 *
Radek Krejci54f6fb32016-02-24 12:56:39 +01008 * 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 Vasko8de098c2016-02-26 10:00:25 +010011 *
Radek Krejci54f6fb32016-02-24 12:56:39 +010012 * https://opensource.org/licenses/BSD-3-Clause
Radek Krejci9b4ca392015-04-10 08:31:27 +020013 */
14
15#ifndef LY_LIBYANG_H_
16#define LY_LIBYANG_H_
17
Radek Krejcida04f4a2015-05-21 12:54:09 +020018#include <stdio.h>
19
Michal Vasko2d162e12015-09-24 14:33:29 +020020#include "tree_schema.h"
21#include "tree_data.h"
Radek Krejcic6704c82015-10-06 11:12:45 +020022#include "xml.h"
Radek Krejci41912fe2015-10-22 10:22:12 +020023#include "dict.h"
Radek Krejcida04f4a2015-05-21 12:54:09 +020024
Radek Krejci39d8d0d2015-08-17 13:42:45 +020025#ifdef __cplusplus
26extern "C" {
27#endif
28
Radek Krejci26715a42015-07-29 14:10:45 +020029/**
Radek Krejcidef50022016-02-01 16:38:32 +010030 * @mainpage About
31 *
32 * libyang is a library implementing processing of the YANG schemas and data modeled by the YANG language. The
33 * library is implemented in C for GNU/Linux and provides C API.
34 *
35 * @section about-features Main Features
36 *
Radek Krejcib4e72e52016-04-13 15:10:51 +020037 * - Parsing (and validating) schemas in YANG format.
Radek Krejcidef50022016-02-01 16:38:32 +010038 * - Parsing (and validating) schemas in YIN format.
39 * - Parsing, validating and printing instance data in XML format.
Radek Krejci3c73f492016-09-20 16:29:30 +020040 * - Parsing, validating and printing instance data in JSON format ([RFC 7951](https://tools.ietf.org/html/rfc7951)).
Radek Krejcidef50022016-02-01 16:38:32 +010041 * - Manipulation with the instance data.
Radek Krejci3c73f492016-09-20 16:29:30 +020042 * - Support for default values in the instance data ([RFC 6243](https://tools.ietf.org/html/rfc6243)).
Radek Krejcidef50022016-02-01 16:38:32 +010043 *
Radek Krejci3c73f492016-09-20 16:29:30 +020044 * The current implementation covers YANG 1.0 [RFC 6020](https://tools.ietf.org/html/rfc6020) as well as
45 * [YANG 1.1](https://tools.ietf.org/html/rfc7950).
Radek Krejci8b13fc02016-04-18 13:08:04 +020046 *
Radek Krejcidef50022016-02-01 16:38:32 +010047 * @subsection about-features-others Extra (side-effect) Features
48 *
49 * - XML parser.
50 * - Optimized string storage (dictionary).
51 *
52 * @section about-license License
53 *
54 * Copyright (c) 2015-2016 CESNET, z.s.p.o.
55 *
56 * (The BSD 3-Clause License)
57 *
58 * Redistribution and use in source and binary forms, with or without
59 * modification, are permitted provided that the following conditions
60 * are met:
61 * 1. Redistributions of source code must retain the above copyright
62 * notice, this list of conditions and the following disclaimer.
63 * 2. Redistributions in binary form must reproduce the above copyright
64 * notice, this list of conditions and the following disclaimer in
65 * the documentation and/or other materials provided with the
66 * distribution.
67 * 3. Neither the name of the Company nor the names of its contributors
68 * may be used to endorse or promote products derived from this
69 * software without specific prior written permission.
70 */
71
72/**
Radek Krejci26715a42015-07-29 14:10:45 +020073 * @page howto How To ...
74 *
75 * - @subpage howtocontext
Radek Krejcid9ba3e32015-07-30 15:08:18 +020076 * - @subpage howtoschemas
77 * - @subpage howtodata
Michal Vasko0f14ba62016-03-21 15:38:11 +010078 * - @subpage howtoxpath
Radek Krejcidef50022016-02-01 16:38:32 +010079 * - @subpage howtoxml
80 * - @subpage howtothreads
Radek Krejci26715a42015-07-29 14:10:45 +020081 * - @subpage howtologger
82 */
Radek Krejcida04f4a2015-05-21 12:54:09 +020083
Radek Krejci26715a42015-07-29 14:10:45 +020084/** @page howtocontext Context
85 *
Radek Krejcid9ba3e32015-07-30 15:08:18 +020086 * The context concept allows callers to work in environments with different sets of YANG schemas.
Radek Krejci26715a42015-07-29 14:10:45 +020087 *
88 * The first step in libyang is to create a new context using ly_ctx_new(). It returns a handler
89 * used in the following work.
90 *
91 * When creating a new context, search dir can be specified (NULL is accepted) to provide directory
92 * where libyang will automatically search for schemas being imported or included. The search path
Radek Krejci1fbe8582016-09-15 09:40:11 +020093 * can be later changed via ly_ctx_set_searchdir() function. If the search dir is specified, it is explored
94 * first. In case the module is not found, libyang tries to find the (sub)module also in current working working
95 * directory. This automatic searching can be completely avoided when the caller sets module searching callback
Radek Krejcidef50022016-02-01 16:38:32 +010096 * (#ly_module_clb) via ly_ctx_set_module_clb().
Radek Krejci26715a42015-07-29 14:10:45 +020097 *
Radek Krejcif6ab2cd2016-04-18 17:15:26 +020098 * Schemas are added into the context using [parser functions](@ref howtoschemasparsers) - \b lys_parse_*().
Radek Krejcidef50022016-02-01 16:38:32 +010099 * In case of schemas, also ly_ctx_load_module() can be used - in that case the #ly_module_clb or automatic
Radek Krejci1fbe8582016-09-15 09:40:11 +0200100 * search in search dir and in the current working directory is used.
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200101 *
102 * Similarly, data trees can be parsed by \b lyd_parse_*() functions. Note, that functions for schemas have \b lys_
Radek Krejcidef50022016-02-01 16:38:32 +0100103 * prefix while functions for instance data have \b lyd_ prefix.
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200104 *
Radek Krejciee674072016-09-15 10:37:40 +0200105 * Context can hold multiple revisions of the same schema, but only one of them can be implemented. The schema is not
106 * implemented in case it is automatically loaded as import for another module and it is not referenced in such
107 * a module (and no other) as target of leafref, augment or deviation. All modules with deviation definition are always
108 * marked as implemented. The imported (not implemented) module can be set implemented by lys_set_implemented(). But
109 * the implemented module cannot be changed back to just imported module. The imported modules are used only as a
110 * source of definitions for types (including identities) and uses statements. The data in such a modules are
111 * ignored - caller is not allowed to create the data defined in the model via data parsers, the default nodes are
112 * not added into any data tree and mandatory nodes are not checked in the data trees.
Radek Krejci26715a42015-07-29 14:10:45 +0200113 *
Radek Krejci31fb8be2016-06-23 15:26:26 +0200114 * Context holds all modules and their submodules internally. To get
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200115 * a specific module or submodule, use ly_ctx_get_module() and ly_ctx_get_submodule(). There are some additional
Radek Krejci31fb8be2016-06-23 15:26:26 +0200116 * alternatives to these functions (with different parameters). If you need to do something with all the modules or
Michal Vasko462be9a2016-04-05 11:24:08 +0200117 * submodules in the context, it is advised to iterate over them using ly_ctx_get_module_iter(), it is
118 * the most efficient way. Alternatively, the ly_ctx_info() function can be used to get complex information
119 * about the schemas in the context in the form of data tree defined by
Radek Krejcibd9e8d22016-02-03 14:11:48 +0100120 * <a href="https://tools.ietf.org/html/draft-ietf-netconf-yang-library-04">ietf-yang-library</a> schema.
Michal Vaskoac7f4222016-09-21 09:02:29 +0200121 * To get a specific node defined in a module in the context, ly_ctx_get_node() can be used.
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200122 *
123 * Modules held by a context cannot be removed one after one. The only way how to \em change modules in the
124 * context is to create a new context and remove the old one. To remove a context, there is ly_ctx_destroy()
125 * function.
126 *
Radek Krejcidef50022016-02-01 16:38:32 +0100127 * - @subpage howtocontextdict
128 *
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200129 * \note API for this group of functions is available in the [context module](@ref context).
130 *
Radek Krejcidef50022016-02-01 16:38:32 +0100131 * Functions List
132 * --------------
133 * - ly_ctx_new()
134 * - ly_ctx_set_searchdir()
135 * - ly_ctx_get_searchdir()
136 * - ly_ctx_set_module_clb()
137 * - ly_ctx_get_module_clb()
138 * - ly_ctx_load_module()
139 * - ly_ctx_info()
Michal Vaskod7957c02016-04-01 10:27:26 +0200140 * - ly_ctx_get_module_iter()
Radek Krejcidef50022016-02-01 16:38:32 +0100141 * - ly_ctx_get_module()
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200142 * - ly_ctx_get_module_older()
Radek Krejcidef50022016-02-01 16:38:32 +0100143 * - ly_ctx_get_module_by_ns()
Radek Krejcidef50022016-02-01 16:38:32 +0100144 * - ly_ctx_get_submodule()
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200145 * - ly_ctx_get_submodule2()
Michal Vasko3edeaf72016-02-11 13:17:43 +0100146 * - ly_ctx_get_node()
Radek Krejcidef50022016-02-01 16:38:32 +0100147 * - ly_ctx_destroy()
Radek Krejciee674072016-09-15 10:37:40 +0200148 * - lys_set_implemented()
Radek Krejcidef50022016-02-01 16:38:32 +0100149 */
150
151/**
152 * @page howtocontextdict Context Dictionary
153 *
154 * Context includes dictionary to store strings more effectively. The most of strings repeats quite often in schema
155 * as well as data trees. Therefore, instead of allocating those strings each time they appear, libyang stores them
156 * as records in the dictionary. The basic API to the context dictionary is public, so even a caller application can
157 * use the dictionary.
158 *
159 * To insert a string into the dictionary, caller can use lydict_insert() (adding a constant string) or
160 * lydict_insert_zc() (for dynamically allocated strings that won't be used by the caller after its insertion into
161 * the dictionary). Both functions return the pointer to the inserted string in the dictionary record.
162 *
163 * To remove (reference of the) string from the context dictionary, lydict_remove() is supposed to be used.
164 *
165 * \note Incorrect usage of the dictionary can break libyang functionality.
166 *
167 * \note API for this group of functions is described in the [XML Parser module](@ref dict).
168 *
169 * Functions List
170 * --------------
171 * - lydict_insert()
172 * - lydict_insert_zc()
173 * - lydict_remove()
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200174 */
175
176/**
177 * @page howtoschemas Schemas
178 *
Radek Krejcidef50022016-02-01 16:38:32 +0100179 *
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200180 * Schema is an internal libyang's representation of a YANG data model. Each schema is connected with
Radek Krejcidef50022016-02-01 16:38:32 +0100181 * its [context](@ref howtocontext) and loaded using [parser functions](@ref howtoschemasparsers). It means, that
182 * the schema cannot be created (nor changed) programmatically. In libyang, schemas are used only to
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200183 * access data model definitions.
184 *
Radek Krejcidef50022016-02-01 16:38:32 +0100185 * Schema tree nodes are able to hold private objects (via a pointer to a structure, function, variable, ...) used by
186 * a caller application. Such an object can be assigned to a specific node using lys_set_private() function.
187 * Note that the object is not freed by libyang when the context is being destroyed. So the caller is responsible
188 * for freeing the provided structure after the context is destroyed or the private pointer is set to NULL in
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200189 * appropriate schema nodes where the object was previously set. This can be automated via destructor function
190 * to free these private objects. The destructor is passed to the ly_ctx_destroy() function. On the other hand,
191 * freeing the object while the schema tree is still in use can lead to a segmentation fault.
Radek Krejcidef50022016-02-01 16:38:32 +0100192 *
193 * - @subpage howtoschemasparsers
194 * - @subpage howtoschemasfeatures
195 * - @subpage howtoschemasprinters
196 *
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200197 * \note There are many functions to access information from the schema trees. Details are available in
198 * the [Schema Tree module](@ref schematree).
199 *
Radek Krejciee674072016-09-15 10:37:40 +0200200 * For information about difference between implemented and imported modules, see the
201 * [context description](@ref howtocontext).
202 *
Radek Krejcidef50022016-02-01 16:38:32 +0100203 * Functions List (not assigned to above subsections)
204 * --------------------------------------------------
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200205 * - lys_getnext()
Radek Krejcidef50022016-02-01 16:38:32 +0100206 * - lys_parent()
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200207 * - lys_module()
208 * - lys_node_module()
Radek Krejcidef50022016-02-01 16:38:32 +0100209 * - lys_set_private()
Radek Krejciee674072016-09-15 10:37:40 +0200210 * - lys_set_implemented()
Radek Krejcidef50022016-02-01 16:38:32 +0100211 */
212
213/**
214 * @page howtoschemasparsers Parsing Schemas
215 *
216 * Schema parser allows to read schema from a specific format. libyang supports the following schema formats:
217 *
218 * - YANG
219 *
220 * Basic YANG schemas format described in [RFC 6020](http://tools.ietf.org/html/rfc6020).
221 * Currently, only YANG 1.0 is supported.
222 *
Radek Krejcidef50022016-02-01 16:38:32 +0100223 * - YIN
224 *
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200225 * Alternative XML-based format to YANG - YANG Independent Notation. The details can be found in
Radek Krejcidef50022016-02-01 16:38:32 +0100226 * [RFC 6020](http://tools.ietf.org/html/rfc6020#section-11).
227 *
228 * When the [context](@ref howtocontext) is created, it already contains the following three schemas, which
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200229 * are implemented internally by libyang:
Radek Krejcidef50022016-02-01 16:38:32 +0100230 * - ietf-inet-types@2013-07-15
231 * - ietf-yang-types@2013-07-15
232 * - ietf-yang-library@2015-07-03
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200233 * - yang@2016-02-11
234 *
235 * The last one is libyang's internal module to provide namespace for various YANG attributes defined in RFC 6020
236 * (such as `insert` attribute for edit-config's data).
Radek Krejcidef50022016-02-01 16:38:32 +0100237 *
238 * Other schemas can be added to the context manually as described in [context page](@ref howtocontext) by the functions
239 * listed below. Besides the schema parser functions, it is also possible to use ly_ctx_load_module() which tries to
240 * find the required schema automatically - using #ly_module_clb or automatic search in working directory and in the
241 * context's searchpath.
242 *
243 * Functions List
244 * --------------
Radek Krejci722b0072016-02-01 17:09:45 +0100245 * - lys_parse_mem()
Radek Krejcidef50022016-02-01 16:38:32 +0100246 * - lys_parse_fd()
247 * - lys_parse_path()
248 * - ly_ctx_set_module_clb()
249 * - ly_ctx_load_module()
250 */
251
252/**
253 * @page howtoschemasfeatures YANG Features Manipulation
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200254 *
255 * The group of functions prefixed by \b lys_features_ are used to access and manipulate with the schema's
256 * features.
257 *
258 * The first two functions are used to access information about the features in the schema.
259 * lys_features_list() provides list of all features defined in the specific schema and its
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200260 * submodules. Optionally, it can also provide information about the state of all features.
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200261 * Alternatively, caller can use lys_features_state() function to get state of one specific
262 * feature.
263 *
264 * The remaining two functions, lys_features_enable() and lys_features_disable(), are used
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200265 * to enable and disable the specific feature (or all via the '`*`' value). By default, when the module
Radek Krejcidef50022016-02-01 16:38:32 +0100266 * is loaded by libyang parser, all features are disabled.
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200267 *
Radek Krejcidef50022016-02-01 16:38:32 +0100268 * To get know, if a specific schema node is currently disabled or enable, the lys_is_disabled() function can be used.
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200269 *
Radek Krejcidef50022016-02-01 16:38:32 +0100270 * Note, that the feature's state can affect some of the output formats (e.g. Tree format).
271 *
272 * Functions List
273 * --------------
274 * - lys_features_list()
275 * - lys_features_enable()
276 * - lys_features_disable()
277 * - lys_features_state()
278 * - lys_is_disabled()
279 */
280
281/**
282 * @page howtoschemasprinters Printing Schemas
283 *
284 * Schema printers allows to serialize internal representation of a schema module in a specific format. libyang
285 * supports the following schema formats for printing:
286 *
287 * - YANG
288 *
289 * Basic YANG schemas format described in [RFC 6020](http://tools.ietf.org/html/rfc6020).
290 * Currently, only YANG 1.0 is supported.
291 *
292 * - YIN
293 *
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200294 * Alternative XML-based format to YANG - YANG Independent Notation. The details can be found in
Radek Krejcidef50022016-02-01 16:38:32 +0100295 * [RFC 6020](http://tools.ietf.org/html/rfc6020#section-11).
296 *
Radek Krejcidef50022016-02-01 16:38:32 +0100297 * - Tree
298 *
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200299 * Simple tree structure of the module where each node is printed as:
300 *
301 * <status> <flags> <name> <opts> <type> <if-features>
302 *
303 * - `<status>` is one of:
304 * - `+` for current
305 * - `x` for deprecated
306 * - `o` for obsolete
307 *
308 * - `<flags>` is one of:
309 * - `rw` for configuration data
310 * - `ro` for status data
311 * - `-x` for RPCs
312 * - `-n` for Notification
313 *
314 * - `<name>` is the name of the node
315 * - `(<name>)` means that the node is a choice node
316 * - `:(<name>)` means that the node is a case node
317 * - if the node is augmented into the tree from another module, it is printed with the module name as
318 * `<module-name>:<name>`.
319 *
320 * - `<opts>` is one of:
321 * - `?` for an optional leaf or choice
322 * - `!` for a presence container
323 * - `*` for a leaf-list or list
324 * - `[<keys>]` for a list's keys
325 *
326 * - `<type>` is the name of the type for leafs and leaf-lists
327 * - if there is a default value defined, it is printed within angle brackets `<default-value>`
328 * - if the type is a leafref, the type is printed as -> TARGET`
329 *
330 * - `<if-features>` is the list of features this node depends on, printed within curly brackets and
331 * a question mark `{...}?`
332 *
Radek Krejcidef50022016-02-01 16:38:32 +0100333 *
334 * - Info
335 *
336 * Detailed information about the specific node in the schema tree.
337 * It allows to print information not only about a specific module, but also about its specific part:
338 *
339 * - absolute-schema-nodeid
340 *
341 * e.g. \a `/modules/module-set-id` in \a `ietf-yang-library` module
342 *
343 * - <b>typedef/</b>typedef-name
344 *
345 * e.g. \a `typedef/revision-identifier` in \a `ietf-yang-library` module
346 *
347 * - <b>feature/</b>feature-name
348 *
349 * e.g. \a `feature/ssh` in \a `ietf-netconf-server` module
350 *
351 * - <b>grouping/</b>grouping-name/descendant-schema-nodeid
352 *
353 * e.g. \a `grouping/module` or \a `grouping/module/module/submodules` in \a `ietf-yang-library` module
354 *
355 * - <b>type/</b>leaf-or-leaflist
356 *
357 * e.g. \a `type/modules/module-set-id` in \a `ietf-yang-library` module
358 *
359 * Printer functions allow to print to the different outputs including a callback function which allows caller
360 * to have a full control of the output data - libyang passes to the callback a private argument (some internal
361 * data provided by a caller of lys_print_clb()), string buffer and number of characters to print. Note that the
362 * callback is supposed to be called multiple times during the lys_print_clb() execution.
363 *
364 * Functions List
365 * --------------
366 * - lys_print_mem()
367 * - lys_print_fd()
368 * - lys_print_file()
369 * - lys_print_clb()
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200370 */
371
372/**
373 * @page howtodata Data Instances
Radek Krejci26715a42015-07-29 14:10:45 +0200374 *
Radek Krejcidef50022016-02-01 16:38:32 +0100375 * All data nodes in data trees are connected with their schema node - libyang is not able to represent data of an
376 * unknown schema.
377 *
Michal Vasko1ec579e2016-09-13 11:24:28 +0200378 * Please, continue reading a specific subsection or go through all the subsections if you are a new user of libyang.
Radek Krejcidef50022016-02-01 16:38:32 +0100379 *
380 * - @subpage howtodataparsers
381 * - @subpage howtodatamanipulators
Michal Vasko1ec579e2016-09-13 11:24:28 +0200382 * - @subpage howtodatavalidation
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200383 * - @subpage howtodatawd
Radek Krejcidef50022016-02-01 16:38:32 +0100384 * - @subpage howtodataprinters
385 *
386 * \note API for this group of functions is described in the [Data Instances module](@ref datatree).
387 *
388 * Functions List (not assigned to above subsections)
389 * --------------------------------------------------
Michal Vaskof06fb5b2016-09-08 10:05:56 +0200390 * - lyd_find_instance()
391 * - lyd_find_xpath()
Radek Krejciae1c3b12016-09-20 16:30:32 +0200392 * - lyd_leaf_type()
Radek Krejcidef50022016-02-01 16:38:32 +0100393 */
394
395/**
396 * @page howtodataparsers Parsing Data
397 *
398 * Data parser allows to read instances from a specific format. libyang supports the following data formats:
399 *
400 * - XML
401 *
402 * Original data format used in NETCONF protocol. XML mapping is part of the YANG specification
403 * ([RFC 6020](http://tools.ietf.org/html/rfc6020)).
404 *
405 * - JSON
406 *
407 * The alternative data format available in RESTCONF protocol. Specification of JSON encoding of data modeled by YANG
408 * can be found in [this draft](https://tools.ietf.org/html/draft-ietf-netmod-yang-json-05).
409 *
410 * Besides the format of input data, the parser functions accepts additional [options](@ref parseroptions) to specify
411 * how the input data should be processed.
412 *
413 * In contrast to the schema parser, data parser also accepts empty input data if such an empty data tree is valid
414 * according to the schemas in the libyang context.
415 *
416 * In case of XML input data, there is one additional way to parse input data. Besides parsing the data from a string
417 * in memory or a file, caller is able to build an XML tree using [libyang XML parser](@ref howtoxml) and then use
418 * this tree (or a part of it) as input to the lyd_parse_xml() function.
419 *
420 * Functions List
421 * --------------
Radek Krejci722b0072016-02-01 17:09:45 +0100422 * - lyd_parse_mem()
Radek Krejcidef50022016-02-01 16:38:32 +0100423 * - lyd_parse_fd()
424 * - lyd_parse_path()
425 * - lyd_parse_xml()
426 */
427
428/**
429 * @page howtodatamanipulators Manipulating Data
430 *
431 * There are many functions to create or modify an existing data tree. You can add new nodes, reconnect nodes from
432 * one tree to another (or e.g. from one list instance to another) or remove nodes. The functions doesn't allow you
433 * to put a node to a wrong place (by checking the module), but not all validation checks can be made directly
434 * (or you have to make a valid change by multiple tree modifications) when the tree is being changed. Therefore,
Michal Vasko58f74f12016-03-24 13:26:06 +0100435 * there is lyd_validate() function supposed to be called to make sure that the current data tree is valid. If
436 * working with RPCs, they are invalid also in case the data nodes are not ordered according to the schema, which
437 * you can fix easily with lyd_schema_sort(). Note, that not performing validation after some data tree changes
438 * can cause failure of various libyang functions later.
Radek Krejcidef50022016-02-01 16:38:32 +0100439 *
Michal Vasko0f14ba62016-03-21 15:38:11 +0100440 * Creating data is generally possible in two ways, they can be combined. You can add nodes one-by-one based on
Michal Vasko1ec579e2016-09-13 11:24:28 +0200441 * the node name and/or its parent (lyd_new(), \b lyd_new_anydata_*(), lyd_new_leaf(), and their output variants) or
Michal Vasko58f74f12016-03-24 13:26:06 +0100442 * address the nodes using a simple XPath addressing (lyd_new_path()). The latter enables to create a whole path
443 * of nodes, requires less information about the modified data, and is generally simpler to use. The path format
444 * specifics can be found [here](@ref howtoxpath).
Michal Vasko0f14ba62016-03-21 15:38:11 +0100445 *
Radek Krejcidb6b1662016-09-15 10:40:16 +0200446 * Working with two data subtrees can also be performed two ways. Usually, you should use lyd_insert*() functions.
Michal Vasko45fb2822016-04-18 13:32:17 +0200447 * But they always work with a single subtree and it must be placed on an exact and correct location in the other
Radek Krejcidb6b1662016-09-15 10:40:16 +0200448 * tree. If using lyd_merge(), this information is learned internally and duplicities (that would invalidate
449 * the final data tree) are filtered out at the cost of somewhat reduced efficiency.
Michal Vasko45fb2822016-04-18 13:32:17 +0200450 *
Radek Krejcidef50022016-02-01 16:38:32 +0100451 * Also remember, that when you are creating/inserting a node, all the objects in that operation must belong to the
452 * same context.
453 *
454 * Modifying the single data tree in multiple threads is not safe.
455 *
456 * Functions List
457 * --------------
458 * - lyd_dup()
459 * - lyd_change_leaf()
460 * - lyd_insert()
Radek Krejcidb6b1662016-09-15 10:40:16 +0200461 * - lyd_insert_sibling()
Radek Krejcidef50022016-02-01 16:38:32 +0100462 * - lyd_insert_before()
463 * - lyd_insert_after()
464 * - lyd_insert_attr()
Michal Vasko45fb2822016-04-18 13:32:17 +0200465 * - lyd_merge()
Radek Krejcidef50022016-02-01 16:38:32 +0100466 * - lyd_new()
Michal Vasko0845b112016-09-08 10:07:08 +0200467 * - lyd_new_anydata()
Radek Krejcidef50022016-02-01 16:38:32 +0100468 * - lyd_new_leaf()
Michal Vaskof5299282016-03-16 13:32:02 +0100469 * - lyd_new_path()
Michal Vasko0ba46152016-05-11 14:16:55 +0200470 * - lyd_new_output()
Michal Vasko0845b112016-09-08 10:07:08 +0200471 * - lyd_new_output_anydata()
Michal Vasko0ba46152016-05-11 14:16:55 +0200472 * - lyd_new_output_leaf()
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200473 * - lyd_schema_sort()
Radek Krejcidef50022016-02-01 16:38:32 +0100474 * - lyd_unlink()
475 * - lyd_free()
476 * - lyd_free_attr()
477 * - lyd_free_withsiblings()
Michal Vasko1ec579e2016-09-13 11:24:28 +0200478 */
479
480/**
481 * @page howtodatavalidation Validating Data
482 *
483 * By default, the represented data are supposed to represent a full YANG datastore content. So if a schema declares
484 * some mandatory nodes, despite configuration or status, the data are supposed to be present in the data tree being
485 * loaded or validated. However, it is possible to specify other kinds of data (see @ref parseroptions) allowing some
486 * exceptions to the validation process.
487 *
488 * Data validation is performed implicitly to the input data processed by the parser (\b lyd_parse_*() functions) and
489 * on demand via the lyd_validate() function. The lyd_validate() is supposed to be used when a (complex or simple)
490 * change is done on the data tree (via a combination of \b lyd_change_*(), \b lyd_insert*(), \b lyd_new*(),
491 * lyd_unlink() and lyd_free() functions).
492 *
493 * Must And When Conditions Accessible Tree
494 * ----------------------------------------
495 *
496 * In YANG 1.1, there can be \b must and/or \b when expressions in RPC/action input or output, or in notifications that
497 * require access to the configuration datastore and/or state data. Normally, when working with any of the aforementioned
498 * data trees, they must contain only the RPC/action/notification itself, without any additional configuration or state
499 * data. So how can then these conditions be verified during validation?
500 *
501 * There is an option to pass this additional data tree to all the functions that perform \b must and \b when condition
502 * checking (\b lyd_parse_*() and lyd_validate()). Also, there is a flag #LYS_XPATH_DEP of \b struct lys_node that
503 * marks schema nodes that include conditions that require foreign nodes (outside their subtree) for their evaluation.
504 * The subtree root is always the particular operation data node (for RPC it is the RPC data node and all
505 * the input or output nodes as its children and similarly for action and notification). Note that for action and
506 * not-top-level notification this means that all their parents are not considered as belonging to their subtree even though
507 * they are included in their data tree and must be present for the operation validation to pass. The reason for this is that if
508 * there are any lists in those parents, we cannot know if there are not some other instances of them in the standard
509 * data tree in addition to the one used in the action/notification invocation.
510 *
511 * There were 2 ways of using this mechanism envisioned (explained below), but you can combine or modify them.
512 *
513 * ### Fine-grained Data Retrieval ###
514 *
515 * This approach is recommended when you do not maintain a full configuration data tree with state data at all times.
516 *
517 * Firstly, you should somehow learn that the operation data tree you are currently working with includes some schema
518 * node instances that have conditions that require foreign data. You can either know this about every operation beforehand
519 * or you go through all the schema nodes looking for the flag #LYS_XPATH_DEP. Then you should use lys_node_xpath_atomize()
520 * to retrieve all XPath condition dependencies (in the form of schema nodes) outside the operation subtree. You will likely
521 * want to use the flag #LYXP_NO_LOCAL to get rid of all the nodes from inside the subtree (you should already have those).
522 * 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()
523 * (it will be expected). Then you pass this tree to the validation and it should now have access to all the nodes that
524 * can potentially affect the XPath evaluation and no other.
525 *
526 * ### Maintaining Configuration And State Data Tree ###
527 *
528 * If you have a full data tree with state data available for the validation process then it is quite simple (compared
529 * to the first approach). You can simply always pass it to validation of these operations and in cases it is not required
530 * (no nodes with conditions traversing foreign nodes) only a negligible amount of redundant work is performed and you can
531 * skip the process of learning whether it is required or not.
532 *
533 * Functions List
534 * --------------
Radek Krejcidef50022016-02-01 16:38:32 +0100535 * - lyd_validate()
536 */
537
538/**
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200539 * @page howtodatawd Default Values
540 *
Radek Krejcidb6b1662016-09-15 10:40:16 +0200541 * libyang provides support for work with default values as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243).
Radek Krejci46180b52016-08-31 16:01:32 +0200542 * This document defines 4 modes for handling default nodes in a data tree, libyang adds the fifth mode:
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200543 * - \b explicit - Only the explicitly set configuration data. But in the case of status data, missing default
Radek Krejci46180b52016-08-31 16:01:32 +0200544 * data are added into the tree. In libyang, this mode is represented by #LYP_WD_EXPLICIT option.
545 * - \b trim - Data nodes containing the schema default value are removed. This mode is applied using #LYP_WD_TRIM option.
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200546 * - \b report-all - All the missing default data are added into the data tree. This mode is represented by
Radek Krejci46180b52016-08-31 16:01:32 +0200547 * #LYP_WD_ALL option.
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200548 * - \b report-all-tagged - In this case, all the missing default data are added as in case of the `report-all` mode,
549 * but additionally all the nodes (existing as well as added) containing the schema default value
Radek Krejci46180b52016-08-31 16:01:32 +0200550 * are tagged (see the note below). libyang uses #LYP_WD_ALL_TAG option for this mode.
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200551 * - \b report-implicit-tagged - The last mode is similar to the previous one, except only the added nodes are tagged.
Radek Krejci46180b52016-08-31 16:01:32 +0200552 * This is the libyang's extension and it is represented by #LYP_WD_IMPL_TAG option.
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200553 *
Radek Krejci46180b52016-08-31 16:01:32 +0200554 * libyang automatically adds/maintain the default nodes when a data tree is being parsed or validated. Note, that in a
555 * modified data tree (via e.g. lys_insert() or lys_free()), some of the default nodes can be missing or they can be
556 * present by mistake. Such a data tree is again corrected during the next lyd_validate() call.
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200557 *
Radek Krejci46180b52016-08-31 16:01:32 +0200558 * The implicit (default) nodes, created by libyang, are marked with the ::lyd_node#dflt flag which applies to the
Radek Krejcid3cfbc92016-09-15 10:39:33 +0200559 * leafs and leaf-lists. In case of containers, the flag means that the container holds only a default node(s) or it
560 * is an empty container (according to YANG 1.1 spec, all such containers are part of the accessible data tree).
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200561 *
Radek Krejci46180b52016-08-31 16:01:32 +0200562 * The presence of the default nodes during the data tree lifetime is affected by the LYD_OPT_ flag used to
563 * parse/validate the tree:
564 * - #LYD_OPT_DATA - all the default nodes are present despite they are configuration or status nodes
565 * - #LYD_OPT_CONFIG - only the configuration data nodes are added into the tree
566 * - #LYD_OPT_GET, #LYD_OPT_GETCONFIG, #LYD_OPT_EDIT - no default nodes are added
567 * - #LYD_OPT_RPC, #LYD_OPT_RPCREPLY, #LYD_OPT_NOTIF - the default nodes from the particular subtree are added
568 *
Radek Krejcidb6b1662016-09-15 10:40:16 +0200569 * The with-default modes described above are supported when the data tree is being printed with the
Radek Krejci46180b52016-08-31 16:01:32 +0200570 * [LYP_WD_ printer flags](@ref printerflags). Note, that in case of #LYP_WD_ALL_TAG and #LYP_WD_IMPL_TAG modes,
571 * the XML/JSON attributes are printed only if the context includes the ietf-netconf-with-defaults schema. Otherwise,
Radek Krejcid3cfbc92016-09-15 10:39:33 +0200572 * these modes have the same result as #LYP_WD_ALL. The presence of empty containers (despite they were added explicitly
573 * or implicitly as part of accessible data tree) depends on #LYP_KEEPEMPTYCONT option.
Radek Krejci46180b52016-08-31 16:01:32 +0200574 *
575 * To get know if the particular leaf or leaf-list node contains default value (despite implicit or explicit), you can
Radek Krejcidb6b1662016-09-15 10:40:16 +0200576 * use lyd_wd_default() function.
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200577 *
578 * Functions List
579 * --------------
Radek Krejci46180b52016-08-31 16:01:32 +0200580 * - lyd_wd_default()
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200581 *
582 * - lyd_parse_mem()
583 * - lyd_parse_fd()
584 * - lyd_parse_path()
585 * - lyd_parse_xml()
586 * - lyd_validate()
Radek Krejci46180b52016-08-31 16:01:32 +0200587 * - lyd_print_mem()
588 * - lyd_print_fd()
589 * - lyd_print_file()
590 * - lyd_print_clb()
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200591 */
592
593/**
Radek Krejcidef50022016-02-01 16:38:32 +0100594 * @page howtodataprinters Printing Data
595 *
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200596 * Data printers allows to serialize internal representation of a data tree in a specific format. libyang
597 * supports the following data formats for printing:
Radek Krejcidef50022016-02-01 16:38:32 +0100598 *
599 * - XML
600 *
601 * Basic format as specified in rules of mapping YANG modeled data to XML in
602 * [RFC 6020](http://tools.ietf.org/html/rfc6020). It is possible to specify if
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200603 * the indentation (formatting) will be used (by #LYP_FORMAT @ref printerflags "printer option").
Radek Krejcidef50022016-02-01 16:38:32 +0100604 *
605 * - JSON
606 *
607 * The alternative data format available in RESTCONF protocol. Specification of JSON encoding of data modeled by YANG
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200608 * can be found in [this draft](https://tools.ietf.org/html/draft-ietf-netmod-yang-json-05).It is possible to specify
609 * if the indentation (formatting) will be used (by #LYP_FORMAT @ref printerflags "printer option").
Radek Krejcidef50022016-02-01 16:38:32 +0100610 *
611 * Printer functions allow to print to the different outputs including a callback function which allows caller
612 * to have a full control of the output data - libyang passes to the callback a private argument (some internal
613 * data provided by a caller of lyd_print_clb()), string buffer and number of characters to print. Note that the
614 * callback is supposed to be called multiple times during the lyd_print_clb() execution.
615 *
Radek Krejci46180b52016-08-31 16:01:32 +0200616 * To print the data tree with default nodes according to the with-defaults capability defined in
617 * [RFC 6243](https://tools.ietf.org/html/rfc6243), check the [page about the default values](@ref howtodatawd).
618 *
Radek Krejcidef50022016-02-01 16:38:32 +0100619 * Functions List
620 * --------------
621 * - lyd_print_mem()
622 * - lyd_print_fd()
623 * - lyd_print_file()
624 * - lyd_print_clb()
625 */
626
627/**
Radek Krejcib50551c2016-04-19 09:15:38 +0200628 * @page howtoxpath XPath Addressing
629 *
630 * Internally, XPath evaluation is performed on \b when and \b must conditions in the schema. For that almost
Michal Vasko88aae042016-09-08 08:57:09 +0200631 * a full XPath 1.0 evaluator was implemented except that only node sets are returned. This XPath implementation
Michal Vaskof06fb5b2016-09-08 10:05:56 +0200632 * is available on data trees by calling lyd_find_xpath() and on schema trees by calling lys_find_xpath().
Michal Vasko46a4bf92016-09-08 08:23:49 +0200633 * This XPath conforms to the YANG specification (RFC 6020 section 6.4). Some useful examples:
Michal Vasko8e627692016-04-19 12:15:47 +0200634 *
Michal Vaskoebea7012016-04-19 14:15:22 +0200635 * - get all top-level nodes of the __module-name__
636 *
637 * /module-name:*
638 *
639 * - get all the descendants of __container__ (excluding __container__)
640 *
641 * /module-name:container//\asterisk
642 *
643 * - 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__)
644 *
645 * /module-name:container/list[key1='1'][key2='2']
646 *
647 * - get __leaf-list__ instance with the value __val__
648 *
649 * /module-name:container/leaf-list[.='val']
650 *
651 * - get __aug-leaf__, which was added to __module-name__ from an augment module __augment-module__
652 *
653 * /module-name:container/container2/augment-module:aug-cont/aug-leaf
654 *
Radek Krejcib50551c2016-04-19 09:15:38 +0200655 *
656 * A very small subset of this full XPath is recognized by lyd_new_path(). Basically, only a relative or absolute
657 * path can be specified to identify a new data node. However, lists must be identified by all their keys and created
658 * with all of them, so for those cases predicates are allowed. Predicates must be ordered the way the keys are ordered
Michal Vasko1acf8502016-05-05 09:14:07 +0200659 * and all the keys must be specified. Every predicate includes a single key with its value. Optionally, leaves and
660 * leaf-lists can have predicates specifying their value in the path itself. All these paths are valid XPath
Radek Krejcib50551c2016-04-19 09:15:38 +0200661 * expressions. Example:
662 *
Michal Vasko1acf8502016-05-05 09:14:07 +0200663 * /ietf-yang-library:modules-state/module[name='ietf-yang-library'][revision='']/conformance[.='implement']
Radek Krejcib50551c2016-04-19 09:15:38 +0200664 *
665 * Almost the same XPath is accepted by ly_ctx_get_node(). The difference is that it is not used on data, but schema,
666 * which means there are no key values and only one node matches one path. In effect, lists do not have to have any
667 * predicates. If they do, they do not need to have all the keys specified and if values are included, they are ignored.
668 * Nevertheless, any such expression is still a valid XPath, but can return more nodes if executed on a data tree.
669 * Examples (all returning the same node):
670 *
671 * /ietf-yang-library:modules-state/module/submodules
672 * /ietf-yang-library:modules-state/module[name]/submodules
673 * /ietf-yang-library:modules-state/module[name][revision]/submodules
674 * /ietf-yang-library:modules-state/module[name='ietf-yang-library'][revision]/submodules
675 *
676 * Also, `choice`, `case`, `input`, and `output` nodes need to be specified and cannot be skipped in schema XPaths. Use
Michal Vasko8d26e5c2016-09-08 10:03:49 +0200677 * lys_find_xpath() if you want to search based on a data XPath.
Radek Krejcib50551c2016-04-19 09:15:38 +0200678 *
679 * Also note, that in all cases the node's prefix is specified as the name of the appropriate YANG schema. Any node
680 * can be prefixed by the module name. However, if the prefix is omitted, the module name is inherited from the previous
681 * (parent) node. It means, that the first node in the path is always supposed to have a prefix.
682 *
683 * Functions List
684 * --------------
Michal Vaskof06fb5b2016-09-08 10:05:56 +0200685 * - lyd_find_xpath()
686 * - lys_find_xpath()
Radek Krejcib50551c2016-04-19 09:15:38 +0200687 * - lyd_new_path()
688 * - ly_ctx_get_node()
Radek Krejcib50551c2016-04-19 09:15:38 +0200689 */
690
691/**
Radek Krejcidef50022016-02-01 16:38:32 +0100692 * @page howtoxml libyang XML Support
693 *
Radek Krejcib50551c2016-04-19 09:15:38 +0200694 * libyang XML parser is able to parse XML documents. The main purpose is to load data modeled by YANG. However, it can
695 * be used as a standalone XML parser with the following limitations in comparison to a full-featured XML parsers:
Radek Krejcidef50022016-02-01 16:38:32 +0100696 * - comments are ignored
697 * - Doctype declaration is ignored
698 * - CData sections are ignored
699 * - Process Instructions (PI) are ignored
700 *
701 * The API is designed to almost only read-only access. You can simply load XML document, go through the tree as
702 * you wish and dump the tree to an output. The only "write" functions are lyxml_free() and lyxml_unlink() to remove
703 * part of the tree or to unlink (separate) a subtree.
704 *
Radek Krejcib50551c2016-04-19 09:15:38 +0200705 * XML parser is used internally by libyang for parsing YIN schemas and data instances in XML format.
Radek Krejcidef50022016-02-01 16:38:32 +0100706 *
707 * \note API for this group of functions is described in the [XML Parser module](@ref xmlparser).
708 *
709 * Functions List
710 * --------------
Radek Krejci722b0072016-02-01 17:09:45 +0100711 * - lyxml_parse_mem()
712 * - lyxml_parse_path()
Radek Krejcidef50022016-02-01 16:38:32 +0100713 * - lyxml_get_attr()
714 * - lyxml_get_ns()
Radek Krejci722b0072016-02-01 17:09:45 +0100715 * - lyxml_print_mem()
716 * - lyxml_print_fd()
717 * - lyxml_print_file()
718 * - lyxml_print_clb()
Radek Krejcidef50022016-02-01 16:38:32 +0100719 * - lyxml_unlink()
720 * - lyxml_free()
721 */
722
723/**
724 * @page howtothreads libyang in Threads
725 *
Radek Krejcib50551c2016-04-19 09:15:38 +0200726 * libyang can be used in multithreaded applications keeping in mind the following rules:
Radek Krejcidef50022016-02-01 16:38:32 +0100727 * - libyang context manipulation (adding new schemas) is not thread safe and it is supposed to be done in a main
Radek Krejcib50551c2016-04-19 09:15:38 +0200728 * thread before any other work with context, schemas or data instances. Destroying the context is supposed to
Radek Krejcidef50022016-02-01 16:38:32 +0100729 * be done when no other thread accesses context, schemas nor data trees
730 * - Data parser (\b lyd_parse*() functions) can be used simultaneously in multiple threads (also the returned
731 * #ly_errno is thread safe).
732 * - Modifying (lyd_new(), lyd_insert(), lyd_unlink(), lyd_free() and many other functions) a single data tree is not
733 * thread safe.
Radek Krejci26715a42015-07-29 14:10:45 +0200734 */
Radek Krejci94ca54b2015-07-08 15:48:47 +0200735
Radek Krejcida04f4a2015-05-21 12:54:09 +0200736/**
Radek Krejci26715a42015-07-29 14:10:45 +0200737 *
738 * @page howtologger Logger
739 *
740 * There are 4 verbosity levels defined as ::LY_LOG_LEVEL. The level can be
741 * changed by the ly_verb() function. By default, the verbosity level is
742 * set to #LY_LLERR value.
743 *
Radek Krejcib50551c2016-04-19 09:15:38 +0200744 * When an error is encountered, the error message and error number are stored for
745 * later use. Caller is able to access the last error message via ly_errmsg() and the
746 * corresponding last error code via #ly_errno. If that was a validation error (#ly_errno
747 * is set to #LY_EVALID), also validation error code (via #ly_vecode) and path to the
748 * error node (via ly_errpath()) are available.
749 *
750 * For some specific cases, a YANG schema can define error message and/or error tag (mainly for
Michal Vaskoebea7012016-04-19 14:15:22 +0200751 * use in NETCONF). If a message is set, it is provided via ly_errmsg(). If a tag is set in schema,
Radek Krejcib50551c2016-04-19 09:15:38 +0200752 * it is available via ly_erraptag() (if not set, the returned string is empty).
753 *
Michal Vaskoebea7012016-04-19 14:15:22 +0200754 * By default, all libyang messages are printed to `stderr`. However, the caller is able to set their own logging
Radek Krejcib50551c2016-04-19 09:15:38 +0200755 * callback function. In that case, instead of printing messages, libyang passes error level, message and path
756 * (if any) to the caller's callback function. In case of error level, the message and path are still
757 * automatically stored and available via the functions and macros described above.
Radek Krejci26715a42015-07-29 14:10:45 +0200758 *
Radek Krejcidef50022016-02-01 16:38:32 +0100759 * \note API for this group of functions is described in the [logger module](@ref logger).
760 *
761 * Functions List
762 * --------------
763 * - ly_verb()
764 * - ly_set_log_clb()
765 * - ly_get_log_clb()
Radek Krejcib50551c2016-04-19 09:15:38 +0200766 * - ly_errmsg()
767 * - ly_errpath()
768 * - ly_errapptag()
769 * - #ly_errno
770 * - #ly_vecode
Radek Krejci26715a42015-07-29 14:10:45 +0200771 */
772
773/**
774 * @defgroup context Context
Radek Krejci3045cf32015-05-28 10:58:52 +0200775 * @{
776 *
Radek Krejci26715a42015-07-29 14:10:45 +0200777 * Structures and functions to manipulate with the libyang "containers". The \em context concept allows callers
778 * to work in environments with different sets of YANG schemas. More detailed information can be found at
779 * @ref howtocontext page.
Radek Krejci3045cf32015-05-28 10:58:52 +0200780 */
781
782/**
Radek Krejcida04f4a2015-05-21 12:54:09 +0200783 * @brief libyang context handler.
784 */
785struct ly_ctx;
786
787/**
788 * @brief Create libyang context
789 *
Radek Krejci26715a42015-07-29 14:10:45 +0200790 * Context is used to hold all information about schemas. Usually, the application is supposed
Radek Krejci91b833c2015-09-04 11:49:43 +0200791 * to work with a single context in which libyang is holding all schemas (and other internal
792 * information) according to which the data trees will be processed and validated. So, the schema
793 * trees are tightly connected with the specific context and they are held by the context internally
794 * - caller does not need to keep pointers to the schemas returned by lys_parse(), context knows
795 * about them. The data trees created with lyd_parse() are still connected with the specific context,
796 * but they are not internally held by the context. The data tree just points and lean on some data
797 * held by the context (schema tree, string dictionary, etc.). Therefore, in case of data trees, caller
798 * is supposed to keep pointers returned by the lyd_parse() and manage the data tree on its own. This
799 * also affects the number of instances of both tree types. While you can have only one instance of
800 * specific schema connected with a single context, number of data tree instances is not connected.
Radek Krejcida04f4a2015-05-21 12:54:09 +0200801 *
Radek Krejci26715a42015-07-29 14:10:45 +0200802 * @param[in] search_dir Directory where libyang will search for the imported or included modules
803 * and submodules. If no such directory is available, NULL is accepted.
Radek Krejcida04f4a2015-05-21 12:54:09 +0200804 *
Radek Krejci3045cf32015-05-28 10:58:52 +0200805 * @return Pointer to the created libyang context, NULL in case of error.
Radek Krejcida04f4a2015-05-21 12:54:09 +0200806 */
807struct ly_ctx *ly_ctx_new(const char *search_dir);
808
809/**
Michal Vasko60ba9a62015-07-03 14:42:31 +0200810 * @brief Change the search path in libyang context
811 *
812 * @param[in] ctx Context to be modified.
813 * @param[in] search_dir New search path to replace the current one in ctx.
814 */
815void ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir);
816
817/**
Radek Krejci5a797572015-10-21 15:45:45 +0200818 * @brief Get current value of the search path in libyang context
819 *
820 * @param[in] ctx Context to query.
821 * @return Current value of the search path.
822 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100823const char *ly_ctx_get_searchdir(const struct ly_ctx *ctx);
Radek Krejci5a797572015-10-21 15:45:45 +0200824
825/**
Radek Krejci7ab25152015-08-07 14:48:45 +0200826 * @brief Get data of an internal ietf-yang-library module.
827 *
828 * @param[in] ctx Context with the modules.
829 * @return Root data node corresponding to the model, NULL on error.
830 * Caller is responsible for freeing the returned data tree using lyd_free().
831 */
832struct lyd_node *ly_ctx_info(struct ly_ctx *ctx);
833
834/**
Michal Vaskod7957c02016-04-01 10:27:26 +0200835 * @brief Iterate over all modules in a context.
836 *
837 * @param[in] ctx Context with the modules.
838 * @param[in,out] idx Index of the next module to be returned. Value of 0 starts from the beginning.
839 * @return Next context module, NULL if the last was already returned.
840 */
841const struct lys_module *ly_ctx_get_module_iter(const struct ly_ctx *ctx, uint32_t *idx);
842
843/**
Radek Krejcifd4e6e32015-08-10 15:00:51 +0200844 * @brief Get pointer to the schema tree of the module of the specified name.
Radek Krejcida04f4a2015-05-21 12:54:09 +0200845 *
Radek Krejcida04f4a2015-05-21 12:54:09 +0200846 * @param[in] ctx Context to work in.
847 * @param[in] name Name of the YANG module to get.
Radek Krejcif647e612015-07-30 11:36:07 +0200848 * @param[in] revision Optional revision date of the YANG module to get. If not specified,
849 * the schema in the newest revision is returned if any.
850 * @return Pointer to the data model structure, NULL if no schema following the name and
Radek Krejcifd4e6e32015-08-10 15:00:51 +0200851 * revision requirements is present in the context.
Radek Krejcida04f4a2015-05-21 12:54:09 +0200852 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100853const struct lys_module *ly_ctx_get_module(const struct ly_ctx *ctx, const char *name, const char *revision);
Radek Krejcida04f4a2015-05-21 12:54:09 +0200854
855/**
Radek Krejci21601a32016-03-07 11:39:27 +0100856 * @brief Get pointer to the older schema tree to the specified one in the provided context.
857 *
858 * The module is not necessarily from the provided \p ctx. If there are multiple schemas older than the
859 * provided one, the newest of them is returned.
860 *
861 * The function can be used in combination with ly_ctx_get_module() to get all revisions of a module in a context:
862 * \code{.c}
863 * for (mod = ly_ctx_get_module(ctx, name, NULL); mod; mod = ly_ctx_get_module_older(ctx, mod)) {
864 * ...
865 * }
866 * \endcode
867 *
868 * @param[in] ctx Context to work in.
869 * @param[in] module YANG module to compare with
870 * @return Pointer to the data model structure, NULL if no older schema is present in the context.
871 */
872const struct lys_module *ly_ctx_get_module_older(const struct ly_ctx *ctx, const struct lys_module *module);
873
874/**
Michal Vasko99b0aad2015-12-01 12:28:51 +0100875 * @brief Try to find the model in the searchpath of \p ctx and load it into it. If custom missing
876 * module callback is set, it is used instead.
Michal Vasko82465962015-11-10 11:03:11 +0100877 *
Radek Krejci31fb8be2016-06-23 15:26:26 +0200878 * If there is a possibility that the requested module is already in the context, you should call
879 * the ly_ctx_get_module() first to avoid a lot of work performed by ly_ctx_load_module().
880 *
Michal Vasko82465962015-11-10 11:03:11 +0100881 * @param[in] ctx Context to add to.
Michal Vasko82465962015-11-10 11:03:11 +0100882 * @param[in] name Name of the module to load.
883 * @param[in] revision Optional revision date of the module. If not specified, it is
884 * assumed that there is only one model revision in the searchpath (the first matching file
885 * is parsed).
886 * @return Pointer to the data model structure, NULL if not found or some error occured.
887 */
Michal Vasko99b0aad2015-12-01 12:28:51 +0100888const struct lys_module *ly_ctx_load_module(struct ly_ctx *ctx, const char *name, const char *revision);
889
890/**
891 * @brief Callback for retrieving missing included or imported models in a custom way.
892 *
Michal Vasko84475152016-07-25 16:16:25 +0200893 * @param[in] mod_name Missing module name.
894 * @param[in] mod_rev Optional missing module revision.
895 * @param[in] submod_name Optional missing submodule name.
896 * @param[in] submod_rev Optional missing submodule revision.
Michal Vasko99b0aad2015-12-01 12:28:51 +0100897 * @param[in] user_data User-supplied callback data.
898 * @param[out] format Format of the returned module data.
Michal Vasko880dceb2016-03-03 15:44:56 +0100899 * @param[out] free_module_data Callback for freeing the returned module data. If not set, the data will be left untouched.
Radek Krejci31fb8be2016-06-23 15:26:26 +0200900 * @return Requested module data or NULL if the callback is not able to provide the requested schema content for any reason.
Michal Vasko99b0aad2015-12-01 12:28:51 +0100901 */
Michal Vasko84475152016-07-25 16:16:25 +0200902typedef char *(*ly_module_clb)(const char *mod_name, const char *mod_rev, const char *submod_name, const char *sub_rev,
903 void *user_data, LYS_INFORMAT *format, void (**free_module_data)(void *model_data));
Michal Vasko99b0aad2015-12-01 12:28:51 +0100904
905/**
906 * @brief Set missing include or import model callback.
907 *
908 * @param[in] ctx Context that will use this callback.
909 * @param[in] clb Callback responsible for returning a missing model.
910 * @param[in] user_data Arbitrary data that will always be passed to the callback \p clb.
911 */
912void ly_ctx_set_module_clb(struct ly_ctx *ctx, ly_module_clb clb, void *user_data);
913
914/**
915 * @brief Get the custom callback for missing module retrieval.
916 *
917 * @param[in] ctx Context to read from.
918 * @param[in] user_data Optional pointer for getting the user-supplied callbck data.
919 * @return Custom user missing module callback or NULL if not set.
920 */
921ly_module_clb ly_ctx_get_module_clb(const struct ly_ctx *ctx, void **user_data);
Michal Vasko82465962015-11-10 11:03:11 +0100922
923/**
Radek Krejcifd4e6e32015-08-10 15:00:51 +0200924 * @brief Get pointer to the schema tree of the module of the specified namespace
925 *
926 * @param[in] ctx Context to work in.
927 * @param[in] ns Namespace of the YANG module to get.
928 * @param[in] revision Optional revision date of the YANG module to get. If not specified,
929 * the schema in the newest revision is returned if any.
930 * @return Pointer to the data model structure, NULL if no schema following the namespace and
931 * revision requirements is present in the context.
932 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100933const struct lys_module *ly_ctx_get_module_by_ns(const struct ly_ctx *ctx, const char *ns, const char *revision);
Radek Krejcifd4e6e32015-08-10 15:00:51 +0200934
935/**
Radek Krejci62f0da72016-03-07 11:35:43 +0100936 * @brief Get submodule of a main module.
937 *
938 * If you already have the pointer to the submodule's main module, use ly_ctx_get_submodule2() instead.
Michal Vasko7bf06882015-07-03 15:33:56 +0200939 *
Radek Krejcia7533f22016-03-07 07:37:45 +0100940 * @param[in] ctx Context to work in.
Michal Vaskof6d94c62016-04-05 11:21:54 +0200941 * @param[in] module Name of the main (belongs-to) module. If NULL, all module submodules are searched.
942 * @param[in] revision Optional revision date of \p module. If NULL, all revisions of \p module
943 * are searched. If set, \p module must also be set.
Radek Krejcia7533f22016-03-07 07:37:45 +0100944 * @param[in] submodule Name of the submodule to get.
Michal Vaskof6d94c62016-04-05 11:21:54 +0200945 * @param[in] sub_revision Optional revision date of \p submodule. If NULL, the newest revision of \p submodule
946 * is returned.
Michal Vasko7bf06882015-07-03 15:33:56 +0200947 * @return Pointer to the data model structure.
948 */
Radek Krejcia7533f22016-03-07 07:37:45 +0100949const struct lys_submodule *ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *module, const char *revision,
Michal Vaskof6d94c62016-04-05 11:21:54 +0200950 const char *submodule, const char *sub_revision);
Michal Vasko7bf06882015-07-03 15:33:56 +0200951
952/**
Radek Krejci62f0da72016-03-07 11:35:43 +0100953 * @brief Get submodule of a main module.
954 *
955 * If you have only the name (and optionally revision) of the submodule's main module, use ly_ctx_get_submodule()
956 * instead.
957 *
958 * @param[in] main_module Main module (belongs to) of the searched submodule.
959 * @param[in] submodule Name of the submodule to get.
960 * @return Pointer to the data model structure.
961 */
962const struct lys_submodule *ly_ctx_get_submodule2(const struct lys_module *main_module, const char *submodule);
963
964/**
Michal Vasko3547c532016-03-14 09:40:50 +0100965 * @brief Get schema node according to the given schema node identifier in JSON format.
Michal Vasko3edeaf72016-02-11 13:17:43 +0100966 *
Michal Vasko3547c532016-03-14 09:40:50 +0100967 * If the \p nodeid is absolute, the first node identifier must be prefixed with
968 * the module name. Then every other identifier either has an explicit module name or
969 * the module name of the previous node is assumed. Examples:
Michal Vasko3edeaf72016-02-11 13:17:43 +0100970 *
971 * /ietf-netconf-monitoring:get-schema/input/identifier
972 * /ietf-interfaces:interfaces/interface/ietf-ip:ipv4/address/ip
973 *
Michal Vasko3547c532016-03-14 09:40:50 +0100974 * If the \p nodeid is relative, \p start is mandatory and is the starting point
975 * for the resolution. The first node identifier does not need a module name.
976 *
Michal Vasko7b54f7e2016-05-03 15:07:31 +0200977 * Predicates on lists are accepted (ignored) in the form of "<key>(=<value>)"
978 * and on leaves/leaf-lists ".(=<value>)".
979 *
Michal Vasko3edeaf72016-02-11 13:17:43 +0100980 * @param[in] ctx Context to work in.
Michal Vasko3547c532016-03-14 09:40:50 +0100981 * @param[in] start Starting node for a relative schema node identifier, in which
982 * case it is mandatory.
983 * @param[in] nodeid JSON schema node identifier.
Michal Vasko3edeaf72016-02-11 13:17:43 +0100984 * @return Resolved schema node or NULL.
985 */
Michal Vasko3547c532016-03-14 09:40:50 +0100986const struct lys_node *ly_ctx_get_node(struct ly_ctx *ctx, const struct lys_node *start, const char *nodeid);
Michal Vasko3edeaf72016-02-11 13:17:43 +0100987
988/**
Radek Krejci3045cf32015-05-28 10:58:52 +0200989 * @brief Free all internal structures of the specified context.
990 *
991 * The function should be used before terminating the application to destroy
992 * and free all structures internally used by libyang. If the caller uses
993 * multiple contexts, the function should be called for each used context.
994 *
995 * All instance data are supposed to be freed before destroying the context.
996 * Data models are destroyed automatically as part of ly_ctx_destroy() call.
997 *
998 * @param[in] ctx libyang context to destroy
Radek Krejcifa0b5e02016-02-04 13:57:03 +0100999 * @param[in] private_destructor Optional destructor function for private objects assigned
1000 * to the nodes via lys_set_private(). If NULL, the private objects are not freed by libyang.
Radek Krejcida04f4a2015-05-21 12:54:09 +02001001 */
Radek Krejcifa0b5e02016-02-04 13:57:03 +01001002void ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lys_node *node, void *priv));
Radek Krejcida04f4a2015-05-21 12:54:09 +02001003
Radek Krejci26715a42015-07-29 14:10:45 +02001004/**@} context */
1005
1006/**
Radek Krejcidef50022016-02-01 16:38:32 +01001007 * @defgroup nodeset Tree nodes set
Radek Krejcidc154432016-01-21 11:10:59 +01001008 * @ingroup datatree
1009 * @ingroup schematree
1010 * @{
1011 *
Radek Krejcidef50022016-02-01 16:38:32 +01001012 * Structure and functions to hold and manipulate with sets of nodes from schema or data trees.
1013 */
1014
1015/**
Radek Krejci8f08df12016-03-21 11:11:30 +01001016 * @brief set array of ::ly_set
1017 * It is kept in union to keep ::ly_set generic for data as well as schema trees
1018 */
1019union ly_set_set {
1020 struct lys_node **s; /**< array of pointers to a ::lys_node objects */
1021 struct lyd_node **d; /**< array of pointers to a ::lyd_node objects */
1022 void **g; /**< dummy array for generic work */
1023};
1024
1025/**
Radek Krejcidc154432016-01-21 11:10:59 +01001026 * @brief Structure to hold a set of (not necessary somehow connected) ::lyd_node or ::lys_node objects.
1027 * Caller is supposed to not mix the type of objects added to the set and according to its knowledge about
1028 * the set content, it is supposed to access the set via the sset, dset or set members of the structure.
1029 *
Radek Krejci09891a22016-06-10 10:59:22 +02001030 * Until ly_set_rm() or ly_set_rm_index() is used, the set keeps the order of the inserted items as they
1031 * were added into the set, so the first added item is on array index 0.
1032 *
Radek Krejcidef50022016-02-01 16:38:32 +01001033 * To free the structure, use ly_set_free() function, to manipulate with the structure, use other
1034 * ly_set_* functions.
Radek Krejcidc154432016-01-21 11:10:59 +01001035 */
1036struct ly_set {
1037 unsigned int size; /**< allocated size of the set array */
1038 unsigned int number; /**< number of elements in (used size of) the set array */
Radek Krejci8f08df12016-03-21 11:11:30 +01001039 union ly_set_set set; /**< set array - union to keep ::ly_set generic for data as well as schema trees */
Radek Krejcidc154432016-01-21 11:10:59 +01001040};
1041
1042/**
Radek Krejci09891a22016-06-10 10:59:22 +02001043 * @brief Option for ly_set_add() to allow duplicities in the ly_set structure so the
1044 * set is not used as a set, but as a list of (container for) items.
1045 */
1046#define LY_SET_OPT_USEASLIST 0x01
1047
1048/**
Radek Krejcidef50022016-02-01 16:38:32 +01001049 * @brief Create and initiate new ::ly_set structure.
Radek Krejcidc154432016-01-21 11:10:59 +01001050 *
Radek Krejcidef50022016-02-01 16:38:32 +01001051 * @return Created ::ly_set structure or NULL in case of error.
Radek Krejcidc154432016-01-21 11:10:59 +01001052 */
1053struct ly_set *ly_set_new(void);
1054
1055/**
Radek Krejcie8c1b572016-07-26 15:09:52 +02001056 * @brief Duplicate the existing set.
1057 *
1058 * @param[in] set Original set to duplicate
1059 * @return Duplication of the original set.
1060 */
1061struct ly_set *ly_set_dup(const struct ly_set *set);
1062
1063/**
Radek Krejcidc154432016-01-21 11:10:59 +01001064 * @brief Add a ::lyd_node or ::lys_node object into the set
1065 *
Radek Krejci29cb50d2016-05-09 16:31:13 +02001066 * Since it is a set, the function checks for duplicity and if the
1067 * node is already in the set, the index of the previously added
1068 * node is returned.
1069 *
Radek Krejcidc154432016-01-21 11:10:59 +01001070 * @param[in] set Set where the \p node will be added.
1071 * @param[in] node The ::lyd_node or ::lys_node object to be added into the \p set;
Radek Krejci09891a22016-06-10 10:59:22 +02001072 * @param[in] options Options to change behavior of the function. Accepted options are:
1073 * - #LY_SET_OPT_USEASLIST - do not check for duplicities
Radek Krejci29cb50d2016-05-09 16:31:13 +02001074 * @return -1 on failure, index of the \p node in the set on success
Radek Krejcidc154432016-01-21 11:10:59 +01001075 */
Radek Krejci09891a22016-06-10 10:59:22 +02001076int ly_set_add(struct ly_set *set, void *node, int options);
Radek Krejcidc154432016-01-21 11:10:59 +01001077
1078/**
Radek Krejci29ed4082016-05-09 14:25:56 +02001079 * @brief Remove all objects from the set, but keep the set container for further use.
1080 *
1081 * @param[in] set Set to clean.
1082 * @return 0 on success
1083 */
1084int ly_set_clean(struct ly_set *set);
1085
1086/**
Radek Krejcidc154432016-01-21 11:10:59 +01001087 * @brief Remove a ::lyd_node or ::lys_node object from the set.
1088 *
1089 * Note that after removing a node from a set, indexes of other nodes in the set can change
1090 * (the last object is placed instead of the removed object).
1091 *
1092 * @param[in] set Set from which the \p node will be removed.
1093 * @param[in] node The ::lyd_node or ::lys_node object to be removed from the \p set;
1094 * @return 0 on success
1095 */
1096int ly_set_rm(struct ly_set *set, void *node);
1097
1098/**
1099 * @brief Remove a ::lyd_node or ::lys_node object from the set index.
1100 *
1101 * Note that after removing a node from a set, indexes of other nodes in the set can change
1102 * (the last object is placed instead of the removed object).
1103 *
1104 * @param[in] set Set from which a node will be removed.
1105 * @param[in] index Index of the ::lyd_node or ::lys_node object in the \p set to be removed from the \p set;
1106 * @return 0 on success
1107 */
1108int ly_set_rm_index(struct ly_set *set, unsigned int index);
1109
1110/**
Radek Krejcidef50022016-02-01 16:38:32 +01001111 * @brief Free the ::ly_set data. Frees only the set structure content, not the referred data.
Radek Krejcidc154432016-01-21 11:10:59 +01001112 *
1113 * @param[in] set The set to be freed.
1114 */
1115void ly_set_free(struct ly_set *set);
1116
Radek Krejcidef50022016-02-01 16:38:32 +01001117/**@} nodeset */
Radek Krejci6140e4e2015-10-09 15:50:55 +02001118
1119/**
Radek Krejci5044be32016-01-18 17:05:51 +01001120 * @defgroup printerflags Printer flags
Radek Krejcidef50022016-02-01 16:38:32 +01001121 * @ingroup datatree
Radek Krejci5044be32016-01-18 17:05:51 +01001122 *
1123 * Validity flags for data nodes.
1124 *
1125 * @{
1126 */
Radek Krejci2537fd32016-09-07 16:22:41 +02001127#define LYP_WITHSIBLINGS 0x01 /**< Flag for printing also the (following) sibling nodes of the data node. */
1128#define LYP_FORMAT 0x02 /**< Flag for formatted output. */
1129#define LYP_KEEPEMPTYCONT 0x04 /**< Preserve empty non-presence containers */
1130#define LYP_WD_MASK 0xF0 /**< Mask for with-defaults modes */
1131#define LYP_WD_EXPLICIT 0x00 /**< Explicit mode - print only data explicitly being present in the data tree.
1132 Note that this is the default value when no WD option is specified. */
1133#define LYP_WD_TRIM 0x10 /**< Do not print the nodes with the value equal to their default value */
1134#define LYP_WD_ALL 0x20 /**< Include implicit default nodes */
1135#define LYP_WD_ALL_TAG 0x40 /**< Same as #LYP_WD_ALL but also adds attribute 'default' with value 'true' to
1136 all nodes that has its default value. The 'default' attribute has namespace:
1137 urn:ietf:params:xml:ns:netconf:default:1.0 and thus the attributes are
1138 printed only when the ietf-netconf-with-defaults module is present in libyang
1139 context. */
1140#define LYP_WD_IMPL_TAG 0x80 /**< Same as LYP_WD_ALL_TAG but the attributes are added only to the nodes that
1141 are not explicitly present in the original data tree despite their
1142 value is equal to their default value. There is the same limitation regarding
1143 the presence of ietf-netconf-with-defaults module in libyang context. */
Radek Krejci5044be32016-01-18 17:05:51 +01001144
1145/**
1146 * @}
1147 */
1148
1149/**
Radek Krejci3045cf32015-05-28 10:58:52 +02001150 * @defgroup logger Logger
1151 * @{
1152 *
1153 * Publicly visible functions and values of the libyang logger. For more
1154 * information, see \ref howtologger.
1155 */
1156
1157/**
1158 * @typedef LY_LOG_LEVEL
1159 * @brief Verbosity levels of the libyang logger.
1160 */
1161typedef enum {
Michal Vasko8f7e8d92016-07-01 11:33:58 +02001162 LY_LLSILENT = -1, /**< Print no messages. */
1163 LY_LLERR = 0, /**< Print only error messages, default value. */
1164 LY_LLWRN, /**< Print error and warning messages. */
1165 LY_LLVRB, /**< Besides errors and warnings, print some other verbose messages. */
1166 LY_LLDBG /**< Print all messages including some development debug messages. */
Radek Krejci3045cf32015-05-28 10:58:52 +02001167} LY_LOG_LEVEL;
1168
1169/**
1170 * @brief Set logger verbosity level.
1171 * @param[in] level Verbosity level.
1172 */
1173void ly_verb(LY_LOG_LEVEL level);
1174
1175/**
Michal Vaskof1d62cf2015-12-07 13:17:11 +01001176 * @brief Set logger callback.
Michal Vasko13661142016-04-11 10:53:53 +02001177 *
1178 * !IMPORTANT! If an error has a specific error-app-tag defined in the model, it will NOT be set
1179 * at the time of calling this callback. It will be set right after, so to retrieve it
1180 * it must be checked afterwards with ly_errapptag().
1181 *
Michal Vaskof1d62cf2015-12-07 13:17:11 +01001182 * @param[in] clb Logging callback.
Radek Krejciadb57612016-02-16 13:34:34 +01001183 * @param[in] path flag to resolve and provide path as the third parameter of the callback function. In case of
1184 * validation and some other errors, it can be useful to get the path to the problematic element. Note,
1185 * that according to the tree type and the specific situation, the path can slightly differs (keys
1186 * presence) or it can be NULL, so consider it as an optional parameter. If the flag is 0, libyang will
1187 * not bother with resolving the path.
Michal Vaskof1d62cf2015-12-07 13:17:11 +01001188 */
Radek Krejciadb57612016-02-16 13:34:34 +01001189void ly_set_log_clb(void (*clb)(LY_LOG_LEVEL level, const char *msg, const char *path), int path);
Michal Vaskof1d62cf2015-12-07 13:17:11 +01001190
1191/**
1192 * @brief Get logger callback.
1193 * @return Logger callback (can be NULL).
1194 */
Radek Krejciadb57612016-02-16 13:34:34 +01001195void (*ly_get_log_clb(void))(LY_LOG_LEVEL, const char *, const char *);
Michal Vaskof1d62cf2015-12-07 13:17:11 +01001196
1197/**
Radek Krejci3045cf32015-05-28 10:58:52 +02001198 * @typedef LY_ERR
Radek Krejci26715a42015-07-29 14:10:45 +02001199 * @brief libyang's error codes available via ly_errno extern variable.
Radek Krejci9b4ca392015-04-10 08:31:27 +02001200 * @ingroup logger
1201 */
1202typedef enum {
Radek Krejciae6817a2015-08-10 14:02:06 +02001203 LY_SUCCESS, /**< no error, not set by functions, included just to complete #LY_ERR enumeration */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001204 LY_EMEM, /**< Memory allocation failure */
1205 LY_ESYS, /**< System call failure */
1206 LY_EINVAL, /**< Invalid value */
1207 LY_EINT, /**< Internal error */
1208 LY_EVALID /**< Validation failure */
Radek Krejci3045cf32015-05-28 10:58:52 +02001209} LY_ERR;
Radek Krejci7d9f46a2016-01-29 13:53:18 +01001210
Radek Krejci26715a42015-07-29 14:10:45 +02001211/**
Michal Vaskof5035ce2016-03-11 10:21:31 +01001212 * @typedef LY_VECODE
1213 * @brief libyang's codes of validation error. Whenever ly_errno is set to LY_EVALID, the ly_vecode is also set
1214 * to the appropriate LY_VECODE value.
Radek Krejcia37b39c2016-03-09 16:38:18 +01001215 * @ingroup logger
1216 */
1217typedef enum {
Michal Vaskof5035ce2016-03-11 10:21:31 +01001218 LYVE_SUCCESS = 0, /**< no error */
Radek Krejcia37b39c2016-03-09 16:38:18 +01001219
Michal Vaskof5035ce2016-03-11 10:21:31 +01001220 LYVE_XML_MISS, /**< missing XML object */
1221 LYVE_XML_INVAL, /**< invalid XML object */
1222 LYVE_XML_INCHAR, /**< invalid XML character */
Radek Krejcia37b39c2016-03-09 16:38:18 +01001223
Michal Vaskof5035ce2016-03-11 10:21:31 +01001224 LYVE_EOF, /**< unexpected end of input data */
1225 LYVE_INSTMT, /**< invalid statement (schema) */
1226 /* */
Michal Vaskoca7cbc42016-07-01 11:36:53 +02001227 LYVE_INPAR, /**< invalid (in)direct parent (schema) */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001228 LYVE_INID, /**< invalid identifier (schema) */
1229 LYVE_INDATE, /**< invalid date format */
1230 LYVE_INARG, /**< invalid value of a statement argument (schema) */
1231 LYVE_MISSSTMT, /**< missing required statement (schema) */
1232 /* */
1233 LYVE_MISSARG, /**< missing required statement argument (schema) */
1234 LYVE_TOOMANY, /**< too many instances of some object */
1235 LYVE_DUPID, /**< duplicated identifier (schema) */
1236 LYVE_DUPLEAFLIST, /**< multiple instances of leaf-list */
1237 LYVE_DUPLIST, /**< multiple instances of list */
Michal Vaskoa540df22016-04-11 16:14:35 +02001238 LYVE_NOUNIQ, /**< unique leaves match on 2 list instances (data) */
Radek Krejcie663e012016-08-01 17:12:34 +02001239 LYVE_ENUM_INVAL, /**< invalid enum value (schema) */
1240 LYVE_ENUM_INNAME, /**< invalid enum name (schema) */
1241 /* */
1242 /* */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001243 LYVE_ENUM_WS, /**< enum name with leading/trailing whitespaces (schema) */
Radek Krejcie663e012016-08-01 17:12:34 +02001244 LYVE_BITS_INVAL, /**< invalid bits value (schema) */
1245 LYVE_BITS_INNAME, /**< invalid bits name (schema) */
1246 /* */
1247 /* */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001248 LYVE_INMOD, /**< invalid module name */
1249 /* */
1250 LYVE_KEY_NLEAF, /**< list key is not a leaf (schema) */
1251 LYVE_KEY_TYPE, /**< invalid list key type (schema) */
1252 LYVE_KEY_CONFIG, /**< key config value differs from the list config value */
1253 LYVE_KEY_MISS, /**< list key not found (schema) */
1254 LYVE_KEY_DUP, /**< duplicated key identifier (schema) */
1255 LYVE_INREGEX, /**< invalid regular expression (schema) */
1256 LYVE_INRESOLV, /**< no resolvents found (schema) */
1257 LYVE_INSTATUS, /**< invalid derivation because of status (schema) */
Radek Krejcid8fb03c2016-06-13 15:52:22 +02001258 LYVE_CIRC_LEAFREFS,/**< circular chain of leafrefs detected (schema) */
Radek Krejcie8c1b572016-07-26 15:09:52 +02001259 LYVE_CIRC_FEATURES,/**< circular chain of features detected (schema) */
Radek Krejci151b8cc2016-06-22 10:14:21 +02001260 LYVE_CIRC_IMPORTS, /**< circular chain of imports detected (schema) */
1261 LYVE_CIRC_INCLUDES,/**< circular chain of includes detected (schema) */
Michal Vasko88de3e42016-06-29 11:05:32 +02001262 LYVE_INVER, /**< non-matching YANG versions of module and its submodules (schema) */
Radek Krejcia37b39c2016-03-09 16:38:18 +01001263
Michal Vaskof5035ce2016-03-11 10:21:31 +01001264 LYVE_OBSDATA, /**< obsolete data instantiation (data) */
1265 /* */
1266 LYVE_NORESOLV, /**< no resolvents found for an expression (data) */
1267 LYVE_INELEM, /**< invalid element (data) */
1268 /* */
1269 LYVE_MISSELEM, /**< missing required element (data) */
1270 LYVE_INVAL, /**< invalid value of an element (data) */
Radek Krejci9bfcbde2016-04-07 16:30:15 +02001271 LYVE_INVALATTR, /**< invalid attribute value (data) */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001272 LYVE_INATTR, /**< invalid attribute in an element (data) */
1273 LYVE_MISSATTR, /**< missing attribute in an element (data) */
Michal Vasko6ac68282016-04-11 10:56:47 +02001274 LYVE_NOCONSTR, /**< value out of range/length/pattern (data) */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001275 LYVE_INCHAR, /**< unexpected characters (data) */
1276 LYVE_INPRED, /**< predicate resolution fail (data) */
1277 LYVE_MCASEDATA, /**< data for more cases of a choice (data) */
Michal Vasko6ac68282016-04-11 10:56:47 +02001278 LYVE_NOMUST, /**< unsatisfied must condition (data) */
1279 LYVE_NOWHEN, /**< unsatisfied when condition (data) */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001280 LYVE_INORDER, /**< invalid order of elements (data) */
Radek Krejci03b71f72016-03-16 11:10:09 +01001281 LYVE_INWHEN, /**< irresolvable when condition (data) */
Michal Vasko6ac68282016-04-11 10:56:47 +02001282 LYVE_NOMIN, /**< min-elements constraint not honored (data) */
1283 LYVE_NOMAX, /**< max-elements constraint not honored (data) */
1284 LYVE_NOREQINS, /**< required instance does not exits (data) */
1285 LYVE_NOLEAFREF, /**< leaf pointed to by leafref does not exist (data) */
1286 LYVE_NOMANDCHOICE, /**< no mandatory choice case branch exists (data) */
Radek Krejcia37b39c2016-03-09 16:38:18 +01001287
Michal Vasko5b3492c2016-07-20 09:37:40 +02001288 LYVE_XPATH_INSNODE,/**< schema node not found */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001289 LYVE_XPATH_INTOK, /**< unexpected XPath token */
1290 LYVE_XPATH_EOF, /**< unexpected end of an XPath expression */
1291 LYVE_XPATH_INOP, /**< invalid XPath operation operands */
1292 /* */
1293 LYVE_XPATH_INCTX, /**< invalid XPath context type */
1294 LYVE_XPATH_INARGCOUNT, /**< invalid number of arguments for an XPath function */
Michal Vasko6fae1362016-03-11 15:10:00 +01001295 LYVE_XPATH_INARGTYPE, /**< invalid type of arguments for an XPath function */
Michal Vasko11f8da72016-08-24 15:54:57 +02001296 LYVE_XPATH_DUMMY, /**< invaid use of the XPath dummy node */
Michal Vasko6fae1362016-03-11 15:10:00 +01001297
1298 LYVE_PATH_INCHAR, /**< invalid characters (path) */
Michal Vaskoe733d682016-03-14 09:08:27 +01001299 LYVE_PATH_INMOD, /**< invalid module name (path) */
1300 LYVE_PATH_MISSMOD, /**< missing module name (path) */
Michal Vasko6fae1362016-03-11 15:10:00 +01001301 LYVE_PATH_INNODE, /**< invalid node name (path) */
Michal Vasko6fae1362016-03-11 15:10:00 +01001302 LYVE_PATH_INKEY, /**< invalid key name (path) */
1303 LYVE_PATH_MISSKEY, /**< missing some list keys (path) */
1304 LYVE_PATH_EXISTS, /**< target node already exists (path) */
1305 LYVE_PATH_MISSPAR, /**< some parent of the target node is missing (path) */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001306} LY_VECODE;
Radek Krejcia37b39c2016-03-09 16:38:18 +01001307
1308/**
Radek Krejci7d9f46a2016-01-29 13:53:18 +01001309 * @cond INTERNAL
Radek Krejci386714d2016-02-15 10:24:30 +01001310 * Get address of (thread-specific) `ly_errno' variable.
Radek Krejci26715a42015-07-29 14:10:45 +02001311 */
Radek Krejci7d9f46a2016-01-29 13:53:18 +01001312LY_ERR *ly_errno_location(void);
1313
Michal Vaskof5035ce2016-03-11 10:21:31 +01001314LY_VECODE *ly_vecode_location(void);
Radek Krejcia37b39c2016-03-09 16:38:18 +01001315
Radek Krejci7d9f46a2016-01-29 13:53:18 +01001316/**
1317 * @endcond INTERNAL
Radek Krejcidef50022016-02-01 16:38:32 +01001318 * @brief libyang specific (thread-safe) errno (see #LY_ERR for the list of possible values and their meaning).
Radek Krejci7d9f46a2016-01-29 13:53:18 +01001319 */
1320#define ly_errno (*ly_errno_location())
Radek Krejci9b4ca392015-04-10 08:31:27 +02001321
Radek Krejci386714d2016-02-15 10:24:30 +01001322/**
Radek Krejcia37b39c2016-03-09 16:38:18 +01001323 * @brief libyang's validation error code
1324 */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001325#define ly_vecode (*ly_vecode_location())
Radek Krejcia37b39c2016-03-09 16:38:18 +01001326
1327/**
Michal Vasko13661142016-04-11 10:53:53 +02001328 * @brief Get the last (thread-specific) error message. If the coresponding module defined
1329 * a specific error message, it will be used instead the default one.
Radek Krejci6e8fc0b2016-02-16 14:33:37 +01001330 *
1331 * Sometimes, the error message is extended with path of the element where is the problem.
1332 * The path is available via ly_errpath().
1333 *
Radek Krejcib50551c2016-04-19 09:15:38 +02001334 * @return Text of the last error message, empty string if there is no error.
Radek Krejci386714d2016-02-15 10:24:30 +01001335 */
1336const char *ly_errmsg(void);
1337
Radek Krejci6e8fc0b2016-02-16 14:33:37 +01001338/**
1339 * @brief Get the last (thread-specific) path of the element where was an error.
1340 *
1341 * The path always corresponds to the error message available via ly_errmsg(), so
1342 * whenever a subsequent error message is printed, the path is erased or rewritten.
Radek Krejci3cc10962016-04-13 15:03:27 +02001343 * The path reflects the type of the processed tree - data path for data tree functions
1344 * and schema path in case of schema tree functions. In case of processing YIN schema
1345 * or XML data, the path can be just XML path. In such a case, the corresponding
1346 * ly_vecode (value 1-3) is set.
Radek Krejci6e8fc0b2016-02-16 14:33:37 +01001347 *
Radek Krejcib50551c2016-04-19 09:15:38 +02001348 * @return Path of the error element, empty string if error path does not apply to the last error.
Radek Krejci6e8fc0b2016-02-16 14:33:37 +01001349 */
1350const char *ly_errpath(void);
1351
Michal Vasko13661142016-04-11 10:53:53 +02001352/**
1353 * @brief Get the last (thread-specific) error-app-tag if there was a specific one defined
1354 * in the module for the last error.
1355 *
1356 * The app-tag always corresponds to the error message available via ly_errmsg(), so
1357 * whenever a subsequent error message is printed, the app-tag is erased or rewritten.
1358 *
Radek Krejcib50551c2016-04-19 09:15:38 +02001359 * @return Error-app-tag of the last error, empty string if the error-app-tag does not apply to the last error.
Michal Vasko13661142016-04-11 10:53:53 +02001360 */
1361const char *ly_errapptag(void);
1362
Radek Krejci3045cf32015-05-28 10:58:52 +02001363/**@} logger */
Radek Krejci9b4ca392015-04-10 08:31:27 +02001364
Radek Krejci39d8d0d2015-08-17 13:42:45 +02001365#ifdef __cplusplus
1366}
1367#endif
1368
Radek Krejci9b4ca392015-04-10 08:31:27 +02001369#endif /* LY_LIBYANG_H_ */