Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 1 | /** |
| 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 Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 18 | #include <stdint.h> |
| 19 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 20 | #include "common.h" |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 21 | #include "set.h" |
| 22 | #include "tree_schema.h" |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 23 | #include "xml.h" |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 24 | |
FredGan | d944bdc | 2019-11-05 21:57:07 +0800 | [diff] [blame] | 25 | #define YIN_NS_URI "urn:ietf:params:xml:ns:yang:yin:1" |
| 26 | |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 27 | /** |
| 28 | * @brief Check module version is at least 2 (YANG 1.1) because of the keyword presence. |
| 29 | * Logs error message and returns LY_EVALID in case of module in YANG version 1.0. |
| 30 | * @param[in] CTX yang parser context to get current module and for logging. |
| 31 | * @param[in] KW keyword allowed only in YANG version 1.1 (or later) - for logging. |
| 32 | * @param[in] PARENT parent statement where the KW is present - for logging. |
| 33 | */ |
| 34 | #define PARSER_CHECK_STMTVER2_RET(CTX, KW, PARENT) \ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 35 | if ((CTX)->parsed_mod->version < LYS_VERSION_1_1) {LOGVAL_PARSER((CTX), LY_VCODE_INCHILDSTMT2, KW, PARENT); return LY_EVALID;} |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 36 | |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 37 | /* These 2 macros checks YANG's identifier grammar rule */ |
| 38 | #define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_') |
| 39 | #define is_yangidentchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || \ |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 40 | c == '_' || c == '-' || c == '.') |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 41 | |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 42 | /* Macro to check YANG's yang-char grammar rule */ |
David Sedlák | 2c0d5ef | 2019-08-14 11:40:44 +0200 | [diff] [blame] | 43 | #define is_yangutf8char(c) ((c >= 0x20 && c <= 0xd7ff) || c == 0x09 || c == 0x0a || c == 0x0d || \ |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 44 | (c >= 0xe000 && c <= 0xfdcf) || (c >= 0xfdf0 && c <= 0xfffd) || \ |
| 45 | (c >= 0x10000 && c <= 0x1fffd) || (c >= 0x20000 && c <= 0x2fffd) || \ |
| 46 | (c >= 0x30000 && c <= 0x3fffd) || (c >= 0x40000 && c <= 0x2fffd) || \ |
| 47 | (c >= 0x50000 && c <= 0x5fffd) || (c >= 0x60000 && c <= 0x6fffd) || \ |
| 48 | (c >= 0x70000 && c <= 0x7fffd) || (c >= 0x80000 && c <= 0x8fffd) || \ |
| 49 | (c >= 0x90000 && c <= 0x9fffd) || (c >= 0xa0000 && c <= 0xafffd) || \ |
| 50 | (c >= 0xb0000 && c <= 0xbfffd) || (c >= 0xc0000 && c <= 0xcfffd) || \ |
| 51 | (c >= 0xd0000 && c <= 0xdfffd) || (c >= 0xe0000 && c <= 0xefffd) || \ |
| 52 | (c >= 0xf0000 && c <= 0xffffd) || (c >= 0x100000 && c <= 0x10fffd)) |
| 53 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 54 | /** |
David Sedlák | ca36c42 | 2019-07-12 12:47:55 +0200 | [diff] [blame] | 55 | * @brief Try to find object with MEMBER string matching the IDENT in the given ARRAY. |
| 56 | * Macro logs an error message and returns LY_EVALID in case of existence of a matching object. |
| 57 | * |
| 58 | * @param[in] CTX yang parser context for logging. |
| 59 | * @param[in] ARRAY [sized array](@ref sizedarrays) of a generic objects with member named MEMBER to search. |
| 60 | * @param[in] MEMBER Name of the member of the objects in the ARRAY to compare. |
| 61 | * @param[in] STMT Name of the compared YANG statements for logging. |
| 62 | * @param[in] IDENT String trying to find in the ARRAY's objects inside the MEMBER member. |
| 63 | */ |
| 64 | #define CHECK_UNIQUENESS(CTX, ARRAY, MEMBER, STMT, IDENT) \ |
| 65 | if (ARRAY) { \ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 66 | for (LY_ARRAY_COUNT_TYPE u_ = 0; u_ < LY_ARRAY_COUNT(ARRAY) - 1; ++u_) { \ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 67 | if (!strcmp((ARRAY)[u_].MEMBER, IDENT)) { \ |
David Sedlák | ca36c42 | 2019-07-12 12:47:55 +0200 | [diff] [blame] | 68 | LOGVAL_PARSER(CTX, LY_VCODE_DUPIDENT, IDENT, STMT); \ |
| 69 | return LY_EVALID; \ |
| 70 | } \ |
| 71 | } \ |
| 72 | } |
| 73 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 74 | #define CHECK_NONEMPTY(CTX, VALUE_LEN, STMT) \ |
David Sedlák | 129a09c | 2019-07-12 14:08:34 +0200 | [diff] [blame] | 75 | if (!VALUE_LEN) { \ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 76 | LOGWRN(PARSER_CTX(CTX), "Empty argument of %s statement does not make sense.", STMT); \ |
David Sedlák | 129a09c | 2019-07-12 14:08:34 +0200 | [diff] [blame] | 77 | } |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 78 | |
| 79 | /** |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 80 | * @brief List of YANG statement groups - the (sub)module's substatements |
| 81 | */ |
| 82 | enum yang_module_stmt { |
| 83 | Y_MOD_MODULE_HEADER, |
| 84 | Y_MOD_LINKAGE, |
| 85 | Y_MOD_META, |
| 86 | Y_MOD_REVISION, |
| 87 | Y_MOD_BODY |
| 88 | }; |
| 89 | |
| 90 | /** |
| 91 | * @brief Types of arguments of YANG statements |
| 92 | */ |
| 93 | enum yang_arg { |
| 94 | Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */ |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 95 | Y_PREF_IDENTIF_ARG, /**< YANG "identifier-ref-arg-str" or node-identifier rule */ |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 96 | Y_STR_ARG, /**< YANG "string" rule */ |
| 97 | Y_MAYBE_STR_ARG /**< optional YANG "string" rule */ |
| 98 | }; |
| 99 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 100 | #define PARSER_CTX(CTX) ((CTX)->parsed_mod->mod->ctx) |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 101 | |
| 102 | #define LOGVAL_PARSER(CTX, ...) (CTX)->format == LYS_IN_YANG ? LOGVAL_YANG(CTX, __VA_ARGS__) : LOGVAL_YIN(CTX, __VA_ARGS__) |
| 103 | |
| 104 | #define LOGVAL_YANG(CTX, ...) LOGVAL(PARSER_CTX(CTX), ((struct lys_yang_parser_ctx *)CTX)->pos_type, \ |
| 105 | ((struct lys_yang_parser_ctx *)CTX)->pos_type == LY_VLOG_LINE ? \ |
| 106 | (void *)&((struct lys_yang_parser_ctx *)CTX)->line : \ |
| 107 | (void *)((struct lys_yang_parser_ctx *)CTX)->path, __VA_ARGS__) |
| 108 | |
| 109 | #define LOGVAL_YIN(CTX, ...) LOGVAL(PARSER_CTX(CTX), LY_VLOG_LINE, \ |
| 110 | &((struct lys_yin_parser_ctx *)CTX)->xmlctx->line, __VA_ARGS__) |
| 111 | |
| 112 | struct lys_parser_ctx { |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 113 | LYS_INFORMAT format; /**< parser format */ |
| 114 | struct ly_set tpdfs_nodes; /**< set of typedef nodes */ |
| 115 | struct ly_set grps_nodes; /**< set of grouping nodes */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 116 | struct lysp_module *parsed_mod; /**< (sub)module being parsed */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 117 | }; |
| 118 | |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 119 | /** |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 120 | * @brief Internal context for yang schema parser. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 121 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 122 | struct lys_yang_parser_ctx { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 123 | LYS_INFORMAT format; /**< parser format */ |
| 124 | struct ly_set tpdfs_nodes; /**< set of typedef nodes */ |
| 125 | struct ly_set grps_nodes; /**< set of grouping nodes */ |
| 126 | struct lysp_module *parsed_mod; /**< (sub)module being parsed */ |
| 127 | enum LY_VLOG_ELEM pos_type; /**< */ |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 128 | union { |
| 129 | uint64_t line; /**< line number */ |
| 130 | const char *path; /**< path */ |
| 131 | }; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 132 | uint64_t indent; /**< current position on the line for YANG indentation */ |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 133 | }; |
| 134 | |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 135 | /** |
| 136 | * @brief free lys parser context. |
| 137 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 138 | void yang_parser_ctx_free(struct lys_yang_parser_ctx *ctx); |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 139 | |
| 140 | /** |
| 141 | * @brief Internal context for yin schema parser. |
| 142 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 143 | struct lys_yin_parser_ctx { |
| 144 | LYS_INFORMAT format; /**< parser format */ |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 145 | struct ly_set tpdfs_nodes; /**< set of typedef nodes */ |
| 146 | struct ly_set grps_nodes; /**< set of grouping nodes */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 147 | struct lysp_module *parsed_mod;/**< (sub)module being parsed */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 148 | struct lyxml_ctx *xmlctx; /**< context for xml parser */ |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 149 | }; |
| 150 | |
| 151 | /** |
| 152 | * @brief free yin parser context |
| 153 | * |
| 154 | * @param[in] ctx Context to free. |
| 155 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 156 | void yin_parser_ctx_free(struct lys_yin_parser_ctx *ctx); |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 157 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 158 | /** |
| 159 | * @brief Structure for remembering default values of leaves and leaf-lists. They are resolved at schema compilation |
| 160 | * end when the whole schema tree is available. |
| 161 | */ |
| 162 | struct lysc_unres_dflt { |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 163 | union { |
| 164 | struct lysc_node_leaf *leaf; |
| 165 | struct lysc_node_leaflist *llist; |
| 166 | }; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 167 | struct lysp_qname *dflt; |
| 168 | struct lysp_qname *dflts; /**< this is a sized array */ |
| 169 | }; |
| 170 | |
| 171 | /** |
| 172 | * @brief Compiled parsed augment structure. Just a temporary storage for applying the augment to data. |
| 173 | */ |
| 174 | struct lysc_augment { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 175 | struct lyxp_expr *nodeid; /**< augment target */ |
| 176 | const struct lysp_module *nodeid_pmod; /**< module where the nodeid is defined, used to resolve prefixes */ |
| 177 | const struct lysc_node *nodeid_ctx_node; /**< nodeid context node for relative targets */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 178 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 179 | struct lysp_augment *aug_p; /**< pointer to the parsed augment to apply */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 180 | }; |
| 181 | |
| 182 | /** |
| 183 | * @brief Compiled parsed deviation structure. Just a temporary storage for applying the deviation to data. |
| 184 | */ |
| 185 | struct lysc_deviation { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 186 | struct lyxp_expr *nodeid; /**< deviation target, taken from the first deviation in |
| 187 | ::lysc_deviation.dev_pmods array, this module is used for resolving |
| 188 | prefixes used in the nodeid. */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 189 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 190 | struct lysp_deviation **devs; /**< sized array of all the parsed deviations for one target node */ |
| 191 | const struct lysp_module **dev_pmods; /**< sized array of parsed modules of @p devs (where the specific deviations |
| 192 | are defined). */ |
| 193 | ly_bool not_supported; /**< whether this is a not-supported deviation */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 194 | }; |
| 195 | |
| 196 | /** |
| 197 | * @brief Compiled parsed refine structure. Just a temporary storage for applying the refine to data. |
| 198 | */ |
| 199 | struct lysc_refine { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 200 | struct lyxp_expr *nodeid; /**< refine target */ |
| 201 | const struct lysp_module *nodeid_pmod; /**< module where the nodeid is defined, used to resolve prefixes */ |
| 202 | const struct lysc_node *nodeid_ctx_node; /**< nodeid context node */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 203 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 204 | struct lysp_refine **rfns; /**< sized array of parsed refines to apply */ |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 205 | }; |
| 206 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 207 | /** |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 208 | * @brief internal context for compilation |
| 209 | */ |
| 210 | struct lysc_ctx { |
| 211 | struct ly_ctx *ctx; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 212 | struct lys_module *cur_mod; /**< module currently being compiled, used as the current module for unprefixed nodes */ |
| 213 | struct lysp_module *pmod; /**< parsed module being processed, used for searching imports to resolve prefixed nodes */ |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 214 | struct ly_set groupings; /**< stack for groupings circular check */ |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 215 | struct ly_set xpath; /**< when/must to check */ |
| 216 | struct ly_set leafrefs; /**< to validate leafref's targets */ |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 217 | struct ly_set dflts; /**< set of incomplete default values */ |
| 218 | struct ly_set tpdf_chain; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 219 | struct ly_set augs; /**< set of compiled non-applied top-level augments */ |
| 220 | struct ly_set devs; /**< set of compiled non-applied deviations */ |
| 221 | struct ly_set uses_augs; /**< set of compiled non-applied uses augments */ |
| 222 | struct ly_set uses_rfns; /**< set of compiled non-applied uses refines */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 223 | uint32_t path_len; |
| 224 | uint32_t options; /**< various @ref scflags. */ |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 225 | #define LYSC_CTX_BUFSIZE 4078 |
| 226 | char path[LYSC_CTX_BUFSIZE]; |
| 227 | }; |
| 228 | |
| 229 | /** |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 230 | * @brief Check that \p c is valid UTF8 code point for YANG string. |
| 231 | * |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 232 | * @param[in] ctx parser context for logging. |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 233 | * @param[in] c UTF8 code point of a character to check. |
| 234 | * @return LY_ERR values. |
| 235 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 236 | LY_ERR lysp_check_stringchar(struct lys_parser_ctx *ctx, uint32_t c); |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 237 | |
| 238 | /** |
| 239 | * @brief Check that \p c is valid UTF8 code point for YANG identifier. |
| 240 | * |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 241 | * @param[in] ctx parser context for logging. |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 242 | * @param[in] c UTF8 code point of a character to check. |
| 243 | * @param[in] first Flag to check the first character of an identifier, which is more restricted. |
| 244 | * @param[in,out] prefix Storage for internally used flag in case of possible prefixed identifiers: |
| 245 | * 0 - colon not yet found (no prefix) |
| 246 | * 1 - \p c is the colon character |
| 247 | * 2 - prefix already processed, now processing the identifier |
| 248 | * |
| 249 | * If the identifier cannot be prefixed, NULL is expected. |
| 250 | * @return LY_ERR values. |
| 251 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 252 | LY_ERR lysp_check_identifierchar(struct lys_parser_ctx *ctx, uint32_t c, ly_bool first, uint8_t *prefix); |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 253 | |
| 254 | /** |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 255 | * @brief Check the currently present prefixes in the module for collision with the new one. |
| 256 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 257 | * @param[in] ctx Context for logging. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 258 | * @param[in] imports List of current imports of the module to check prefix collision. |
| 259 | * @param[in] module_prefix Prefix of the module to check collision. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 260 | * @param[in] value Newly added prefix value (including its location to distinguish collision with itself). |
| 261 | * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise |
| 262 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 263 | LY_ERR lysp_check_prefix(struct lys_parser_ctx *ctx, struct lysp_import *imports, const char *module_prefix, const char **value); |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 264 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 265 | /** |
| 266 | * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT) |
| 267 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 268 | * @param[in] ctx Optional context for logging. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 269 | * @param[in] date Date string to check (non-necessarily terminated by \0) |
| 270 | * @param[in] date_len Length of the date string, 10 expected. |
| 271 | * @param[in] stmt Statement name for error message. |
| 272 | * @return LY_ERR value. |
| 273 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 274 | LY_ERR lysp_check_date(struct lys_parser_ctx *ctx, const char *date, uint8_t date_len, const char *stmt); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 275 | |
| 276 | /** |
| 277 | * @brief Check names of typedefs in the parsed module to detect collisions. |
| 278 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 279 | * @param[in] ctx Parser context for logging and to maintain tpdfs_nodes |
| 280 | * @param[in] mod Module where the type is being defined. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 281 | * @return LY_ERR value. |
| 282 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 283 | LY_ERR lysp_check_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 284 | |
| 285 | /** |
David Sedlák | d2ebe57 | 2019-07-22 12:53:14 +0200 | [diff] [blame] | 286 | * @brief Finalize some of the structures in case they are stored in sized array, |
| 287 | * which can be possibly reallocated and some other data may point to them. |
| 288 | * |
| 289 | * Update parent pointers in the nodes inside grouping/augment/RPC/Notification, which could be reallocated. |
| 290 | * |
| 291 | * @param[in] mod Parsed module to be updated. |
| 292 | * @return LY_ERR value (currently only LY_SUCCESS, but it can change in future). |
| 293 | */ |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 294 | LY_ERR lysp_parse_finalize_reallocated(struct lys_parser_ctx *ctx, struct lysp_grp *groupings, struct lysp_augment *augments, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 295 | struct lysp_action *actions, struct lysp_notif *notifs); |
David Sedlák | d2ebe57 | 2019-07-22 12:53:14 +0200 | [diff] [blame] | 296 | |
| 297 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 298 | * @brief Just move the newest revision into the first position, does not sort the rest |
| 299 | * @param[in] revs Sized-array of the revisions in a printable schema tree. |
| 300 | */ |
| 301 | void lysp_sort_revisions(struct lysp_revision *revs); |
| 302 | |
| 303 | /** |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 304 | * @brief Find type specified type definition. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 305 | * |
| 306 | * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module. |
| 307 | * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents. |
| 308 | * @param[in] start_module Module where the type is being instantiated for search for typedefs. |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 309 | * @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 Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 310 | * @param[out] tpdf Found type definition. |
| 311 | * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef. |
| 312 | * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types. |
| 313 | */ |
| 314 | LY_ERR lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 315 | LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 316 | |
| 317 | /** |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 318 | * @brief Validate enum name. |
| 319 | * |
| 320 | * @param[in] ctx yang parser context for logging. |
| 321 | * @param[in] name String to check. |
| 322 | * @param[in] name_len Length of name. |
| 323 | * |
| 324 | * @return LY_ERR values |
| 325 | */ |
David Sedlák | 07869a5 | 2019-07-12 14:28:19 +0200 | [diff] [blame] | 326 | LY_ERR lysp_check_enum_name(struct lys_parser_ctx *ctx, const char *name, size_t name_len); |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 327 | |
| 328 | /** |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 329 | * @brief Find and parse module of the given name. |
| 330 | * |
| 331 | * @param[in] ctx libyang context. |
| 332 | * @param[in] name Name of the module to load. |
| 333 | * @param[in] revison Optional revision of the module to load. If NULL, the newest revision is loaded. |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 334 | * @param[in] implement Flag if the loaded module is supposed to be marked as implemented. If revision is NULL and implement flag set, |
| 335 | * the implemented module in the context is returned despite it might not be of the latest revision, because in this case the module |
| 336 | * of the latest revision can not be made implemented. |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 337 | * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context, |
| 338 | * but only the compiled structure is available. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 339 | * @param[out] mod Parsed module structure. |
| 340 | * @return LY_ERR value. |
| 341 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 342 | LY_ERR lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, ly_bool implement, ly_bool require_parsed, struct lys_module **mod); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 343 | |
| 344 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 345 | * @brief Parse included submodule into the simply parsed YANG module. |
| 346 | * |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 347 | * @param[in] pctx main parser context |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 348 | * @param[in,out] inc Include structure holding all available information about the include statement, the parsed |
| 349 | * submodule is stored into this structure. |
| 350 | * @return LY_ERR value. |
| 351 | */ |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 352 | LY_ERR lysp_load_submodule(struct lys_parser_ctx *pctx, struct lysp_include *inc); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 353 | |
| 354 | /** |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 355 | * @brief Free a parsed restriction. |
| 356 | * |
| 357 | * @param[in] ctx libyang context. |
| 358 | * @param[in] restr Restriction to free. |
| 359 | */ |
| 360 | void lysp_restr_free(struct ly_ctx *ctx, struct lysp_restr *restr); |
| 361 | |
| 362 | /** |
| 363 | * @brief Free a parsed qualified name. |
| 364 | * |
| 365 | * @param[in] ctx libyang context. |
| 366 | * @param[in] qname Qualified name to free. |
| 367 | */ |
| 368 | void lysp_qname_free(struct ly_ctx *ctx, struct lysp_qname *qname); |
| 369 | |
| 370 | /** |
| 371 | * @brief Free a parsed node. |
| 372 | * |
| 373 | * @param[in] ctx libyang context. |
| 374 | * @param[in] node Node to free. |
| 375 | */ |
| 376 | void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node); |
| 377 | |
| 378 | /** |
| 379 | * @brief Free a parsed input/output node. |
| 380 | * |
| 381 | * @param[in] ctx libyang context. |
| 382 | * @param[in] inout Input/output to free. |
| 383 | */ |
| 384 | void lysp_action_inout_free(struct ly_ctx *ctx, struct lysp_action_inout *inout); |
| 385 | |
| 386 | /** |
| 387 | * @brief Free a parsed action node. |
| 388 | * |
| 389 | * @param[in] ctx libyang context. |
| 390 | * @param[in] action Action to free. |
| 391 | */ |
| 392 | void lysp_action_free(struct ly_ctx *ctx, struct lysp_action *action); |
| 393 | |
| 394 | /** |
| 395 | * @brief Free a parsed notification node. |
| 396 | * |
| 397 | * @param[in] ctx libyang context. |
| 398 | * @param[in] notif Notification to free. |
| 399 | */ |
| 400 | void lysp_notif_free(struct ly_ctx *ctx, struct lysp_notif *notif); |
| 401 | |
| 402 | /** |
Michal Vasko | 89b5c07 | 2020-10-06 13:52:44 +0200 | [diff] [blame] | 403 | * @brief Revert precompilation of module augments and deviations. Meaning remove its reference from |
| 404 | * all the target modules. |
| 405 | * |
| 406 | * @param[in] ctx libyang context. |
| 407 | * @param[in] mod Mod whose precompilation to revert. |
| 408 | */ |
| 409 | void lys_precompile_augments_deviations_revert(struct ly_ctx *ctx, const struct lys_module *mod); |
| 410 | |
| 411 | /** |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 412 | * @brief Compile printable schema into a validated schema linking all the references. |
| 413 | * |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 414 | * @param[in] mod Pointer to the schema structure holding pointers to both schema structure types. The ::lys_module#parsed |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 415 | * member is used as input and ::lys_module#compiled is used to hold the result of the compilation. |
| 416 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 417 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 418 | */ |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 419 | LY_ERR lys_compile(struct lys_module *mod, uint32_t options); |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 420 | |
| 421 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 422 | * @brief Get address of a node's actions list if any. |
| 423 | * |
| 424 | * Decides the node's type and in case it has an actions list, returns its address. |
| 425 | * @param[in] node Node to check. |
| 426 | * @return Address of the node's actions member if any, NULL otherwise. |
| 427 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 428 | struct lysp_action **lysp_node_actions_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 429 | |
| 430 | /** |
| 431 | * @brief Get address of a node's notifications list if any. |
| 432 | * |
| 433 | * Decides the node's type and in case it has a notifications list, returns its address. |
| 434 | * @param[in] node Node to check. |
| 435 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 436 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 437 | struct lysp_notif **lysp_node_notifs_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 438 | |
| 439 | /** |
| 440 | * @brief Get address of a node's child pointer if any. |
| 441 | * |
| 442 | * Decides the node's type and in case it has a children list, returns its address. |
| 443 | * @param[in] node Node to check. |
| 444 | * @return Address of the node's child member if any, NULL otherwise. |
| 445 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 446 | struct lysp_node **lysp_node_children_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 447 | |
| 448 | /** |
| 449 | * @brief Get address of a node's child pointer if any. |
| 450 | * |
| 451 | * Decides the node's type and in case it has a children list, returns its address. |
| 452 | * @param[in] node Node to check. |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 453 | * @param[in] flags Config flag to distinguish input (LYS_CONFIG_W) and output (LYS_CONFIG_R) data in case of RPC/action node. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 454 | * @return Address of the node's child member if any, NULL otherwise. |
| 455 | */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 456 | struct lysc_node **lysc_node_children_p(const struct lysc_node *node, uint16_t flags); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 457 | |
| 458 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 459 | * @brief Get address of a node's notifs pointer if any. |
| 460 | * |
| 461 | * Decides the node's type and in case it has a notifs array, returns its address. |
| 462 | * @param[in] node Node to check. |
| 463 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 464 | */ |
| 465 | struct lysc_notif **lysc_node_notifs_p(struct lysc_node *node); |
| 466 | |
| 467 | /** |
| 468 | * @brief Get address of a node's actions pointer if any. |
| 469 | * |
| 470 | * Decides the node's type and in case it has a actions array, returns its address. |
| 471 | * @param[in] node Node to check. |
| 472 | * @return Address of the node's actions member if any, NULL otherwise. |
| 473 | */ |
| 474 | struct lysc_action **lysc_node_actions_p(struct lysc_node *node); |
| 475 | |
| 476 | /** |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 477 | * @brief Iterate over the specified type of the extension instances |
| 478 | * |
| 479 | * @param[in] ext ([Sized array](@ref sizedarrays)) of extensions to explore |
| 480 | * @param[in] index Index in the \p ext array where to start searching (first call with 0, the consequent calls with |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 481 | * the returned index increased by 1 (until the iteration is not terminated by returning LY_ARRAY_COUNT(ext). |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 482 | * @param[in] substmt Type of the extension (its belongins to the specific substatement) to iterate, use |
| 483 | * #LYEXT_SUBSTMT_ALL to go through all the extensions in the array |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 484 | * @result index in the ext array, LY_ARRAY_COUNT(ext) value if not present. |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 485 | */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 486 | LY_ARRAY_COUNT_TYPE lysp_ext_instance_iter(struct lysp_ext_instance *ext, LY_ARRAY_COUNT_TYPE index, LYEXT_SUBSTMT substmt); |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 487 | |
| 488 | /** |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 489 | * @brief Get the covering schema module structure for the given parsed module structure. |
| 490 | * @param[in] ctx libyang context to search. |
| 491 | * @param[in] mod Parsed schema structure. |
| 492 | * @return Corresponding lys_module structure for the given parsed schema structure. |
| 493 | */ |
| 494 | struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod); |
| 495 | |
| 496 | /** |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 497 | * @brief Check statement's status for invalid combination. |
| 498 | * |
| 499 | * The modX parameters are used just to determine if both flags are in the same module, |
| 500 | * so any of the schema module structure can be used, but both modules must be provided |
| 501 | * in the same type. |
| 502 | * |
| 503 | * @param[in] ctx Compile context for logging. |
| 504 | * @param[in] flags1 Flags of the referencing node. |
| 505 | * @param[in] mod1 Module of the referencing node, |
| 506 | * @param[in] name1 Schema node name of the referencing node. |
| 507 | * @param[in] flags2 Flags of the referenced node. |
| 508 | * @param[in] mod2 Module of the referenced node, |
| 509 | * @param[in] name2 Schema node name of the referenced node. |
| 510 | * @return LY_ERR value |
| 511 | */ |
| 512 | LY_ERR lysc_check_status(struct lysc_ctx *ctx, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 513 | uint16_t flags1, void *mod1, const char *name1, |
| 514 | uint16_t flags2, void *mod2, const char *name2); |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 515 | |
| 516 | /** |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 517 | * @brief Find the module referenced by prefix in the provided mod. |
| 518 | * |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 519 | * @param[in] prefix_mod Schema module where the prefix was used. |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 520 | * @param[in] prefix Prefix used to reference a module. |
| 521 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 522 | * @return Pointer to the module or NULL if the module is not found. |
| 523 | */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 524 | struct lys_module *lysp_module_find_prefix(const struct lysp_module *prefix_mod, const char *prefix, size_t len); |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 525 | |
| 526 | /** |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 527 | * @brief Stringify YANG built-in type. |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 528 | * @param[in] basetype Built-in type ID to stringify. |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 529 | * @return Constant string with the name of the built-in type. |
| 530 | */ |
| 531 | const char *lys_datatype2str(LY_DATA_TYPE basetype); |
| 532 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 533 | typedef LY_ERR (*lys_custom_check)(const struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 534 | void *check_data); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 535 | |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 536 | /** |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 537 | * @brief Create a new module. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 538 | * |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 539 | * It is parsed, opionally compiled, added into the context, and the latest_revision flag is updated. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 540 | * |
| 541 | * @param[in] ctx libyang context where to process the data model. |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 542 | * @param[in] in Input structure. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 543 | * @param[in] format Format of the input data (YANG or YIN). |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 544 | * @param[in] implement Flag if the schema is supposed to be marked as implemented and compiled. |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 545 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 546 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 547 | * @param[out] module Created module. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 548 | * @return LY_ERR value. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 549 | */ |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 550 | LY_ERR lys_create_module(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, ly_bool implement, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 551 | lys_custom_check custom_check, void *check_data, struct lys_module **module); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 552 | |
| 553 | /** |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 554 | * @brief Parse submodule. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 555 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 556 | * The latest_revision flag of submodule is updated. |
| 557 | * |
| 558 | * @param[in] ctx libyang context where to process the data model. |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 559 | * @param[in] in Input structure. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 560 | * @param[in] format Format of the input data (YANG or YIN). |
| 561 | * @param[in] main_ctx Parser context of the main module. |
| 562 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 563 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 564 | * @param[out] submodule Parsed submodule. |
| 565 | * @return LY_ERR value. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 566 | */ |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 567 | LY_ERR lys_parse_submodule(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 568 | struct lys_parser_ctx *main_ctx, lys_custom_check custom_check, |
| 569 | void *check_data, struct lysp_submodule **submodule); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 570 | |
| 571 | /** |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 572 | * @brief Fill filepath value if available in input handler @p in |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 573 | * |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 574 | * @param[in] ctx Context with dictionary where the filepath value will be stored. |
| 575 | * @param[in] in Input handler to examine (filepath is not available for all the input types). |
| 576 | * @param[out] filepath Address of the variable where the filepath is stored. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 577 | */ |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 578 | void lys_parser_fill_filepath(struct ly_ctx *ctx, struct ly_in *in, const char **filepath); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 579 | |
| 580 | /** |
| 581 | * @brief Load the (sub)module into the context. |
| 582 | * |
| 583 | * This function does not check the presence of the (sub)module in context, it should be done before calling this function. |
| 584 | * |
| 585 | * module_name and submodule_name are alternatives - only one of the |
| 586 | * |
| 587 | * @param[in] ctx libyang context where to work. |
| 588 | * @param[in] name Name of the (sub)module to load. |
| 589 | * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded. |
| 590 | * @param[in] implement Flag if the (sub)module is supposed to be marked as implemented. |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 591 | * @param[in] main_ctx Parser context of the main module in case of loading submodule. |
fredgan | cd485b8 | 2019-10-18 15:00:17 +0800 | [diff] [blame] | 592 | * @param[in] main_name Main module name in case of loading submodule. |
Radek Krejci | 78f0682 | 2019-10-30 12:54:05 +0100 | [diff] [blame] | 593 | * @param[in] required Module is required so error (even if the input file not found) are important. If 0, there is some |
| 594 | * backup and it is actually ok if the input data are not found. However, parser reports errors even in this case. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 595 | * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*). |
| 596 | * If it is a module, it is already in the context! |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 597 | * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided. |
| 598 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 599 | LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, ly_bool implement, |
| 600 | struct lys_parser_ctx *main_ctx, const char *main_name, ly_bool required, void **result); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 601 | |
| 602 | /** |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 603 | * @brief Compile information from the identity statement |
| 604 | * |
| 605 | * The backlinks to the identities derived from this one are supposed to be filled later via lys_compile_identity_bases(). |
| 606 | * |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 607 | * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p parsed_mod. |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 608 | * @param[in] ctx libyang context. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 609 | * @param[in] parsed_mod Module with the identities. |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 610 | * @param[in] identities_p Array of the parsed identity definitions to precompile. |
| 611 | * @param[in,out] identities Pointer to the storage of the (pre)compiled identities array where the new identities are |
| 612 | * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed identities are going |
| 613 | * to be processed. |
| 614 | * @return LY_ERR value. |
| 615 | */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 616 | LY_ERR lys_identity_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lysp_module *parsed_mod, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 617 | struct lysp_ident *identities_p, struct lysc_ident **identities); |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 618 | |
| 619 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 620 | * @brief Create pre-compiled features array. |
| 621 | * |
| 622 | * Features are compiled in two steps to allow forward references between them via their if-feature statements. |
| 623 | * In case of not implemented schemas, the precompiled list of features is stored in lys_module structure and |
| 624 | * the compilation is not finished (if-feature and extensions are missing) and all the features are permanently |
| 625 | * disabled without a chance to change it. The list is used as target for any if-feature statement in any |
| 626 | * implemented module to get valid data to evaluate its result. The compilation is finished via |
| 627 | * lys_feature_precompile_finish() in implemented modules. In case a not implemented module becomes implemented, |
| 628 | * the precompiled list is reused to finish the compilation to preserve pointers already used in various compiled |
| 629 | * if-feature structures. |
| 630 | * |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 631 | * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p parsed_mod. |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 632 | * @param[in] ctx libyang context. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 633 | * @param[in] parsed_mod Module with the features. |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 634 | * @param[in] features_p Array of the parsed features definitions to precompile. |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 635 | * @param[in,out] features Pointer to the storage of the (pre)compiled features array where the new features are |
| 636 | * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed features are going |
| 637 | * to be processed. |
| 638 | * @return LY_ERR value. |
| 639 | */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame^] | 640 | LY_ERR lys_feature_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lysp_module *parsed_mod, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 641 | struct lysp_feature *features_p, struct lysc_feature **features); |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 642 | |
| 643 | /** |
| 644 | * @brief Get the @ref ifftokens from the given position in the 2bits array |
| 645 | * (libyang format of the if-feature expression). |
| 646 | * @param[in] list The 2bits array with the compiled if-feature expression. |
| 647 | * @param[in] pos Position (0-based) to specify from which position get the operator. |
| 648 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 649 | uint8_t lysc_iff_getop(uint8_t *list, size_t pos); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 650 | |
| 651 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 652 | * @brief Checks pattern syntax. |
| 653 | * |
| 654 | * @param[in] ctx Context. |
| 655 | * @param[in] log_path Path for logging errors. |
| 656 | * @param[in] pattern Pattern to check. |
| 657 | * @param[in,out] pcre2_code Compiled PCRE2 pattern. If NULL, the compiled information used to validate pattern are freed. |
| 658 | * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID. |
| 659 | */ |
| 660 | LY_ERR lys_compile_type_pattern_check(struct ly_ctx *ctx, const char *log_path, const char *pattern, pcre2_code **code); |
| 661 | |
| 662 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 663 | * @brief Macro to free [sized array](@ref sizedarrays) of items using the provided free function. The ARRAY itself is also freed, |
| 664 | * but the memory is not sanitized. |
| 665 | */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 666 | #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 Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 667 | |
| 668 | /** |
| 669 | * @brief Macro to free the specified MEMBER of a structure using the provided free function. The memory is not sanitized. |
| 670 | */ |
| 671 | #define FREE_MEMBER(CTX, MEMBER, FUNC) if (MEMBER) {FUNC(CTX, MEMBER);free(MEMBER);} |
| 672 | |
| 673 | /** |
| 674 | * @brief Macro to free [sized array](@ref sizedarrays) of strings stored in the context's dictionary. The ARRAY itself is also freed, |
| 675 | * but the memory is not sanitized. |
| 676 | */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 677 | #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 Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 678 | |
| 679 | /** |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 680 | * @brief Free the parsed type structure. |
| 681 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 682 | * @param[in] type Parsed schema type structure to free. Note that the type itself is not freed. |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 683 | */ |
| 684 | void lysp_type_free(struct ly_ctx *ctx, struct lysp_type *type); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 685 | |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 686 | /** |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 687 | * @brief Free the parsed extension instance structure. |
| 688 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 689 | * @param[in] type Parsed extension instance structure to free. Note that the instance itself is not freed. |
| 690 | */ |
| 691 | void lysp_ext_instance_free(struct ly_ctx *ctx, struct lysp_ext_instance *ext); |
| 692 | |
| 693 | /** |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 694 | * @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. |
| 695 | */ |
| 696 | LY_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 Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 697 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 698 | /** |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 699 | * @brief Free a parsed node. |
| 700 | * |
| 701 | * @param[in] ctx libyang context. |
| 702 | * @param[in] node Node to free. |
| 703 | */ |
| 704 | void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node); |
| 705 | |
| 706 | /** |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 707 | * @brief Free the compiled type structure. |
| 708 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 709 | * @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. |
| 710 | */ |
| 711 | void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type); |
| 712 | |
| 713 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 714 | * @brief Free the compiled if-feature structure. |
| 715 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 716 | * @param[in,out] iff Compiled if-feature structure to be cleaned. |
| 717 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 718 | */ |
| 719 | void lysc_iffeature_free(struct ly_ctx *ctx, struct lysc_iffeature *iff); |
| 720 | |
| 721 | /** |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 722 | * @brief Free the compiled must structure. |
| 723 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 724 | * @param[in,out] must Compiled must structure to be cleaned. |
| 725 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 726 | */ |
| 727 | void lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must); |
| 728 | |
| 729 | /** |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 730 | * @brief Free the data inside compiled input/output structure. |
| 731 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 732 | * @param[in,out] inout Compiled inout structure to be cleaned. |
| 733 | * Since the structure is part of the RPC/action structure, it is not freed itself. |
| 734 | */ |
| 735 | void lysc_action_inout_free(struct ly_ctx *ctx, struct lysc_action_inout *inout); |
| 736 | |
| 737 | /** |
| 738 | * @brief Free the data inside compiled RPC/action structure. |
| 739 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 740 | * @param[in,out] action Compiled action structure to be cleaned. |
| 741 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 742 | */ |
| 743 | void lysc_action_free(struct ly_ctx *ctx, struct lysc_action *action); |
| 744 | |
| 745 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 746 | * @brief Free the items inside the compiled Notification structure. |
| 747 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 748 | * @param[in,out] action Compiled Notification structure to be cleaned. |
| 749 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 750 | */ |
| 751 | void lysc_notif_free(struct ly_ctx *ctx, struct lysc_notif *notif); |
| 752 | |
| 753 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 754 | * @brief Free the compiled extension instance structure. |
| 755 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 756 | * @param[in,out] ext Compiled extension instance structure to be cleaned. |
| 757 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 758 | */ |
| 759 | void lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext); |
| 760 | |
| 761 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 762 | * @brief Free the compiled node structure. |
| 763 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 764 | * @param[in,out] node Compiled node structure to be freed. |
| 765 | */ |
| 766 | void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node); |
| 767 | |
| 768 | /** |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 769 | * @brief Free the compiled container node structure. |
| 770 | * |
| 771 | * Only the container-specific members are freed, for generic node free function, |
| 772 | * use lysc_node_free(). |
| 773 | * |
| 774 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 775 | * @param[in,out] node Compiled container node structure to be freed. |
| 776 | */ |
| 777 | void lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node); |
| 778 | |
| 779 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 780 | * @brief Free the compiled schema structure. |
| 781 | * @param[in,out] module Compiled schema module structure to free. |
| 782 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 783 | */ |
| 784 | void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 785 | |
| 786 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 787 | * @brief Free the schema structure. It just frees, it does not remove the schema from its context. |
| 788 | * @param[in,out] module Schema module structure to free. |
| 789 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 790 | */ |
| 791 | void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 792 | |
| 793 | /** |
David Sedlák | 18e494b | 2018-12-17 03:58:39 +0100 | [diff] [blame] | 794 | * @brief match yang keyword |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 795 | * |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 796 | * @param[in] ctx yang parser context for logging, can be NULL if keyword is from YIN data. |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 797 | * @param[in,out] in Input structure, is updated. |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 798 | * @return yang_keyword values. |
David Sedlák | 18e494b | 2018-12-17 03:58:39 +0100 | [diff] [blame] | 799 | */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 800 | enum ly_stmt lysp_match_kw(struct lys_yang_parser_ctx *ctx, struct ly_in *in); |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 801 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 802 | /** |
| 803 | * @brief Generate path of the given node in the requested format. |
| 804 | * |
| 805 | * @param[in] node Schema path of this node will be generated. |
| 806 | * @param[in] parent Build relative path only until this parent is found. If NULL, the full absolute path is printed. |
| 807 | * @param[in] pathtype Format of the path to generate. |
| 808 | * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path. |
| 809 | * If NULL, memory for the complete path is allocated. |
| 810 | * @param[in] buflen Size of the provided @p buffer. |
| 811 | * @return NULL in case of memory allocation error, path of the node otherwise. |
| 812 | * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it. |
| 813 | */ |
| 814 | char *lysc_path_until(const struct lysc_node *node, const struct lysc_node *parent, LYSC_PATH_TYPE pathtype, char *buffer, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 815 | size_t buflen); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 816 | |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 817 | /** |
| 818 | * @brief Get schema parent that can be instantiated in data. In other words, skip any choice or case nodes. |
| 819 | * |
| 820 | * @param[in] schema Schema node to get the parent for. |
| 821 | * @return Parent, NULL if top-level (in data). |
| 822 | */ |
| 823 | const struct lysc_node *lysc_data_parent(const struct lysc_node *schema); |
| 824 | |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 825 | /** |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 826 | * @brief Learn whether a node is inside an operation output. |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 827 | * |
| 828 | * @param[in] schema Schema node to examine. |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 829 | * @return Boolean value whether the node is under an operation output or not. |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 830 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 831 | ly_bool lysc_is_output(const struct lysc_node *schema); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 832 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 833 | #endif /* LY_TREE_SCHEMA_INTERNAL_H_ */ |