blob: 17bae89f13cf4a87e862409262f90f65ae47da7b [file] [log] [blame]
Radek Krejci70853c52018-10-15 14:46:16 +02001/**
2 * @file tree_schema_internal.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief internal functions for YANG schema trees.
5 *
6 * Copyright (c) 2015 - 2018 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef LY_TREE_SCHEMA_INTERNAL_H_
16#define LY_TREE_SCHEMA_INTERNAL_H_
17
Radek Krejci2d7a47b2019-05-16 13:34:10 +020018#include <stdint.h>
19
20#include "set.h"
21#include "tree_schema.h"
22
David Sedlákb3077192019-06-19 10:55:37 +020023#define LOGVAL_PARSER(CTX, ...) LOGVAL((CTX)->ctx, LY_VLOG_LINE, &(CTX)->line, __VA_ARGS__)
Radek Krejcid33273d2018-10-25 14:55:52 +020024
Radek Krejcia9026eb2018-12-12 16:04:47 +010025/* These 2 macros checks YANG's identifier grammar rule */
26#define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_')
27#define is_yangidentchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || \
28 c == '_' || c == '-' || c == '.')
29
David Sedlák4a650532019-07-10 11:55:18 +020030/* Macro to check YANG's yang-char grammar rule */
31#define is_yangutf8char(c) ((c >= 0x20 && c <= 0xd77) || c == 0x09 || c == 0x0a || c == 0x0d || \
32 (c >= 0xe000 && c <= 0xfdcf) || (c >= 0xfdf0 && c <= 0xfffd) || \
33 (c >= 0x10000 && c <= 0x1fffd) || (c >= 0x20000 && c <= 0x2fffd) || \
34 (c >= 0x30000 && c <= 0x3fffd) || (c >= 0x40000 && c <= 0x2fffd) || \
35 (c >= 0x50000 && c <= 0x5fffd) || (c >= 0x60000 && c <= 0x6fffd) || \
36 (c >= 0x70000 && c <= 0x7fffd) || (c >= 0x80000 && c <= 0x8fffd) || \
37 (c >= 0x90000 && c <= 0x9fffd) || (c >= 0xa0000 && c <= 0xafffd) || \
38 (c >= 0xb0000 && c <= 0xbfffd) || (c >= 0xc0000 && c <= 0xcfffd) || \
39 (c >= 0xd0000 && c <= 0xdfffd) || (c >= 0xe0000 && c <= 0xefffd) || \
40 (c >= 0xf0000 && c <= 0xffffd) || (c >= 0x100000 && c <= 0x10fffd))
41
Radek Krejci70853c52018-10-15 14:46:16 +020042/**
David Sedlákca36c422019-07-12 12:47:55 +020043 * @brief Try to find object with MEMBER string matching the IDENT in the given ARRAY.
44 * Macro logs an error message and returns LY_EVALID in case of existence of a matching object.
45 *
46 * @param[in] CTX yang parser context for logging.
47 * @param[in] ARRAY [sized array](@ref sizedarrays) of a generic objects with member named MEMBER to search.
48 * @param[in] MEMBER Name of the member of the objects in the ARRAY to compare.
49 * @param[in] STMT Name of the compared YANG statements for logging.
50 * @param[in] IDENT String trying to find in the ARRAY's objects inside the MEMBER member.
51 */
52#define CHECK_UNIQUENESS(CTX, ARRAY, MEMBER, STMT, IDENT) \
53 if (ARRAY) { \
54 for (unsigned int u = 0; u < LY_ARRAY_SIZE(ARRAY) - 1; ++u) { \
55 if (!strcmp((ARRAY)[u].MEMBER, IDENT)) { \
56 LOGVAL_PARSER(CTX, LY_VCODE_DUPIDENT, IDENT, STMT); \
57 return LY_EVALID; \
58 } \
59 } \
60 }
61
62/**
Radek Krejcie3846472018-10-15 15:24:51 +020063 * @brief List of YANG statement groups - the (sub)module's substatements
64 */
65enum yang_module_stmt {
66 Y_MOD_MODULE_HEADER,
67 Y_MOD_LINKAGE,
68 Y_MOD_META,
69 Y_MOD_REVISION,
70 Y_MOD_BODY
71};
72
73/**
74 * @brief Types of arguments of YANG statements
75 */
76enum yang_arg {
77 Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */
Radek Krejcia9026eb2018-12-12 16:04:47 +010078 Y_PREF_IDENTIF_ARG, /**< YANG "identifier-ref-arg-str" or node-identifier rule */
Radek Krejcie3846472018-10-15 15:24:51 +020079 Y_STR_ARG, /**< YANG "string" rule */
80 Y_MAYBE_STR_ARG /**< optional YANG "string" rule */
81};
82
83/**
Radek Krejci70853c52018-10-15 14:46:16 +020084 * @brief internal context for schema parsers
85 */
Radek Krejcie7b95092019-05-15 11:03:07 +020086struct lys_parser_ctx {
Radek Krejci70853c52018-10-15 14:46:16 +020087 struct ly_ctx *ctx;
David Sedlákaadab9c2019-04-05 15:01:27 +020088 uint64_t line; /**< line number */
Radek Krejcibbe09a92018-11-08 09:36:54 +010089 struct ly_set tpdfs_nodes;
90 struct ly_set grps_nodes;
Radek Krejcibbe09a92018-11-08 09:36:54 +010091 uint64_t indent; /**< current position on the line for YANG indentation */
Radek Krejci0bcdaed2019-01-10 10:21:34 +010092 uint8_t mod_version; /**< module's version */
Radek Krejci70853c52018-10-15 14:46:16 +020093};
94
95/**
Radek Krejci4f28eda2018-11-12 11:46:16 +010096 * @brief internal context for compilation
97 */
98struct lysc_ctx {
99 struct ly_ctx *ctx;
100 struct lys_module *mod;
Radek Krejci0af46292019-01-11 16:02:31 +0100101 struct lys_module *mod_def; /**< context module for the definitions of the nodes being currently
102 processed - groupings are supposed to be evaluated in place where
103 defined, but its content instances are supposed to be placed into
104 the target module (mod) */
105 struct ly_set groupings; /**< stack for groupings circular check */
106 struct ly_set unres; /**< to validate leafref's target and xpath of when/must */
Radek Krejci99b5b2a2019-04-30 16:57:04 +0200107 struct ly_set tpdf_chain;
Radek Krejci4f28eda2018-11-12 11:46:16 +0100108 uint16_t path_len;
Radek Krejciec4da802019-05-02 13:02:41 +0200109 int options; /**< various @ref scflags. */
Radek Krejci4f28eda2018-11-12 11:46:16 +0100110#define LYSC_CTX_BUFSIZE 4078
111 char path[LYSC_CTX_BUFSIZE];
Radek Krejci70853c52018-10-15 14:46:16 +0200112};
113
114/**
David Sedlák4a650532019-07-10 11:55:18 +0200115 * @brief Check that \p c is valid UTF8 code point for YANG string.
116 *
117 * @param[in] ctx yang parser context for logging.
118 * @param[in] c UTF8 code point of a character to check.
119 * @return LY_ERR values.
120 */
121LY_ERR lysp_check_stringchar(struct lys_parser_ctx *ctx, unsigned int c);
122
123/**
124 * @brief Check that \p c is valid UTF8 code point for YANG identifier.
125 *
126 * @param[in] ctx yang parser context for logging.
127 * @param[in] c UTF8 code point of a character to check.
128 * @param[in] first Flag to check the first character of an identifier, which is more restricted.
129 * @param[in,out] prefix Storage for internally used flag in case of possible prefixed identifiers:
130 * 0 - colon not yet found (no prefix)
131 * 1 - \p c is the colon character
132 * 2 - prefix already processed, now processing the identifier
133 *
134 * If the identifier cannot be prefixed, NULL is expected.
135 * @return LY_ERR values.
136 */
137LY_ERR lysp_check_identifierchar(struct lys_parser_ctx *ctx, unsigned int c, int first, int *prefix);
138
139/**
Radek Krejci70853c52018-10-15 14:46:16 +0200140 * @brief Check the currently present prefixes in the module for collision with the new one.
141 *
Radek Krejcibbe09a92018-11-08 09:36:54 +0100142 * @param[in] ctx Context for logging.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100143 * @param[in] imports List of current imports of the module to check prefix collision.
144 * @param[in] module_prefix Prefix of the module to check collision.
Radek Krejci70853c52018-10-15 14:46:16 +0200145 * @param[in] value Newly added prefix value (including its location to distinguish collision with itself).
146 * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise
147 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200148LY_ERR lysp_check_prefix(struct lys_parser_ctx *ctx, struct lysp_import *imports, const char *module_prefix, const char **value);
Radek Krejci70853c52018-10-15 14:46:16 +0200149
Radek Krejci86d106e2018-10-18 09:53:19 +0200150/**
151 * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT)
152 *
Radek Krejcibbe09a92018-11-08 09:36:54 +0100153 * @param[in] ctx Optional context for logging.
Radek Krejci86d106e2018-10-18 09:53:19 +0200154 * @param[in] date Date string to check (non-necessarily terminated by \0)
155 * @param[in] date_len Length of the date string, 10 expected.
156 * @param[in] stmt Statement name for error message.
157 * @return LY_ERR value.
158 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200159LY_ERR lysp_check_date(struct lys_parser_ctx *ctx, const char *date, int date_len, const char *stmt);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100160
161/**
162 * @brief Check names of typedefs in the parsed module to detect collisions.
163 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100164 * @param[in] ctx Parser context for logging and to maintain tpdfs_nodes
165 * @param[in] mod Module where the type is being defined.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100166 * @return LY_ERR value.
167 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200168LY_ERR lysp_check_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod);
Radek Krejci86d106e2018-10-18 09:53:19 +0200169
170/**
171 * @brief Just move the newest revision into the first position, does not sort the rest
172 * @param[in] revs Sized-array of the revisions in a printable schema tree.
173 */
174void lysp_sort_revisions(struct lysp_revision *revs);
175
176/**
David Sedlák6544c182019-07-12 13:17:33 +0200177 * @brief Find type specified type definition.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100178 *
179 * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module.
180 * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents.
181 * @param[in] start_module Module where the type is being instantiated for search for typedefs.
Radek Krejci4f28eda2018-11-12 11:46:16 +0100182 * @param[out] type Built-in type identifier of the id. If #LY_TYPE_UNKNOWN, tpdf is expected to contain found YANG schema typedef statement.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100183 * @param[out] tpdf Found type definition.
184 * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef.
185 * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types.
186 */
187LY_ERR lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module,
Radek Krejci4f28eda2018-11-12 11:46:16 +0100188 LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100189
190/**
David Sedlák6544c182019-07-12 13:17:33 +0200191 * @brief Validate enum name.
192 *
193 * @param[in] ctx yang parser context for logging.
194 * @param[in] name String to check.
195 * @param[in] name_len Length of name.
196 *
197 * @return LY_ERR values
198 */
199LY_ERR lysp_check_enum_name(struct lys_parser_ctx *ctx, char *name, size_t name_len);
200
201/**
Radek Krejci086c7132018-10-26 15:29:04 +0200202 * @brief Find and parse module of the given name.
203 *
204 * @param[in] ctx libyang context.
205 * @param[in] name Name of the module to load.
206 * @param[in] revison Optional revision of the module to load. If NULL, the newest revision is loaded.
Radek Krejcied5acc52019-04-25 15:57:04 +0200207 * @param[in] implement Flag if the loaded module is supposed to be marked as implemented. If revision is NULL and implement flag set,
208 * the implemented module in the context is returned despite it might not be of the latest revision, because in this case the module
209 * of the latest revision can not be made implemented.
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100210 * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context,
211 * but only the compiled structure is available.
Radek Krejci086c7132018-10-26 15:29:04 +0200212 * @param[out] mod Parsed module structure.
213 * @return LY_ERR value.
214 */
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100215LY_ERR lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, int implement, int require_parsed, struct lys_module **mod);
Radek Krejci086c7132018-10-26 15:29:04 +0200216
217/**
Radek Krejcid33273d2018-10-25 14:55:52 +0200218 * @brief Parse included submodule into the simply parsed YANG module.
219 *
Radek Krejci3b1f9292018-11-08 10:58:35 +0100220 * @param[in] ctx parser context
Radek Krejcid33273d2018-10-25 14:55:52 +0200221 * @param[in] mod Module including a submodule.
Radek Krejcid33273d2018-10-25 14:55:52 +0200222 * @param[in,out] inc Include structure holding all available information about the include statement, the parsed
223 * submodule is stored into this structure.
224 * @return LY_ERR value.
225 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200226LY_ERR lysp_load_submodule(struct lys_parser_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc);
Radek Krejcid33273d2018-10-25 14:55:52 +0200227
228/**
Radek Krejci096235c2019-01-11 11:12:19 +0100229 * @defgroup scflags Schema compile flags
230 * @ingroup schematree
231 *
232 * @{
233 */
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100234#define LYSC_OPT_RPC_INPUT LYS_CONFIG_W /**< Internal option when compiling schema tree of RPC/action input */
235#define LYSC_OPT_RPC_OUTPUT LYS_CONFIG_R /**< Internal option when compiling schema tree of RPC/action output */
Radek Krejcifc11bd72019-04-11 16:00:05 +0200236#define LYSC_OPT_RPC_MASK LYS_CONFIG_MASK /**< mask for the internal RPC options */
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100237#define LYSC_OPT_FREE_SP 0x04 /**< Free the input printable schema */
238#define LYSC_OPT_INTERNAL 0x08 /**< Internal compilation caused by dependency */
239#define LYSC_OPT_NOTIFICATION 0x10 /**< Internal option when compiling schema tree of Notification */
Radek Krejcif2de0ed2019-05-02 14:13:18 +0200240
241#define LYSC_OPT_GROUPING 0x20 /** Compiling (validation) of a non-instantiated grouping.
242 In this case not all the restrictions are checked since they can be valid only
243 in the real placement of the grouping. TODO - what specifically is not done */
Radek Krejci096235c2019-01-11 11:12:19 +0100244/** @} scflags */
245
246/**
247 * @brief Compile printable schema into a validated schema linking all the references.
248 *
249 * @param[in, out] mod Schema structure holding pointers to both schema structure types. The ::lys_module#parsed
250 * member is used as input and ::lys_module#compiled is used to hold the result of the compilation.
251 * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags).
252 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
253 */
254LY_ERR lys_compile(struct lys_module *mod, int options);
255
256/**
Radek Krejcibbe09a92018-11-08 09:36:54 +0100257 * @brief Get address of a node's actions list if any.
258 *
259 * Decides the node's type and in case it has an actions list, returns its address.
260 * @param[in] node Node to check.
261 * @return Address of the node's actions member if any, NULL otherwise.
262 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100263struct lysp_action **lysp_node_actions_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100264
265/**
266 * @brief Get address of a node's notifications list if any.
267 *
268 * Decides the node's type and in case it has a notifications list, returns its address.
269 * @param[in] node Node to check.
270 * @return Address of the node's notifs member if any, NULL otherwise.
271 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100272struct lysp_notif **lysp_node_notifs_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100273
274/**
275 * @brief Get address of a node's child pointer if any.
276 *
277 * Decides the node's type and in case it has a children list, returns its address.
278 * @param[in] node Node to check.
279 * @return Address of the node's child member if any, NULL otherwise.
280 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100281struct lysp_node **lysp_node_children_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100282
283/**
284 * @brief Get address of a node's child pointer if any.
285 *
286 * Decides the node's type and in case it has a children list, returns its address.
287 * @param[in] node Node to check.
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100288 * @param[in] flags Config flag to distinguish input (LYS_CONFIG_W) and output (LYS_CONFIG_R) data in case of RPC/action node.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100289 * @return Address of the node's child member if any, NULL otherwise.
290 */
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100291struct lysc_node **lysc_node_children_p(const struct lysc_node *node, uint16_t flags);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100292
293/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200294 * @brief Get address of a node's notifs pointer if any.
295 *
296 * Decides the node's type and in case it has a notifs array, returns its address.
297 * @param[in] node Node to check.
298 * @return Address of the node's notifs member if any, NULL otherwise.
299 */
300struct lysc_notif **lysc_node_notifs_p(struct lysc_node *node);
301
302/**
303 * @brief Get address of a node's actions pointer if any.
304 *
305 * Decides the node's type and in case it has a actions array, returns its address.
306 * @param[in] node Node to check.
307 * @return Address of the node's actions member if any, NULL otherwise.
308 */
309struct lysc_action **lysc_node_actions_p(struct lysc_node *node);
310
311/**
Radek Krejcid3ca0632019-04-16 16:54:54 +0200312 * @brief Iterate over the specified type of the extension instances
313 *
314 * @param[in] ext ([Sized array](@ref sizedarrays)) of extensions to explore
315 * @param[in] index Index in the \p ext array where to start searching (first call with 0, the consequent calls with
316 * the returned index increased by 1 (until the iteration is not terminated by returning LY_ARRAY_SIZE(ext).
317 * @param[in] substmt Type of the extension (its belongins to the specific substatement) to iterate, use
318 * #LYEXT_SUBSTMT_ALL to go through all the extensions in the array
319 * @result index in the ext array, LY_ARRAY_SIZE(ext) value if not present.
320 */
321unsigned int lysp_ext_instance_iter(struct lysp_ext_instance *ext, unsigned int index, LYEXT_SUBSTMT substmt);
322
323/**
Radek Krejci96a0bfd2018-11-22 15:25:06 +0100324 * @brief Get the covering schema module structure for the given parsed module structure.
325 * @param[in] ctx libyang context to search.
326 * @param[in] mod Parsed schema structure.
327 * @return Corresponding lys_module structure for the given parsed schema structure.
328 */
329struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod);
330
331/**
Radek Krejcice8c1592018-10-29 15:35:51 +0100332 * @brief Find the module referenced by prefix in the provided parsed mod.
333 *
334 * @param[in] mod Schema module where the prefix was used.
335 * @param[in] prefix Prefix used to reference a module.
336 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
337 * @return Pointer to the module or NULL if the module is not found.
338 */
Radek Krejcia3045382018-11-22 14:30:31 +0100339struct lysp_module *lysp_module_find_prefix(const struct lysp_module *mod, const char *prefix, size_t len);
Radek Krejcice8c1592018-10-29 15:35:51 +0100340
341/**
342 * @brief Find the module referenced by prefix in the provided compiled mod.
343 *
344 * @param[in] mod Schema module where the prefix was used.
345 * @param[in] prefix Prefix used to reference a module.
346 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
347 * @return Pointer to the module or NULL if the module is not found.
348 */
Radek Krejcia3045382018-11-22 14:30:31 +0100349struct lysc_module *lysc_module_find_prefix(const struct lysc_module *mod, const char *prefix, size_t len);
Radek Krejcice8c1592018-10-29 15:35:51 +0100350
351/**
Radek Krejci4f28eda2018-11-12 11:46:16 +0100352 * @brief Check statement's status for invalid combination.
353 *
354 * The modX parameters are used just to determine if both flags are in the same module,
355 * so any of the schema module structure can be used, but both modules must be provided
356 * in the same type.
357 *
358 * @param[in] ctx Compile context for logging.
359 * @param[in] flags1 Flags of the referencing node.
360 * @param[in] mod1 Module of the referencing node,
361 * @param[in] name1 Schema node name of the referencing node.
362 * @param[in] flags2 Flags of the referenced node.
363 * @param[in] mod2 Module of the referenced node,
364 * @param[in] name2 Schema node name of the referenced node.
365 * @return LY_ERR value
366 */
367LY_ERR lysc_check_status(struct lysc_ctx *ctx,
368 uint16_t flags1, void *mod1, const char *name1,
369 uint16_t flags2, void *mod2, const char *name2);
370
371/**
Radek Krejci95710c92019-02-11 15:49:55 +0100372 * @brief Find the node according to the given descendant/absolute schema nodeid.
373 * Used in unique, refine and augment statements.
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100374 *
375 * @param[in] ctx Compile context
376 * @param[in] nodeid Descendant-schema-nodeid (according to the YANG grammar)
377 * @param[in] nodeid_len Length of the given nodeid, if it is not NULL-terminated string.
378 * @param[in] context_node Node where the nodeid is specified to correctly resolve prefixes and to start searching.
Radek Krejci7af64242019-02-18 13:07:53 +0100379 * If no context node is provided, the nodeid is actually expected to be the absolute schema node .
380 * @param[in] context_module Explicit module to resolve prefixes in @nodeid.
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100381 * @param[in] nodetype Optional (can be 0) restriction for target's nodetype. If target exists, but does not match
Radek Krejci95710c92019-02-11 15:49:55 +0100382 * the given nodetype, LY_EDENIED is returned (and target is provided), but no error message is printed.
383 * The value can be even an ORed value to allow multiple nodetypes.
384 * @param[in] implement Flag if the modules mentioned in the nodeid are supposed to be made implemented.
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100385 * @param[out] target Found target node if any. In case of RPC/action input/output node, LYS_ACTION node is actually returned
386 * since the input/output has not a standalone node structure and it is part of ::lysc_action which is better compatible with ::lysc_node.
387 * @param[out] result_flag Output parameter to announce if the schema nodeid goes through the action's input/output or a Notification.
388 * The LYSC_OPT_RPC_INPUT, LYSC_OPT_RPC_OUTPUT and LYSC_OPT_NOTIFICATION are used as flags.
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100389 * @return LY_ERR values - LY_ENOTFOUND, LY_EVALID, LY_EDENIED or LY_SUCCESS.
390 */
Radek Krejci95710c92019-02-11 15:49:55 +0100391LY_ERR lys_resolve_schema_nodeid(struct lysc_ctx *ctx, const char *nodeid, size_t nodeid_len, const struct lysc_node *context_node,
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100392 const struct lys_module *context_module, int nodetype, int implement,
393 const struct lysc_node **target, uint16_t *result_flag);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100394
395/**
Radek Krejci151a5b72018-10-19 14:21:44 +0200396 * @brief Find the module referenced by prefix in the provided mod.
397 *
Radek Krejci693262f2019-04-29 15:23:20 +0200398 * Reverse function to lys_prefix_find_module().
399 *
Radek Krejci151a5b72018-10-19 14:21:44 +0200400 * @param[in] mod Schema module where the prefix was used.
401 * @param[in] prefix Prefix used to reference a module.
402 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
403 * @return Pointer to the module or NULL if the module is not found.
404 */
Radek Krejcia3045382018-11-22 14:30:31 +0100405struct lys_module *lys_module_find_prefix(const struct lys_module *mod, const char *prefix, size_t len);
406
407/**
Radek Krejci693262f2019-04-29 15:23:20 +0200408 * @brief Find the prefix used to referenced the import module in the provided mod.
409 *
410 * Reverse function to lys_module_find_prefix().
411 *
412 * Note that original prefixes are present only in the parsed schema. In case it is not available
413 * (only compiled schema available), the own prefix of the import module is returned instead.
414 *
415 * @param[in] mod Schema module where the import module was used.
416 * @param[in] import Module referenced in mod.
417 * @return Prefix of the import module.
418 */
419const char *lys_prefix_find_module(const struct lys_module *mod, const struct lys_module *import);
420
421/**
Radek Krejcia3045382018-11-22 14:30:31 +0100422 * @brief Stringify schema nodetype.
423 * @param[in] nodetype Nodetype to stringify.
424 * @return Constant string with the name of the node's type.
425 */
426const char *lys_nodetype2str(uint16_t nodetype);
Radek Krejci151a5b72018-10-19 14:21:44 +0200427
428/**
Radek Krejci693262f2019-04-29 15:23:20 +0200429 * @brief Stringify YANG built-in type.
430 * @param[in] basetype Built-in tyep ID to stringify.
431 * @return Constant string with the name of the built-in type.
432 */
433const char *lys_datatype2str(LY_DATA_TYPE basetype);
434
435/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100436 * @brief Parse YANG module from a string.
Radek Krejcid33273d2018-10-25 14:55:52 +0200437 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100438 * The modules are added into the context and the latest_revision flag is updated.
Radek Krejcid33273d2018-10-25 14:55:52 +0200439 *
440 * @param[in] ctx libyang context where to process the data model.
441 * @param[in] data The string containing the dumped data model in the specified
442 * format.
443 * @param[in] format Format of the input data (YANG or YIN).
Radek Krejcid33273d2018-10-25 14:55:52 +0200444 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100445 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
446 * @param[in] check_data Caller's data to pass to the custom_check callback.
Radek Krejcid33273d2018-10-25 14:55:52 +0200447 * @return Pointer to the data model structure or NULL on error.
448 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100449struct lys_module *lys_parse_mem_module(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, int implement,
450 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data),
451 void *check_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200452
453/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100454 * @brief Parse YANG submodule from a string.
Radek Krejcid33273d2018-10-25 14:55:52 +0200455 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100456 * The latest_revision flag of submodule is updated.
457 *
458 * @param[in] ctx libyang context where to process the data model.
459 * @param[in] data The string containing the dumped data model in the specified
460 * format.
461 * @param[in] format Format of the input data (YANG or YIN).
462 * @param[in] main_ctx Parser context of the main module.
463 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
464 * @param[in] check_data Caller's data to pass to the custom_check callback.
465 * @return Pointer to the data model structure or NULL on error.
466 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200467struct lysp_submodule *lys_parse_mem_submodule(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, struct lys_parser_ctx *main_ctx,
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100468 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data),
469 void *check_data);
470
471/**
472 * @brief Parse YANG module or submodule from a file descriptor.
473 *
474 * The modules are added into the context, submodules not. The latest_revision flag is updated in both cases.
Radek Krejcid33273d2018-10-25 14:55:52 +0200475 *
476 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
477 *
478 * @param[in] ctx libyang context where to process the data model.
479 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
480 * in the specified format.
481 * @param[in] format Format of the input data (YANG or YIN).
Radek Krejcid33273d2018-10-25 14:55:52 +0200482 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100483 * @param[in] main_ctx Parser context of the main module in case of parsing submodule. This flag decides if the module
484 * or submodule was expected to be parsed.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100485 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
486 * @param[in] check_data Caller's data to pass to the custom_check callback.
Radek Krejcid33273d2018-10-25 14:55:52 +0200487 * @return Pointer to the data model structure or NULL on error.
488 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200489void *lys_parse_fd_(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement, struct lys_parser_ctx *main_ctx,
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100490 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data),
491 void *check_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200492
493/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100494 * @brief Parse YANG module from a file descriptor.
Radek Krejcid33273d2018-10-25 14:55:52 +0200495 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100496 * The modules are added into the context. The latest_revision flag is updated.
Radek Krejcid33273d2018-10-25 14:55:52 +0200497 *
498 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
499 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100500 * @param[in] ctx libyang context where to process the data model.
501 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
502 * in the specified format.
503 * @param[in] format Format of the input data (YANG or YIN).
504 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
505 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
506 * @param[in] check_data Caller's data to pass to the custom_check callback.
507 * @return Pointer to the data model structure or NULL on error.
508 */
509struct lys_module *lys_parse_fd_module(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement,
510 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data),
511 void *check_data);
512
513/**
514 * @brief Parse YANG submodule from a file descriptor.
515 *
516 * The latest_revision flag of submodules is updated.
517 *
518 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
519 *
520 * @param[in] ctx libyang context where to process the data model.
521 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
522 * in the specified format.
523 * @param[in] format Format of the input data (YANG or YIN).
524 * @param[in] main_ctx Parser context of the main module.
525 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
526 * @param[in] check_data Caller's data to pass to the custom_check callback.
527 * @return Pointer to the data model structure or NULL on error.
528 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200529struct lysp_submodule *lys_parse_fd_submodule(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, struct lys_parser_ctx *main_ctx,
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100530 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data),
531 void *check_data);
532
533/**
534 * @brief Parse YANG module from a filepath.
535 *
536 * The modules are added into the context. The latest_revision flag is updated.
537 *
538 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
Radek Krejcid33273d2018-10-25 14:55:52 +0200539 *
540 * @param[in] ctx libyang context where to process the data model.
541 * @param[in] path Path to the file with the model in the specified format.
542 * @param[in] format Format of the input data (YANG or YIN).
Radek Krejcid33273d2018-10-25 14:55:52 +0200543 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100544 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
545 * @param[in] check_data Caller's data to pass to the custom_check callback.
Radek Krejcid33273d2018-10-25 14:55:52 +0200546 * @return Pointer to the data model structure or NULL on error.
547 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100548struct lys_module *lys_parse_path_(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, int implement,
549 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data),
550 void *check_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200551
552/**
553 * @brief Load the (sub)module into the context.
554 *
555 * This function does not check the presence of the (sub)module in context, it should be done before calling this function.
556 *
557 * module_name and submodule_name are alternatives - only one of the
558 *
559 * @param[in] ctx libyang context where to work.
560 * @param[in] name Name of the (sub)module to load.
561 * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded.
562 * @param[in] implement Flag if the (sub)module is supposed to be marked as implemented.
Radek Krejci3b1f9292018-11-08 10:58:35 +0100563 * @param[in] main_ctx Parser context of the main module in case of loading submodule.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100564 * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*).
565 * If it is a module, it is already in the context!
Radek Krejcid33273d2018-10-25 14:55:52 +0200566 * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided.
567 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200568LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement, struct lys_parser_ctx *main_ctx,
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100569 void **result);
Radek Krejci086c7132018-10-26 15:29:04 +0200570
571/**
Radek Krejci0af46292019-01-11 16:02:31 +0100572 * @brief Create pre-compiled features array.
573 *
574 * Features are compiled in two steps to allow forward references between them via their if-feature statements.
575 * In case of not implemented schemas, the precompiled list of features is stored in lys_module structure and
576 * the compilation is not finished (if-feature and extensions are missing) and all the features are permanently
577 * disabled without a chance to change it. The list is used as target for any if-feature statement in any
578 * implemented module to get valid data to evaluate its result. The compilation is finished via
579 * lys_feature_precompile_finish() in implemented modules. In case a not implemented module becomes implemented,
580 * the precompiled list is reused to finish the compilation to preserve pointers already used in various compiled
581 * if-feature structures.
582 *
Radek Krejci327de162019-06-14 12:52:07 +0200583 * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p module.
Radek Krejci0af46292019-01-11 16:02:31 +0100584 * @param[in] ctx libyang context.
Radek Krejci693262f2019-04-29 15:23:20 +0200585 * @param[in] module Module of the features.
Radek Krejci0af46292019-01-11 16:02:31 +0100586 * @param[in] features_p Array if the parsed features definitions to precompile.
587 * @param[in,out] features Pointer to the storage of the (pre)compiled features array where the new features are
588 * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed features are going
589 * to be processed.
590 * @return LY_ERR value.
Radek Krejci086c7132018-10-26 15:29:04 +0200591 */
Radek Krejci327de162019-06-14 12:52:07 +0200592LY_ERR lys_feature_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module, struct lysp_feature *features_p, struct lysc_feature **features);
Radek Krejci693262f2019-04-29 15:23:20 +0200593
594/**
595 * @brief Get the @ref ifftokens from the given position in the 2bits array
596 * (libyang format of the if-feature expression).
597 * @param[in] list The 2bits array with the compiled if-feature expression.
598 * @param[in] pos Position (0-based) to specify from which position get the operator.
599 */
600uint8_t lysc_iff_getop(uint8_t *list, int pos);
Radek Krejci0af46292019-01-11 16:02:31 +0100601
602/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200603 * @brief Macro to free [sized array](@ref sizedarrays) of items using the provided free function. The ARRAY itself is also freed,
604 * but the memory is not sanitized.
605 */
606#define FREE_ARRAY(CTX, ARRAY, FUNC) {uint64_t c__; LY_ARRAY_FOR(ARRAY, c__){FUNC(CTX, &(ARRAY)[c__]);}LY_ARRAY_FREE(ARRAY);}
607
608/**
609 * @brief Macro to free the specified MEMBER of a structure using the provided free function. The memory is not sanitized.
610 */
611#define FREE_MEMBER(CTX, MEMBER, FUNC) if (MEMBER) {FUNC(CTX, MEMBER);free(MEMBER);}
612
613/**
614 * @brief Macro to free [sized array](@ref sizedarrays) of strings stored in the context's dictionary. The ARRAY itself is also freed,
615 * but the memory is not sanitized.
616 */
617#define FREE_STRINGS(CTX, ARRAY) {uint64_t c__; LY_ARRAY_FOR(ARRAY, c__){FREE_STRING(CTX, ARRAY[c__]);}LY_ARRAY_FREE(ARRAY);}
Radek Krejci086c7132018-10-26 15:29:04 +0200618
619/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100620 * @brief Free the parsed submodule structure.
621 * @param[in] ctx libyang context where the string data resides in a dictionary.
622 * @param[in,out] submod Parsed schema submodule structure to free.
Radek Krejci086c7132018-10-26 15:29:04 +0200623 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100624void lysp_submodule_free(struct ly_ctx *ctx, struct lysp_submodule *submod);
Radek Krejci086c7132018-10-26 15:29:04 +0200625
Radek Krejcid33273d2018-10-25 14:55:52 +0200626/**
Radek Krejcicdfecd92018-11-26 11:27:32 +0100627 * @brief Free the compiled type structure.
628 * @param[in] ctx libyang context where the string data resides in a dictionary.
629 * @param[in,out] type Compiled type structure to be freed. The structure has refcount, so it is freed only in case the value is decreased to 0.
630 */
631void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type);
632
633/**
Radek Krejci0af46292019-01-11 16:02:31 +0100634 * @brief Free the compiled if-feature structure.
635 * @param[in] ctx libyang context where the string data resides in a dictionary.
636 * @param[in,out] iff Compiled if-feature structure to be cleaned.
637 * Since the structure is typically part of the sized array, the structure itself is not freed.
638 */
639void lysc_iffeature_free(struct ly_ctx *ctx, struct lysc_iffeature *iff);
640
641/**
Radek Krejciccd20f12019-02-15 14:12:27 +0100642 * @brief Free the compiled must structure.
643 * @param[in] ctx libyang context where the string data resides in a dictionary.
644 * @param[in,out] must Compiled must structure to be cleaned.
645 * Since the structure is typically part of the sized array, the structure itself is not freed.
646 */
647void lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must);
648
649/**
Radek Krejcif538ce52019-03-05 10:46:14 +0100650 * @brief Free the data inside compiled input/output structure.
651 * @param[in] ctx libyang context where the string data resides in a dictionary.
652 * @param[in,out] inout Compiled inout structure to be cleaned.
653 * Since the structure is part of the RPC/action structure, it is not freed itself.
654 */
655void lysc_action_inout_free(struct ly_ctx *ctx, struct lysc_action_inout *inout);
656
657/**
658 * @brief Free the data inside compiled RPC/action structure.
659 * @param[in] ctx libyang context where the string data resides in a dictionary.
660 * @param[in,out] action Compiled action structure to be cleaned.
661 * Since the structure is typically part of the sized array, the structure itself is not freed.
662 */
663void lysc_action_free(struct ly_ctx *ctx, struct lysc_action *action);
664
665/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200666 * @brief Free the items inside the compiled Notification structure.
667 * @param[in] ctx libyang context where the string data resides in a dictionary.
668 * @param[in,out] action Compiled Notification structure to be cleaned.
669 * Since the structure is typically part of the sized array, the structure itself is not freed.
670 */
671void lysc_notif_free(struct ly_ctx *ctx, struct lysc_notif *notif);
672
673/**
Radek Krejci0af46292019-01-11 16:02:31 +0100674 * @brief Free the compiled extension instance structure.
675 * @param[in] ctx libyang context where the string data resides in a dictionary.
676 * @param[in,out] ext Compiled extension instance structure to be cleaned.
677 * Since the structure is typically part of the sized array, the structure itself is not freed.
678 */
679void lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext);
680
681/**
Radek Krejci19a96102018-11-15 13:38:09 +0100682 * @brief Free the compiled node structure.
683 * @param[in] ctx libyang context where the string data resides in a dictionary.
684 * @param[in,out] node Compiled node structure to be freed.
685 */
686void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node);
687
688/**
Radek Krejcif2de0ed2019-05-02 14:13:18 +0200689 * @brief Free the compiled container node structure.
690 *
691 * Only the container-specific members are freed, for generic node free function,
692 * use lysc_node_free().
693 *
694 * @param[in] ctx libyang context where the string data resides in a dictionary.
695 * @param[in,out] node Compiled container node structure to be freed.
696 */
697void lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node);
698
699/**
Radek Krejci19a96102018-11-15 13:38:09 +0100700 * @brief Free the compiled schema structure.
701 * @param[in,out] module Compiled schema module structure to free.
702 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
703 */
704void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
Radek Krejci86d106e2018-10-18 09:53:19 +0200705
706/**
707 * @brief Free the schema structure. It just frees, it does not remove the schema from its context.
Radek Krejci70853c52018-10-15 14:46:16 +0200708 * @param[in,out] module Schema module structure to free.
709 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
710 */
711void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
712
713/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100714 * @brief Parse submodule from YANG data.
715 * @param[in] ctx Parser context.
716 * @param[in] data Input data to be parsed.
717 * @param[out] submod Pointer to the parsed submodule structure.
718 * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID.
Radek Krejci70853c52018-10-15 14:46:16 +0200719 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200720LY_ERR yang_parse_submodule(struct lys_parser_ctx *ctx, const char *data, struct lysp_submodule **submod);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100721
722/**
723 * @brief Parse module from YANG data.
724 * @param[in] ctx Parser context.
725 * @param[in] data Input data to be parsed.
726 * @param[in, out] mod Prepared module structure where the parsed information, including the parsed
727 * module structure, will be filled in.
728 * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID.
729 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200730LY_ERR yang_parse_module(struct lys_parser_ctx *ctx, const char *data, struct lys_module *mod);
Radek Krejci70853c52018-10-15 14:46:16 +0200731
Radek Krejci95710c92019-02-11 15:49:55 +0100732/**
David Sedlákecf5eb82019-06-03 14:12:44 +0200733 * @brief Parse module from YIN data.
734 * @param[in] ctx Libyang context.
735 * @param[in] data Input data to be parsed.
David Sedlákb666bcc2019-06-05 15:00:05 +0200736 * @param[in,out] mod Prepared module structure where the parsed information, including the parsed
David Sedlákecf5eb82019-06-03 14:12:44 +0200737 * module structure, will be filled in.
David Sedlák68826732019-06-05 10:50:58 +0200738 * @return LY_ERR values.
David Sedlákecf5eb82019-06-03 14:12:44 +0200739 */
740LY_ERR yin_parse_module(struct ly_ctx *ctx, const char *data, struct lys_module *mod);
Radek Krejci70853c52018-10-15 14:46:16 +0200741
Radek Krejci95710c92019-02-11 15:49:55 +0100742/**
743 * @brief Make the specific module implemented, use the provided value as flag.
744 *
745 * @param[in] ctx libyang context to change.
746 * @param[in] mod Module from the given context to make implemented. It is not an error
747 * to provide already implemented module, it just does nothing.
748 * @param[in] implemented Flag value for the ::lys_module#implemented item.
749 * @return LY_SUCCESS or LY_EDENIED in case the context contains some other revision of the
750 * same module which is already implemented.
751 */
752LY_ERR ly_ctx_module_implement_internal(struct ly_ctx *ctx, struct lys_module *mod, uint8_t implemented);
Radek Krejci70853c52018-10-15 14:46:16 +0200753
David Sedlák18e494b2018-12-17 03:58:39 +0100754/**
755 * @brief match yang keyword
David Sedlák1bccdfa2019-06-17 15:55:27 +0200756 *
757 * param[in] ctx yang parser context for logging, can be NULL if keyword is from YIN data.
758 * param[in,out] data Data to read from, always moved to currently handled character.
759 *
760 * return yang_keyword values.
David Sedlák18e494b2018-12-17 03:58:39 +0100761 */
David Sedlák5f8f0332019-06-18 16:34:30 +0200762enum yang_keyword lysp_match_kw(struct lys_parser_ctx *ctx, const char **data);
David Sedlák1bccdfa2019-06-17 15:55:27 +0200763
Radek Krejci70853c52018-10-15 14:46:16 +0200764#endif /* LY_TREE_SCHEMA_INTERNAL_H_ */