blob: 9eada1928b4046f666b518ccff5a2e80acac18d1 [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.
40 * - Parsing, validating and printing instance data in JSON format.
41 * - Manipulation with the instance data.
Radek Krejcib4e72e52016-04-13 15:10:51 +020042 * - Support for adding default values into instance data.
Radek Krejcidef50022016-02-01 16:38:32 +010043 *
Radek Krejci8b13fc02016-04-18 13:08:04 +020044 * The current implementation covers YANG 1.0 specified in [RFC 6020](https://tools.ietf.org/html/rfc6020).
45 * Future plans include support for [YANG 1.1](https://tools.ietf.org/html/draft-ietf-netmod-rfc6020bis-11).
46 *
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
93 * can be later changed via ly_ctx_set_searchdir() function. Before exploring the specified search
94 * dir, libyang tries to get imported and included schemas from the current working directory first.
Radek Krejcidef50022016-02-01 16:38:32 +010095 * This automatic searching can be completely avoided when the caller sets module searching callback
96 * (#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 Krejcif6ab2cd2016-04-18 17:15:26 +0200100 * search in working directory and in the searchpath is used.
101 *
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 Krejcif647e612015-07-30 11:36:07 +0200105 * Context can hold multiple revisons of the same schema.
Radek Krejci26715a42015-07-29 14:10:45 +0200106 *
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200107 * Context holds all modules and their submodules internally and they can appear in multiple revisions. To get
108 * a specific module or submodule, use ly_ctx_get_module() and ly_ctx_get_submodule(). There are some additional
109 * 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 +0200110 * submodules in the context, it is advised to iterate over them using ly_ctx_get_module_iter(), it is
111 * the most efficient way. Alternatively, the ly_ctx_info() function can be used to get complex information
112 * about the schemas in the context in the form of data tree defined by
Radek Krejcibd9e8d22016-02-03 14:11:48 +0100113 * <a href="https://tools.ietf.org/html/draft-ietf-netconf-yang-library-04">ietf-yang-library</a> schema.
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200114 * To get a specific node defined in a module in the context, ly_ctx_get_node() and ly_ctx_get_node2() can be used.
115 * They differ in parameters used to identify the schema node.
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200116 *
117 * Modules held by a context cannot be removed one after one. The only way how to \em change modules in the
118 * context is to create a new context and remove the old one. To remove a context, there is ly_ctx_destroy()
119 * function.
120 *
Radek Krejcidef50022016-02-01 16:38:32 +0100121 * - @subpage howtocontextdict
122 *
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200123 * \note API for this group of functions is available in the [context module](@ref context).
124 *
Radek Krejcidef50022016-02-01 16:38:32 +0100125 * Functions List
126 * --------------
127 * - ly_ctx_new()
128 * - ly_ctx_set_searchdir()
129 * - ly_ctx_get_searchdir()
130 * - ly_ctx_set_module_clb()
131 * - ly_ctx_get_module_clb()
132 * - ly_ctx_load_module()
133 * - ly_ctx_info()
Michal Vaskod7957c02016-04-01 10:27:26 +0200134 * - ly_ctx_get_module_iter()
Radek Krejcidef50022016-02-01 16:38:32 +0100135 * - ly_ctx_get_module()
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200136 * - ly_ctx_get_module_older()
Radek Krejcidef50022016-02-01 16:38:32 +0100137 * - ly_ctx_get_module_by_ns()
Radek Krejcidef50022016-02-01 16:38:32 +0100138 * - ly_ctx_get_submodule()
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200139 * - ly_ctx_get_submodule2()
Michal Vasko3edeaf72016-02-11 13:17:43 +0100140 * - ly_ctx_get_node()
Michal Vasko9fd98e22016-04-07 15:44:19 +0200141 * - ly_ctx_get_node2()
Radek Krejcidef50022016-02-01 16:38:32 +0100142 * - ly_ctx_destroy()
143 */
144
145/**
146 * @page howtocontextdict Context Dictionary
147 *
148 * Context includes dictionary to store strings more effectively. The most of strings repeats quite often in schema
149 * as well as data trees. Therefore, instead of allocating those strings each time they appear, libyang stores them
150 * as records in the dictionary. The basic API to the context dictionary is public, so even a caller application can
151 * use the dictionary.
152 *
153 * To insert a string into the dictionary, caller can use lydict_insert() (adding a constant string) or
154 * lydict_insert_zc() (for dynamically allocated strings that won't be used by the caller after its insertion into
155 * the dictionary). Both functions return the pointer to the inserted string in the dictionary record.
156 *
157 * To remove (reference of the) string from the context dictionary, lydict_remove() is supposed to be used.
158 *
159 * \note Incorrect usage of the dictionary can break libyang functionality.
160 *
161 * \note API for this group of functions is described in the [XML Parser module](@ref dict).
162 *
163 * Functions List
164 * --------------
165 * - lydict_insert()
166 * - lydict_insert_zc()
167 * - lydict_remove()
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200168 */
169
170/**
171 * @page howtoschemas Schemas
172 *
Radek Krejcidef50022016-02-01 16:38:32 +0100173 *
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200174 * Schema is an internal libyang's representation of a YANG data model. Each schema is connected with
Radek Krejcidef50022016-02-01 16:38:32 +0100175 * its [context](@ref howtocontext) and loaded using [parser functions](@ref howtoschemasparsers). It means, that
176 * the schema cannot be created (nor changed) programmatically. In libyang, schemas are used only to
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200177 * access data model definitions.
178 *
Radek Krejcidef50022016-02-01 16:38:32 +0100179 * Schema tree nodes are able to hold private objects (via a pointer to a structure, function, variable, ...) used by
180 * a caller application. Such an object can be assigned to a specific node using lys_set_private() function.
181 * Note that the object is not freed by libyang when the context is being destroyed. So the caller is responsible
182 * 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 +0200183 * appropriate schema nodes where the object was previously set. This can be automated via destructor function
184 * to free these private objects. The destructor is passed to the ly_ctx_destroy() function. On the other hand,
185 * freeing the object while the schema tree is still in use can lead to a segmentation fault.
Radek Krejcidef50022016-02-01 16:38:32 +0100186 *
187 * - @subpage howtoschemasparsers
188 * - @subpage howtoschemasfeatures
189 * - @subpage howtoschemasprinters
190 *
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200191 * \note There are many functions to access information from the schema trees. Details are available in
192 * the [Schema Tree module](@ref schematree).
193 *
Radek Krejcidef50022016-02-01 16:38:32 +0100194 * Functions List (not assigned to above subsections)
195 * --------------------------------------------------
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200196 * - lys_getnext()
Radek Krejcidef50022016-02-01 16:38:32 +0100197 * - lys_parent()
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200198 * - lys_module()
199 * - lys_node_module()
Radek Krejcidef50022016-02-01 16:38:32 +0100200 * - lys_set_private()
201 */
202
203/**
204 * @page howtoschemasparsers Parsing Schemas
205 *
206 * Schema parser allows to read schema from a specific format. libyang supports the following schema formats:
207 *
208 * - YANG
209 *
210 * Basic YANG schemas format described in [RFC 6020](http://tools.ietf.org/html/rfc6020).
211 * Currently, only YANG 1.0 is supported.
212 *
Radek Krejcidef50022016-02-01 16:38:32 +0100213 * - YIN
214 *
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200215 * Alternative XML-based format to YANG - YANG Independent Notation. The details can be found in
Radek Krejcidef50022016-02-01 16:38:32 +0100216 * [RFC 6020](http://tools.ietf.org/html/rfc6020#section-11).
217 *
218 * When the [context](@ref howtocontext) is created, it already contains the following three schemas, which
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200219 * are implemented internally by libyang:
Radek Krejcidef50022016-02-01 16:38:32 +0100220 * - ietf-inet-types@2013-07-15
221 * - ietf-yang-types@2013-07-15
222 * - ietf-yang-library@2015-07-03
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200223 * - yang@2016-02-11
224 *
225 * The last one is libyang's internal module to provide namespace for various YANG attributes defined in RFC 6020
226 * (such as `insert` attribute for edit-config's data).
Radek Krejcidef50022016-02-01 16:38:32 +0100227 *
228 * Other schemas can be added to the context manually as described in [context page](@ref howtocontext) by the functions
229 * listed below. Besides the schema parser functions, it is also possible to use ly_ctx_load_module() which tries to
230 * find the required schema automatically - using #ly_module_clb or automatic search in working directory and in the
231 * context's searchpath.
232 *
233 * Functions List
234 * --------------
Radek Krejci722b0072016-02-01 17:09:45 +0100235 * - lys_parse_mem()
Radek Krejcidef50022016-02-01 16:38:32 +0100236 * - lys_parse_fd()
237 * - lys_parse_path()
238 * - ly_ctx_set_module_clb()
239 * - ly_ctx_load_module()
240 */
241
242/**
243 * @page howtoschemasfeatures YANG Features Manipulation
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200244 *
245 * The group of functions prefixed by \b lys_features_ are used to access and manipulate with the schema's
246 * features.
247 *
248 * The first two functions are used to access information about the features in the schema.
249 * lys_features_list() provides list of all features defined in the specific schema and its
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200250 * submodules. Optionally, it can also provide information about the state of all features.
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200251 * Alternatively, caller can use lys_features_state() function to get state of one specific
252 * feature.
253 *
254 * The remaining two functions, lys_features_enable() and lys_features_disable(), are used
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200255 * to enable and disable the specific feature (or all via the '`*`' value). By default, when the module
Radek Krejcidef50022016-02-01 16:38:32 +0100256 * is loaded by libyang parser, all features are disabled.
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200257 *
Radek Krejcidef50022016-02-01 16:38:32 +0100258 * 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 +0200259 *
Radek Krejcidef50022016-02-01 16:38:32 +0100260 * Note, that the feature's state can affect some of the output formats (e.g. Tree format).
261 *
262 * Functions List
263 * --------------
264 * - lys_features_list()
265 * - lys_features_enable()
266 * - lys_features_disable()
267 * - lys_features_state()
268 * - lys_is_disabled()
269 */
270
271/**
272 * @page howtoschemasprinters Printing Schemas
273 *
274 * Schema printers allows to serialize internal representation of a schema module in a specific format. libyang
275 * supports the following schema formats for printing:
276 *
277 * - YANG
278 *
279 * Basic YANG schemas format described in [RFC 6020](http://tools.ietf.org/html/rfc6020).
280 * Currently, only YANG 1.0 is supported.
281 *
282 * - YIN
283 *
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200284 * Alternative XML-based format to YANG - YANG Independent Notation. The details can be found in
Radek Krejcidef50022016-02-01 16:38:32 +0100285 * [RFC 6020](http://tools.ietf.org/html/rfc6020#section-11).
286 *
Radek Krejcidef50022016-02-01 16:38:32 +0100287 * - Tree
288 *
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200289 * Simple tree structure of the module where each node is printed as:
290 *
291 * <status> <flags> <name> <opts> <type> <if-features>
292 *
293 * - `<status>` is one of:
294 * - `+` for current
295 * - `x` for deprecated
296 * - `o` for obsolete
297 *
298 * - `<flags>` is one of:
299 * - `rw` for configuration data
300 * - `ro` for status data
301 * - `-x` for RPCs
302 * - `-n` for Notification
303 *
304 * - `<name>` is the name of the node
305 * - `(<name>)` means that the node is a choice node
306 * - `:(<name>)` means that the node is a case node
307 * - if the node is augmented into the tree from another module, it is printed with the module name as
308 * `<module-name>:<name>`.
309 *
310 * - `<opts>` is one of:
311 * - `?` for an optional leaf or choice
312 * - `!` for a presence container
313 * - `*` for a leaf-list or list
314 * - `[<keys>]` for a list's keys
315 *
316 * - `<type>` is the name of the type for leafs and leaf-lists
317 * - if there is a default value defined, it is printed within angle brackets `<default-value>`
318 * - if the type is a leafref, the type is printed as -> TARGET`
319 *
320 * - `<if-features>` is the list of features this node depends on, printed within curly brackets and
321 * a question mark `{...}?`
322 *
Radek Krejcidef50022016-02-01 16:38:32 +0100323 *
324 * - Info
325 *
326 * Detailed information about the specific node in the schema tree.
327 * It allows to print information not only about a specific module, but also about its specific part:
328 *
329 * - absolute-schema-nodeid
330 *
331 * e.g. \a `/modules/module-set-id` in \a `ietf-yang-library` module
332 *
333 * - <b>typedef/</b>typedef-name
334 *
335 * e.g. \a `typedef/revision-identifier` in \a `ietf-yang-library` module
336 *
337 * - <b>feature/</b>feature-name
338 *
339 * e.g. \a `feature/ssh` in \a `ietf-netconf-server` module
340 *
341 * - <b>grouping/</b>grouping-name/descendant-schema-nodeid
342 *
343 * e.g. \a `grouping/module` or \a `grouping/module/module/submodules` in \a `ietf-yang-library` module
344 *
345 * - <b>type/</b>leaf-or-leaflist
346 *
347 * e.g. \a `type/modules/module-set-id` in \a `ietf-yang-library` module
348 *
349 * Printer functions allow to print to the different outputs including a callback function which allows caller
350 * to have a full control of the output data - libyang passes to the callback a private argument (some internal
351 * data provided by a caller of lys_print_clb()), string buffer and number of characters to print. Note that the
352 * callback is supposed to be called multiple times during the lys_print_clb() execution.
353 *
354 * Functions List
355 * --------------
356 * - lys_print_mem()
357 * - lys_print_fd()
358 * - lys_print_file()
359 * - lys_print_clb()
Radek Krejcid9ba3e32015-07-30 15:08:18 +0200360 */
361
362/**
363 * @page howtodata Data Instances
Radek Krejci26715a42015-07-29 14:10:45 +0200364 *
Radek Krejcidef50022016-02-01 16:38:32 +0100365 * All data nodes in data trees are connected with their schema node - libyang is not able to represent data of an
366 * unknown schema.
367 *
368 * By default, the represented data are supposed to represent a full YANG datastore content. So if a schema declares
369 * some mandatory nodes, despite configuration or status, the data are supposed to be present in the data tree being
370 * loaded or validated. However, it is possible to specify other kinds of data (see @ref parseroptions) allowing some
371 * exceptions to the validation process.
372 *
373 * Data validation is performed implicitly to the input data processed by the parser (\b lyd_parse_*() functions) and
374 * on demand via the lyd_validate() function. The lyd_validate() is supposed to be used when a (complex or simple)
375 * change is done on the data tree (via a combination of \b lyd_change_*(), \b lyd_insert*(), \b lyd_new*(),
376 * lyd_unlink() and lyd_free() functions).
377 *
378 * - @subpage howtodataparsers
379 * - @subpage howtodatamanipulators
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200380 * - @subpage howtodatawd
Radek Krejcidef50022016-02-01 16:38:32 +0100381 * - @subpage howtodataprinters
382 *
383 * \note API for this group of functions is described in the [Data Instances module](@ref datatree).
384 *
385 * Functions List (not assigned to above subsections)
386 * --------------------------------------------------
387 * - lyd_get_node()
Michal Vasko105cef12016-02-04 12:06:26 +0100388 * - lyd_get_node2()
Radek Krejcidef50022016-02-01 16:38:32 +0100389 */
390
391/**
392 * @page howtodataparsers Parsing Data
393 *
394 * Data parser allows to read instances from a specific format. libyang supports the following data formats:
395 *
396 * - XML
397 *
398 * Original data format used in NETCONF protocol. XML mapping is part of the YANG specification
399 * ([RFC 6020](http://tools.ietf.org/html/rfc6020)).
400 *
401 * - JSON
402 *
403 * The alternative data format available in RESTCONF protocol. Specification of JSON encoding of data modeled by YANG
404 * can be found in [this draft](https://tools.ietf.org/html/draft-ietf-netmod-yang-json-05).
405 *
406 * Besides the format of input data, the parser functions accepts additional [options](@ref parseroptions) to specify
407 * how the input data should be processed.
408 *
409 * In contrast to the schema parser, data parser also accepts empty input data if such an empty data tree is valid
410 * according to the schemas in the libyang context.
411 *
412 * In case of XML input data, there is one additional way to parse input data. Besides parsing the data from a string
413 * in memory or a file, caller is able to build an XML tree using [libyang XML parser](@ref howtoxml) and then use
414 * this tree (or a part of it) as input to the lyd_parse_xml() function.
415 *
416 * Functions List
417 * --------------
Radek Krejci722b0072016-02-01 17:09:45 +0100418 * - lyd_parse_mem()
Radek Krejcidef50022016-02-01 16:38:32 +0100419 * - lyd_parse_fd()
420 * - lyd_parse_path()
421 * - lyd_parse_xml()
422 */
423
424/**
425 * @page howtodatamanipulators Manipulating Data
426 *
427 * There are many functions to create or modify an existing data tree. You can add new nodes, reconnect nodes from
428 * one tree to another (or e.g. from one list instance to another) or remove nodes. The functions doesn't allow you
429 * to put a node to a wrong place (by checking the module), but not all validation checks can be made directly
430 * (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 +0100431 * there is lyd_validate() function supposed to be called to make sure that the current data tree is valid. If
432 * working with RPCs, they are invalid also in case the data nodes are not ordered according to the schema, which
433 * you can fix easily with lyd_schema_sort(). Note, that not performing validation after some data tree changes
434 * can cause failure of various libyang functions later.
Radek Krejcidef50022016-02-01 16:38:32 +0100435 *
Michal Vasko0f14ba62016-03-21 15:38:11 +0100436 * Creating data is generally possible in two ways, they can be combined. You can add nodes one-by-one based on
Michal Vasko0ba46152016-05-11 14:16:55 +0200437 * the node name and/or its parent (lyd_new(), lyd_new_anyxml_*(), lyd_new_leaf(), and their output variants) or
Michal Vasko58f74f12016-03-24 13:26:06 +0100438 * address the nodes using a simple XPath addressing (lyd_new_path()). The latter enables to create a whole path
439 * of nodes, requires less information about the modified data, and is generally simpler to use. The path format
440 * specifics can be found [here](@ref howtoxpath).
Michal Vasko0f14ba62016-03-21 15:38:11 +0100441 *
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200442 * Working with two data subtrees can also be preformed two ways. Usually, you should use lyd_insert*() functions.
Michal Vasko45fb2822016-04-18 13:32:17 +0200443 * But they always work with a single subtree and it must be placed on an exact and correct location in the other
444 * tree. If using lyd_merge(), this information is learnt internally and duplicities (that would invalidate
445 * the final data tree) are filtered out at the cost of somewhat reduced effectivity.
446 *
Radek Krejcidef50022016-02-01 16:38:32 +0100447 * Also remember, that when you are creating/inserting a node, all the objects in that operation must belong to the
448 * same context.
449 *
450 * Modifying the single data tree in multiple threads is not safe.
451 *
452 * Functions List
453 * --------------
454 * - lyd_dup()
455 * - lyd_change_leaf()
456 * - lyd_insert()
457 * - lyd_insert_before()
458 * - lyd_insert_after()
459 * - lyd_insert_attr()
Michal Vasko45fb2822016-04-18 13:32:17 +0200460 * - lyd_merge()
Radek Krejcidef50022016-02-01 16:38:32 +0100461 * - lyd_new()
Michal Vaskof748dbc2016-04-05 11:27:47 +0200462 * - lyd_new_anyxml_str()
463 * - lyd_new_anyxml_xml()
Radek Krejcidef50022016-02-01 16:38:32 +0100464 * - lyd_new_leaf()
Michal Vaskof5299282016-03-16 13:32:02 +0100465 * - lyd_new_path()
Michal Vasko0ba46152016-05-11 14:16:55 +0200466 * - lyd_new_output()
467 * - lyd_new_output_anyxml_str()
468 * - lyd_new_output_anyxml_xml()
469 * - lyd_new_output_leaf()
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200470 * - lyd_schema_sort()
Radek Krejcidef50022016-02-01 16:38:32 +0100471 * - lyd_unlink()
472 * - lyd_free()
473 * - lyd_free_attr()
474 * - lyd_free_withsiblings()
475 * - lyd_validate()
476 */
477
478/**
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200479 * @page howtodatawd Default Values
480 *
481 * libyang provide support for work with default values as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243).
482 * This document defines 4 modes for adding/removing default nodes to/from a data tree, libyang adds the fifth mode:
483 * - \b explicit - Only the explicitly set configuration data. But in the case of status data, missing default
484 * data are added into the tree. In libyang, this mode is represented by #LYD_WD_EXPLICIT option.
485 * - \b trim - Data nodes containing the schema default value are removed. This mode is applied using #LYD_WD_TRIM option.
486 * - \b report-all - All the missing default data are added into the data tree. This mode is represented by
487 * #LYD_WD_ALL option.
488 * - \b report-all-tagged - In this case, all the missing default data are added as in case of the `report-all` mode,
489 * but additionally all the nodes (existing as well as added) containing the schema default value
490 * are tagged (see the note below). libyang uses #LYD_WD_ALL_TAG option for this mode.
491 * - \b report-implicit-tagged - The last mode is similar to the previous one, except only the added nodes are tagged.
492 * This is the libyang's extension and it is represented by #LYD_WD_IMPL_TAG option.
493 *
494 * In the data nodes, the tag is represented as set ::lyd_node's `dflt` member. However, when the data tree is printed,
495 * the tag is automatically printed as XML/JSON attribute as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243).
496 * This conversion is done only if the context includes the ietf-netconf-with-defaults schema. Otherwise, both
497 * #LYD_WD_ALL_TAG and #LYD_WD_IMPL_TAG have the same result as #LYD_WD_ALL.
498 *
499 * The base function for with-defaults capability is lyd_wd_add(), which modifies the data tree according to the
500 * required with-defaults mode. However, the with-defaults modes can be applied directly by the data parser
501 * functions and by lyd_validate().
502 *
503 * With the lyd_wd_cleanup(), caller is able to remove all the data nodes marked with the defaults tag (set via
504 * #LYD_WD_ALL_TAG or #LYD_WD_IMPL_TAG).
505 *
506 * Functions List
507 * --------------
508 * - lyd_wd_add()
509 * - lyd_wd_cleanup()
510 *
511 * - lyd_parse_mem()
512 * - lyd_parse_fd()
513 * - lyd_parse_path()
514 * - lyd_parse_xml()
515 * - lyd_validate()
516 */
517
518/**
Radek Krejcidef50022016-02-01 16:38:32 +0100519 * @page howtodataprinters Printing Data
520 *
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200521 * Data printers allows to serialize internal representation of a data tree in a specific format. libyang
522 * supports the following data formats for printing:
Radek Krejcidef50022016-02-01 16:38:32 +0100523 *
524 * - XML
525 *
526 * Basic format as specified in rules of mapping YANG modeled data to XML in
527 * [RFC 6020](http://tools.ietf.org/html/rfc6020). It is possible to specify if
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200528 * the indentation (formatting) will be used (by #LYP_FORMAT @ref printerflags "printer option").
Radek Krejcidef50022016-02-01 16:38:32 +0100529 *
530 * - JSON
531 *
532 * The alternative data format available in RESTCONF protocol. Specification of JSON encoding of data modeled by YANG
Radek Krejcif6ab2cd2016-04-18 17:15:26 +0200533 * can be found in [this draft](https://tools.ietf.org/html/draft-ietf-netmod-yang-json-05).It is possible to specify
534 * if the indentation (formatting) will be used (by #LYP_FORMAT @ref printerflags "printer option").
Radek Krejcidef50022016-02-01 16:38:32 +0100535 *
536 * Printer functions allow to print to the different outputs including a callback function which allows caller
537 * to have a full control of the output data - libyang passes to the callback a private argument (some internal
538 * data provided by a caller of lyd_print_clb()), string buffer and number of characters to print. Note that the
539 * callback is supposed to be called multiple times during the lyd_print_clb() execution.
540 *
541 * Functions List
542 * --------------
543 * - lyd_print_mem()
544 * - lyd_print_fd()
545 * - lyd_print_file()
546 * - lyd_print_clb()
547 */
548
549/**
Radek Krejcib50551c2016-04-19 09:15:38 +0200550 * @page howtoxpath XPath Addressing
551 *
552 * Internally, XPath evaluation is performed on \b when and \b must conditions in the schema. For that almost
553 * a full XPath 1.0 evaluator was implemented. This XPath implementation is available on data trees by calling
554 * lyd_get_node() except that only node sets are returned. This XPath conforms to the YANG specification
Michal Vasko8e627692016-04-19 12:15:47 +0200555 * (RFC 6020 section 6.4). Some useful examples:
556 *
Michal Vaskoebea7012016-04-19 14:15:22 +0200557 * - get all top-level nodes of the __module-name__
558 *
559 * /module-name:*
560 *
561 * - get all the descendants of __container__ (excluding __container__)
562 *
563 * /module-name:container//\asterisk
564 *
565 * - 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__)
566 *
567 * /module-name:container/list[key1='1'][key2='2']
568 *
569 * - get __leaf-list__ instance with the value __val__
570 *
571 * /module-name:container/leaf-list[.='val']
572 *
573 * - get __aug-leaf__, which was added to __module-name__ from an augment module __augment-module__
574 *
575 * /module-name:container/container2/augment-module:aug-cont/aug-leaf
576 *
Radek Krejcib50551c2016-04-19 09:15:38 +0200577 *
578 * A very small subset of this full XPath is recognized by lyd_new_path(). Basically, only a relative or absolute
579 * path can be specified to identify a new data node. However, lists must be identified by all their keys and created
580 * 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 +0200581 * and all the keys must be specified. Every predicate includes a single key with its value. Optionally, leaves and
582 * 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 +0200583 * expressions. Example:
584 *
Michal Vasko1acf8502016-05-05 09:14:07 +0200585 * /ietf-yang-library:modules-state/module[name='ietf-yang-library'][revision='']/conformance[.='implement']
Radek Krejcib50551c2016-04-19 09:15:38 +0200586 *
587 * Almost the same XPath is accepted by ly_ctx_get_node(). The difference is that it is not used on data, but schema,
588 * which means there are no key values and only one node matches one path. In effect, lists do not have to have any
589 * predicates. If they do, they do not need to have all the keys specified and if values are included, they are ignored.
590 * Nevertheless, any such expression is still a valid XPath, but can return more nodes if executed on a data tree.
591 * Examples (all returning the same node):
592 *
593 * /ietf-yang-library:modules-state/module/submodules
594 * /ietf-yang-library:modules-state/module[name]/submodules
595 * /ietf-yang-library:modules-state/module[name][revision]/submodules
596 * /ietf-yang-library:modules-state/module[name='ietf-yang-library'][revision]/submodules
597 *
598 * Also, `choice`, `case`, `input`, and `output` nodes need to be specified and cannot be skipped in schema XPaths. Use
599 * ly_ctx_get_node2() if you want to search based on a data XPath, the same format as what lyd_new_path() uses.
600 *
601 * Also note, that in all cases the node's prefix is specified as the name of the appropriate YANG schema. Any node
602 * can be prefixed by the module name. However, if the prefix is omitted, the module name is inherited from the previous
603 * (parent) node. It means, that the first node in the path is always supposed to have a prefix.
604 *
605 * Functions List
606 * --------------
607 * - lyd_get_node()
608 * - lyd_new_path()
609 * - ly_ctx_get_node()
610 * - ly_ctx_get_node2()
611 */
612
613/**
Radek Krejcidef50022016-02-01 16:38:32 +0100614 * @page howtoxml libyang XML Support
615 *
Radek Krejcib50551c2016-04-19 09:15:38 +0200616 * libyang XML parser is able to parse XML documents. The main purpose is to load data modeled by YANG. However, it can
617 * 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 +0100618 * - comments are ignored
619 * - Doctype declaration is ignored
620 * - CData sections are ignored
621 * - Process Instructions (PI) are ignored
622 *
623 * The API is designed to almost only read-only access. You can simply load XML document, go through the tree as
624 * you wish and dump the tree to an output. The only "write" functions are lyxml_free() and lyxml_unlink() to remove
625 * part of the tree or to unlink (separate) a subtree.
626 *
Radek Krejcib50551c2016-04-19 09:15:38 +0200627 * XML parser is used internally by libyang for parsing YIN schemas and data instances in XML format.
Radek Krejcidef50022016-02-01 16:38:32 +0100628 *
629 * \note API for this group of functions is described in the [XML Parser module](@ref xmlparser).
630 *
631 * Functions List
632 * --------------
Radek Krejci722b0072016-02-01 17:09:45 +0100633 * - lyxml_parse_mem()
634 * - lyxml_parse_path()
Radek Krejcidef50022016-02-01 16:38:32 +0100635 * - lyxml_get_attr()
636 * - lyxml_get_ns()
Radek Krejci722b0072016-02-01 17:09:45 +0100637 * - lyxml_print_mem()
638 * - lyxml_print_fd()
639 * - lyxml_print_file()
640 * - lyxml_print_clb()
Radek Krejcidef50022016-02-01 16:38:32 +0100641 * - lyxml_unlink()
642 * - lyxml_free()
643 */
644
645/**
646 * @page howtothreads libyang in Threads
647 *
Radek Krejcib50551c2016-04-19 09:15:38 +0200648 * libyang can be used in multithreaded applications keeping in mind the following rules:
Radek Krejcidef50022016-02-01 16:38:32 +0100649 * - 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 +0200650 * thread before any other work with context, schemas or data instances. Destroying the context is supposed to
Radek Krejcidef50022016-02-01 16:38:32 +0100651 * be done when no other thread accesses context, schemas nor data trees
652 * - Data parser (\b lyd_parse*() functions) can be used simultaneously in multiple threads (also the returned
653 * #ly_errno is thread safe).
654 * - Modifying (lyd_new(), lyd_insert(), lyd_unlink(), lyd_free() and many other functions) a single data tree is not
655 * thread safe.
Radek Krejci26715a42015-07-29 14:10:45 +0200656 */
Radek Krejci94ca54b2015-07-08 15:48:47 +0200657
Radek Krejcida04f4a2015-05-21 12:54:09 +0200658/**
Radek Krejci26715a42015-07-29 14:10:45 +0200659 *
660 * @page howtologger Logger
661 *
662 * There are 4 verbosity levels defined as ::LY_LOG_LEVEL. The level can be
663 * changed by the ly_verb() function. By default, the verbosity level is
664 * set to #LY_LLERR value.
665 *
Radek Krejcib50551c2016-04-19 09:15:38 +0200666 * When an error is encountered, the error message and error number are stored for
667 * later use. Caller is able to access the last error message via ly_errmsg() and the
668 * corresponding last error code via #ly_errno. If that was a validation error (#ly_errno
669 * is set to #LY_EVALID), also validation error code (via #ly_vecode) and path to the
670 * error node (via ly_errpath()) are available.
671 *
672 * For some specific cases, a YANG schema can define error message and/or error tag (mainly for
Michal Vaskoebea7012016-04-19 14:15:22 +0200673 * 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 +0200674 * it is available via ly_erraptag() (if not set, the returned string is empty).
675 *
Michal Vaskoebea7012016-04-19 14:15:22 +0200676 * 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 +0200677 * callback function. In that case, instead of printing messages, libyang passes error level, message and path
678 * (if any) to the caller's callback function. In case of error level, the message and path are still
679 * automatically stored and available via the functions and macros described above.
Radek Krejci26715a42015-07-29 14:10:45 +0200680 *
Radek Krejcidef50022016-02-01 16:38:32 +0100681 * \note API for this group of functions is described in the [logger module](@ref logger).
682 *
683 * Functions List
684 * --------------
685 * - ly_verb()
686 * - ly_set_log_clb()
687 * - ly_get_log_clb()
Radek Krejcib50551c2016-04-19 09:15:38 +0200688 * - ly_errmsg()
689 * - ly_errpath()
690 * - ly_errapptag()
691 * - #ly_errno
692 * - #ly_vecode
Radek Krejci26715a42015-07-29 14:10:45 +0200693 */
694
695/**
696 * @defgroup context Context
Radek Krejci3045cf32015-05-28 10:58:52 +0200697 * @{
698 *
Radek Krejci26715a42015-07-29 14:10:45 +0200699 * Structures and functions to manipulate with the libyang "containers". The \em context concept allows callers
700 * to work in environments with different sets of YANG schemas. More detailed information can be found at
701 * @ref howtocontext page.
Radek Krejci3045cf32015-05-28 10:58:52 +0200702 */
703
704/**
Radek Krejcida04f4a2015-05-21 12:54:09 +0200705 * @brief libyang context handler.
706 */
707struct ly_ctx;
708
709/**
710 * @brief Create libyang context
711 *
Radek Krejci26715a42015-07-29 14:10:45 +0200712 * Context is used to hold all information about schemas. Usually, the application is supposed
Radek Krejci91b833c2015-09-04 11:49:43 +0200713 * to work with a single context in which libyang is holding all schemas (and other internal
714 * information) according to which the data trees will be processed and validated. So, the schema
715 * trees are tightly connected with the specific context and they are held by the context internally
716 * - caller does not need to keep pointers to the schemas returned by lys_parse(), context knows
717 * about them. The data trees created with lyd_parse() are still connected with the specific context,
718 * but they are not internally held by the context. The data tree just points and lean on some data
719 * held by the context (schema tree, string dictionary, etc.). Therefore, in case of data trees, caller
720 * is supposed to keep pointers returned by the lyd_parse() and manage the data tree on its own. This
721 * also affects the number of instances of both tree types. While you can have only one instance of
722 * specific schema connected with a single context, number of data tree instances is not connected.
Radek Krejcida04f4a2015-05-21 12:54:09 +0200723 *
Radek Krejci26715a42015-07-29 14:10:45 +0200724 * @param[in] search_dir Directory where libyang will search for the imported or included modules
725 * and submodules. If no such directory is available, NULL is accepted.
Radek Krejcida04f4a2015-05-21 12:54:09 +0200726 *
Radek Krejci3045cf32015-05-28 10:58:52 +0200727 * @return Pointer to the created libyang context, NULL in case of error.
Radek Krejcida04f4a2015-05-21 12:54:09 +0200728 */
729struct ly_ctx *ly_ctx_new(const char *search_dir);
730
731/**
Michal Vasko60ba9a62015-07-03 14:42:31 +0200732 * @brief Change the search path in libyang context
733 *
734 * @param[in] ctx Context to be modified.
735 * @param[in] search_dir New search path to replace the current one in ctx.
736 */
737void ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir);
738
739/**
Radek Krejci5a797572015-10-21 15:45:45 +0200740 * @brief Get current value of the search path in libyang context
741 *
742 * @param[in] ctx Context to query.
743 * @return Current value of the search path.
744 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100745const char *ly_ctx_get_searchdir(const struct ly_ctx *ctx);
Radek Krejci5a797572015-10-21 15:45:45 +0200746
747/**
Radek Krejci7ab25152015-08-07 14:48:45 +0200748 * @brief Get data of an internal ietf-yang-library module.
749 *
750 * @param[in] ctx Context with the modules.
751 * @return Root data node corresponding to the model, NULL on error.
752 * Caller is responsible for freeing the returned data tree using lyd_free().
753 */
754struct lyd_node *ly_ctx_info(struct ly_ctx *ctx);
755
756/**
Michal Vaskod7957c02016-04-01 10:27:26 +0200757 * @brief Iterate over all modules in a context.
758 *
759 * @param[in] ctx Context with the modules.
760 * @param[in,out] idx Index of the next module to be returned. Value of 0 starts from the beginning.
761 * @return Next context module, NULL if the last was already returned.
762 */
763const struct lys_module *ly_ctx_get_module_iter(const struct ly_ctx *ctx, uint32_t *idx);
764
765/**
Radek Krejcifd4e6e32015-08-10 15:00:51 +0200766 * @brief Get pointer to the schema tree of the module of the specified name.
Radek Krejcida04f4a2015-05-21 12:54:09 +0200767 *
Radek Krejcida04f4a2015-05-21 12:54:09 +0200768 * @param[in] ctx Context to work in.
769 * @param[in] name Name of the YANG module to get.
Radek Krejcif647e612015-07-30 11:36:07 +0200770 * @param[in] revision Optional revision date of the YANG module to get. If not specified,
771 * the schema in the newest revision is returned if any.
772 * @return Pointer to the data model structure, NULL if no schema following the name and
Radek Krejcifd4e6e32015-08-10 15:00:51 +0200773 * revision requirements is present in the context.
Radek Krejcida04f4a2015-05-21 12:54:09 +0200774 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100775const 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 +0200776
777/**
Radek Krejci21601a32016-03-07 11:39:27 +0100778 * @brief Get pointer to the older schema tree to the specified one in the provided context.
779 *
780 * The module is not necessarily from the provided \p ctx. If there are multiple schemas older than the
781 * provided one, the newest of them is returned.
782 *
783 * The function can be used in combination with ly_ctx_get_module() to get all revisions of a module in a context:
784 * \code{.c}
785 * for (mod = ly_ctx_get_module(ctx, name, NULL); mod; mod = ly_ctx_get_module_older(ctx, mod)) {
786 * ...
787 * }
788 * \endcode
789 *
790 * @param[in] ctx Context to work in.
791 * @param[in] module YANG module to compare with
792 * @return Pointer to the data model structure, NULL if no older schema is present in the context.
793 */
794const struct lys_module *ly_ctx_get_module_older(const struct ly_ctx *ctx, const struct lys_module *module);
795
796/**
Michal Vasko99b0aad2015-12-01 12:28:51 +0100797 * @brief Try to find the model in the searchpath of \p ctx and load it into it. If custom missing
798 * module callback is set, it is used instead.
Michal Vasko82465962015-11-10 11:03:11 +0100799 *
800 * @param[in] ctx Context to add to.
Michal Vasko82465962015-11-10 11:03:11 +0100801 * @param[in] name Name of the module to load.
802 * @param[in] revision Optional revision date of the module. If not specified, it is
803 * assumed that there is only one model revision in the searchpath (the first matching file
804 * is parsed).
805 * @return Pointer to the data model structure, NULL if not found or some error occured.
806 */
Michal Vasko99b0aad2015-12-01 12:28:51 +0100807const struct lys_module *ly_ctx_load_module(struct ly_ctx *ctx, const char *name, const char *revision);
808
809/**
810 * @brief Callback for retrieving missing included or imported models in a custom way.
811 *
812 * @param[in] name Missing module name.
813 * @param[in] revision Optional missing module revision.
814 * @param[in] user_data User-supplied callback data.
815 * @param[out] format Format of the returned module data.
Michal Vasko880dceb2016-03-03 15:44:56 +0100816 * @param[out] free_module_data Callback for freeing the returned module data. If not set, the data will be left untouched.
Michal Vasko99b0aad2015-12-01 12:28:51 +0100817 * @return Requested module data or NULL on error.
818 */
819typedef char *(*ly_module_clb)(const char *name, const char *revision, void *user_data, LYS_INFORMAT *format,
Michal Vaskod3e975b2016-03-03 15:40:21 +0100820 void (**free_module_data)(void *model_data));
Michal Vasko99b0aad2015-12-01 12:28:51 +0100821
822/**
823 * @brief Set missing include or import model callback.
824 *
825 * @param[in] ctx Context that will use this callback.
826 * @param[in] clb Callback responsible for returning a missing model.
827 * @param[in] user_data Arbitrary data that will always be passed to the callback \p clb.
828 */
829void ly_ctx_set_module_clb(struct ly_ctx *ctx, ly_module_clb clb, void *user_data);
830
831/**
832 * @brief Get the custom callback for missing module retrieval.
833 *
834 * @param[in] ctx Context to read from.
835 * @param[in] user_data Optional pointer for getting the user-supplied callbck data.
836 * @return Custom user missing module callback or NULL if not set.
837 */
838ly_module_clb ly_ctx_get_module_clb(const struct ly_ctx *ctx, void **user_data);
Michal Vasko82465962015-11-10 11:03:11 +0100839
840/**
Radek Krejcifd4e6e32015-08-10 15:00:51 +0200841 * @brief Get pointer to the schema tree of the module of the specified namespace
842 *
843 * @param[in] ctx Context to work in.
844 * @param[in] ns Namespace of the YANG module to get.
845 * @param[in] revision Optional revision date of the YANG module to get. If not specified,
846 * the schema in the newest revision is returned if any.
847 * @return Pointer to the data model structure, NULL if no schema following the namespace and
848 * revision requirements is present in the context.
849 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100850const 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 +0200851
852/**
Radek Krejci62f0da72016-03-07 11:35:43 +0100853 * @brief Get submodule of a main module.
854 *
855 * 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 +0200856 *
Radek Krejcia7533f22016-03-07 07:37:45 +0100857 * @param[in] ctx Context to work in.
Michal Vaskof6d94c62016-04-05 11:21:54 +0200858 * @param[in] module Name of the main (belongs-to) module. If NULL, all module submodules are searched.
859 * @param[in] revision Optional revision date of \p module. If NULL, all revisions of \p module
860 * are searched. If set, \p module must also be set.
Radek Krejcia7533f22016-03-07 07:37:45 +0100861 * @param[in] submodule Name of the submodule to get.
Michal Vaskof6d94c62016-04-05 11:21:54 +0200862 * @param[in] sub_revision Optional revision date of \p submodule. If NULL, the newest revision of \p submodule
863 * is returned.
Michal Vasko7bf06882015-07-03 15:33:56 +0200864 * @return Pointer to the data model structure.
865 */
Radek Krejcia7533f22016-03-07 07:37:45 +0100866const 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 +0200867 const char *submodule, const char *sub_revision);
Michal Vasko7bf06882015-07-03 15:33:56 +0200868
869/**
Radek Krejci62f0da72016-03-07 11:35:43 +0100870 * @brief Get submodule of a main module.
871 *
872 * If you have only the name (and optionally revision) of the submodule's main module, use ly_ctx_get_submodule()
873 * instead.
874 *
875 * @param[in] main_module Main module (belongs to) of the searched submodule.
876 * @param[in] submodule Name of the submodule to get.
877 * @return Pointer to the data model structure.
878 */
879const struct lys_submodule *ly_ctx_get_submodule2(const struct lys_module *main_module, const char *submodule);
880
881/**
Michal Vasko3547c532016-03-14 09:40:50 +0100882 * @brief Get schema node according to the given schema node identifier in JSON format.
Michal Vasko3edeaf72016-02-11 13:17:43 +0100883 *
Michal Vasko3547c532016-03-14 09:40:50 +0100884 * If the \p nodeid is absolute, the first node identifier must be prefixed with
885 * the module name. Then every other identifier either has an explicit module name or
886 * the module name of the previous node is assumed. Examples:
Michal Vasko3edeaf72016-02-11 13:17:43 +0100887 *
888 * /ietf-netconf-monitoring:get-schema/input/identifier
889 * /ietf-interfaces:interfaces/interface/ietf-ip:ipv4/address/ip
890 *
Michal Vasko3547c532016-03-14 09:40:50 +0100891 * If the \p nodeid is relative, \p start is mandatory and is the starting point
892 * for the resolution. The first node identifier does not need a module name.
893 *
Michal Vasko7b54f7e2016-05-03 15:07:31 +0200894 * Predicates on lists are accepted (ignored) in the form of "<key>(=<value>)"
895 * and on leaves/leaf-lists ".(=<value>)".
896 *
Michal Vasko3edeaf72016-02-11 13:17:43 +0100897 * @param[in] ctx Context to work in.
Michal Vasko3547c532016-03-14 09:40:50 +0100898 * @param[in] start Starting node for a relative schema node identifier, in which
899 * case it is mandatory.
900 * @param[in] nodeid JSON schema node identifier.
Michal Vasko3edeaf72016-02-11 13:17:43 +0100901 * @return Resolved schema node or NULL.
902 */
Michal Vasko3547c532016-03-14 09:40:50 +0100903const 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 +0100904
905/**
Michal Vasko9fd98e22016-04-07 15:44:19 +0200906 * @brief Get schema node according to the given data node identifier in JSON format.
907 *
908 * The functionality is almost the same as ly_ctx_get_node(), but this function accepts
909 * the data node identifier format (skipped choices, cases, inputs, and outputs). Examples:
910 *
911 * /ietf-netconf-monitoring:get-schema/identifier
912 * /ietf-interfaces:interfaces/interface/ietf-ip:ipv4/address/ip
913 *
914 * Since input and output is skipped, there could arise ambiguities if one RPC input
915 * contains a parameter with the same name as is in output, hence the flag.
916 *
Michal Vasko7b54f7e2016-05-03 15:07:31 +0200917 * Predicates on lists are accepted (ignored) in the form of "<key>(=<value>)"
918 * and on leaves/leaf-lists ".(=<value>)".
919 *
Michal Vasko9fd98e22016-04-07 15:44:19 +0200920 * @param[in] ctx Context to work in.
921 * @param[in] start Starting node for a relative schema node identifier, in which
922 * case it is mandatory.
923 * @param[in] nodeid JSON schema node identifier.
924 * @param[in] rpc_output Whether to search in RPC output parameters instead input ones.
925 * @return Resolved schema node or NULL.
926 */
927const struct lys_node *ly_ctx_get_node2(struct ly_ctx *ctx, const struct lys_node *start, const char *nodeid, int rpc_output);
928
929/**
Radek Krejci3045cf32015-05-28 10:58:52 +0200930 * @brief Free all internal structures of the specified context.
931 *
932 * The function should be used before terminating the application to destroy
933 * and free all structures internally used by libyang. If the caller uses
934 * multiple contexts, the function should be called for each used context.
935 *
936 * All instance data are supposed to be freed before destroying the context.
937 * Data models are destroyed automatically as part of ly_ctx_destroy() call.
938 *
939 * @param[in] ctx libyang context to destroy
Radek Krejcifa0b5e02016-02-04 13:57:03 +0100940 * @param[in] private_destructor Optional destructor function for private objects assigned
941 * to the nodes via lys_set_private(). If NULL, the private objects are not freed by libyang.
Radek Krejcida04f4a2015-05-21 12:54:09 +0200942 */
Radek Krejcifa0b5e02016-02-04 13:57:03 +0100943void ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lys_node *node, void *priv));
Radek Krejcida04f4a2015-05-21 12:54:09 +0200944
Radek Krejci26715a42015-07-29 14:10:45 +0200945/**@} context */
946
947/**
Radek Krejcidef50022016-02-01 16:38:32 +0100948 * @defgroup nodeset Tree nodes set
Radek Krejcidc154432016-01-21 11:10:59 +0100949 * @ingroup datatree
950 * @ingroup schematree
951 * @{
952 *
Radek Krejcidef50022016-02-01 16:38:32 +0100953 * Structure and functions to hold and manipulate with sets of nodes from schema or data trees.
954 */
955
956/**
Radek Krejci8f08df12016-03-21 11:11:30 +0100957 * @brief set array of ::ly_set
958 * It is kept in union to keep ::ly_set generic for data as well as schema trees
959 */
960union ly_set_set {
961 struct lys_node **s; /**< array of pointers to a ::lys_node objects */
962 struct lyd_node **d; /**< array of pointers to a ::lyd_node objects */
963 void **g; /**< dummy array for generic work */
964};
965
966/**
Radek Krejcidc154432016-01-21 11:10:59 +0100967 * @brief Structure to hold a set of (not necessary somehow connected) ::lyd_node or ::lys_node objects.
968 * Caller is supposed to not mix the type of objects added to the set and according to its knowledge about
969 * the set content, it is supposed to access the set via the sset, dset or set members of the structure.
970 *
Radek Krejcidef50022016-02-01 16:38:32 +0100971 * To free the structure, use ly_set_free() function, to manipulate with the structure, use other
972 * ly_set_* functions.
Radek Krejcidc154432016-01-21 11:10:59 +0100973 */
974struct ly_set {
975 unsigned int size; /**< allocated size of the set array */
976 unsigned int number; /**< number of elements in (used size of) the set array */
Radek Krejci8f08df12016-03-21 11:11:30 +0100977 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 +0100978};
979
980/**
Radek Krejcidef50022016-02-01 16:38:32 +0100981 * @brief Create and initiate new ::ly_set structure.
Radek Krejcidc154432016-01-21 11:10:59 +0100982 *
Radek Krejcidef50022016-02-01 16:38:32 +0100983 * @return Created ::ly_set structure or NULL in case of error.
Radek Krejcidc154432016-01-21 11:10:59 +0100984 */
985struct ly_set *ly_set_new(void);
986
987/**
988 * @brief Add a ::lyd_node or ::lys_node object into the set
989 *
990 * @param[in] set Set where the \p node will be added.
991 * @param[in] node The ::lyd_node or ::lys_node object to be added into the \p set;
992 * @return 0 on success
993 */
994int ly_set_add(struct ly_set *set, void *node);
995
996/**
997 * @brief Remove a ::lyd_node or ::lys_node object from the set.
998 *
999 * Note that after removing a node from a set, indexes of other nodes in the set can change
1000 * (the last object is placed instead of the removed object).
1001 *
1002 * @param[in] set Set from which the \p node will be removed.
1003 * @param[in] node The ::lyd_node or ::lys_node object to be removed from the \p set;
1004 * @return 0 on success
1005 */
1006int ly_set_rm(struct ly_set *set, void *node);
1007
1008/**
1009 * @brief Remove a ::lyd_node or ::lys_node object from the set index.
1010 *
1011 * Note that after removing a node from a set, indexes of other nodes in the set can change
1012 * (the last object is placed instead of the removed object).
1013 *
1014 * @param[in] set Set from which a node will be removed.
1015 * @param[in] index Index of the ::lyd_node or ::lys_node object in the \p set to be removed from the \p set;
1016 * @return 0 on success
1017 */
1018int ly_set_rm_index(struct ly_set *set, unsigned int index);
1019
1020/**
Radek Krejcidef50022016-02-01 16:38:32 +01001021 * @brief Free the ::ly_set data. Frees only the set structure content, not the referred data.
Radek Krejcidc154432016-01-21 11:10:59 +01001022 *
1023 * @param[in] set The set to be freed.
1024 */
1025void ly_set_free(struct ly_set *set);
1026
Radek Krejcidef50022016-02-01 16:38:32 +01001027/**@} nodeset */
Radek Krejci6140e4e2015-10-09 15:50:55 +02001028
1029/**
Radek Krejci5044be32016-01-18 17:05:51 +01001030 * @defgroup printerflags Printer flags
Radek Krejcidef50022016-02-01 16:38:32 +01001031 * @ingroup datatree
Radek Krejci5044be32016-01-18 17:05:51 +01001032 *
1033 * Validity flags for data nodes.
1034 *
1035 * @{
1036 */
1037#define LYP_WITHSIBLINGS 0x01 /**< Flag for printing also the (following) sibling nodes of the data node. */
Michal Vasko95068c42016-03-24 14:58:11 +01001038#define LYP_FORMAT 0x02 /**< Flag for formatted output. */
Radek Krejci5044be32016-01-18 17:05:51 +01001039
1040/**
1041 * @}
1042 */
1043
1044/**
Radek Krejci3045cf32015-05-28 10:58:52 +02001045 * @defgroup logger Logger
1046 * @{
1047 *
1048 * Publicly visible functions and values of the libyang logger. For more
1049 * information, see \ref howtologger.
1050 */
1051
1052/**
1053 * @typedef LY_LOG_LEVEL
1054 * @brief Verbosity levels of the libyang logger.
1055 */
1056typedef enum {
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001057 LY_LLERR, /**< Print only error messages. */
1058 LY_LLWRN, /**< Print error and warning messages. */
1059 LY_LLVRB, /**< Besides errors and warnings, print some other verbose messages. */
1060 LY_LLDBG /**< Print all messages including some development debug messages. */
Radek Krejci3045cf32015-05-28 10:58:52 +02001061} LY_LOG_LEVEL;
1062
1063/**
1064 * @brief Set logger verbosity level.
1065 * @param[in] level Verbosity level.
1066 */
1067void ly_verb(LY_LOG_LEVEL level);
1068
1069/**
Michal Vaskof1d62cf2015-12-07 13:17:11 +01001070 * @brief Set logger callback.
Michal Vasko13661142016-04-11 10:53:53 +02001071 *
1072 * !IMPORTANT! If an error has a specific error-app-tag defined in the model, it will NOT be set
1073 * at the time of calling this callback. It will be set right after, so to retrieve it
1074 * it must be checked afterwards with ly_errapptag().
1075 *
Michal Vaskof1d62cf2015-12-07 13:17:11 +01001076 * @param[in] clb Logging callback.
Radek Krejciadb57612016-02-16 13:34:34 +01001077 * @param[in] path flag to resolve and provide path as the third parameter of the callback function. In case of
1078 * validation and some other errors, it can be useful to get the path to the problematic element. Note,
1079 * that according to the tree type and the specific situation, the path can slightly differs (keys
1080 * presence) or it can be NULL, so consider it as an optional parameter. If the flag is 0, libyang will
1081 * not bother with resolving the path.
Michal Vaskof1d62cf2015-12-07 13:17:11 +01001082 */
Radek Krejciadb57612016-02-16 13:34:34 +01001083void 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 +01001084
1085/**
1086 * @brief Get logger callback.
1087 * @return Logger callback (can be NULL).
1088 */
Radek Krejciadb57612016-02-16 13:34:34 +01001089void (*ly_get_log_clb(void))(LY_LOG_LEVEL, const char *, const char *);
Michal Vaskof1d62cf2015-12-07 13:17:11 +01001090
1091/**
Radek Krejci3045cf32015-05-28 10:58:52 +02001092 * @typedef LY_ERR
Radek Krejci26715a42015-07-29 14:10:45 +02001093 * @brief libyang's error codes available via ly_errno extern variable.
Radek Krejci9b4ca392015-04-10 08:31:27 +02001094 * @ingroup logger
1095 */
1096typedef enum {
Radek Krejciae6817a2015-08-10 14:02:06 +02001097 LY_SUCCESS, /**< no error, not set by functions, included just to complete #LY_ERR enumeration */
Radek Krejci6e4ffbb2015-06-16 10:34:41 +02001098 LY_EMEM, /**< Memory allocation failure */
1099 LY_ESYS, /**< System call failure */
1100 LY_EINVAL, /**< Invalid value */
1101 LY_EINT, /**< Internal error */
1102 LY_EVALID /**< Validation failure */
Radek Krejci3045cf32015-05-28 10:58:52 +02001103} LY_ERR;
Radek Krejci7d9f46a2016-01-29 13:53:18 +01001104
Radek Krejci26715a42015-07-29 14:10:45 +02001105/**
Michal Vaskof5035ce2016-03-11 10:21:31 +01001106 * @typedef LY_VECODE
1107 * @brief libyang's codes of validation error. Whenever ly_errno is set to LY_EVALID, the ly_vecode is also set
1108 * to the appropriate LY_VECODE value.
Radek Krejcia37b39c2016-03-09 16:38:18 +01001109 * @ingroup logger
1110 */
1111typedef enum {
Michal Vaskof5035ce2016-03-11 10:21:31 +01001112 LYVE_SUCCESS = 0, /**< no error */
Radek Krejcia37b39c2016-03-09 16:38:18 +01001113
Michal Vaskof5035ce2016-03-11 10:21:31 +01001114 LYVE_XML_MISS, /**< missing XML object */
1115 LYVE_XML_INVAL, /**< invalid XML object */
1116 LYVE_XML_INCHAR, /**< invalid XML character */
Radek Krejcia37b39c2016-03-09 16:38:18 +01001117
Michal Vaskof5035ce2016-03-11 10:21:31 +01001118 LYVE_EOF, /**< unexpected end of input data */
1119 LYVE_INSTMT, /**< invalid statement (schema) */
1120 /* */
1121 LYVE_INID, /**< invalid identifier (schema) */
1122 LYVE_INDATE, /**< invalid date format */
1123 LYVE_INARG, /**< invalid value of a statement argument (schema) */
1124 LYVE_MISSSTMT, /**< missing required statement (schema) */
1125 /* */
1126 LYVE_MISSARG, /**< missing required statement argument (schema) */
1127 LYVE_TOOMANY, /**< too many instances of some object */
1128 LYVE_DUPID, /**< duplicated identifier (schema) */
1129 LYVE_DUPLEAFLIST, /**< multiple instances of leaf-list */
1130 LYVE_DUPLIST, /**< multiple instances of list */
Michal Vaskoa540df22016-04-11 16:14:35 +02001131 LYVE_NOUNIQ, /**< unique leaves match on 2 list instances (data) */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001132 LYVE_ENUM_DUPVAL, /**< duplicated enum value (schema) */
1133 LYVE_ENUM_DUPNAME, /**< duplicated enum name (schema) */
1134 LYVE_ENUM_WS, /**< enum name with leading/trailing whitespaces (schema) */
1135 LYVE_BITS_DUPVAL, /**< duplicated bits value (schema) */
1136 LYVE_BITS_DUPNAME, /**< duplicated bits name (schema) */
1137 LYVE_INMOD, /**< invalid module name */
1138 /* */
1139 LYVE_KEY_NLEAF, /**< list key is not a leaf (schema) */
1140 LYVE_KEY_TYPE, /**< invalid list key type (schema) */
1141 LYVE_KEY_CONFIG, /**< key config value differs from the list config value */
1142 LYVE_KEY_MISS, /**< list key not found (schema) */
1143 LYVE_KEY_DUP, /**< duplicated key identifier (schema) */
1144 LYVE_INREGEX, /**< invalid regular expression (schema) */
1145 LYVE_INRESOLV, /**< no resolvents found (schema) */
1146 LYVE_INSTATUS, /**< invalid derivation because of status (schema) */
Radek Krejcia37b39c2016-03-09 16:38:18 +01001147
Michal Vaskof5035ce2016-03-11 10:21:31 +01001148 LYVE_OBSDATA, /**< obsolete data instantiation (data) */
1149 /* */
1150 LYVE_NORESOLV, /**< no resolvents found for an expression (data) */
1151 LYVE_INELEM, /**< invalid element (data) */
1152 /* */
1153 LYVE_MISSELEM, /**< missing required element (data) */
1154 LYVE_INVAL, /**< invalid value of an element (data) */
Radek Krejci9bfcbde2016-04-07 16:30:15 +02001155 LYVE_INVALATTR, /**< invalid attribute value (data) */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001156 LYVE_INATTR, /**< invalid attribute in an element (data) */
1157 LYVE_MISSATTR, /**< missing attribute in an element (data) */
Michal Vasko6ac68282016-04-11 10:56:47 +02001158 LYVE_NOCONSTR, /**< value out of range/length/pattern (data) */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001159 LYVE_INCHAR, /**< unexpected characters (data) */
1160 LYVE_INPRED, /**< predicate resolution fail (data) */
1161 LYVE_MCASEDATA, /**< data for more cases of a choice (data) */
Michal Vasko6ac68282016-04-11 10:56:47 +02001162 LYVE_NOMUST, /**< unsatisfied must condition (data) */
1163 LYVE_NOWHEN, /**< unsatisfied when condition (data) */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001164 LYVE_INORDER, /**< invalid order of elements (data) */
Radek Krejci03b71f72016-03-16 11:10:09 +01001165 LYVE_INWHEN, /**< irresolvable when condition (data) */
Michal Vasko6ac68282016-04-11 10:56:47 +02001166 LYVE_NOMIN, /**< min-elements constraint not honored (data) */
1167 LYVE_NOMAX, /**< max-elements constraint not honored (data) */
1168 LYVE_NOREQINS, /**< required instance does not exits (data) */
1169 LYVE_NOLEAFREF, /**< leaf pointed to by leafref does not exist (data) */
1170 LYVE_NOMANDCHOICE, /**< no mandatory choice case branch exists (data) */
Radek Krejcia37b39c2016-03-09 16:38:18 +01001171
Michal Vaskof5035ce2016-03-11 10:21:31 +01001172 LYVE_XPATH_INTOK, /**< unexpected XPath token */
1173 LYVE_XPATH_EOF, /**< unexpected end of an XPath expression */
1174 LYVE_XPATH_INOP, /**< invalid XPath operation operands */
1175 /* */
1176 LYVE_XPATH_INCTX, /**< invalid XPath context type */
1177 LYVE_XPATH_INARGCOUNT, /**< invalid number of arguments for an XPath function */
Michal Vasko6fae1362016-03-11 15:10:00 +01001178 LYVE_XPATH_INARGTYPE, /**< invalid type of arguments for an XPath function */
1179
1180 LYVE_PATH_INCHAR, /**< invalid characters (path) */
Michal Vaskoe733d682016-03-14 09:08:27 +01001181 LYVE_PATH_INMOD, /**< invalid module name (path) */
1182 LYVE_PATH_MISSMOD, /**< missing module name (path) */
Michal Vasko6fae1362016-03-11 15:10:00 +01001183 LYVE_PATH_INNODE, /**< invalid node name (path) */
Michal Vasko6fae1362016-03-11 15:10:00 +01001184 LYVE_PATH_INKEY, /**< invalid key name (path) */
1185 LYVE_PATH_MISSKEY, /**< missing some list keys (path) */
1186 LYVE_PATH_EXISTS, /**< target node already exists (path) */
1187 LYVE_PATH_MISSPAR, /**< some parent of the target node is missing (path) */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001188} LY_VECODE;
Radek Krejcia37b39c2016-03-09 16:38:18 +01001189
1190/**
Radek Krejci7d9f46a2016-01-29 13:53:18 +01001191 * @cond INTERNAL
Radek Krejci386714d2016-02-15 10:24:30 +01001192 * Get address of (thread-specific) `ly_errno' variable.
Radek Krejci26715a42015-07-29 14:10:45 +02001193 */
Radek Krejci7d9f46a2016-01-29 13:53:18 +01001194LY_ERR *ly_errno_location(void);
1195
Michal Vaskof5035ce2016-03-11 10:21:31 +01001196LY_VECODE *ly_vecode_location(void);
Radek Krejcia37b39c2016-03-09 16:38:18 +01001197
Radek Krejci7d9f46a2016-01-29 13:53:18 +01001198/**
1199 * @endcond INTERNAL
Radek Krejcidef50022016-02-01 16:38:32 +01001200 * @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 +01001201 */
1202#define ly_errno (*ly_errno_location())
Radek Krejci9b4ca392015-04-10 08:31:27 +02001203
Radek Krejci386714d2016-02-15 10:24:30 +01001204/**
Radek Krejcia37b39c2016-03-09 16:38:18 +01001205 * @brief libyang's validation error code
1206 */
Michal Vaskof5035ce2016-03-11 10:21:31 +01001207#define ly_vecode (*ly_vecode_location())
Radek Krejcia37b39c2016-03-09 16:38:18 +01001208
1209/**
Michal Vasko13661142016-04-11 10:53:53 +02001210 * @brief Get the last (thread-specific) error message. If the coresponding module defined
1211 * a specific error message, it will be used instead the default one.
Radek Krejci6e8fc0b2016-02-16 14:33:37 +01001212 *
1213 * Sometimes, the error message is extended with path of the element where is the problem.
1214 * The path is available via ly_errpath().
1215 *
Radek Krejcib50551c2016-04-19 09:15:38 +02001216 * @return Text of the last error message, empty string if there is no error.
Radek Krejci386714d2016-02-15 10:24:30 +01001217 */
1218const char *ly_errmsg(void);
1219
Radek Krejci6e8fc0b2016-02-16 14:33:37 +01001220/**
1221 * @brief Get the last (thread-specific) path of the element where was an error.
1222 *
1223 * The path always corresponds to the error message available via ly_errmsg(), so
1224 * whenever a subsequent error message is printed, the path is erased or rewritten.
Radek Krejci3cc10962016-04-13 15:03:27 +02001225 * The path reflects the type of the processed tree - data path for data tree functions
1226 * and schema path in case of schema tree functions. In case of processing YIN schema
1227 * or XML data, the path can be just XML path. In such a case, the corresponding
1228 * ly_vecode (value 1-3) is set.
Radek Krejci6e8fc0b2016-02-16 14:33:37 +01001229 *
Radek Krejcib50551c2016-04-19 09:15:38 +02001230 * @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 +01001231 */
1232const char *ly_errpath(void);
1233
Michal Vasko13661142016-04-11 10:53:53 +02001234/**
1235 * @brief Get the last (thread-specific) error-app-tag if there was a specific one defined
1236 * in the module for the last error.
1237 *
1238 * The app-tag always corresponds to the error message available via ly_errmsg(), so
1239 * whenever a subsequent error message is printed, the app-tag is erased or rewritten.
1240 *
Radek Krejcib50551c2016-04-19 09:15:38 +02001241 * @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 +02001242 */
1243const char *ly_errapptag(void);
1244
Radek Krejci3045cf32015-05-28 10:58:52 +02001245/**@} logger */
Radek Krejci9b4ca392015-04-10 08:31:27 +02001246
Radek Krejci39d8d0d2015-08-17 13:42:45 +02001247#ifdef __cplusplus
1248}
1249#endif
1250
Radek Krejci9b4ca392015-04-10 08:31:27 +02001251#endif /* LY_LIBYANG_H_ */