blob: de4c9f7cda41b92a2193dccfdbd3f46c72ffe76e [file] [log] [blame]
Radek Krejcid7e8a622018-10-29 15:54:55 +01001/**
Radek Krejci0935f412019-08-20 16:15:18 +02002 * @file plugins_exts.h
Radek Krejcid7e8a622018-10-29 15:54:55 +01003 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vaskofbbea932022-06-07 11:00:55 +02004 * @author Michal Vasko <mvasko@cesnet.cz>
Radek Krejcid7e8a622018-10-29 15:54:55 +01005 * @brief libyang support for YANG extensions implementation.
6 *
Michal Vaskofbbea932022-06-07 11:00:55 +02007 * Copyright (c) 2015 - 2022 CESNET, z.s.p.o.
Radek Krejcid7e8a622018-10-29 15:54:55 +01008 *
9 * This source code is licensed under BSD 3-Clause License (the "License").
10 * You may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
15
Radek Krejci0935f412019-08-20 16:15:18 +020016#ifndef LY_PLUGINS_EXTS_H_
17#define LY_PLUGINS_EXTS_H_
Radek Krejcid7e8a622018-10-29 15:54:55 +010018
Radek Krejci535ea9f2020-05-29 16:01:05 +020019#include "log.h"
Michal Vaskofbbea932022-06-07 11:00:55 +020020#include "parser_data.h"
Radek Krejci3e6632f2021-03-22 22:08:21 +010021#include "plugins.h"
tadeas-vintrlik2aa36b42021-11-03 13:07:34 +010022#include "tree_data.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010023#include "tree_edit.h"
Radek Krejci0e59c312019-08-15 15:34:15 +020024#include "tree_schema.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020025
26struct ly_ctx;
tadeas-vintrlik2aa36b42021-11-03 13:07:34 +010027struct ly_in;
Radek Krejci535ea9f2020-05-29 16:01:05 +020028struct lyd_node;
Michal Vasko193dacd2022-10-13 08:43:05 +020029struct lysc_ctx;
Radek Krejci0aa1f702021-04-01 16:16:19 +020030struct lysc_ext_substmt;
Michal Vaskob4750962022-10-06 15:33:35 +020031struct lysp_ctx;
Michal Vasko193dacd2022-10-13 08:43:05 +020032struct lyspr_ctx;
aPiecek03cb4872022-10-24 10:31:51 +020033struct lyspr_tree_ctx;
Radek Krejci0e59c312019-08-15 15:34:15 +020034
Radek Krejcid7e8a622018-10-29 15:54:55 +010035#ifdef __cplusplus
36extern "C" {
37#endif
38
39/**
Radek Krejci75104122021-04-01 15:37:45 +020040 * @page howtoPluginsExtensions Extension Plugins
41 *
42 * Note that the part of the libyang API here is available only by including a separated `<libyang/plugins_exts.h>` header
43 * file. Also note that the extension plugins API is versioned separately from libyang itself, so backward incompatible
44 * changes can come even without changing libyang major version.
45 *
46 * YANG extensions are very complex. Usually only its description specifies how it is supposed to behave, what are the
47 * allowed substatements, their cardinality or if the standard YANG statements placed inside the extension differs somehow
aPiecekb0445f22021-06-24 11:34:07 +020048 * in their meaning or behavior. libyang provides the Extension plugins API to implement such extensions and add its support
Radek Krejci75104122021-04-01 15:37:45 +020049 * into libyang itself. However we tried our best, the API is not (and it cannot be) so universal and complete to cover all
50 * possibilities. There are definitely use cases which cannot be simply implemented only with this API.
51 *
52 * libyang implements 3 important extensions: [NACM](https://tools.ietf.org/html/rfc8341), [Metadata](@ref howtoDataMetadata)
53 * and [yang-data](@ref howtoDataYangdata). Despite the core implementation in all three cases is done via extension plugin
54 * API, also other parts of the libyang code had to be extended to cover complete scope of the extensions.
55 *
56 * We believe, that the API is capable to allow implementation of very wide range of YANG extensions. However, if you see
57 * limitations for the particular YANG extension, don't hesitate to contact the project developers to discuss all the
58 * options, including updating the API.
59 *
60 * The plugin's functionality is provided to libyang via a set of callbacks specified as an array of ::lyplg_ext_record
61 * structures using the ::LYPLG_EXTENSIONS macro.
62 *
Michal Vaskoc7262cb2022-11-09 09:41:56 +010063 * The most important callbacks are ::lyplg_ext.parse and ::lyplg_ext.compile. They are responsible for parsing and
64 * compiling extension instance. This should include validating all the substatements, their values, or placement of
65 * the extension instance itself. If needed, the processed data can be stored in some form into the compiled schema
66 * representation of the extension instance. To make this task as easy as possible, libyang provides several
67 * [parsing](@ref pluginsExtensionsParse) and [compilation](@ref pluginsExtensionsCompile) helper functions to process
68 * known YANG statements exactly as if they were standard YANG statements.
Radek Krejci75104122021-04-01 15:37:45 +020069 *
70 * The data validation callback ::lyplg_ext.validate is used for additional validation of a data nodes that contains the
71 * connected extension instance directly (as a substatement) or indirectly in case of terminal nodes via their type (no
72 * matter if the extension instance is placed directly in the leaf's/leaf-list's type or in the type of the referenced
73 * typedef).
74 *
aPiecek03cb4872022-10-24 10:31:51 +020075 * The ::lyplg_ext.printer_info callback implement printing the compiled extension instance data when the schema (module) is
Radek Krejci75104122021-04-01 15:37:45 +020076 * being printed in the ::LYS_OUT_YANG_COMPILED (info) format. As for compile callback, there are also
Michal Vaskoc7262cb2022-11-09 09:41:56 +010077 * [helper functions](@ref pluginsExtensionsSprinterInfo) to access printer's context and to print standard YANG statements
Radek Krejci75104122021-04-01 15:37:45 +020078 * placed in the extension instance by libyang itself.
79 *
aPiecek03cb4872022-10-24 10:31:51 +020080 * The ::lyplg_ext.printer_ctree and ::lyplg_ext.printer_ptree callbacks implement printing of YANG tree diagrams
81 * (RFC 8340) for extension instance data. These callbacks are called for extension instances that have
Michal Vaskoc7262cb2022-11-09 09:41:56 +010082 * parents of type ::LY_STMT_MODULE, ::LY_STMT_SUBMODULE. Or these callbacks are called if the printer_tree finds
aPiecek03cb4872022-10-24 10:31:51 +020083 * a compiled/parsed data-node containing an extension instance. The callbacks should then decide which nodes
84 * should be printed within the extension instance. In addition, it is possible to register additional callbacks
85 * to the printer_tree context to override the form of the each node in the extension instance.
86 *
Michal Vaskoc7262cb2022-11-09 09:41:56 +010087 * The last callback, ::lyplg_ext.cfree, is supposed to free all the data allocated by the ::lyplg_ext.compile callback.
88 * To free the data created by helper function ::lyplg_ext_compile_extension_instance(), the plugin can used
89 * ::lyplg_ext_cfree_instance_substatements().
Radek Krejci75104122021-04-01 15:37:45 +020090 *
91 * The plugin information contains also the plugin identifier (::lyplg_type.id). This string can serve to identify the
92 * specific plugin responsible to storing data value. In case the user can recognize the id string, it can access the
93 * plugin specific data with the appropriate knowledge of its structure.
94 *
Michal Vaskoc7262cb2022-11-09 09:41:56 +010095 * Logging information from an extension plugin is possible via ::lyplg_ext_parse_log() and ::lyplg_ext_compile_log() functions.
Radek Krejci75104122021-04-01 15:37:45 +020096 */
97
98/**
99 * @defgroup pluginsExtensions Plugins: Extensions
100 *
101 * Structures and functions to for libyang plugins implementing specific YANG extensions defined in YANG modules. For more
102 * information, see @ref howtoPluginsTypes.
103 *
104 * This part of libyang API is available by including `<libyang/plugins_ext.h>` header file.
Radek Krejcid7e8a622018-10-29 15:54:55 +0100105 *
106 * @{
107 */
108
109/**
Radek Krejci0935f412019-08-20 16:15:18 +0200110 * @brief Extensions API version
111 */
Michal Vasko0b50f6b2022-10-05 15:07:55 +0200112#define LYPLG_EXT_API_VERSION 6
Radek Krejci0935f412019-08-20 16:15:18 +0200113
114/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200115 * @brief Mask for an operation statement.
Michal Vaskob4750962022-10-06 15:33:35 +0200116 *
Michal Vasko193dacd2022-10-13 08:43:05 +0200117 * This mask matches action and RPC.
Michal Vaskob4750962022-10-06 15:33:35 +0200118 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200119#define LY_STMT_OP_MASK (LY_STMT_ACTION | LY_STMT_RPC)
Michal Vaskob4750962022-10-06 15:33:35 +0200120
121/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200122 * @brief Mask for a data node statement.
Michal Vaskob4750962022-10-06 15:33:35 +0200123 *
Michal Vasko193dacd2022-10-13 08:43:05 +0200124 * This mask matches anydata, anyxml, case, choice, container, leaf, leaf-list, and list.
Michal Vaskob4750962022-10-06 15:33:35 +0200125 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200126#define LY_STMT_DATA_NODE_MASK (LY_STMT_ANYDATA | LY_STMT_ANYXML | LY_STMT_CASE | LY_STMT_CHOICE | LY_STMT_CONTAINER |\
127 LY_STMT_LEAF | LY_STMT_LEAF_LIST | LY_STMT_LIST)
Michal Vaskob4750962022-10-06 15:33:35 +0200128
129/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200130 * @brief Mask for a node statement.
Michal Vaskob4750962022-10-06 15:33:35 +0200131 *
Michal Vasko193dacd2022-10-13 08:43:05 +0200132 * This mask matches notification, input, output, action, RPC, anydata, anyxml, augment, case, choice, container,
133 * grouping, leaf, leaf-list, list, and uses.
Michal Vaskob4750962022-10-06 15:33:35 +0200134 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200135#define LY_STMT_NODE_MASK 0xFFFF
Michal Vaskob4750962022-10-06 15:33:35 +0200136
137/**
138 * @brief List of YANG statements
Michal Vasko193dacd2022-10-13 08:43:05 +0200139 *
140 * Their description mentions what types are stored for each statement. Note that extension instance storage
141 * always stores a pointer to the type, not the type itself.
Michal Vaskob4750962022-10-06 15:33:35 +0200142 */
143enum ly_stmt {
144 LY_STMT_NONE = 0,
145
Michal Vasko193dacd2022-10-13 08:43:05 +0200146 LY_STMT_NOTIFICATION = 0x0001, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_notif *`
147 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_notif *` */
148 LY_STMT_INPUT = 0x0002, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_action_inout *`
149 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_action_inout *` */
150 LY_STMT_OUTPUT = 0x0004, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_action_inout *`
151 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_action_inout *` */
152 LY_STMT_ACTION = 0x0008, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_action *`
153 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_action *` */
154 LY_STMT_RPC = 0x0010, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_action *`
155 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_action *` */
156 LY_STMT_ANYDATA = 0x0020, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_anydata *`
157 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_anydata *` */
158 LY_STMT_ANYXML = 0x0040, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_anydata *`
159 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_anydata *` */
160 LY_STMT_AUGMENT = 0x0080, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_augment *`
161 ::lysc_ext_substmt.storage - not compiled
162 ::lysc_ext_instance.parent - `struct lysc_node *` */
163 LY_STMT_CASE = 0x0100, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_case *`
164 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_case *` */
165 LY_STMT_CHOICE = 0x0200, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_choice *`
166 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_choice *` */
167 LY_STMT_CONTAINER = 0x0400, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_container *`
168 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_container *` */
169 LY_STMT_GROUPING = 0x0800, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_grp *`
170 ::lysc_ext_substmt.storage - not compiled
171 ::lysc_ext_instance.parent - `struct lysc_node *` */
172 LY_STMT_LEAF = 0x1000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_leaf *`
173 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_leaf *` */
174 LY_STMT_LEAF_LIST = 0x2000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_leaflist *`
175 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_leaflist *` */
176 LY_STMT_LIST = 0x4000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_list *`
177 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node_list *` */
178 LY_STMT_USES = 0x8000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_node_uses *`
179 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_node *` */
Michal Vaskob4750962022-10-06 15:33:35 +0200180
Michal Vasko193dacd2022-10-13 08:43:05 +0200181 LY_STMT_ARGUMENT = 0x10000, /**< ::lysp_ext_substmt.storage - `const char *`
182 ::lysp_ext_instance.parent - `struct lysp_ext *`
183 ::lysc_ext_substmt.storage - `const char *`
184 ::lysc_ext_instance.parent - `struct lysc_ext *` */
185 LY_STMT_BASE = 0x20000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char **`[]
186 ::lysc_ext_substmt.storage - not compiled
187 ::lysc_ext_instance.parent - `struct lysc_ident *` */
188 LY_STMT_BELONGS_TO = 0x30000, /**< ::lysp_ext_substmt.storage - `const char *`
189 ::lysp_ext_instance.parent - `struct lysp_submodule *`
190 ::lysc_ext_substmt.storage - not compiled
191 ::lysc_ext_instance.parent - `struct lysc_module *` */
192 LY_STMT_BIT = 0x40000, /**< ::lysp_ext_substmt.storage - `struct lysp_type_enum *`[]
193 ::lysp_ext_instance.parent - `struct lysp_type_enum *`
194 ::lysc_ext_substmt.storage - `struct lysc_type_bitenum_item *`[]
195 ::lysc_ext_instance.parent - `struct lysc_type_bitenum_item *` */
196 LY_STMT_CONFIG = 0x50000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `uint16_t *`
197 ::lysc_ext_substmt.storage - `uint16_t *`
198 ::lysc_ext_instance.parent - `struct lysc_node *` */
199 LY_STMT_CONTACT = 0x60000, /**< ::lysp_ext_substmt.storage - `const char *`
200 ::lysp_ext_instance.parent - `struct lysp_(sub)module *`
201 ::lysc_ext_substmt.storage - `const char *`
202 ::lysc_ext_instance.parent - `struct lysc_module *` */
203 LY_STMT_DEFAULT = 0x70000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_qname *`
204 ::lysc_ext_substmt.storage - not compiled
205 ::lysc_ext_instance.parent - `struct lysc_node *`, `struct lysc_type *` (typedef) */
206 LY_STMT_DESCRIPTION = 0x80000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char *`
207 ::lysc_ext_substmt.storage - `const char *`
208 ::lysc_ext_instance.parent - compiled parent statement */
209 LY_STMT_DEVIATE = 0x90000, /**< ::lysp_ext_substmt.storage - `struct lysp_deviate *`[]
210 ::lysp_ext_instance.parent - `struct lysp_deviate *`
211 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - not compiled */
212 LY_STMT_DEVIATION = 0xA0000, /**< ::lysp_ext_substmt.storage - `struct lysp_deviation *`[]
213 ::lysp_ext_instance.parent - `struct lysp_deviation *`
214 ::lysc_ext_substmt.storage - not compiled
215 ::lysc_ext_instance.parent - `struct lysc_node *` */
216 LY_STMT_ENUM = 0xB0000, /**< ::lysp_ext_substmt.storage - `struct lysp_type_enum *`[]
217 ::lysp_ext_instance.parent - `struct lysp_type_enum *`
218 ::lysc_ext_substmt.storage - `struct lysc_type_bitenum_item *`[]
219 ::lysc_ext_instance.parent - `struct lysc_type_bitenum_item *` */
220 LY_STMT_ERROR_APP_TAG = 0xC0000, /**< ::lysp_ext_substmt.storage - `const char *`
221 ::lysp_ext_instance.parent - `struct lysp_restr *`
222 ::lysc_ext_substmt.storage - `const char *`
223 ::lysc_ext_instance.parent - compiled restriction structure */
224 LY_STMT_ERROR_MESSAGE = 0xD0000, /**< ::lysp_ext_substmt.storage - `const char *`
225 ::lysp_ext_instance.parent - `struct lysp_restr *`
226 ::lysc_ext_substmt.storage - `const char *`
227 ::lysc_ext_instance.parent - compiled restriction structure */
228 LY_STMT_EXTENSION = 0xE0000, /**< ::lysp_ext_substmt.storage - `struct lysp_ext *`[]
229 ::lysp_ext_instance.parent - `struct lysp_ext *`
230 ::lysc_ext_substmt.storage - not compiled explicitly
231 ::lysc_ext_instance.parent - `struct lysc_ext *` */
232 LY_STMT_EXTENSION_INSTANCE = 0xF0000, /**< ::lysp_ext_substmt.storage - `struct lysp_ext_instance *`[]
233 ::lysc_ext_substmt.storage - `struct lysc_ext_instance *`[] */
234 LY_STMT_FEATURE = 0x100000, /**< ::lysp_ext_substmt.storage - `struct lysp_feature *`[]
235 ::lysp_ext_instance.parent - `struct lysp_feature *`
236 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - not compiled */
237 LY_STMT_FRACTION_DIGITS = 0x110000, /**< ::lysp_ext_substmt.storage - `uint8_t *`
238 ::lysp_ext_instance.parent - `struct lysp_type *`
239 ::lysc_ext_substmt.storage - `uint8_t *`
240 ::lysc_ext_instance.parent - `struct lysc_type *` */
241 LY_STMT_IDENTITY = 0x120000, /**< ::lysp_ext_substmt.storage - `struct lysp_ident *`[]
242 ::lysp_ext_instance.parent - `struct lysp_ident *`
243 ::lysc_ext_substmt.storage - `struct lysc_ident *`[]
244 ::lysc_ext_instance.parent - `struct lysc_ident *` */
245 LY_STMT_IF_FEATURE = 0x130000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_qname *`[]
246 ::lysc_ext_substmt.storage - no storage, evaluated when compiled
247 ::lysc_ext_instance.parent - compiled parent statement */
248 LY_STMT_IMPORT = 0x140000, /**< ::lysp_ext_substmt.storage - `struct lysp_import *`[]
249 ::lysp_ext_instance.parent - `struct lysp_import *`
250 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - not compiled */
251 LY_STMT_INCLUDE = 0x150000, /**< ::lysp_ext_substmt.storage - `struct lysp_include *`[]
252 ::lysp_ext_instance.parent - `struct lysp_include *`
253 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - not compiled */
254 LY_STMT_KEY = 0x160000, /**< ::lysp_ext_substmt.storage - `const char *`
255 ::lysp_ext_instance.parent - `struct lysp_node_list *`
256 ::lysc_ext_substmt.storage - `const char *`
257 ::lysc_ext_instance.parent - `struct lysc_node_list *` */
258 LY_STMT_LENGTH = 0x170000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_restr *`
259 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_range *` */
260 LY_STMT_MANDATORY = 0x180000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `uint16_t *`
261 ::lysc_ext_substmt.storage - `uint16_t *`
262 ::lysc_ext_instance.parent - `struct lysc_node *` */
263 LY_STMT_MAX_ELEMENTS = 0x190000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `uint32_t *`
264 ::lysc_ext_substmt.storage - `uint32_t *`
265 ::lysc_ext_instance.parent - `struct lysc_node_list *` */
266 LY_STMT_MIN_ELEMENTS = 0x1A0000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `uint32_t *`
267 ::lysc_ext_substmt.storage - `uint32_t *`
268 ::lysc_ext_instance.parent - `struct lysc_node_list *` */
269 LY_STMT_MODIFIER = 0x1B0000, /**< ::lysp_ext_substmt.storage - `const char *`
270 ::lysp_ext_instance.parent - `struct lysp_restr *`
271 ::lysc_ext_substmt.storage - `const char *`
272 ::lysc_ext_instance.parent - `struct lysc_pattern *` */
273 LY_STMT_MODULE = 0x1C0000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_module *`
274 ::lysc_ext_substmt.storage - not compiled
275 ::lysc_ext_instance.parent - `struct lysc_module *` */
276 LY_STMT_MUST = 0x1D0000, /**< ::lysp_ext_substmt.storage - `struct lysp_restr *`[]
277 ::lysp_ext_instance.parent - `struct lysp_restr *`
278 ::lysc_ext_substmt.storage - `struct lysc_must *`[]
279 ::lysc_ext_instance.parent - `struct lysc_must *` */
280 LY_STMT_NAMESPACE = 0x1E0000, /**< ::lysp_ext_substmt.storage - `const char *`
281 ::lysp_ext_instance.parent - `struct lysp_module *`
282 ::lysc_ext_substmt.storage - `const char *`
283 ::lysc_ext_instance.parent - `struct lysc_module *` */
284 LY_STMT_ORDERED_BY = 0x1F0000, /**< ::lysp_ext_substmt.storage - `uint16_t *`
285 ::lysp_ext_instance.parent - `struct lysp_node *`
286 ::lysc_ext_substmt.storage - `uint16_t *`
287 ::lysc_ext_instance.parent - `struct lysc_node *` */
288 LY_STMT_ORGANIZATION = 0x200000, /**< ::lysp_ext_substmt.storage - `const char *`
289 ::lysp_ext_instance.parent - `struct lysp_(sub)module *`
290 ::lysc_ext_substmt.storage - `const char *`
291 ::lysc_ext_instance.parent - `struct lysc_module *` */
292 LY_STMT_PATH = 0x210000, /**< ::lysp_ext_substmt.storage - `struct lyxp_expr *`
293 ::lysp_ext_instance.parent - `struct lysp_type *`
294 ::lysc_ext_substmt.storage - not compiled
295 ::lysc_ext_instance.parent - `struct lysc_type *` */
296 LY_STMT_PATTERN = 0x220000, /**< ::lysp_ext_substmt.storage - `struct lysp_restr *`[]
297 ::lysp_ext_instance.parent - `struct lysp_restr *`
298 ::lysc_ext_substmt.storage - `struct lysc_pattern **`[]
299 ::lysc_ext_instance.parent - `struct lysc_pattern *` */
300 LY_STMT_POSITION = 0x230000, /**< ::lysp_ext_substmt.storage - `int64_t *`
301 ::lysp_ext_instance.parent - `struct lysp_type_enum *`
302 ::lysc_ext_substmt.storage - `int64_t *`
303 ::lysc_ext_instance.parent - `struct lysc_type_bitenum_item *` */
304 LY_STMT_PREFIX = 0x240000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char *`
305 ::lysc_ext_substmt.storage - not compiled
306 ::lysc_ext_instance.parent - `struct lysc_module *` */
307 LY_STMT_PRESENCE = 0x250000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char *`
308 ::lysc_ext_substmt.storage - `const char *`
309 ::lysc_ext_instance.parent - `struct lysc_node_container *` */
310 LY_STMT_RANGE = 0x260000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_restr *`
311 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_range *` */
312 LY_STMT_REFERENCE = 0x270000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char *`
313 ::lysc_ext_substmt.storage - `const char *`
314 ::lysc_ext_instance.parent - compiled parent statement */
315 LY_STMT_REFINE = 0x280000, /**< ::lysp_ext_substmt.storage - `struct lysp_refine *`[]
316 ::lysp_ext_instance.parent - `struct lysp_refine *`
317 ::lysc_ext_substmt.storage - not compiled
318 ::lysc_ext_instance.parent - `struct lysc_node *` */
319 LY_STMT_REQUIRE_INSTANCE = 0x290000, /**< ::lysp_ext_substmt.storage - `uint8_t *`
320 ::lysp_ext_instance.parent - `struct lysp_type *`
321 ::lysc_ext_substmt.storage - `uint8_t *`
322 ::lysc_ext_instance.parent - `struct lysc_type *` */
323 LY_STMT_REVISION = 0x2A0000, /**< ::lysp_ext_substmt.storage - `struct lysp_revision *`[]
324 ::lysp_ext_instance.parent - `struct lysp_revision *`
325 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - not compiled */
326 LY_STMT_REVISION_DATE = 0x2B0000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char *`
327 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - not compiled */
328 LY_STMT_STATUS = 0x2C0000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `uint16_t *`
329 ::lysc_ext_substmt.storage - `uint16_t *`
330 ::lysc_ext_instance.parent - compiled parent statement */
331 LY_STMT_SUBMODULE = 0x2D0000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_submodule *`
332 ::lysc_ext_substmt.storage - not compiled
333 ::lysc_ext_instance.parent - `struct lysc_module *` */
334 LY_STMT_TYPE = 0x2E0000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_type *`
335 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_type *` */
336 LY_STMT_TYPEDEF = 0x2F0000, /**< ::lysp_ext_substmt.storage - `struct lysp_tpdf *`[]
337 ::lysp_ext_instance.parent - `struct lysp_tpdf *`
338 ::lysc_ext_substmt.storage - not compiled
339 ::lysc_ext_instance.parent - `struct lysc_type *` */
340 LY_STMT_UNIQUE = 0x300000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_qname *`[]
341 ::lysc_ext_substmt.storage - not compiled
342 ::lysc_ext_instance.parent - `struct lysc_node_list *` */
343 LY_STMT_UNITS = 0x310000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `const char *`
344 ::lysc_ext_substmt.storage - `const char *`
345 ::lysc_ext_instance.parent - `struct lysc_node *`, `struct lysc_type *` (typedef) */
346 LY_STMT_VALUE = 0x320000, /**< ::lysp_ext_substmt.storage - `int64_t *`
347 ::lysp_ext_instance.parent - `struct lysp_type_enum *`
348 ::lysc_ext_substmt.storage - `int64_t *`
349 ::lysc_ext_instance.parent - `struct lysc_type_bitenum_item *` */
350 LY_STMT_WHEN = 0x330000, /**< ::lysp_ext_substmt.storage and ::lysp_ext_instance.parent - `struct lysp_when *`
351 ::lysc_ext_substmt.storage and ::lysc_ext_instance.parent - `struct lysc_when *` */
352 LY_STMT_YANG_VERSION = 0x340000, /**< ::lysp_ext_substmt.storage - `uint8_t *`
353 ::lysp_ext_instance.parent - `struct lysp_(sub)module *`
354 ::lysc_ext_substmt.storage - not compiled
355 ::lysc_ext_instance.parent - `struct lysc_module *` */
356 LY_STMT_YIN_ELEMENT = 0x350000, /**< ::lysp_ext_substmt.storage - `uint16_t *`
357 ::lysp_ext_instance.parent - `struct lysp_ext *`
358 ::lysc_ext_substmt.storage - not compiled
359 ::lysc_ext_instance.parent - `struct lysc_ext *` */
Michal Vaskob4750962022-10-06 15:33:35 +0200360
361 /* separated from the list of statements
362 * the following tokens are part of the syntax and parsers have to work
363 * with them, but they are not a standard YANG statements
364 */
365 LY_STMT_SYNTAX_SEMICOLON,
366 LY_STMT_SYNTAX_LEFT_BRACE,
367 LY_STMT_SYNTAX_RIGHT_BRACE,
368
369 /*
370 * YIN-specific tokens, still they are part of the syntax, but not the standard statements
371 */
372 LY_STMT_ARG_TEXT,
373 LY_STMT_ARG_VALUE
374};
375
376/**
Michal Vasko9c3556a2022-10-06 16:08:47 +0200377 * @brief Structure representing a generic parsed YANG substatement in an extension instance.
Michal Vaskob4750962022-10-06 15:33:35 +0200378 */
379struct lysp_stmt {
380 const char *stmt; /**< identifier of the statement */
381 const char *arg; /**< statement's argument */
382 LY_VALUE_FORMAT format; /**< prefix format of the identifier/argument (::LY_VALUE_XML is YIN format) */
383 void *prefix_data; /**< Format-specific data for prefix resolution (see ly_resolve_prefix()) */
384
385 struct lysp_stmt *next; /**< link to the next statement */
386 struct lysp_stmt *child; /**< list of the statement's substatements (linked list) */
387 uint16_t flags; /**< statement flags, can be set to LYS_YIN_ATTR */
388 enum ly_stmt kw; /**< numeric respresentation of the stmt value */
389};
390
391/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200392 * @brief Structure representing a parsed known YANG substatement in an extension instance.
393 */
394struct lysp_ext_substmt {
395 enum ly_stmt stmt; /**< parsed substatement */
396 void *storage; /**< pointer to the parsed storage of the statement according to the specific
397 lys_ext_substmt::stmt */
398};
399
400/**
401 * @brief YANG extension parsed instance.
Michal Vaskob4750962022-10-06 15:33:35 +0200402 */
403struct lysp_ext_instance {
404 const char *name; /**< extension identifier, including possible prefix */
405 const char *argument; /**< optional value of the extension's argument */
406 LY_VALUE_FORMAT format; /**< prefix format of the extension name/argument (::LY_VALUE_XML is YIN format) */
Michal Vasko193dacd2022-10-13 08:43:05 +0200407 void *prefix_data; /**< format-specific data for prefix resolution (see ly_resolve_prefix()) */
408 struct lysp_ext *def; /**< pointer to the extension definition */
Michal Vaskob4750962022-10-06 15:33:35 +0200409
Michal Vasko193dacd2022-10-13 08:43:05 +0200410 void *parent; /**< pointer to the parent statement holding the extension instance(s), use
411 ::lysp_ext_instance#parent_stmt to access the value/structure */
412 enum ly_stmt parent_stmt; /**< type of the parent statement */
413 LY_ARRAY_COUNT_TYPE parent_stmt_index; /**< index of the stamenet in case the parent does not point to the parent
414 statement directly and it is an array */
415 uint16_t flags; /**< ::LYS_INTERNAL value (@ref snodeflags) */
Michal Vaskob4750962022-10-06 15:33:35 +0200416
Michal Vasko193dacd2022-10-13 08:43:05 +0200417 const struct lyplg_ext_record *record; /**< extension definition plugin record, if any */
418 struct lysp_ext_substmt *substmts; /**< list of supported known YANG statements with the pointer to their
419 parsed data ([sized array](@ref sizedarrays)) */
420 void *parsed; /**< private plugin parsed data */
421 struct lysp_stmt *child; /**< list of generic (unknown) YANG statements */
Michal Vaskob4750962022-10-06 15:33:35 +0200422};
423
424/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200425 * @brief Structure representing a compiled known YANG substatement in an extension instance.
Michal Vaskob4750962022-10-06 15:33:35 +0200426 */
427struct lysc_ext_substmt {
Michal Vasko193dacd2022-10-13 08:43:05 +0200428 enum ly_stmt stmt; /**< compiled substatement */
429 void *storage; /**< pointer to the compiled storage of the statement according to the specific
430 lys_ext_substmt::stmt */
Michal Vaskob4750962022-10-06 15:33:35 +0200431};
432
433/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200434 * @brief YANG extension compiled instance.
Michal Vaskob4750962022-10-06 15:33:35 +0200435 */
436struct lysc_ext_instance {
Michal Vasko193dacd2022-10-13 08:43:05 +0200437 struct lysc_ext *def; /**< pointer to the extension definition */
438 const char *argument; /**< optional value of the extension's argument */
439 struct lys_module *module; /**< module where the extension instantiated is defined */
440 struct lysc_ext_instance *exts; /**< list of the extension instances ([sized array](@ref sizedarrays)) */
Michal Vaskob4750962022-10-06 15:33:35 +0200441
Michal Vasko193dacd2022-10-13 08:43:05 +0200442 void *parent; /**< pointer to the parent element holding the extension instance(s), use
443 ::lysc_ext_instance#parent_stmt to access the value/structure */
444 enum ly_stmt parent_stmt; /**< type of the parent statement */
445 LY_ARRAY_COUNT_TYPE parent_stmt_index; /**< index of the stamenet in case the parent does not point to the parent
446 statement directly and it is an array */
447
448 struct lysc_ext_substmt *substmts; /**< list of supported known YANG statements with the pointer to their
449 compiled data ([sized array](@ref sizedarrays)) */
450 void *compiled; /**< private plugin compiled data */
Michal Vaskob4750962022-10-06 15:33:35 +0200451};
452
453/**
Radek Krejcia6f61e72021-03-24 21:00:19 +0100454 * @brief Macro to define plugin information in external plugins
455 *
456 * Use as follows:
457 * LYPLG_EXTENSIONS = {{<filled information of ::lyplg_ext_record>}, ..., {0}};
Radek Krejci0935f412019-08-20 16:15:18 +0200458 */
Radek Krejcia6f61e72021-03-24 21:00:19 +0100459#define LYPLG_EXTENSIONS \
460 uint32_t plugins_extensions_apiver__ = LYPLG_EXT_API_VERSION; \
461 const struct lyplg_ext_record plugins_extensions__[]
Radek Krejci0935f412019-08-20 16:15:18 +0200462
Michal Vaskoc7262cb2022-11-09 09:41:56 +0100463/**
464 * @defgroup pluginsExtensionsParse Plugins: Extensions parsing support
465 * @ingroup pluginsExtensions
466 *
467 * Implementing extension plugin parse callback.
468 *
469 * @{
Michal Vasko193dacd2022-10-13 08:43:05 +0200470 */
471
472/**
473 * @brief Callback for parsing extension instance substatements.
474 *
Michal Vaskoc7262cb2022-11-09 09:41:56 +0100475 * All known YANG substatements can easily be parsed using ::lyplg_ext_parse_extension_instance.
Michal Vasko193dacd2022-10-13 08:43:05 +0200476 *
477 * @param[in] pctx Parse context.
478 * @param[in,out] ext Parsed extension instance data.
479 * @return LY_SUCCESS on success.
480 * @return LY_ENOT if the extension instance is not supported and should be removed.
481 * @return LY_ERR error on error.
482 */
483typedef LY_ERR (*lyplg_ext_parse_clb)(struct lysp_ctx *pctx, struct lysp_ext_instance *ext);
484
485/**
486 * @brief Log a message from an extension plugin using the parsed extension instance.
487 *
488 * @param[in] pctx Parse context to use.
489 * @param[in] ext Parsed extensiopn instance.
490 * @param[in] level Log message level (error, warning, etc.)
Michal Vasko7a266772024-01-23 11:02:38 +0100491 * @param[in] err Error type code.
Michal Vasko193dacd2022-10-13 08:43:05 +0200492 * @param[in] format Format string to print.
493 * @param[in] ... Format variable parameters.
494 */
495LIBYANG_API_DECL void lyplg_ext_parse_log(const struct lysp_ctx *pctx, const struct lysp_ext_instance *ext,
Michal Vasko7a266772024-01-23 11:02:38 +0100496 LY_LOG_LEVEL level, LY_ERR err, const char *format, ...);
Michal Vasko193dacd2022-10-13 08:43:05 +0200497
498/**
499 * @brief Get current parsed module from a parse context.
500 *
501 * @param[in] pctx Parse context.
502 * @return Current (local) parse mod.
503 */
504LIBYANG_API_DECL const struct lysp_module *lyplg_ext_parse_get_cur_pmod(const struct lysp_ctx *pctx);
505
506/**
507 * @brief Parse substatements of an extension instance.
508 *
509 * Uses standard libyang schema compiler to transform YANG statements into the parsed schema structures. The plugins are
510 * supposed to use this function when the extension instance's substatements can be parsed in a standard way.
511 *
512 * @param[in] pctx Parse context.
513 * @param[in,out] ext Parsed extension instance with the prepared ::lysp_ext_instance.substmts array, which will be
514 * updated by storing the parsed data.
515 * @return LY_SUCCESS on success.
516 * @return LY_ERR error on error.
517 */
518LIBYANG_API_DECL LY_ERR lyplg_ext_parse_extension_instance(struct lysp_ctx *pctx, struct lysp_ext_instance *ext);
519
Michal Vaskoc7262cb2022-11-09 09:41:56 +0100520/** @} pluginsExtensionsParse */
521
522/**
523 * @defgroup pluginsExtensionsCompile Plugins: Extensions compilation support
524 * @ingroup pluginsExtensions
525 *
526 * Implementing extension plugin compile callback.
527 *
528 * @{
Michal Vasko193dacd2022-10-13 08:43:05 +0200529 */
530
531/**
532 * @defgroup scflags Schema compile flags
533 *
534 * Flags to modify schema compilation process and change the way how the particular statements are being compiled. *
535 * @{
536 */
537#define LYS_COMPILE_GROUPING 0x01 /**< Compiling (validation) of a non-instantiated grouping.
538 In this case not all the restrictions are checked since they can
539 be valid only in the real placement of the grouping. This is
540 the case of any restriction that needs to look out of the statements
541 themselves, since the context is not known. */
542#define LYS_COMPILE_DISABLED 0x02 /**< Compiling a disabled subtree (by its if-features). Meaning
543 it will be removed at the end of compilation and should not be
544 added to any unres sets. */
545#define LYS_COMPILE_NO_CONFIG 0x04 /**< ignore config statements, neither inherit config value */
546#define LYS_COMPILE_NO_DISABLED 0x08 /**< ignore if-feature statements */
547
548#define LYS_COMPILE_RPC_INPUT (LYS_IS_INPUT | LYS_COMPILE_NO_CONFIG) /**< Internal option when compiling schema tree of RPC/action input */
549#define LYS_COMPILE_RPC_OUTPUT (LYS_IS_OUTPUT | LYS_COMPILE_NO_CONFIG) /**< Internal option when compiling schema tree of RPC/action output */
550#define LYS_COMPILE_NOTIFICATION (LYS_IS_NOTIF | LYS_COMPILE_NO_CONFIG) /**< Internal option when compiling schema tree of Notification */
551
552/** @} scflags */
Radek Krejci38d85362019-09-05 16:26:38 +0200553
554/**
Radek Krejci0e59c312019-08-15 15:34:15 +0200555 * @brief Callback to compile extension from the lysp_ext_instance to the lysc_ext_instance. The later structure is generally prepared
556 * and only the extension specific data are supposed to be added (if any).
557 *
Michal Vaskoc7262cb2022-11-09 09:41:56 +0100558 * The parsed generic statements can be processed by the callback on its own or the ::lyplg_ext_compile_extension_instance()
Radek Krejciadcf63d2021-02-09 10:21:18 +0100559 * function can be used to let the compilation to libyang following the standard rules for processing the YANG statements.
560 *
Radek Krejci0e59c312019-08-15 15:34:15 +0200561 * @param[in] cctx Current compile context.
Michal Vasko193dacd2022-10-13 08:43:05 +0200562 * @param[in] extp Parsed extension instance data.
563 * @param[in,out] ext Prepared compiled extension instance structure where an addition, extension-specific, data are
Michal Vaskoddd76592022-01-17 13:34:48 +0100564 * supposed to be placed for later use (data validation or use of external tool).
Radek Krejci0e59c312019-08-15 15:34:15 +0200565 * @return LY_SUCCESS in case of success.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100566 * @return LY_ENOT in case the extension instance is not supported and should be removed.
Michal Vasko193dacd2022-10-13 08:43:05 +0200567 * @return LY_ERR error on error.
Radek Krejci0e59c312019-08-15 15:34:15 +0200568 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200569typedef LY_ERR (*lyplg_ext_compile_clb)(struct lysc_ctx *cctx, const struct lysp_ext_instance *extp,
570 struct lysc_ext_instance *ext);
571
572/**
573 * @brief Log a message from an extension plugin using the compiled extension instance.
574 *
575 * @param[in] cctx Optional compile context to generate the path from.
576 * @param[in] ext Compiled extension instance.
577 * @param[in] level Log message level (error, warning, etc.)
Michal Vaskoabd34fb2024-02-21 09:53:56 +0100578 * @param[in] err Error type code.
Michal Vasko193dacd2022-10-13 08:43:05 +0200579 * @param[in] format Format string to print.
580 */
581LIBYANG_API_DECL void lyplg_ext_compile_log(const struct lysc_ctx *cctx, const struct lysc_ext_instance *ext,
Michal Vasko7a266772024-01-23 11:02:38 +0100582 LY_LOG_LEVEL level, LY_ERR err, const char *format, ...);
Michal Vasko193dacd2022-10-13 08:43:05 +0200583
584/**
585 * @brief Log a message from an extension plugin using the compiled extension instance with an explicit error path.
586 *
Michal Vasko7a266772024-01-23 11:02:38 +0100587 * @param[in] path Log error schema path to use.
Michal Vasko193dacd2022-10-13 08:43:05 +0200588 * @param[in] ext Compiled extension instance.
589 * @param[in] level Log message level (error, warning, etc.)
Michal Vaskoabd34fb2024-02-21 09:53:56 +0100590 * @param[in] err Error type code.
Michal Vasko193dacd2022-10-13 08:43:05 +0200591 * @param[in] format Format string to print.
592 */
593LIBYANG_API_DECL void lyplg_ext_compile_log_path(const char *path, const struct lysc_ext_instance *ext,
Michal Vasko7a266772024-01-23 11:02:38 +0100594 LY_LOG_LEVEL level, LY_ERR err, const char *format, ...);
Michal Vasko193dacd2022-10-13 08:43:05 +0200595
596/**
Michal Vasko6727c682023-02-17 10:40:26 +0100597 * @brief Log a message from an extension plugin using the compiled extension instance and a generated error item.
598 *
Michal Vasko7a266772024-01-23 11:02:38 +0100599 * @param[in] eitem Error item to log.
Michal Vasko6727c682023-02-17 10:40:26 +0100600 * @param[in] ext Compiled extension instance.
601 */
Michal Vasko7a266772024-01-23 11:02:38 +0100602LIBYANG_API_DEF void lyplg_ext_compile_log_err(const struct ly_err_item *eitem, const struct lysc_ext_instance *ext);
Michal Vasko6727c682023-02-17 10:40:26 +0100603
604/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200605 * @brief YANG schema compilation context getter for libyang context.
606 *
607 * @param[in] ctx YANG schema compilation context.
608 * @return libyang context connected with the compilation context.
609 */
610LIBYANG_API_DECL struct ly_ctx *lyplg_ext_compile_get_ctx(const struct lysc_ctx *ctx);
611
612/**
613 * @brief YANG schema compilation context getter for compilation options.
614 *
615 * @param[in] ctx YANG schema compilation context.
616 * @return pointer to the compilation options to allow modifying them with @ref scflags values.
617 */
618LIBYANG_API_DECL uint32_t *lyplg_ext_compile_get_options(const struct lysc_ctx *ctx);
619
620/**
621 * @brief YANG schema compilation context getter for current module.
622 *
623 * @param[in] ctx YANG schema compilation context.
624 * @return current module.
625 */
626LIBYANG_API_DECL const struct lys_module *lyplg_ext_compile_get_cur_mod(const struct lysc_ctx *ctx);
627
628/**
629 * @brief YANG schema compilation context getter for currently processed module.
630 *
631 * @param[in] ctx YANG schema compilation context.
632 * @return Currently processed module.
633 */
634LIBYANG_API_DECL struct lysp_module *lyplg_ext_compile_get_pmod(const struct lysc_ctx *ctx);
635
636/**
637 * @brief Compile substatements of an extension instance.
638 *
639 * Uses standard libyang schema compiler to transform YANG statements into the compiled schema structures. The plugins are
640 * supposed to use this function when the extension instance's substatements are supposed to be compiled in a standard way
641 * (or if just the @ref scflags are enough to modify the compilation process).
642 *
643 * @param[in] ctx Compile context.
644 * @param[in] extp Parsed representation of the extension instance being processed.
645 * @param[in,out] ext Compiled extension instance with the prepared ::lysc_ext_instance.substmts array, which will be updated
646 * by storing the compiled data.
647 * @return LY_SUCCESS on success.
648 * @return LY_EVALID if compilation of the substatements fails.
649 * @return LY_ENOT if the extension is disabled (by if-feature) and should be ignored.
650 */
651LIBYANG_API_DECL LY_ERR lyplg_ext_compile_extension_instance(struct lysc_ctx *ctx, const struct lysp_ext_instance *extp,
652 struct lysc_ext_instance *ext);
653
Michal Vaskoc7262cb2022-11-09 09:41:56 +0100654/** @} pluginsExtensionsCompile */
655
656/**
657 * @defgroup pluginsExtensionsSprinterInfo Plugins: Extensions schema info printer support
658 * @ingroup pluginsExtensions
659 *
660 * Implementing extension plugin schema info printer callback.
661 *
662 * @{
Michal Vasko193dacd2022-10-13 08:43:05 +0200663 */
Radek Krejci0e59c312019-08-15 15:34:15 +0200664
665/**
Michal Vaskoddd76592022-01-17 13:34:48 +0100666 * @brief Callback to print the compiled extension instance's private data in the INFO format.
667 *
668 * @param[in] ctx YANG printer context to provide output handler and other information for printing.
669 * @param[in] ext The compiled extension instance, mainly to access the extensions.
670 * @param[in,out] flag Flag to be shared with the caller regarding the opening brackets - 0 if the '{' not yet printed,
671 * 1 otherwise.
672 * @return LY_SUCCESS when everything was fine, other LY_ERR values in case of failure
673 */
Michal Vasko941e0562022-10-18 10:35:00 +0200674typedef LY_ERR (*lyplg_ext_sprinter_info_clb)(struct lyspr_ctx *ctx, struct lysc_ext_instance *ext, ly_bool *flag);
Michal Vaskoddd76592022-01-17 13:34:48 +0100675
676/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200677 * @brief YANG printer context getter for output handler.
Radek Krejci0e59c312019-08-15 15:34:15 +0200678 *
Michal Vasko193dacd2022-10-13 08:43:05 +0200679 * @param[in] ctx YANG printer context.
680 * @return Output handler where the data are being printed. Note that the address of the handler pointer in the context is
681 * returned to allow to modify the handler.
Radek Krejci0e59c312019-08-15 15:34:15 +0200682 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200683LIBYANG_API_DECL struct ly_out **lyplg_ext_print_get_out(const struct lyspr_ctx *ctx);
684
685/**
686 * @brief YANG printer context getter for printer options.
687 *
688 * @param[in] ctx YANG printer context.
689 * @return pointer to the printer options to allow modifying them with @ref schemaprinterflags values.
690 */
691LIBYANG_API_DECL uint32_t *lyplg_ext_print_get_options(const struct lyspr_ctx *ctx);
692
693/**
694 * @brief YANG printer context getter for printer indentation level.
695 *
696 * @param[in] ctx YANG printer context.
697 * @return pointer to the printer's indentation level to allow modifying its value.
698 */
699LIBYANG_API_DECL uint16_t *lyplg_ext_print_get_level(const struct lyspr_ctx *ctx);
700
701/**
Michal Vasko941e0562022-10-18 10:35:00 +0200702 * @brief Print substatements of an extension instance in info format (compiled YANG).
Michal Vasko193dacd2022-10-13 08:43:05 +0200703 *
Michal Vasko941e0562022-10-18 10:35:00 +0200704 * Generic function to access YANG printer functions from the extension plugins (::lyplg_ext_sprinter_info_clb).
Michal Vasko193dacd2022-10-13 08:43:05 +0200705 *
706 * @param[in] ctx YANG printer context to provide output handler and other information for printing.
707 * @param[in] ext The compiled extension instance to access the extensions and substatements data.
708 * @param[in,out] flag Flag to be shared with the caller regarding the opening brackets - 0 if the '{' not yet printed,
709 * 1 otherwise.
710 */
Michal Vasko941e0562022-10-18 10:35:00 +0200711LIBYANG_API_DECL void lyplg_ext_print_info_extension_instance(struct lyspr_ctx *ctx, const struct lysc_ext_instance *ext,
Michal Vasko193dacd2022-10-13 08:43:05 +0200712 ly_bool *flag);
713
Michal Vaskoc7262cb2022-11-09 09:41:56 +0100714/** @} pluginsExtensionsSprinterInfo */
715
716/**
717 * @defgroup pluginsExtensionsSprinterTree Plugins: Extensions schema parsed and compiled tree printer support
718 * @ingroup pluginsExtensions
719 *
720 * Implementing extension plugin schema parsed and compiled tree printer callback.
721 *
722 * @{
aPiecek03cb4872022-10-24 10:31:51 +0200723 */
724
725/**
726 * @brief Callback to print parent node of @p ext or to print the contents of the extension.
727 *
728 * Function is called in two different cases. If the printer_tree needs the tree-diagram form of a parent node,
729 * then @p ctx is set to NULL. In the second case, if printer_tree needs to print the contents of the extension,
730 * then @p ctx is set and function must prepare the nodes that should be printed using the
731 * lyplg_ext_sprinter_tree* functions.
732 *
733 * @param[in] ext Extension instance.
734 * @param[in,out] ctx Context for the tree printer. Extension contents can be inserted into it by functions
735 * lyplg_ext_sprinter_ctree_add_ext_nodes(), lyplg_ext_sprinter_ctree_add_nodes() or by their ptree alternatives.
736 * It parameter is set to NULL, then @p flags and @p add_opts are used by printer_tree.
737 * @param[out] flags Optional override tree-diagram \<flags\> in a parent node. If @p ctx is set, ignore this parameter.
738 * @param[out] add_opts Additional tree-diagram \<opts\> string in a parent node which is printed before \<opts\>. If @p ctx
739 * is set, ignore this parameter.
740 * @return LY_ERR value.
741 */
742typedef LY_ERR (*lyplg_ext_sprinter_ctree_clb)(struct lysc_ext_instance *ext, const struct lyspr_tree_ctx *ctx,
743 const char **flags, const char **add_opts);
744
745/**
746 * @brief Callback for rewriting the tree-diagram form of a specific node.
747 *
748 * If this callback is set, then it is called for each node that belongs to the extension instance.
749 *
750 * @param[in] node Node whose tree-diagram form can be modified by the function.
751 * @param[in,out] plugin_priv Private context set by plugin.
752 * @param[out] skip Flag set to 1 removes the node from printed diagram.
753 * @param[out] flags Override tree-diagram \<flags\> string in the @p node.
754 * @param[out] add_opts Additional tree-diagram \<opts\> string in the @p node which is printed before \<opts\>.
755 * @return LY_ERR value.
756 */
757typedef LY_ERR (*lyplg_ext_sprinter_ctree_override_clb)(const struct lysc_node *node, const void *plugin_priv,
758 ly_bool *skip, const char **flags, const char **add_opts);
759
760/**
761 * @brief Registration of printing a group of nodes, which is already in the extension.
762 *
763 * @param[in] ctx Context of printer_tree in which the group of nodes is saved and later printed.
764 * @param[in] ext Extension in which the group of nodes will be searched.
765 * @param[in] clb Override function that will be applied to each delivered node.
766 * @return LY_ERR value.
767 */
768LIBYANG_API_DECL LY_ERR lyplg_ext_sprinter_ctree_add_ext_nodes(const struct lyspr_tree_ctx *ctx,
769 struct lysc_ext_instance *ext, lyplg_ext_sprinter_ctree_override_clb clb);
770
771/**
772 * @brief Registration of printing the group of nodes which were defined in the plugin.
773 *
774 * @param[in] ctx Context of printer_tree in which the group of nodes is saved and later printed.
775 * @param[in] nodes Points to the first node in group.
776 * @param[in] clb Override function that will be applied to each delivered node.
777 * @return LY_ERR value.
778 */
779LIBYANG_API_DECL LY_ERR lyplg_ext_sprinter_ctree_add_nodes(const struct lyspr_tree_ctx *ctx, struct lysc_node *nodes,
780 lyplg_ext_sprinter_ctree_override_clb clb);
781
782/**
783 * @brief Registration of plugin-private data defined by the plugin that is shared between override_clb calls.
784 *
785 * @param[in] ctx Context of printer_tree in which plugin-private data will be saved.
786 * @param[in] plugin_priv Plugin-private data shared between oberride_clb calls.
787 * @param[in] free_clb Release function for @p plugin_priv.
788 * @return LY_ERR value.
789 */
790LIBYANG_API_DECL LY_ERR lyplg_ext_sprinter_tree_set_priv(const struct lyspr_tree_ctx *ctx, void *plugin_priv,
791 void (*free_clb)(void *plugin_priv));
792
793/**
794 * @copydoc lyplg_ext_sprinter_ctree_clb
795 */
796typedef LY_ERR (*lyplg_ext_sprinter_ptree_clb)(struct lysp_ext_instance *ext, const struct lyspr_tree_ctx *ctx,
797 const char **flags, const char **add_opts);
798
799/**
800 * @copydoc lyplg_ext_sprinter_ctree_override_clb
801 */
802typedef LY_ERR (*lyplg_ext_sprinter_ptree_override_clb)(const struct lysp_node *node, const void *plugin_priv,
803 ly_bool *skip, const char **flags, const char **add_opts);
804
805/**
806 * @copydoc lyplg_ext_sprinter_ctree_add_ext_nodes
807 */
808LIBYANG_API_DECL LY_ERR lyplg_ext_sprinter_ptree_add_ext_nodes(const struct lyspr_tree_ctx *ctx,
809 struct lysp_ext_instance *ext, lyplg_ext_sprinter_ptree_override_clb clb);
810
811/**
812 * @copydoc lyplg_ext_sprinter_ctree_add_nodes
813 */
814LIBYANG_API_DECL LY_ERR lyplg_ext_sprinter_ptree_add_nodes(const struct lyspr_tree_ctx *ctx, struct lysp_node *nodes,
815 lyplg_ext_sprinter_ptree_override_clb clb);
816
Michal Vaskoc7262cb2022-11-09 09:41:56 +0100817/** @} pluginsExtensionsSprinterTree */
818
aPiecek03cb4872022-10-24 10:31:51 +0200819/*
Michal Vasko193dacd2022-10-13 08:43:05 +0200820 * data node
821 */
Radek Krejci0e59c312019-08-15 15:34:15 +0200822
823/**
Michal Vasko135719f2022-08-25 12:18:17 +0200824 * @brief Callback called for all data nodes connected to the extension instance.
825 *
826 * Can be used for additional data node validation. Is called only after the whole data tree is created and standard
Michal Vaskoeba23112022-08-26 08:35:41 +0200827 * validation succeeds. Not called when parsing data and ::LYD_PARSE_ONLY is used.
Michal Vasko135719f2022-08-25 12:18:17 +0200828 *
829 * @param[in] ext Compiled extension instance.
830 * @param[in] node Data node to process.
Michal Vaskoeba23112022-08-26 08:35:41 +0200831 * @param[in] validate_options Options used for the validation phase, see @ref datavalidationoptions.
Michal Vasko135719f2022-08-25 12:18:17 +0200832 * @return LY_SUCCESS on success.
833 * @return LY_ERR on error.
834 */
Michal Vaskoeba23112022-08-26 08:35:41 +0200835typedef LY_ERR (*lyplg_ext_data_node_clb)(struct lysc_ext_instance *ext, struct lyd_node *node, uint32_t validate_options);
Michal Vasko135719f2022-08-25 12:18:17 +0200836
Michal Vasko193dacd2022-10-13 08:43:05 +0200837/*
838 * snode
839 */
840
Michal Vasko135719f2022-08-25 12:18:17 +0200841/**
Michal Vasko8cc3f662022-03-29 11:25:51 +0200842 * @brief Callback for getting a schema node for a new YANG instance data described by an extension instance.
843 * Needed only if the extension instance supports some nested standard YANG data.
Radek Krejci0e59c312019-08-15 15:34:15 +0200844 *
Michal Vaskoddd76592022-01-17 13:34:48 +0100845 * @param[in] ext Compiled extension instance.
Michal Vasko8cc3f662022-03-29 11:25:51 +0200846 * @param[in] parent Parsed parent data node. Set if @p sparent is NULL.
847 * @param[in] sparent Schema parent node. Set if @p parent is NULL.
848 * @param[in] prefix Element prefix, if any.
849 * @param[in] prefix_len Length of @p prefix.
850 * @param[in] format Format of @p prefix.
851 * @param[in] prefix_data Format-specific prefix data.
852 * @param[in] name Element name.
853 * @param[in] name_len Length of @p name.
854 * @param[out] snode Schema node to use for parsing the node.
Michal Vaskoddd76592022-01-17 13:34:48 +0100855 * @return LY_SUCCESS on success.
856 * @return LY_ENOT if the data are not described by @p ext.
857 * @return LY_ERR on error.
Radek Krejci0e59c312019-08-15 15:34:15 +0200858 */
Michal Vasko8cc3f662022-03-29 11:25:51 +0200859typedef LY_ERR (*lyplg_ext_data_snode_clb)(struct lysc_ext_instance *ext, const struct lyd_node *parent,
860 const struct lysc_node *sparent, const char *prefix, size_t prefix_len, LY_VALUE_FORMAT format, void *prefix_data,
861 const char *name, size_t name_len, const struct lysc_node **snode);
Radek Krejci0e59c312019-08-15 15:34:15 +0200862
Michal Vasko193dacd2022-10-13 08:43:05 +0200863/*
864 * validate
865 */
866
Radek Krejci0e59c312019-08-15 15:34:15 +0200867/**
Michal Vaskoddd76592022-01-17 13:34:48 +0100868 * @brief Callback for validating parsed YANG instance data described by an extension instance.
Radek Krejciadcf63d2021-02-09 10:21:18 +0100869 *
Michal Vaskoddd76592022-01-17 13:34:48 +0100870 * This callback is used only for nested data definition (with a standard YANG schema parent).
Radek Krejciadcf63d2021-02-09 10:21:18 +0100871 *
Michal Vaskoddd76592022-01-17 13:34:48 +0100872 * @param[in] ext Compiled extension instance.
Michal Vasko9af7cd42022-04-05 12:26:09 +0200873 * @param[in] sibling First sibling with schema node returned by ::lyplg_ext_data_snode_clb.
Michal Vaskofbbea932022-06-07 11:00:55 +0200874 * @param[in] dep_tree Tree to be used for validating references from the operation subtree, if operation.
875 * @param[in] data_type Validated data type, can be ::LYD_TYPE_DATA_YANG, ::LYD_TYPE_RPC_YANG, ::LYD_TYPE_NOTIF_YANG,
876 * or ::LYD_TYPE_REPLY_YANG.
Michal Vaskoddd76592022-01-17 13:34:48 +0100877 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vaskof4c6f002022-04-01 09:12:22 +0200878 * @param[out] diff Optional diff with any changes made by the validation.
Michal Vaskoddd76592022-01-17 13:34:48 +0100879 * @return LY_SUCCESS on success.
880 * @return LY_ERR on error.
Radek Krejciadcf63d2021-02-09 10:21:18 +0100881 */
Michal Vaskofbbea932022-06-07 11:00:55 +0200882typedef LY_ERR (*lyplg_ext_data_validate_clb)(struct lysc_ext_instance *ext, struct lyd_node *sibling,
883 const struct lyd_node *dep_tree, enum lyd_type data_type, uint32_t val_opts, struct lyd_node **diff);
tadeas-vintrlik2aa36b42021-11-03 13:07:34 +0100884
Michal Vasko193dacd2022-10-13 08:43:05 +0200885/*
886 * parse free
887 */
888
889/**
890 * @brief Callback to free the extension-specific data created by its parsing.
891 *
892 * @param[in] ctx libyang context.
893 * @param[in,out] ext Parsed extension structure to free.
894 */
895typedef void (*lyplg_ext_parse_free_clb)(const struct ly_ctx *ctx, struct lysp_ext_instance *ext);
896
897/**
Michal Vaskoc7262cb2022-11-09 09:41:56 +0100898 * @brief Free the extension instance's data parsed with ::lyplg_ext_parse_extension_instance().
Michal Vasko193dacd2022-10-13 08:43:05 +0200899 *
900 * @param[in] ctx libyang context
901 * @param[in] substmts Extension instance substatements to free.
902 */
903LIBYANG_API_DECL void lyplg_ext_pfree_instance_substatements(const struct ly_ctx *ctx, struct lysp_ext_substmt *substmts);
904
905/*
906 * compile free
907 */
908
909/**
910 * @brief Callback to free the extension-specific data created by its compilation.
911 *
912 * @param[in] ctx libyang context.
913 * @param[in,out] ext Compiled extension structure to free.
914 */
915typedef void (*lyplg_ext_compile_free_clb)(const struct ly_ctx *ctx, struct lysc_ext_instance *ext);
916
917/**
Michal Vaskoc7262cb2022-11-09 09:41:56 +0100918 * @brief Free the extension instance's data compiled with ::lyplg_ext_compile_extension_instance().
Michal Vasko193dacd2022-10-13 08:43:05 +0200919 *
920 * @param[in] ctx libyang context
921 * @param[in] substmts Extension instance substatements to free.
922 */
923LIBYANG_API_DECL void lyplg_ext_cfree_instance_substatements(const struct ly_ctx *ctx, struct lysc_ext_substmt *substmts);
924
tadeas-vintrlik2aa36b42021-11-03 13:07:34 +0100925/**
Michal Vaskoecb6c532023-04-28 12:26:23 +0200926 * @brief Extension plugin implementing various aspects of a YANG extension.
927 *
928 * Every plugin should have at least either ::parse() or ::compile() callback defined but other than that **all**
929 * the callbacks are **optional**.
Radek Krejci0e59c312019-08-15 15:34:15 +0200930 */
Radek Krejcicc9e30f2021-03-29 12:45:08 +0200931struct lyplg_ext {
Michal Vaskoddd76592022-01-17 13:34:48 +0100932 const char *id; /**< plugin identification (mainly for distinguish incompatible versions
933 of the plugins for external tools) */
Michal Vasko9c3556a2022-10-06 16:08:47 +0200934 lyplg_ext_parse_clb parse; /**< callback to parse the extension instance substatements */
Michal Vaskoddd76592022-01-17 13:34:48 +0100935 lyplg_ext_compile_clb compile; /**< callback to compile extension instance from the parsed data */
Michal Vasko941e0562022-10-18 10:35:00 +0200936 lyplg_ext_sprinter_info_clb printer_info; /**< callback to print the compiled content (info format) of the extension
937 instance */
aPiecek03cb4872022-10-24 10:31:51 +0200938 lyplg_ext_sprinter_ctree_clb printer_ctree; /**< callback to print tree format of compiled node containing the
939 compiled content of the extension instance */
940 lyplg_ext_sprinter_ptree_clb printer_ptree; /**< callback to print tree format of parsed node containing the
941 parsed content of the extension instance */
Michal Vasko135719f2022-08-25 12:18:17 +0200942 lyplg_ext_data_node_clb node; /**< callback to validate most relevant data instance for the extension
943 instance */
Michal Vasko8cc3f662022-03-29 11:25:51 +0200944 lyplg_ext_data_snode_clb snode; /**< callback to get schema node for nested YANG data */
Michal Vaskoddd76592022-01-17 13:34:48 +0100945 lyplg_ext_data_validate_clb validate; /**< callback to validate parsed data instances according to the extension
946 definition */
Michal Vasko193dacd2022-10-13 08:43:05 +0200947
948 lyplg_ext_parse_free_clb pfree; /**< free the extension-specific data created by its parsing */
949 lyplg_ext_compile_free_clb cfree; /**< free the extension-specific data created by its compilation */
Radek Krejci0e59c312019-08-15 15:34:15 +0200950};
951
Radek Krejci3e6632f2021-03-22 22:08:21 +0100952struct lyplg_ext_record {
953 /* plugin identification */
954 const char *module; /**< name of the module where the extension is defined */
955 const char *revision; /**< optional module revision - if not specified, the plugin applies to any revision,
956 which is not an optimal approach due to a possible future revisions of the module.
957 Instead, there should be defined multiple items in the plugins list, each with the
958 different revision, but all with the same pointer to the plugin functions. The
959 only valid use case for the NULL revision is the case the module has no revision. */
tadeas-vintrlik2aa36b42021-11-03 13:07:34 +0100960 const char *name; /**< YANG name of the extension */
Radek Krejci3e6632f2021-03-22 22:08:21 +0100961
962 /* runtime data */
963 struct lyplg_ext plugin; /**< data to utilize plugin implementation */
964};
965
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100966/**
Michal Vaskob4750962022-10-06 15:33:35 +0200967 * @brief Stringify statement identifier.
968 *
969 * @param[in] stmt The statement identifier to stringify.
970 * @return Constant string representation of the given @p stmt.
971 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200972LIBYANG_API_DECL const char *lyplg_ext_stmt2str(enum ly_stmt stmt);
Michal Vaskob4750962022-10-06 15:33:35 +0200973
974/**
Michal Vaskob4750962022-10-06 15:33:35 +0200975 * @brief Convert nodetype to statement identifier
976 *
977 * @param[in] nodetype Nodetype to convert.
978 * @return Statement identifier representing the given @p nodetype.
979 */
Michal Vasko193dacd2022-10-13 08:43:05 +0200980LIBYANG_API_DECL enum ly_stmt lyplg_ext_nodetype2stmt(uint16_t nodetype);
Michal Vaskob4750962022-10-06 15:33:35 +0200981
982/**
Michal Vasko193dacd2022-10-13 08:43:05 +0200983 * @brief Get compiled ext instance storage for a specific statement.
Michal Vaskob4750962022-10-06 15:33:35 +0200984 *
Michal Vasko193dacd2022-10-13 08:43:05 +0200985 * @param[in] ext Compiled ext instance.
986 * @param[in] stmt Compiled statement. Can be a mask when the first match is returned, it is expected the storage is
987 * the same for all the masked statements.
Michal Vaskofbd037c2022-11-08 10:34:20 +0100988 * @param[in] storage_size Size of the value at @p storage address (dereferenced).
Michal Vasko193dacd2022-10-13 08:43:05 +0200989 * @param[out] storage Compiled ext instance substatement storage, NULL if was not compiled.
990 * @return LY_SUCCESS on success.
991 * @return LY_ENOT if the substatement is not supported.
Michal Vaskob4750962022-10-06 15:33:35 +0200992 */
Michal Vaskofbd037c2022-11-08 10:34:20 +0100993LIBYANG_API_DECL LY_ERR lyplg_ext_get_storage(const struct lysc_ext_instance *ext, int stmt, uint32_t storage_size,
994 const void **storage);
Michal Vasko193dacd2022-10-13 08:43:05 +0200995
996/**
997 * @brief Get parsed ext instance storage for a specific statement.
998 *
999 * @param[in] ext Compiled ext instance.
1000 * @param[in] stmt Parsed statement. Can be a mask when the first match is returned, it is expected the storage is
1001 * the same for all the masked statements.
Michal Vaskofbd037c2022-11-08 10:34:20 +01001002 * @param[in] storage_size Size of the value at @p storage address (dereferenced).
Michal Vasko193dacd2022-10-13 08:43:05 +02001003 * @param[out] storage Parsed ext instance substatement storage, NULL if was not parsed.
1004 * @return LY_SUCCESS on success.
1005 * @return LY_ENOT if the substatement is not supported.
1006 */
Michal Vaskofbd037c2022-11-08 10:34:20 +01001007LIBYANG_API_DECL LY_ERR lyplg_ext_parsed_get_storage(const struct lysc_ext_instance *ext, int stmt,
1008 uint32_t storage_size, const void **storage);
Michal Vaskob4750962022-10-06 15:33:35 +02001009
1010/**
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001011 * @brief Get specific run-time extension instance data from a callback set by ::ly_ctx_set_ext_data_clb().
1012 *
1013 * @param[in] ctx Context with the callback.
1014 * @param[in] ext Compiled extension instance.
1015 * @param[out] ext_data Provided extension instance data.
1016 * @param[out] ext_data_free Whether the extension instance should free @p ext_data or not.
1017 * @return LY_SUCCESS on success.
1018 * @return LY_ERR on error.
1019 */
Michal Vaskoddd76592022-01-17 13:34:48 +01001020LIBYANG_API_DECL LY_ERR lyplg_ext_get_data(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, void **ext_data,
1021 ly_bool *ext_data_free);
1022
1023/**
1024 * @brief Insert extension instance data into a parent.
1025 *
1026 * @param[in] parent Parent node to insert into.
1027 * @param[in] first First top-level sibling node to insert.
1028 * @return LY_SUCCESS on success.
1029 * @return LY_ERR error on error.
1030 */
Michal Vasko193dacd2022-10-13 08:43:05 +02001031LIBYANG_API_DECL LY_ERR lyplg_ext_insert(struct lyd_node *parent, struct lyd_node *first);
Radek Krejci0935f412019-08-20 16:15:18 +02001032
ekinzie0ab8b302022-10-10 03:03:57 -04001033/**
1034 * @brief Expand parent-reference xpath expressions
1035 *
Michal Vasko193dacd2022-10-13 08:43:05 +02001036 * @param[in] ext Context allocated for extension.
1037 * @param[out] refs Set of schema node matching parent-reference XPaths.
ekinzie0ab8b302022-10-10 03:03:57 -04001038 * @return LY_ERR value.
1039 */
1040LIBYANG_API_DECL LY_ERR lyplg_ext_schema_mount_get_parent_ref(const struct lysc_ext_instance *ext, struct ly_set **refs);
1041
1042/**
Michal Vasko193dacd2022-10-13 08:43:05 +02001043 * @brief Allocate a new context for a particular instance of the yangmnt:mount-point extension.
Michal Vasko4c806de2023-02-01 11:40:37 +01001044 * Caller is responsible for **freeing** the created context.
ekinzie0ab8b302022-10-10 03:03:57 -04001045 *
1046 * @param[in] ext Compiled extension instance.
Michal Vasko4c806de2023-02-01 11:40:37 +01001047 * @param[out] ctx Context with modules loaded from the list found in the extension data.
ekinzie0ab8b302022-10-10 03:03:57 -04001048 * @return LY_ERR value.
1049 */
1050LIBYANG_API_DECL LY_ERR lyplg_ext_schema_mount_create_context(const struct lysc_ext_instance *ext, struct ly_ctx **ctx);
1051
Radek Krejci75104122021-04-01 15:37:45 +02001052/** @} pluginsExtensions */
Radek Krejcid7e8a622018-10-29 15:54:55 +01001053
1054#ifdef __cplusplus
1055}
1056#endif
1057
Radek Krejci0935f412019-08-20 16:15:18 +02001058#endif /* LY_PLUGINS_EXTS_H_ */