blob: 4ee5aac28e85fc7cf254435f84061b47086bee22 [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
Radek Krejci535ea9f2020-05-29 16:01:05 +020020#include "common.h"
Radek Krejci2d7a47b2019-05-16 13:34:10 +020021#include "set.h"
22#include "tree_schema.h"
David Sedlákebd3acf2019-07-26 15:04:32 +020023#include "xml.h"
Radek Krejci2d7a47b2019-05-16 13:34:10 +020024
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020025struct lysc_ctx;
Michal Vasko405cc9e2020-12-01 12:01:27 +010026struct lys_glob_unres;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020027
FredGand944bdc2019-11-05 21:57:07 +080028#define YIN_NS_URI "urn:ietf:params:xml:ns:yang:yin:1"
29
Radek Krejci335332a2019-09-05 13:03:35 +020030/**
31 * @brief Check module version is at least 2 (YANG 1.1) because of the keyword presence.
32 * Logs error message and returns LY_EVALID in case of module in YANG version 1.0.
33 * @param[in] CTX yang parser context to get current module and for logging.
34 * @param[in] KW keyword allowed only in YANG version 1.1 (or later) - for logging.
35 * @param[in] PARENT parent statement where the KW is present - for logging.
36 */
37#define PARSER_CHECK_STMTVER2_RET(CTX, KW, PARENT) \
Michal Vasko5d24f6c2020-10-13 13:49:06 +020038 if ((CTX)->parsed_mod->version < LYS_VERSION_1_1) {LOGVAL_PARSER((CTX), LY_VCODE_INCHILDSTMT2, KW, PARENT); return LY_EVALID;}
Radek Krejcid33273d2018-10-25 14:55:52 +020039
Radek Krejcia9026eb2018-12-12 16:04:47 +010040/* These 2 macros checks YANG's identifier grammar rule */
41#define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_')
42#define is_yangidentchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || \
David Sedlákebd3acf2019-07-26 15:04:32 +020043 c == '_' || c == '-' || c == '.')
Radek Krejcia9026eb2018-12-12 16:04:47 +010044
David Sedlák4a650532019-07-10 11:55:18 +020045/* Macro to check YANG's yang-char grammar rule */
David Sedlák2c0d5ef2019-08-14 11:40:44 +020046#define is_yangutf8char(c) ((c >= 0x20 && c <= 0xd7ff) || c == 0x09 || c == 0x0a || c == 0x0d || \
David Sedlák4a650532019-07-10 11:55:18 +020047 (c >= 0xe000 && c <= 0xfdcf) || (c >= 0xfdf0 && c <= 0xfffd) || \
48 (c >= 0x10000 && c <= 0x1fffd) || (c >= 0x20000 && c <= 0x2fffd) || \
49 (c >= 0x30000 && c <= 0x3fffd) || (c >= 0x40000 && c <= 0x2fffd) || \
50 (c >= 0x50000 && c <= 0x5fffd) || (c >= 0x60000 && c <= 0x6fffd) || \
51 (c >= 0x70000 && c <= 0x7fffd) || (c >= 0x80000 && c <= 0x8fffd) || \
52 (c >= 0x90000 && c <= 0x9fffd) || (c >= 0xa0000 && c <= 0xafffd) || \
53 (c >= 0xb0000 && c <= 0xbfffd) || (c >= 0xc0000 && c <= 0xcfffd) || \
54 (c >= 0xd0000 && c <= 0xdfffd) || (c >= 0xe0000 && c <= 0xefffd) || \
55 (c >= 0xf0000 && c <= 0xffffd) || (c >= 0x100000 && c <= 0x10fffd))
56
Radek Krejci70853c52018-10-15 14:46:16 +020057/**
David Sedlákca36c422019-07-12 12:47:55 +020058 * @brief Try to find object with MEMBER string matching the IDENT in the given ARRAY.
59 * Macro logs an error message and returns LY_EVALID in case of existence of a matching object.
60 *
61 * @param[in] CTX yang parser context for logging.
62 * @param[in] ARRAY [sized array](@ref sizedarrays) of a generic objects with member named MEMBER to search.
63 * @param[in] MEMBER Name of the member of the objects in the ARRAY to compare.
64 * @param[in] STMT Name of the compared YANG statements for logging.
65 * @param[in] IDENT String trying to find in the ARRAY's objects inside the MEMBER member.
66 */
67#define CHECK_UNIQUENESS(CTX, ARRAY, MEMBER, STMT, IDENT) \
68 if (ARRAY) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +020069 for (LY_ARRAY_COUNT_TYPE u_ = 0; u_ < LY_ARRAY_COUNT(ARRAY) - 1; ++u_) { \
Radek Krejci7eb54ba2020-05-18 16:30:04 +020070 if (!strcmp((ARRAY)[u_].MEMBER, IDENT)) { \
David Sedlákca36c422019-07-12 12:47:55 +020071 LOGVAL_PARSER(CTX, LY_VCODE_DUPIDENT, IDENT, STMT); \
72 return LY_EVALID; \
73 } \
74 } \
75 }
76
Michal Vaskob36053d2020-03-26 15:49:30 +010077#define CHECK_NONEMPTY(CTX, VALUE_LEN, STMT) \
David Sedlák129a09c2019-07-12 14:08:34 +020078 if (!VALUE_LEN) { \
Michal Vaskob36053d2020-03-26 15:49:30 +010079 LOGWRN(PARSER_CTX(CTX), "Empty argument of %s statement does not make sense.", STMT); \
David Sedlák129a09c2019-07-12 14:08:34 +020080 }
Radek Krejci70853c52018-10-15 14:46:16 +020081
82/**
Radek Krejcie3846472018-10-15 15:24:51 +020083 * @brief List of YANG statement groups - the (sub)module's substatements
84 */
85enum yang_module_stmt {
86 Y_MOD_MODULE_HEADER,
87 Y_MOD_LINKAGE,
88 Y_MOD_META,
89 Y_MOD_REVISION,
90 Y_MOD_BODY
91};
92
93/**
94 * @brief Types of arguments of YANG statements
95 */
96enum yang_arg {
97 Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */
Radek Krejcia9026eb2018-12-12 16:04:47 +010098 Y_PREF_IDENTIF_ARG, /**< YANG "identifier-ref-arg-str" or node-identifier rule */
Radek Krejcie3846472018-10-15 15:24:51 +020099 Y_STR_ARG, /**< YANG "string" rule */
100 Y_MAYBE_STR_ARG /**< optional YANG "string" rule */
101};
102
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200103#define PARSER_CTX(CTX) ((CTX)->parsed_mod->mod->ctx)
Michal Vaskob36053d2020-03-26 15:49:30 +0100104
105#define LOGVAL_PARSER(CTX, ...) (CTX)->format == LYS_IN_YANG ? LOGVAL_YANG(CTX, __VA_ARGS__) : LOGVAL_YIN(CTX, __VA_ARGS__)
106
107#define LOGVAL_YANG(CTX, ...) LOGVAL(PARSER_CTX(CTX), ((struct lys_yang_parser_ctx *)CTX)->pos_type, \
108 ((struct lys_yang_parser_ctx *)CTX)->pos_type == LY_VLOG_LINE ? \
109 (void *)&((struct lys_yang_parser_ctx *)CTX)->line : \
110 (void *)((struct lys_yang_parser_ctx *)CTX)->path, __VA_ARGS__)
111
112#define LOGVAL_YIN(CTX, ...) LOGVAL(PARSER_CTX(CTX), LY_VLOG_LINE, \
113 &((struct lys_yin_parser_ctx *)CTX)->xmlctx->line, __VA_ARGS__)
114
115struct lys_parser_ctx {
Michal Vasko7c8439f2020-08-05 13:25:19 +0200116 LYS_INFORMAT format; /**< parser format */
117 struct ly_set tpdfs_nodes; /**< set of typedef nodes */
118 struct ly_set grps_nodes; /**< set of grouping nodes */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200119 struct lysp_module *parsed_mod; /**< (sub)module being parsed */
Michal Vasko405cc9e2020-12-01 12:01:27 +0100120 struct lys_glob_unres *unres; /**< global unres structure */
Michal Vaskob36053d2020-03-26 15:49:30 +0100121};
122
Radek Krejcie3846472018-10-15 15:24:51 +0200123/**
David Sedlákebd3acf2019-07-26 15:04:32 +0200124 * @brief Internal context for yang schema parser.
Radek Krejci70853c52018-10-15 14:46:16 +0200125 */
Michal Vaskob36053d2020-03-26 15:49:30 +0100126struct lys_yang_parser_ctx {
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200127 LYS_INFORMAT format; /**< parser format */
128 struct ly_set tpdfs_nodes; /**< set of typedef nodes */
129 struct ly_set grps_nodes; /**< set of grouping nodes */
130 struct lysp_module *parsed_mod; /**< (sub)module being parsed */
Michal Vasko405cc9e2020-12-01 12:01:27 +0100131 struct lys_glob_unres *unres; /**< global unres structure */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200132 enum LY_VLOG_ELEM pos_type; /**< */
Radek Krejci335332a2019-09-05 13:03:35 +0200133 union {
134 uint64_t line; /**< line number */
135 const char *path; /**< path */
136 };
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200137 uint64_t indent; /**< current position on the line for YANG indentation */
Radek Krejci70853c52018-10-15 14:46:16 +0200138};
139
David Sedlákebd3acf2019-07-26 15:04:32 +0200140/**
141 * @brief free lys parser context.
142 */
Michal Vaskob36053d2020-03-26 15:49:30 +0100143void yang_parser_ctx_free(struct lys_yang_parser_ctx *ctx);
David Sedlákebd3acf2019-07-26 15:04:32 +0200144
145/**
146 * @brief Internal context for yin schema parser.
147 */
Michal Vaskob36053d2020-03-26 15:49:30 +0100148struct lys_yin_parser_ctx {
149 LYS_INFORMAT format; /**< parser format */
David Sedlákebd3acf2019-07-26 15:04:32 +0200150 struct ly_set tpdfs_nodes; /**< set of typedef nodes */
151 struct ly_set grps_nodes; /**< set of grouping nodes */
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200152 struct lysp_module *parsed_mod;/**< (sub)module being parsed */
Michal Vasko405cc9e2020-12-01 12:01:27 +0100153 struct lys_glob_unres *unres; /**< global unres structure */
Michal Vaskob36053d2020-03-26 15:49:30 +0100154 struct lyxml_ctx *xmlctx; /**< context for xml parser */
David Sedlákebd3acf2019-07-26 15:04:32 +0200155};
156
157/**
158 * @brief free yin parser context
159 *
160 * @param[in] ctx Context to free.
161 */
Michal Vaskob36053d2020-03-26 15:49:30 +0100162void yin_parser_ctx_free(struct lys_yin_parser_ctx *ctx);
David Sedlákebd3acf2019-07-26 15:04:32 +0200163
Michal Vasko7f45cf22020-10-01 12:49:44 +0200164/**
David Sedlák4a650532019-07-10 11:55:18 +0200165 * @brief Check that \p c is valid UTF8 code point for YANG string.
166 *
Michal Vaskob36053d2020-03-26 15:49:30 +0100167 * @param[in] ctx parser context for logging.
David Sedlák4a650532019-07-10 11:55:18 +0200168 * @param[in] c UTF8 code point of a character to check.
169 * @return LY_ERR values.
170 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200171LY_ERR lysp_check_stringchar(struct lys_parser_ctx *ctx, uint32_t c);
David Sedlák4a650532019-07-10 11:55:18 +0200172
173/**
174 * @brief Check that \p c is valid UTF8 code point for YANG identifier.
175 *
Michal Vaskob36053d2020-03-26 15:49:30 +0100176 * @param[in] ctx parser context for logging.
David Sedlák4a650532019-07-10 11:55:18 +0200177 * @param[in] c UTF8 code point of a character to check.
178 * @param[in] first Flag to check the first character of an identifier, which is more restricted.
179 * @param[in,out] prefix Storage for internally used flag in case of possible prefixed identifiers:
180 * 0 - colon not yet found (no prefix)
181 * 1 - \p c is the colon character
182 * 2 - prefix already processed, now processing the identifier
183 *
184 * If the identifier cannot be prefixed, NULL is expected.
185 * @return LY_ERR values.
186 */
Radek Krejci857189e2020-09-01 13:26:36 +0200187LY_ERR lysp_check_identifierchar(struct lys_parser_ctx *ctx, uint32_t c, ly_bool first, uint8_t *prefix);
David Sedlák4a650532019-07-10 11:55:18 +0200188
189/**
Radek Krejci70853c52018-10-15 14:46:16 +0200190 * @brief Check the currently present prefixes in the module for collision with the new one.
191 *
Radek Krejcibbe09a92018-11-08 09:36:54 +0100192 * @param[in] ctx Context for logging.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100193 * @param[in] imports List of current imports of the module to check prefix collision.
194 * @param[in] module_prefix Prefix of the module to check collision.
Radek Krejci70853c52018-10-15 14:46:16 +0200195 * @param[in] value Newly added prefix value (including its location to distinguish collision with itself).
196 * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise
197 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200198LY_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 +0200199
Radek Krejci86d106e2018-10-18 09:53:19 +0200200/**
201 * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT)
202 *
Radek Krejcibbe09a92018-11-08 09:36:54 +0100203 * @param[in] ctx Optional context for logging.
Radek Krejci86d106e2018-10-18 09:53:19 +0200204 * @param[in] date Date string to check (non-necessarily terminated by \0)
205 * @param[in] date_len Length of the date string, 10 expected.
206 * @param[in] stmt Statement name for error message.
207 * @return LY_ERR value.
208 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200209LY_ERR lysp_check_date(struct lys_parser_ctx *ctx, const char *date, uint8_t date_len, const char *stmt);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100210
211/**
212 * @brief Check names of typedefs in the parsed module to detect collisions.
213 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100214 * @param[in] ctx Parser context for logging and to maintain tpdfs_nodes
215 * @param[in] mod Module where the type is being defined.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100216 * @return LY_ERR value.
217 */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100218LY_ERR lysp_check_dup_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod);
219
220/**
221 * @brief Check names of features in the parsed module and submodules to detect collisions.
222 *
223 * @param[in] ctx Parser context.
224 * @param[in] mod Module where the type is being defined.
225 * @return LY_ERR value.
226 */
227LY_ERR lysp_check_dup_features(struct lys_parser_ctx *ctx, struct lysp_module *mod);
228
229/**
230 * @brief Check names of identities in the parsed module and submodules to detect collisions.
231 *
232 * @param[in] ctx Parser context.
233 * @param[in] mod Module where the type is being defined.
234 * @return LY_ERR value.
235 */
236LY_ERR lysp_check_dup_identities(struct lys_parser_ctx *ctx, struct lysp_module *mod);
Radek Krejci86d106e2018-10-18 09:53:19 +0200237
238/**
David Sedlákd2ebe572019-07-22 12:53:14 +0200239 * @brief Finalize some of the structures in case they are stored in sized array,
240 * which can be possibly reallocated and some other data may point to them.
241 *
242 * Update parent pointers in the nodes inside grouping/augment/RPC/Notification, which could be reallocated.
243 *
244 * @param[in] mod Parsed module to be updated.
245 * @return LY_ERR value (currently only LY_SUCCESS, but it can change in future).
246 */
Michal Vasko69730152020-10-09 16:30:07 +0200247LY_ERR lysp_parse_finalize_reallocated(struct lys_parser_ctx *ctx, struct lysp_grp *groupings, struct lysp_augment *augments,
Radek Krejci0f969882020-08-21 16:56:47 +0200248 struct lysp_action *actions, struct lysp_notif *notifs);
David Sedlákd2ebe572019-07-22 12:53:14 +0200249
250/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200251 * @brief Just move the newest revision into the first position, does not sort the rest
252 * @param[in] revs Sized-array of the revisions in a printable schema tree.
253 */
254void lysp_sort_revisions(struct lysp_revision *revs);
255
256/**
David Sedlák6544c182019-07-12 13:17:33 +0200257 * @brief Find type specified type definition.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100258 *
259 * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module.
260 * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents.
261 * @param[in] start_module Module where the type is being instantiated for search for typedefs.
Radek Krejci4f28eda2018-11-12 11:46:16 +0100262 * @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 +0100263 * @param[out] tpdf Found type definition.
264 * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef.
265 * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types.
266 */
267LY_ERR lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module,
Radek Krejci0f969882020-08-21 16:56:47 +0200268 LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100269
270/**
David Sedlák6544c182019-07-12 13:17:33 +0200271 * @brief Validate enum name.
272 *
273 * @param[in] ctx yang parser context for logging.
274 * @param[in] name String to check.
275 * @param[in] name_len Length of name.
276 *
277 * @return LY_ERR values
278 */
David Sedlák07869a52019-07-12 14:28:19 +0200279LY_ERR lysp_check_enum_name(struct lys_parser_ctx *ctx, const char *name, size_t name_len);
David Sedlák6544c182019-07-12 13:17:33 +0200280
281/**
Radek Krejci086c7132018-10-26 15:29:04 +0200282 * @brief Find and parse module of the given name.
283 *
284 * @param[in] ctx libyang context.
285 * @param[in] name Name of the module to load.
286 * @param[in] revison Optional revision of the module to load. If NULL, the newest revision is loaded.
Radek Krejcied5acc52019-04-25 15:57:04 +0200287 * @param[in] implement Flag if the loaded module is supposed to be marked as implemented. If revision is NULL and implement flag set,
288 * the implemented module in the context is returned despite it might not be of the latest revision, because in this case the module
289 * of the latest revision can not be made implemented.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100290 * @param[in] features All the features to enable if implementing the module.
Michal Vasko405cc9e2020-12-01 12:01:27 +0100291 * @param[in] unres Global unres structure for all newly implemented modules.
Radek Krejci086c7132018-10-26 15:29:04 +0200292 * @param[out] mod Parsed module structure.
293 * @return LY_ERR value.
294 */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100295LY_ERR lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, ly_bool implement,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100296 const char **features, struct lys_glob_unres *unres, struct lys_module **mod);
Radek Krejci086c7132018-10-26 15:29:04 +0200297
298/**
Radek Krejcid33273d2018-10-25 14:55:52 +0200299 * @brief Parse included submodule into the simply parsed YANG module.
300 *
Michal Vasko7c8439f2020-08-05 13:25:19 +0200301 * @param[in] pctx main parser context
Radek Krejcid33273d2018-10-25 14:55:52 +0200302 * @param[in,out] inc Include structure holding all available information about the include statement, the parsed
303 * submodule is stored into this structure.
304 * @return LY_ERR value.
305 */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200306LY_ERR lysp_load_submodule(struct lys_parser_ctx *pctx, struct lysp_include *inc);
Radek Krejcid33273d2018-10-25 14:55:52 +0200307
308/**
Michal Vasko7f45cf22020-10-01 12:49:44 +0200309 * @brief Free a parsed restriction.
310 *
311 * @param[in] ctx libyang context.
312 * @param[in] restr Restriction to free.
313 */
314void lysp_restr_free(struct ly_ctx *ctx, struct lysp_restr *restr);
315
316/**
317 * @brief Free a parsed qualified name.
318 *
319 * @param[in] ctx libyang context.
320 * @param[in] qname Qualified name to free.
321 */
322void lysp_qname_free(struct ly_ctx *ctx, struct lysp_qname *qname);
323
324/**
325 * @brief Free a parsed node.
326 *
327 * @param[in] ctx libyang context.
328 * @param[in] node Node to free.
329 */
330void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node);
331
332/**
333 * @brief Free a parsed input/output node.
334 *
335 * @param[in] ctx libyang context.
336 * @param[in] inout Input/output to free.
337 */
338void lysp_action_inout_free(struct ly_ctx *ctx, struct lysp_action_inout *inout);
339
340/**
341 * @brief Free a parsed action node.
342 *
343 * @param[in] ctx libyang context.
344 * @param[in] action Action to free.
345 */
346void lysp_action_free(struct ly_ctx *ctx, struct lysp_action *action);
347
348/**
349 * @brief Free a parsed notification node.
350 *
351 * @param[in] ctx libyang context.
352 * @param[in] notif Notification to free.
353 */
354void lysp_notif_free(struct ly_ctx *ctx, struct lysp_notif *notif);
355
356/**
Radek Krejcibbe09a92018-11-08 09:36:54 +0100357 * @brief Get address of a node's actions list if any.
358 *
359 * Decides the node's type and in case it has an actions list, returns its address.
360 * @param[in] node Node to check.
361 * @return Address of the node's actions member if any, NULL otherwise.
362 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100363struct lysp_action **lysp_node_actions_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100364
365/**
366 * @brief Get address of a node's notifications list if any.
367 *
368 * Decides the node's type and in case it has a notifications list, returns its address.
369 * @param[in] node Node to check.
370 * @return Address of the node's notifs member if any, NULL otherwise.
371 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100372struct lysp_notif **lysp_node_notifs_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100373
374/**
375 * @brief Get address of a node's child pointer if any.
376 *
377 * Decides the node's type and in case it has a children list, returns its address.
378 * @param[in] node Node to check.
379 * @return Address of the node's child member if any, NULL otherwise.
380 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100381struct lysp_node **lysp_node_children_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100382
383/**
384 * @brief Get address of a node's child pointer if any.
385 *
386 * Decides the node's type and in case it has a children list, returns its address.
387 * @param[in] node Node to check.
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100388 * @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 +0100389 * @return Address of the node's child member if any, NULL otherwise.
390 */
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100391struct lysc_node **lysc_node_children_p(const struct lysc_node *node, uint16_t flags);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100392
393/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200394 * @brief Get address of a node's notifs pointer if any.
395 *
396 * Decides the node's type and in case it has a notifs array, returns its address.
397 * @param[in] node Node to check.
398 * @return Address of the node's notifs member if any, NULL otherwise.
399 */
400struct lysc_notif **lysc_node_notifs_p(struct lysc_node *node);
401
402/**
403 * @brief Get address of a node's actions pointer if any.
404 *
405 * Decides the node's type and in case it has a actions array, returns its address.
406 * @param[in] node Node to check.
407 * @return Address of the node's actions member if any, NULL otherwise.
408 */
409struct lysc_action **lysc_node_actions_p(struct lysc_node *node);
410
411/**
Radek Krejcid3ca0632019-04-16 16:54:54 +0200412 * @brief Iterate over the specified type of the extension instances
413 *
414 * @param[in] ext ([Sized array](@ref sizedarrays)) of extensions to explore
415 * @param[in] index Index in the \p ext array where to start searching (first call with 0, the consequent calls with
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200416 * the returned index increased by 1 (until the iteration is not terminated by returning LY_ARRAY_COUNT(ext).
Radek Krejcid3ca0632019-04-16 16:54:54 +0200417 * @param[in] substmt Type of the extension (its belongins to the specific substatement) to iterate, use
418 * #LYEXT_SUBSTMT_ALL to go through all the extensions in the array
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200419 * @result index in the ext array, LY_ARRAY_COUNT(ext) value if not present.
Radek Krejcid3ca0632019-04-16 16:54:54 +0200420 */
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200421LY_ARRAY_COUNT_TYPE lysp_ext_instance_iter(struct lysp_ext_instance *ext, LY_ARRAY_COUNT_TYPE index, LYEXT_SUBSTMT substmt);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200422
423/**
Radek Krejci96a0bfd2018-11-22 15:25:06 +0100424 * @brief Get the covering schema module structure for the given parsed module structure.
425 * @param[in] ctx libyang context to search.
426 * @param[in] mod Parsed schema structure.
427 * @return Corresponding lys_module structure for the given parsed schema structure.
428 */
429struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod);
430
431/**
Radek Krejci693262f2019-04-29 15:23:20 +0200432 * @brief Stringify YANG built-in type.
Michal Vasko1bf09392020-03-27 12:38:10 +0100433 * @param[in] basetype Built-in type ID to stringify.
Radek Krejci693262f2019-04-29 15:23:20 +0200434 * @return Constant string with the name of the built-in type.
435 */
436const char *lys_datatype2str(LY_DATA_TYPE basetype);
437
Michal Vasko405cc9e2020-12-01 12:01:27 +0100438/**
439 * @brief Implement a module (just like ::lys_set_implemented()), can be called recursively.
440 *
441 * @param[in] mod Module to implement.
442 * @param[in] features Array of features to enable.
443 * @param[in,out] unres Global unres to add to.
444 * @return LY_ERR value.
445 */
446LY_ERR lys_set_implemented_r(struct lys_module *mod, const char **features, struct lys_glob_unres *unres);
447
Michal Vasko3a41dff2020-07-15 14:30:28 +0200448typedef LY_ERR (*lys_custom_check)(const struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod,
Radek Krejci0f969882020-08-21 16:56:47 +0200449 void *check_data);
Michal Vaskob36053d2020-03-26 15:49:30 +0100450
Radek Krejci693262f2019-04-29 15:23:20 +0200451/**
Michal Vasko7a0b0762020-09-02 16:37:01 +0200452 * @brief Create a new module.
Radek Krejcid33273d2018-10-25 14:55:52 +0200453 *
Michal Vasko7a0b0762020-09-02 16:37:01 +0200454 * It is parsed, opionally compiled, added into the context, and the latest_revision flag is updated.
Radek Krejcid33273d2018-10-25 14:55:52 +0200455 *
456 * @param[in] ctx libyang context where to process the data model.
Michal Vasko63f3d842020-07-08 10:10:14 +0200457 * @param[in] in Input structure.
Radek Krejcid33273d2018-10-25 14:55:52 +0200458 * @param[in] format Format of the input data (YANG or YIN).
Michal Vasko7a0b0762020-09-02 16:37:01 +0200459 * @param[in] implement Flag if the schema is supposed to be marked as implemented and compiled.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100460 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
461 * @param[in] check_data Caller's data to pass to the custom_check callback.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100462 * @param[in] features Array of features to enable ended with NULL. NULL for all features disabled and '*' for all enabled.
Michal Vasko405cc9e2020-12-01 12:01:27 +0100463 * @param[in,out] unres Global unres structure for newly implemented modules.
Michal Vasko7a0b0762020-09-02 16:37:01 +0200464 * @param[out] module Created module.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200465 * @return LY_ERR value.
Radek Krejcid33273d2018-10-25 14:55:52 +0200466 */
Michal Vasko7a0b0762020-09-02 16:37:01 +0200467LY_ERR lys_create_module(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, ly_bool implement,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100468 lys_custom_check custom_check, void *check_data, const char **features, struct lys_glob_unres *unres,
469 struct lys_module **module);
Radek Krejcid33273d2018-10-25 14:55:52 +0200470
471/**
Michal Vasko7a0b0762020-09-02 16:37:01 +0200472 * @brief Parse submodule.
Radek Krejcid33273d2018-10-25 14:55:52 +0200473 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100474 * The latest_revision flag of submodule is updated.
475 *
476 * @param[in] ctx libyang context where to process the data model.
Michal Vasko63f3d842020-07-08 10:10:14 +0200477 * @param[in] in Input structure.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100478 * @param[in] format Format of the input data (YANG or YIN).
479 * @param[in] main_ctx Parser context of the main module.
480 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
481 * @param[in] check_data Caller's data to pass to the custom_check callback.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200482 * @param[out] submodule Parsed submodule.
483 * @return LY_ERR value.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100484 */
Michal Vasko7a0b0762020-09-02 16:37:01 +0200485LY_ERR lys_parse_submodule(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format,
Radek Krejci0f969882020-08-21 16:56:47 +0200486 struct lys_parser_ctx *main_ctx, lys_custom_check custom_check,
487 void *check_data, struct lysp_submodule **submodule);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100488
489/**
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200490 * @brief Fill filepath value if available in input handler @p in
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100491 *
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200492 * @param[in] ctx Context with dictionary where the filepath value will be stored.
493 * @param[in] in Input handler to examine (filepath is not available for all the input types).
494 * @param[out] filepath Address of the variable where the filepath is stored.
Radek Krejcid33273d2018-10-25 14:55:52 +0200495 */
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200496void lys_parser_fill_filepath(struct ly_ctx *ctx, struct ly_in *in, const char **filepath);
Radek Krejcid33273d2018-10-25 14:55:52 +0200497
498/**
499 * @brief Load the (sub)module into the context.
500 *
501 * This function does not check the presence of the (sub)module in context, it should be done before calling this function.
502 *
503 * module_name and submodule_name are alternatives - only one of the
504 *
505 * @param[in] ctx libyang context where to work.
506 * @param[in] name Name of the (sub)module to load.
507 * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100508 * @param[in] features Array of enabled features ended with NULL.
Radek Krejcid33273d2018-10-25 14:55:52 +0200509 * @param[in] implement Flag if the (sub)module is supposed to be marked as implemented.
Radek Krejci3b1f9292018-11-08 10:58:35 +0100510 * @param[in] main_ctx Parser context of the main module in case of loading submodule.
fredgancd485b82019-10-18 15:00:17 +0800511 * @param[in] main_name Main module name in case of loading submodule.
Radek Krejci78f06822019-10-30 12:54:05 +0100512 * @param[in] required Module is required so error (even if the input file not found) are important. If 0, there is some
513 * backup and it is actually ok if the input data are not found. However, parser reports errors even in this case.
Michal Vasko405cc9e2020-12-01 12:01:27 +0100514 * @param[in,out] unres Global unres structure for newly implemented modules.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100515 * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*).
516 * If it is a module, it is already in the context!
Radek Krejcid33273d2018-10-25 14:55:52 +0200517 * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided.
518 */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100519LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, const char **features,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100520 ly_bool implement, struct lys_parser_ctx *main_ctx, const char *main_name, ly_bool required,
521 struct lys_glob_unres *unres, void **result);
Radek Krejci086c7132018-10-26 15:29:04 +0200522
523/**
Radek Krejci693262f2019-04-29 15:23:20 +0200524 * @brief Get the @ref ifftokens from the given position in the 2bits array
525 * (libyang format of the if-feature expression).
526 * @param[in] list The 2bits array with the compiled if-feature expression.
527 * @param[in] pos Position (0-based) to specify from which position get the operator.
528 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200529uint8_t lysc_iff_getop(uint8_t *list, size_t pos);
Radek Krejci0af46292019-01-11 16:02:31 +0100530
531/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200532 * @brief Macro to free [sized array](@ref sizedarrays) of items using the provided free function. The ARRAY itself is also freed,
533 * but the memory is not sanitized.
534 */
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200535#define FREE_ARRAY(CTX, ARRAY, FUNC) {LY_ARRAY_COUNT_TYPE c__; LY_ARRAY_FOR(ARRAY, c__){FUNC(CTX, &(ARRAY)[c__]);}LY_ARRAY_FREE(ARRAY);}
Radek Krejcifc11bd72019-04-11 16:00:05 +0200536
537/**
538 * @brief Macro to free the specified MEMBER of a structure using the provided free function. The memory is not sanitized.
539 */
540#define FREE_MEMBER(CTX, MEMBER, FUNC) if (MEMBER) {FUNC(CTX, MEMBER);free(MEMBER);}
541
542/**
543 * @brief Macro to free [sized array](@ref sizedarrays) of strings stored in the context's dictionary. The ARRAY itself is also freed,
544 * but the memory is not sanitized.
545 */
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200546#define FREE_STRINGS(CTX, ARRAY) {LY_ARRAY_COUNT_TYPE c__; LY_ARRAY_FOR(ARRAY, c__){FREE_STRING(CTX, ARRAY[c__]);}LY_ARRAY_FREE(ARRAY);}
Radek Krejcifc11bd72019-04-11 16:00:05 +0200547
548/**
Radek Krejci15f10ab2020-11-03 14:14:14 +0100549 * @brief Free the printable YANG schema tree structure. Works for both modules and submodules.
550 *
551 * @param[in] module Printable YANG schema tree structure to free.
552 */
553void lysp_module_free(struct lysp_module *module);
554
555/**
Radek Krejci38d85362019-09-05 16:26:38 +0200556 * @brief Free the parsed type structure.
557 * @param[in] ctx libyang context where the string data resides in a dictionary.
Michal Vasko8d544252020-03-02 10:19:52 +0100558 * @param[in] type Parsed schema type structure to free. Note that the type itself is not freed.
Radek Krejci38d85362019-09-05 16:26:38 +0200559 */
560void lysp_type_free(struct ly_ctx *ctx, struct lysp_type *type);
Radek Krejci335332a2019-09-05 13:03:35 +0200561
Radek Krejciad5963b2019-09-06 16:03:05 +0200562/**
Michal Vasko8d544252020-03-02 10:19:52 +0100563 * @brief Free the parsed extension instance structure.
564 * @param[in] ctx libyang context where the string data resides in a dictionary.
565 * @param[in] type Parsed extension instance structure to free. Note that the instance itself is not freed.
566 */
567void lysp_ext_instance_free(struct ly_ctx *ctx, struct lysp_ext_instance *ext);
568
569/**
Radek Krejciad5963b2019-09-06 16:03:05 +0200570 * @param[in,out] exts [sized array](@ref sizedarrays) For extension instances in case of statements that do not store extension instances in their own list.
571 */
572LY_ERR lysp_stmt_parse(struct lysc_ctx *ctx, const struct lysp_stmt *stmt, enum ly_stmt kw, void **result, struct lysp_ext_instance **exts);
Radek Krejci335332a2019-09-05 13:03:35 +0200573
Radek Krejcid33273d2018-10-25 14:55:52 +0200574/**
Michal Vasko20424b42020-08-31 12:29:38 +0200575 * @brief Free a parsed node.
576 *
577 * @param[in] ctx libyang context.
578 * @param[in] node Node to free.
579 */
580void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node);
581
582/**
Radek Krejcicdfecd92018-11-26 11:27:32 +0100583 * @brief Free the compiled type structure.
584 * @param[in] ctx libyang context where the string data resides in a dictionary.
585 * @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.
586 */
587void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type);
588
589/**
Radek Krejci0af46292019-01-11 16:02:31 +0100590 * @brief Free the compiled if-feature structure.
591 * @param[in] ctx libyang context where the string data resides in a dictionary.
592 * @param[in,out] iff Compiled if-feature structure to be cleaned.
593 * Since the structure is typically part of the sized array, the structure itself is not freed.
594 */
595void lysc_iffeature_free(struct ly_ctx *ctx, struct lysc_iffeature *iff);
596
597/**
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100598 * @brief Free the compiled identity structure.
599 * @param[in] ctx libyang context where the string data resides in a dictionary.
600 * @param[in,out] ident Compiled identity structure to be cleaned.
601 * Since the structure is typically part of the sized array, the structure itself is not freed.
602 */
603void lysc_ident_free(struct ly_ctx *ctx, struct lysc_ident *ident);
604
605/**
Radek Krejciccd20f12019-02-15 14:12:27 +0100606 * @brief Free the compiled must structure.
607 * @param[in] ctx libyang context where the string data resides in a dictionary.
608 * @param[in,out] must Compiled must structure to be cleaned.
609 * Since the structure is typically part of the sized array, the structure itself is not freed.
610 */
611void lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must);
612
613/**
Radek Krejcif538ce52019-03-05 10:46:14 +0100614 * @brief Free the data inside compiled input/output structure.
615 * @param[in] ctx libyang context where the string data resides in a dictionary.
616 * @param[in,out] inout Compiled inout structure to be cleaned.
617 * Since the structure is part of the RPC/action structure, it is not freed itself.
618 */
619void lysc_action_inout_free(struct ly_ctx *ctx, struct lysc_action_inout *inout);
620
621/**
622 * @brief Free the data inside compiled RPC/action structure.
623 * @param[in] ctx libyang context where the string data resides in a dictionary.
624 * @param[in,out] action Compiled action structure to be cleaned.
625 * Since the structure is typically part of the sized array, the structure itself is not freed.
626 */
627void lysc_action_free(struct ly_ctx *ctx, struct lysc_action *action);
628
629/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200630 * @brief Free the items inside the compiled Notification structure.
631 * @param[in] ctx libyang context where the string data resides in a dictionary.
632 * @param[in,out] action Compiled Notification structure to be cleaned.
633 * Since the structure is typically part of the sized array, the structure itself is not freed.
634 */
635void lysc_notif_free(struct ly_ctx *ctx, struct lysc_notif *notif);
636
637/**
Radek Krejci0af46292019-01-11 16:02:31 +0100638 * @brief Free the compiled extension instance structure.
639 * @param[in] ctx libyang context where the string data resides in a dictionary.
640 * @param[in,out] ext Compiled extension instance structure to be cleaned.
641 * Since the structure is typically part of the sized array, the structure itself is not freed.
642 */
643void lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext);
644
645/**
Radek Krejci19a96102018-11-15 13:38:09 +0100646 * @brief Free the compiled node structure.
647 * @param[in] ctx libyang context where the string data resides in a dictionary.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100648 * @param[in] node Compiled node structure to be freed.
649 * @param[in] unlink Whether to first unlink the node before freeing.
Radek Krejci19a96102018-11-15 13:38:09 +0100650 */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100651void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node, ly_bool unlink);
Radek Krejci19a96102018-11-15 13:38:09 +0100652
653/**
Radek Krejcif2de0ed2019-05-02 14:13:18 +0200654 * @brief Free the compiled container node structure.
655 *
656 * Only the container-specific members are freed, for generic node free function,
Radek Krejci8678fa42020-08-18 16:07:28 +0200657 * use ::lysc_node_free().
Radek Krejcif2de0ed2019-05-02 14:13:18 +0200658 *
659 * @param[in] ctx libyang context where the string data resides in a dictionary.
660 * @param[in,out] node Compiled container node structure to be freed.
661 */
662void lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node);
663
664/**
Radek Krejci19a96102018-11-15 13:38:09 +0100665 * @brief Free the compiled schema structure.
666 * @param[in,out] module Compiled schema module structure to free.
667 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
668 */
669void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
670
671/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200672 * @brief Free the schema structure. It just frees, it does not remove the schema from its context.
673 * @param[in,out] module Schema module structure to free.
674 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
675 */
676void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
677
678/**
David Sedlák18e494b2018-12-17 03:58:39 +0100679 * @brief match yang keyword
David Sedlák1bccdfa2019-06-17 15:55:27 +0200680 *
Michal Vasko14654712020-02-06 08:35:21 +0100681 * @param[in] ctx yang parser context for logging, can be NULL if keyword is from YIN data.
Michal Vasko63f3d842020-07-08 10:10:14 +0200682 * @param[in,out] in Input structure, is updated.
Michal Vasko14654712020-02-06 08:35:21 +0100683 * @return yang_keyword values.
David Sedlák18e494b2018-12-17 03:58:39 +0100684 */
Michal Vasko63f3d842020-07-08 10:10:14 +0200685enum ly_stmt lysp_match_kw(struct lys_yang_parser_ctx *ctx, struct ly_in *in);
David Sedlák1bccdfa2019-06-17 15:55:27 +0200686
Michal Vasko14654712020-02-06 08:35:21 +0100687/**
688 * @brief Generate path of the given node in the requested format.
689 *
690 * @param[in] node Schema path of this node will be generated.
691 * @param[in] parent Build relative path only until this parent is found. If NULL, the full absolute path is printed.
692 * @param[in] pathtype Format of the path to generate.
693 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
694 * If NULL, memory for the complete path is allocated.
695 * @param[in] buflen Size of the provided @p buffer.
696 * @return NULL in case of memory allocation error, path of the node otherwise.
697 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
698 */
699char *lysc_path_until(const struct lysc_node *node, const struct lysc_node *parent, LYSC_PATH_TYPE pathtype, char *buffer,
Radek Krejci0f969882020-08-21 16:56:47 +0200700 size_t buflen);
Michal Vasko14654712020-02-06 08:35:21 +0100701
Michal Vasko62ed12d2020-05-21 10:08:25 +0200702/**
703 * @brief Get schema parent that can be instantiated in data. In other words, skip any choice or case nodes.
704 *
705 * @param[in] schema Schema node to get the parent for.
706 * @return Parent, NULL if top-level (in data).
707 */
708const struct lysc_node *lysc_data_parent(const struct lysc_node *schema);
709
Michal Vasko00cbf532020-06-15 13:58:47 +0200710/**
Radek Krejci1deb5be2020-08-26 16:43:36 +0200711 * @brief Learn whether a node is inside an operation output.
Michal Vasko00cbf532020-06-15 13:58:47 +0200712 *
713 * @param[in] schema Schema node to examine.
Radek Krejci857189e2020-09-01 13:26:36 +0200714 * @return Boolean value whether the node is under an operation output or not.
Michal Vasko00cbf532020-06-15 13:58:47 +0200715 */
Radek Krejci857189e2020-09-01 13:26:36 +0200716ly_bool lysc_is_output(const struct lysc_node *schema);
Michal Vasko00cbf532020-06-15 13:58:47 +0200717
Radek Krejci239c38a2020-10-19 10:58:25 +0200718/**
719 * @brief Get format-specific prefix for a module.
720 *
721 * For type plugins available as ::ly_type_print_get_prefix().
722 *
723 * @param[in] mod Module whose prefix to get.
724 * @param[in] format Format of the prefix.
725 * @param[in] prefix_data Format-specific data:
726 * LY_PREF_SCHEMA - const struct lysp_module * (module used for resolving imports to prefixes)
727 * LY_PREF_SCHEMA_RESOLVED - struct lyd_value_prefix * (sized array of pairs: prefix - module)
728 * LY_PREF_XML - struct ly_set * (set of all returned modules as ::struct lys_module)
729 * LY_PREF_JSON - NULL
730 * @return Module prefix to print.
731 * @return NULL on error.
732 */
733const char *ly_get_prefix(const struct lys_module *mod, LY_PREFIX_FORMAT format, void *prefix_data);
734
735/**
736 * @brief Resolve format-specific prefixes to modules.
737 *
738 * For type plugins available as ::ly_type_store_resolve_prefix().
739 *
740 * @param[in] ctx libyang context.
741 * @param[in] prefix Prefix to resolve.
742 * @param[in] prefix_len Length of @p prefix.
743 * @param[in] format Format of the prefix.
744 * @param[in] prefix_data Format-specific data:
745 * LY_PREF_SCHEMA - const struct lysp_module * (module used for resolving prefixes from imports)
746 * LY_PREF_SCHEMA_RESOLVED - struct lyd_value_prefix * (sized array of pairs: prefix - module)
747 * LY_PREF_XML - const struct ly_set * (set with defined namespaces stored as ::lyxml_ns)
748 * LY_PREF_JSON - NULL
749 * @return Resolved prefix module,
750 * @return NULL otherwise.
751 */
752const struct lys_module *ly_resolve_prefix(const struct ly_ctx *ctx, const char *prefix, size_t prefix_len,
753 LY_PREFIX_FORMAT format, void *prefix_data);
754
Radek Krejci70853c52018-10-15 14:46:16 +0200755#endif /* LY_TREE_SCHEMA_INTERNAL_H_ */