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 | * |
Michal Vasko | dd99258 | 2021-06-10 14:34:57 +0200 | [diff] [blame] | 6 | * Copyright (c) 2015 - 2021 CESNET, z.s.p.o. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 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" |
| 23 | |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 24 | struct lysc_ctx; |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 25 | struct lys_glob_unres; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 26 | |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 27 | #define LY_YANG_SUFFIX ".yang" |
| 28 | #define LY_YANG_SUFFIX_LEN 5 |
| 29 | #define LY_YIN_SUFFIX ".yin" |
| 30 | #define LY_YIN_SUFFIX_LEN 4 |
| 31 | |
FredGan | d944bdc | 2019-11-05 21:57:07 +0800 | [diff] [blame] | 32 | #define YIN_NS_URI "urn:ietf:params:xml:ns:yang:yin:1" |
| 33 | |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 34 | #define LY_PCRE2_MSG_LIMIT 256 |
| 35 | |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 36 | /** |
aPiecek | 93582ed | 2021-05-25 14:49:06 +0200 | [diff] [blame] | 37 | * @brief The maximum depth at which the last nested block is located. |
| 38 | * Designed to protect against corrupted input that causes a stack-overflow error. |
| 39 | * For yang language and json format, the block is bounded by "{ }". |
| 40 | * For the xml format, the opening and closing element tag is considered as the block. |
| 41 | */ |
| 42 | #define LY_MAX_BLOCK_DEPTH 500 |
| 43 | |
| 44 | /** |
Radek Krejci | eccf660 | 2021-02-05 19:42:54 +0100 | [diff] [blame] | 45 | * @brief Informational structure for YANG statements |
| 46 | */ |
| 47 | struct stmt_info_s { |
| 48 | const char *name; /**< name of the statement */ |
| 49 | const char *arg; /**< name of YIN's attribute to present the statement */ |
| 50 | uint8_t flags; /**< various flags to clarify printing of the statement */ |
| 51 | #define STMT_FLAG_YIN 0x1 /**< has YIN element */ |
| 52 | #define STMT_FLAG_ID 0x2 /**< the value is identifier -> no quotes */ |
| 53 | }; |
| 54 | |
| 55 | /* statements informations filled in tree_schema.c */ |
| 56 | extern struct stmt_info_s stmt_attr_info[]; |
| 57 | |
Radek Krejci | eccf660 | 2021-02-05 19:42:54 +0100 | [diff] [blame] | 58 | /* list of the deviate modifications strings */ |
| 59 | extern const char * const ly_devmod_list[]; |
| 60 | #define ly_devmod2str(TYPE) ly_devmod_list[TYPE] |
| 61 | |
| 62 | /** |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 63 | * @brief Check module version is at least 2 (YANG 1.1) because of the keyword presence. |
| 64 | * Logs error message and returns LY_EVALID in case of module in YANG version 1.0. |
| 65 | * @param[in] CTX yang parser context to get current module and for logging. |
| 66 | * @param[in] KW keyword allowed only in YANG version 1.1 (or later) - for logging. |
| 67 | * @param[in] PARENT parent statement where the KW is present - for logging. |
| 68 | */ |
| 69 | #define PARSER_CHECK_STMTVER2_RET(CTX, KW, PARENT) \ |
Michal Vasko | a3afbfe | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 70 | if (PARSER_CUR_PMOD(CTX)->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] | 71 | |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 72 | /* These 2 macros checks YANG's identifier grammar rule */ |
| 73 | #define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_') |
| 74 | #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] | 75 | c == '_' || c == '-' || c == '.') |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 76 | |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 77 | /* Macro to check YANG's yang-char grammar rule */ |
David Sedlák | 2c0d5ef | 2019-08-14 11:40:44 +0200 | [diff] [blame] | 78 | #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] | 79 | (c >= 0xe000 && c <= 0xfdcf) || (c >= 0xfdf0 && c <= 0xfffd) || \ |
| 80 | (c >= 0x10000 && c <= 0x1fffd) || (c >= 0x20000 && c <= 0x2fffd) || \ |
| 81 | (c >= 0x30000 && c <= 0x3fffd) || (c >= 0x40000 && c <= 0x2fffd) || \ |
| 82 | (c >= 0x50000 && c <= 0x5fffd) || (c >= 0x60000 && c <= 0x6fffd) || \ |
| 83 | (c >= 0x70000 && c <= 0x7fffd) || (c >= 0x80000 && c <= 0x8fffd) || \ |
| 84 | (c >= 0x90000 && c <= 0x9fffd) || (c >= 0xa0000 && c <= 0xafffd) || \ |
| 85 | (c >= 0xb0000 && c <= 0xbfffd) || (c >= 0xc0000 && c <= 0xcfffd) || \ |
| 86 | (c >= 0xd0000 && c <= 0xdfffd) || (c >= 0xe0000 && c <= 0xefffd) || \ |
| 87 | (c >= 0xf0000 && c <= 0xffffd) || (c >= 0x100000 && c <= 0x10fffd)) |
| 88 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 89 | /** |
David Sedlák | ca36c42 | 2019-07-12 12:47:55 +0200 | [diff] [blame] | 90 | * @brief Try to find object with MEMBER string matching the IDENT in the given ARRAY. |
| 91 | * Macro logs an error message and returns LY_EVALID in case of existence of a matching object. |
| 92 | * |
| 93 | * @param[in] CTX yang parser context for logging. |
| 94 | * @param[in] ARRAY [sized array](@ref sizedarrays) of a generic objects with member named MEMBER to search. |
| 95 | * @param[in] MEMBER Name of the member of the objects in the ARRAY to compare. |
| 96 | * @param[in] STMT Name of the compared YANG statements for logging. |
| 97 | * @param[in] IDENT String trying to find in the ARRAY's objects inside the MEMBER member. |
| 98 | */ |
| 99 | #define CHECK_UNIQUENESS(CTX, ARRAY, MEMBER, STMT, IDENT) \ |
| 100 | if (ARRAY) { \ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 101 | 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] | 102 | if (!strcmp((ARRAY)[u_].MEMBER, IDENT)) { \ |
David Sedlák | ca36c42 | 2019-07-12 12:47:55 +0200 | [diff] [blame] | 103 | LOGVAL_PARSER(CTX, LY_VCODE_DUPIDENT, IDENT, STMT); \ |
| 104 | return LY_EVALID; \ |
| 105 | } \ |
| 106 | } \ |
| 107 | } |
| 108 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 109 | #define CHECK_NONEMPTY(CTX, VALUE_LEN, STMT) \ |
David Sedlák | 129a09c | 2019-07-12 14:08:34 +0200 | [diff] [blame] | 110 | if (!VALUE_LEN) { \ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 111 | 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] | 112 | } |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 113 | |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 114 | /* |
| 115 | * Additional YANG constants |
| 116 | */ |
| 117 | #define Y_TAB_SPACES 8 /**< number of spaces instead of tab character */ |
| 118 | #define LY_TYPE_DEC64_FD_MAX 18 /**< Maximal value of decimal64's fraction-digits */ |
| 119 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 120 | /** |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 121 | * @brief List of YANG statement groups - the (sub)module's substatements |
| 122 | */ |
| 123 | enum yang_module_stmt { |
| 124 | Y_MOD_MODULE_HEADER, |
| 125 | Y_MOD_LINKAGE, |
| 126 | Y_MOD_META, |
| 127 | Y_MOD_REVISION, |
| 128 | Y_MOD_BODY |
| 129 | }; |
| 130 | |
| 131 | /** |
| 132 | * @brief Types of arguments of YANG statements |
| 133 | */ |
| 134 | enum yang_arg { |
| 135 | Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */ |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 136 | 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] | 137 | Y_STR_ARG, /**< YANG "string" rule */ |
| 138 | Y_MAYBE_STR_ARG /**< optional YANG "string" rule */ |
| 139 | }; |
| 140 | |
Michal Vasko | a3afbfe | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 141 | #define PARSER_CUR_PMOD(CTX) ((struct lysp_module *)(CTX)->parsed_mods->objs[(CTX)->parsed_mods->count - 1]) |
| 142 | #define PARSER_CTX(CTX) (PARSER_CUR_PMOD(CTX)->mod->ctx) |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 143 | #define LOGVAL_PARSER(CTX, ...) LOGVAL((CTX) ? PARSER_CTX(CTX) : NULL, __VA_ARGS__) |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 144 | |
| 145 | struct lys_parser_ctx { |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 146 | LYS_INFORMAT format; /**< parser format */ |
| 147 | struct ly_set tpdfs_nodes; /**< Set of nodes that contain typedef(s). Invalid in case of |
| 148 | submodule, use ::lys_parser_ctx.main_ctx instead. */ |
| 149 | struct ly_set grps_nodes; /**< Set of nodes that contain grouping(s). Invalid in case of |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 150 | submodule, use ::lys_parser_ctx.main_ctx instead. */ |
Michal Vasko | a3afbfe | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 151 | struct ly_set *parsed_mods; /**< (sub)modules being parsed, the last one is the current */ |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 152 | struct lys_parser_ctx *main_ctx; /**< This pointer must not be NULL. If this context deals with the submodule, |
| 153 | then should be set to the context of the module to which it belongs, |
| 154 | otherwise it points to the beginning of this structure. */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 155 | }; |
| 156 | |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 157 | /** |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 158 | * @brief Internal context for yang schema parser. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 159 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 160 | struct lys_yang_parser_ctx { |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 161 | LYS_INFORMAT format; /**< parser format */ |
| 162 | struct ly_set tpdfs_nodes; /**< Set of nodes that contain typedef(s). Invalid in case of |
| 163 | submodule, use ::lys_parser_ctx.main_ctx instead. */ |
| 164 | struct ly_set grps_nodes; /**< Set of nodes that contain grouping(s). Invalid in case of |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 165 | submodule, use ::lys_parser_ctx.main_ctx instead. */ |
Michal Vasko | a3afbfe | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 166 | struct ly_set *parsed_mods; /**< (sub)modules being parsed, the last one is the current */ |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 167 | struct lys_parser_ctx *main_ctx; /**< This pointer must not be NULL. If this context deals with the submodule, |
| 168 | then should be set to the context of the module to which it belongs, |
| 169 | otherwise it points to the beginning of this structure. */ |
| 170 | struct ly_in *in; /**< input handler for the parser */ |
| 171 | uint64_t indent; /**< current position on the line for YANG indentation */ |
| 172 | uint32_t depth; /**< current number of nested blocks, see ::LY_MAX_BLOCK_DEPTH */ |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 173 | }; |
| 174 | |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 175 | /** |
| 176 | * @brief free lys parser context. |
| 177 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 178 | void yang_parser_ctx_free(struct lys_yang_parser_ctx *ctx); |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 179 | |
| 180 | /** |
| 181 | * @brief Internal context for yin schema parser. |
| 182 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 183 | struct lys_yin_parser_ctx { |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 184 | LYS_INFORMAT format; /**< parser format */ |
| 185 | struct ly_set tpdfs_nodes; /**< Set of nodes that contain typedef(s). Invalid in case of |
| 186 | submodule, use ::lys_parser_ctx.main_ctx instead. */ |
| 187 | struct ly_set grps_nodes; /**< Set of nodes that contain grouping(s). Invalid in case of |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 188 | submodule, use ::lys_parser_ctx.main_ctx instead. */ |
Michal Vasko | a3afbfe | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 189 | struct ly_set *parsed_mods; /**< (sub)modules being parsed, the last one is the current */ |
aPiecek | 8d4e75d | 2021-06-24 14:47:06 +0200 | [diff] [blame] | 190 | struct lys_parser_ctx *main_ctx; /**< This pointer must not be NULL. If this context deals with the submodule, |
| 191 | then should be set to the context of the module to which it belongs, |
| 192 | otherwise it points to the beginning of this structure. */ |
| 193 | struct lyxml_ctx *xmlctx; /**< context for xml parser */ |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 194 | }; |
| 195 | |
| 196 | /** |
| 197 | * @brief free yin parser context |
| 198 | * |
| 199 | * @param[in] ctx Context to free. |
| 200 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 201 | void yin_parser_ctx_free(struct lys_yin_parser_ctx *ctx); |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 202 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 203 | /** |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 204 | * @brief Check that \p c is valid UTF8 code point for YANG string. |
| 205 | * |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 206 | * @param[in] ctx parser context for logging. |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 207 | * @param[in] c UTF8 code point of a character to check. |
| 208 | * @return LY_ERR values. |
| 209 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 210 | 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] | 211 | |
| 212 | /** |
| 213 | * @brief Check that \p c is valid UTF8 code point for YANG identifier. |
| 214 | * |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 215 | * @param[in] ctx parser context for logging. |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 216 | * @param[in] c UTF8 code point of a character to check. |
| 217 | * @param[in] first Flag to check the first character of an identifier, which is more restricted. |
| 218 | * @param[in,out] prefix Storage for internally used flag in case of possible prefixed identifiers: |
| 219 | * 0 - colon not yet found (no prefix) |
| 220 | * 1 - \p c is the colon character |
| 221 | * 2 - prefix already processed, now processing the identifier |
| 222 | * |
| 223 | * If the identifier cannot be prefixed, NULL is expected. |
| 224 | * @return LY_ERR values. |
| 225 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 226 | 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] | 227 | |
| 228 | /** |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 229 | * @brief Check the currently present prefixes in the module for collision with the new one. |
| 230 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 231 | * @param[in] ctx Context for logging. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 232 | * @param[in] imports List of current imports of the module to check prefix collision. |
| 233 | * @param[in] module_prefix Prefix of the module to check collision. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 234 | * @param[in] value Newly added prefix value (including its location to distinguish collision with itself). |
| 235 | * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise |
| 236 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 237 | 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] | 238 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 239 | /** |
| 240 | * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT) |
| 241 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 242 | * @param[in] ctx Optional context for logging. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 243 | * @param[in] date Date string to check (non-necessarily terminated by \0) |
| 244 | * @param[in] date_len Length of the date string, 10 expected. |
| 245 | * @param[in] stmt Statement name for error message. |
| 246 | * @return LY_ERR value. |
| 247 | */ |
Juraj Vijtiuk | 74dad9e | 2021-05-26 12:42:14 +0200 | [diff] [blame] | 248 | LY_ERR lysp_check_date(struct lys_parser_ctx *ctx, const char *date, size_t date_len, const char *stmt); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 249 | |
| 250 | /** |
| 251 | * @brief Check names of typedefs in the parsed module to detect collisions. |
| 252 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 253 | * @param[in] ctx Parser context for logging and to maintain tpdfs_nodes |
| 254 | * @param[in] mod Module where the type is being defined. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 255 | * @return LY_ERR value. |
| 256 | */ |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 257 | LY_ERR lysp_check_dup_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod); |
| 258 | |
| 259 | /** |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 260 | * @brief Check names of groupings in the parsed module to detect collisions. |
| 261 | * |
| 262 | * @param[in] ctx Parser context for logging and to maintain grps_nodes. |
| 263 | * @param[in] mod Module where the type is being defined. |
| 264 | * @return LY_ERR value. |
| 265 | */ |
| 266 | LY_ERR lysp_check_dup_groupings(struct lys_parser_ctx *ctx, struct lysp_module *mod); |
| 267 | |
| 268 | /** |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 269 | * @brief Check names of features in the parsed module and submodules to detect collisions. |
| 270 | * |
| 271 | * @param[in] ctx Parser context. |
| 272 | * @param[in] mod Module where the type is being defined. |
| 273 | * @return LY_ERR value. |
| 274 | */ |
| 275 | LY_ERR lysp_check_dup_features(struct lys_parser_ctx *ctx, struct lysp_module *mod); |
| 276 | |
| 277 | /** |
| 278 | * @brief Check names of identities in the parsed module and submodules to detect collisions. |
| 279 | * |
| 280 | * @param[in] ctx Parser context. |
| 281 | * @param[in] mod Module where the type is being defined. |
| 282 | * @return LY_ERR value. |
| 283 | */ |
| 284 | LY_ERR lysp_check_dup_identities(struct lys_parser_ctx *ctx, struct lysp_module *mod); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 285 | |
| 286 | /** |
| 287 | * @brief Just move the newest revision into the first position, does not sort the rest |
| 288 | * @param[in] revs Sized-array of the revisions in a printable schema tree. |
| 289 | */ |
| 290 | void lysp_sort_revisions(struct lysp_revision *revs); |
| 291 | |
| 292 | /** |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 293 | * @brief Find type specified type definition. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 294 | * |
| 295 | * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module. |
| 296 | * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents. |
| 297 | * @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] | 298 | * @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] | 299 | * @param[out] tpdf Found type definition. |
| 300 | * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 301 | */ |
Michal Vasko | a99b357 | 2021-02-01 11:54:58 +0100 | [diff] [blame] | 302 | LY_ERR lysp_type_find(const char *id, struct lysp_node *start_node, const struct lysp_module *start_module, |
| 303 | LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 304 | |
| 305 | /** |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 306 | * @brief Validate enum name. |
| 307 | * |
| 308 | * @param[in] ctx yang parser context for logging. |
| 309 | * @param[in] name String to check. |
| 310 | * @param[in] name_len Length of name. |
| 311 | * |
| 312 | * @return LY_ERR values |
| 313 | */ |
David Sedlák | 07869a5 | 2019-07-12 14:28:19 +0200 | [diff] [blame] | 314 | 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] | 315 | |
| 316 | /** |
Michal Vasko | 4e205e8 | 2021-06-08 14:01:47 +0200 | [diff] [blame] | 317 | * @brief Find source data for a specific module, parse it, and add into the context. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 318 | * |
| 319 | * @param[in] ctx libyang context. |
| 320 | * @param[in] name Name of the module to load. |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 321 | * @param[in] revision Optional revision of the module to load. If NULL, the newest revision is loaded. |
Michal Vasko | dd99258 | 2021-06-10 14:34:57 +0200 | [diff] [blame] | 322 | * @param[in,out] new_mods Set of all the new mods added to the context. Includes this module and all of its imports. |
Michal Vasko | 18a86e5 | 2021-04-16 11:50:13 +0200 | [diff] [blame] | 323 | * @param[out] mod Created module structure. |
Michal Vasko | 4e205e8 | 2021-06-08 14:01:47 +0200 | [diff] [blame] | 324 | * @return LY_SUCCESS on success. |
| 325 | * @return LY_ERR on error. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 326 | */ |
Michal Vasko | dd99258 | 2021-06-10 14:34:57 +0200 | [diff] [blame] | 327 | LY_ERR lys_parse_load(struct ly_ctx *ctx, const char *name, const char *revision, struct ly_set *new_mods, |
Michal Vasko | 4e205e8 | 2021-06-08 14:01:47 +0200 | [diff] [blame] | 328 | struct lys_module **mod); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 329 | |
| 330 | /** |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 331 | * @brief Parse included submodules into the simply parsed YANG module. |
| 332 | * |
| 333 | * YANG 1.0 does not require the main module to include all the submodules. Therefore, parsing submodules can cause |
| 334 | * reallocating and extending the includes array in the main module by the submodules included only in submodules. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 335 | * |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 336 | * @param[in] pctx main parser context |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 337 | * @param[in] pmod Parsed module with the includes array to be processed. |
aPiecek | c3e2614 | 2021-06-22 14:25:49 +0200 | [diff] [blame] | 338 | * @param[in,out] new_mods Set of all the new mods added to the context. Includes this module and all of its imports. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 339 | * @return LY_ERR value. |
| 340 | */ |
aPiecek | c3e2614 | 2021-06-22 14:25:49 +0200 | [diff] [blame] | 341 | LY_ERR lysp_load_submodules(struct lys_parser_ctx *pctx, struct lysp_module *pmod, struct ly_set *new_mods); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 342 | |
| 343 | /** |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 344 | * @brief Free a parsed restriction. |
| 345 | * |
| 346 | * @param[in] ctx libyang context. |
| 347 | * @param[in] restr Restriction to free. |
| 348 | */ |
| 349 | void lysp_restr_free(struct ly_ctx *ctx, struct lysp_restr *restr); |
| 350 | |
| 351 | /** |
| 352 | * @brief Free a parsed qualified name. |
| 353 | * |
| 354 | * @param[in] ctx libyang context. |
| 355 | * @param[in] qname Qualified name to free. |
| 356 | */ |
| 357 | void lysp_qname_free(struct ly_ctx *ctx, struct lysp_qname *qname); |
| 358 | |
| 359 | /** |
| 360 | * @brief Free a parsed node. |
| 361 | * |
| 362 | * @param[in] ctx libyang context. |
| 363 | * @param[in] node Node to free. |
| 364 | */ |
| 365 | void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node); |
| 366 | |
| 367 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 368 | * @brief Get address of a node's actions list if any. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 369 | * Decides the node's type and in case it has an actions list, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 370 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 371 | * @param[in] node Node to check. |
| 372 | * @return Address of the node's actions member if any, NULL otherwise. |
| 373 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 374 | struct lysp_node_action **lysp_node_actions_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 375 | |
| 376 | /** |
| 377 | * @brief Get address of a node's notifications list if any. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 378 | * Decides the node's type and in case it has a notifications list, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 379 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 380 | * @param[in] node Node to check. |
| 381 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 382 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 383 | struct lysp_node_notif **lysp_node_notifs_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 384 | |
| 385 | /** |
| 386 | * @brief Get address of a node's child pointer if any. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 387 | * Decides the node's type and in case it has a children list, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 388 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 389 | * @param[in] node Node to check. |
| 390 | * @return Address of the node's child member if any, NULL otherwise. |
| 391 | */ |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 392 | struct lysp_node **lysp_node_child_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 393 | |
| 394 | /** |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 395 | * @brief Get the address of the node's musts member, if any. |
| 396 | * Decides the node's type and in case it has a musts member, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 397 | * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 398 | * @param[in] node Node to examine. |
| 399 | * @return The address of the node's musts member if any, NULL otherwise. |
| 400 | */ |
| 401 | struct lysp_restr **lysp_node_musts_p(const struct lysp_node *node); |
| 402 | |
| 403 | /** |
| 404 | * @brief Get the node's musts member, if any. |
| 405 | * Decides the node's type and in case it has a musts member, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 406 | * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 407 | * @param[in] node Node to examine. |
| 408 | * @return The node's musts member if any, NULL otherwise. |
| 409 | */ |
| 410 | struct lysp_restr *lysp_node_musts(const struct lysp_node *node); |
| 411 | |
| 412 | /** |
| 413 | * @brief Get the address of the node's when member, if any. |
| 414 | * Decides the node's type and in case it has a when, returns it. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 415 | * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 416 | * @param[in] node Node to examine. |
| 417 | * @return The address of the node's when member if any, NULL otherwise. |
| 418 | */ |
| 419 | struct lysp_when **lysp_node_when_p(const struct lysp_node *node); |
| 420 | |
| 421 | /** |
| 422 | * @brief Get the node's when member, if any. |
| 423 | * Decides the node's type and in case it has a when, returns it. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 424 | * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 425 | * @param[in] node Node to examine. |
| 426 | * @return The node's when member if any, NULL otherwise. |
| 427 | */ |
| 428 | struct lysp_when *lysp_node_when(const struct lysp_node *node); |
| 429 | |
| 430 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 431 | * @brief Get address of a node's child pointer if any. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 432 | * Decides the node's type and in case it has a children list, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 433 | * |
| 434 | * Do not use for RPC and action nodes. |
| 435 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 436 | * @param[in] node Node to check. |
| 437 | * @return Address of the node's child member if any, NULL otherwise. |
| 438 | */ |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 439 | struct lysc_node **lysc_node_child_p(const struct lysc_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 440 | |
| 441 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 442 | * @brief Get address of a node's notifs pointer if any. |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 443 | * Decides the node's type and in case it has a notifs array, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 444 | * |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 445 | * @param[in] node Node to check. |
| 446 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 447 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 448 | struct lysc_node_notif **lysc_node_notifs_p(struct lysc_node *node); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 449 | |
| 450 | /** |
| 451 | * @brief Get address of a node's actions pointer if any. |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 452 | * Decides the node's type and in case it has a actions array, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 453 | * |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 454 | * @param[in] node Node to check. |
| 455 | * @return Address of the node's actions member if any, NULL otherwise. |
| 456 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 457 | struct lysc_node_action **lysc_node_actions_p(struct lysc_node *node); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 458 | |
| 459 | /** |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 460 | * @brief Get address of a node's when member if any. |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 461 | * Decides the node's type and in case it has a when member, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 462 | * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 463 | * @param[in] node Node to check. |
| 464 | * @return Address of the node's when member if any, NULL otherwise. |
| 465 | */ |
| 466 | struct lysc_when ***lysc_node_when_p(const struct lysc_node *node); |
| 467 | |
| 468 | /** |
| 469 | * @brief Get address of a node's musts member if any. |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 470 | * Decides the node's type and in case it has a musts member, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 471 | * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 472 | * @param[in] node Node to check. |
| 473 | * @return Address of the node's musts member if any, NULL otherwise. |
| 474 | */ |
| 475 | struct lysc_must **lysc_node_musts_p(const struct lysc_node *node); |
| 476 | |
| 477 | /** |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 478 | * @brief Find parsed extension definition for the given extension instance. |
| 479 | * |
| 480 | * @param[in] ctx libyang context. |
| 481 | * @param[in] ext Extension instance for which the definition will be searched. |
| 482 | * @param[in, out] ext_mod Pointer to the module where the extension definition of the @p ext to correctly resolve prefixes. |
| 483 | * @param[out] ext_def Pointer to return found extension definition. |
| 484 | * @return LY_SUCCESS when the definition was found. |
| 485 | * @return LY_EVALID when the extension instance is invalid and/or the definition not found. |
| 486 | */ |
| 487 | LY_ERR lysp_ext_find_definition(const struct ly_ctx *ctx, const struct lysp_ext_instance *ext, const struct lys_module **ext_mod, |
| 488 | struct lysp_ext **ext_def); |
| 489 | |
| 490 | /** |
Radek Krejci | ba05eab | 2021-03-10 13:19:29 +0100 | [diff] [blame] | 491 | * @brief Get schema node in extension instance according to the given parameters. |
| 492 | * |
| 493 | * Wraps ::lys_getnext_ext() and match according to the given arguments. |
| 494 | * |
| 495 | * @param[in] ext Extension instance which top-level schema node is being searched. |
| 496 | * @param[in] module Optional parameter to match the extension instance's (and its data) module. |
| 497 | * @param[in] name Name of the schema node to find, if the string is not NULL-terminated, the @p name_len must be set. |
| 498 | * @param[in] name_len Length of the @p name string, use in case the @p name is not NULL-terminated string. |
| 499 | * @param[in] nodetype Allowed [type of the node](@ref schemanodetypes). |
| 500 | * @param[in] options ORed [lys_getnext options](@ref sgetnextflags). |
| 501 | * @return Found schema node if there is some satisfy the provided requirements. |
| 502 | */ |
| 503 | const struct lysc_node *lysc_ext_find_node(const struct lysc_ext_instance *ext, const struct lys_module *module, |
| 504 | const char *name, size_t name_len, uint16_t nodetype, uint32_t options); |
| 505 | |
| 506 | /** |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 507 | * @brief When the module comes from YIN format, the argument name is unknown because of missing extension definition |
| 508 | * (it might come from import modules which is not yet parsed at that time). Therefore, all the attributes are stored |
| 509 | * as substatements and resolving argument is postponed. |
| 510 | * |
| 511 | * There are 3 places which need the argument, so they resolve it when missing - YIN and YANG printers and extension instance |
| 512 | * compiler. |
| 513 | * |
| 514 | * @param[in] ctx libyang context |
| 515 | * @param[in] ext_p Parsed extension to be updated. |
| 516 | * @param[in] ext_def Extension definition, found with ::lysp_ext_find_definition(). |
| 517 | * @return LY_ERR value. |
| 518 | */ |
| 519 | LY_ERR lysp_ext_instance_resolve_argument(struct ly_ctx *ctx, struct lysp_ext_instance *ext_p, struct lysp_ext *ext_def); |
| 520 | |
| 521 | /** |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 522 | * @brief Iterate over the specified type of the extension instances |
| 523 | * |
| 524 | * @param[in] ext ([Sized array](@ref sizedarrays)) of extensions to explore |
| 525 | * @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] | 526 | * the returned index increased by 1 (until the iteration is not terminated by returning LY_ARRAY_COUNT(ext). |
Radek Krejci | fc596f9 | 2021-02-26 22:40:26 +0100 | [diff] [blame] | 527 | * @param[in] substmt The statement the extension is supposed to belong to. |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 528 | * @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] | 529 | */ |
Radek Krejci | fc596f9 | 2021-02-26 22:40:26 +0100 | [diff] [blame] | 530 | LY_ARRAY_COUNT_TYPE lysp_ext_instance_iter(struct lysp_ext_instance *ext, LY_ARRAY_COUNT_TYPE index, enum ly_stmt substmt); |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 531 | |
| 532 | /** |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 533 | * @brief Get the covering schema module structure for the given parsed module structure. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 534 | * |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 535 | * @param[in] ctx libyang context to search. |
| 536 | * @param[in] mod Parsed schema structure. |
| 537 | * @return Corresponding lys_module structure for the given parsed schema structure. |
| 538 | */ |
| 539 | struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod); |
| 540 | |
| 541 | /** |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 542 | * @brief Stringify YANG built-in type. |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 543 | * @param[in] basetype Built-in type ID to stringify. |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 544 | * @return Constant string with the name of the built-in type. |
| 545 | */ |
| 546 | const char *lys_datatype2str(LY_DATA_TYPE basetype); |
| 547 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 548 | /** |
Michal Vasko | 6533388 | 2021-06-10 14:12:16 +0200 | [diff] [blame] | 549 | * @brief Implement a module and resolve all global unres. |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 550 | * |
| 551 | * @param[in] mod Module to implement. |
Michal Vasko | 4e205e8 | 2021-06-08 14:01:47 +0200 | [diff] [blame] | 552 | * @param[in] features Features to set, see ::lys_set_features(). |
Michal Vasko | 6533388 | 2021-06-10 14:12:16 +0200 | [diff] [blame] | 553 | * @param[in] unres Global unres with all the created modules. |
| 554 | * @return LY_SUCCESS on success. |
Michal Vasko | 4e205e8 | 2021-06-08 14:01:47 +0200 | [diff] [blame] | 555 | * @return LY_ERR on error. |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 556 | */ |
Michal Vasko | 6533388 | 2021-06-10 14:12:16 +0200 | [diff] [blame] | 557 | LY_ERR _lys_set_implemented(struct lys_module *mod, const char **features, struct lys_glob_unres *unres); |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 558 | |
Michal Vasko | f4258e1 | 2021-06-15 12:11:42 +0200 | [diff] [blame] | 559 | /** |
| 560 | * @brief Create dependency sets for all modules in a context. |
Michal Vasko | 50bc09a | 2021-06-17 17:31:56 +0200 | [diff] [blame] | 561 | * Also sets to_compile flags for all the modules that should be (re)compiled. |
Michal Vasko | f4258e1 | 2021-06-15 12:11:42 +0200 | [diff] [blame] | 562 | * |
| 563 | * @param[in] ctx Context to use. |
| 564 | * @param[in,out] main_set Set of dependency module sets. |
| 565 | * @param[in] mod Optional only module whose dependency set is needed, otherwise all sets are created. |
| 566 | * @return LY_ERR value. |
| 567 | */ |
Michal Vasko | 50bc09a | 2021-06-17 17:31:56 +0200 | [diff] [blame] | 568 | LY_ERR lys_unres_dep_sets_create(struct ly_ctx *ctx, struct ly_set *main_set, struct lys_module *mod); |
Michal Vasko | f4258e1 | 2021-06-15 12:11:42 +0200 | [diff] [blame] | 569 | |
| 570 | /** |
| 571 | * @brief Revert changes stored in global compile context after a failed compilation. |
| 572 | * |
| 573 | * @param[in] ctx libyang context. |
| 574 | * @param[in] unres Global unres to use. |
| 575 | */ |
| 576 | void lys_unres_glob_revert(struct ly_ctx *ctx, struct lys_glob_unres *unres); |
| 577 | |
| 578 | /** |
| 579 | * @brief Erase the global compile context. |
| 580 | * |
| 581 | * @param[in] unres Global unres to erase. |
| 582 | */ |
| 583 | void lys_unres_glob_erase(struct lys_glob_unres *unres); |
| 584 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 585 | 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] | 586 | void *check_data); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 587 | |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 588 | /** |
Michal Vasko | 4e205e8 | 2021-06-08 14:01:47 +0200 | [diff] [blame] | 589 | * @brief Parse a module and add it into the context. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 590 | * |
| 591 | * @param[in] ctx libyang context where to process the data model. |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 592 | * @param[in] in Input structure. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 593 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 594 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 595 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
Michal Vasko | dd99258 | 2021-06-10 14:34:57 +0200 | [diff] [blame] | 596 | * @param[in,out] new_mods Set of all the new mods added to the context. Includes this module and all of its imports. |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 597 | * @param[out] module Created module. |
Michal Vasko | dd99258 | 2021-06-10 14:34:57 +0200 | [diff] [blame] | 598 | * @return LY_SUCCESS on success. |
| 599 | * @return LY_ERR on error, @p new_mods may be modified. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 600 | */ |
Michal Vasko | 4e205e8 | 2021-06-08 14:01:47 +0200 | [diff] [blame] | 601 | LY_ERR lys_parse_in(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, lys_custom_check custom_check, |
Michal Vasko | dd99258 | 2021-06-10 14:34:57 +0200 | [diff] [blame] | 602 | void *check_data, struct ly_set *new_mods, struct lys_module **module); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 603 | |
| 604 | /** |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 605 | * @brief Parse submodule. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 606 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 607 | * The latest_revision flag of submodule is updated. |
| 608 | * |
| 609 | * @param[in] ctx libyang context where to process the data model. |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 610 | * @param[in] in Input structure. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 611 | * @param[in] format Format of the input data (YANG or YIN). |
| 612 | * @param[in] main_ctx Parser context of the main module. |
| 613 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 614 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
aPiecek | c3e2614 | 2021-06-22 14:25:49 +0200 | [diff] [blame] | 615 | * @param[in] new_mods Set of all the new mods added to the context. Includes this module and all of its imports. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 616 | * @param[out] submodule Parsed submodule. |
| 617 | * @return LY_ERR value. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 618 | */ |
Michal Vasko | 87f1cf0 | 2021-06-08 14:02:47 +0200 | [diff] [blame] | 619 | LY_ERR lys_parse_submodule(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, struct lys_parser_ctx *main_ctx, |
aPiecek | c3e2614 | 2021-06-22 14:25:49 +0200 | [diff] [blame] | 620 | lys_custom_check custom_check, void *check_data, struct ly_set *new_mods, struct lysp_submodule **submodule); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 621 | |
| 622 | /** |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 623 | * @brief Fill filepath value if available in input handler @p in |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 624 | * |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 625 | * @param[in] ctx Context with dictionary where the filepath value will be stored. |
| 626 | * @param[in] in Input handler to examine (filepath is not available for all the input types). |
| 627 | * @param[out] filepath Address of the variable where the filepath is stored. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 628 | */ |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 629 | 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] | 630 | |
| 631 | /** |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 632 | * @brief Get the @ref ifftokens from the given position in the 2bits array |
| 633 | * (libyang format of the if-feature expression). |
| 634 | * @param[in] list The 2bits array with the compiled if-feature expression. |
| 635 | * @param[in] pos Position (0-based) to specify from which position get the operator. |
| 636 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 637 | uint8_t lysc_iff_getop(uint8_t *list, size_t pos); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 638 | |
| 639 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 640 | * @brief Macro to free [sized array](@ref sizedarrays) of items using the provided free function. The ARRAY itself is also freed, |
| 641 | * but the memory is not sanitized. |
| 642 | */ |
Radek Krejci | 0a03a34 | 2021-01-19 13:39:28 +0100 | [diff] [blame] | 643 | #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] | 644 | |
| 645 | /** |
| 646 | * @brief Macro to free the specified MEMBER of a structure using the provided free function. The memory is not sanitized. |
| 647 | */ |
Radek Krejci | 0a03a34 | 2021-01-19 13:39:28 +0100 | [diff] [blame] | 648 | #define FREE_MEMBER(CTX, MEMBER, FUNC) if (MEMBER) {(FUNC)(CTX, MEMBER);free(MEMBER);} |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 649 | |
| 650 | /** |
| 651 | * @brief Macro to free [sized array](@ref sizedarrays) of strings stored in the context's dictionary. The ARRAY itself is also freed, |
| 652 | * but the memory is not sanitized. |
| 653 | */ |
Michal Vasko | e180ed0 | 2021-02-05 16:31:20 +0100 | [diff] [blame] | 654 | #define FREE_STRINGS(CTX, ARRAY) {LY_ARRAY_COUNT_TYPE c__; LY_ARRAY_FOR(ARRAY, c__){lydict_remove(CTX, ARRAY[c__]);}LY_ARRAY_FREE(ARRAY);} |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 655 | |
| 656 | /** |
Radek Krejci | 15f10ab | 2020-11-03 14:14:14 +0100 | [diff] [blame] | 657 | * @brief Free the printable YANG schema tree structure. Works for both modules and submodules. |
| 658 | * |
| 659 | * @param[in] module Printable YANG schema tree structure to free. |
| 660 | */ |
| 661 | void lysp_module_free(struct lysp_module *module); |
| 662 | |
| 663 | /** |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 664 | * @brief Free the parsed type structure. |
| 665 | * @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] | 666 | * @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] | 667 | */ |
| 668 | void lysp_type_free(struct ly_ctx *ctx, struct lysp_type *type); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 669 | |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 670 | /** |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 671 | * @brief Free the parsed extension instance structure. |
| 672 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 673 | * @param[in] ext Parsed extension instance structure to free. Note that the instance itself is not freed. |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 674 | */ |
| 675 | void lysp_ext_instance_free(struct ly_ctx *ctx, struct lysp_ext_instance *ext); |
| 676 | |
| 677 | /** |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 678 | * @brief Parse generic statement structure into a specific parsed-schema structure. |
| 679 | * |
| 680 | * @param[in] ctx The compilation context of the @p stmt being processed |
| 681 | * @param[in] stmt Generic statement structure to process. |
| 682 | * @param[out] result Specific parsed-schema structure for the given statement. For the specific type for the particular statement, check the function code. |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 683 | * @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. |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 684 | * @return LY_ERR value. |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 685 | */ |
Radek Krejci | 76c8c4e | 2021-02-17 10:16:48 +0100 | [diff] [blame] | 686 | LY_ERR lysp_stmt_parse(struct lysc_ctx *ctx, const struct lysp_stmt *stmt, void **result, struct lysp_ext_instance **exts); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 687 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 688 | /** |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 689 | * @brief Free a parsed node. |
| 690 | * |
| 691 | * @param[in] ctx libyang context. |
| 692 | * @param[in] node Node to free. |
| 693 | */ |
| 694 | void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node); |
| 695 | |
| 696 | /** |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 697 | * @brief Free a bit/enum item. |
| 698 | * |
| 699 | * @param[in] ctx libyang context. |
| 700 | * @param[in] item Bit/enum item to free. |
| 701 | */ |
| 702 | void lysc_enum_item_free(struct ly_ctx *ctx, struct lysc_type_bitenum_item *item); |
| 703 | |
| 704 | /** |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 705 | * @brief Free the compiled type structure. |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 706 | * |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 707 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 708 | * @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. |
| 709 | */ |
| 710 | void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type); |
| 711 | |
| 712 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 713 | * @brief Free the compiled if-feature structure. |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 714 | * |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 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 | /** |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 722 | * @brief Free the compiled identity structure. |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 723 | * |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 724 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 725 | * @param[in,out] ident Compiled identity structure to be cleaned. |
| 726 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 727 | */ |
| 728 | void lysc_ident_free(struct ly_ctx *ctx, struct lysc_ident *ident); |
| 729 | |
| 730 | /** |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 731 | * @brief Free the compiled must structure. |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 732 | * |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 733 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 734 | * @param[in,out] must Compiled must structure to be cleaned. |
| 735 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 736 | */ |
| 737 | void lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must); |
| 738 | |
| 739 | /** |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 740 | * @brief Free the data inside compiled input/output structure. |
| 741 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 742 | * @param[in,out] inout Compiled inout structure to be cleaned. |
| 743 | * Since the structure is part of the RPC/action structure, it is not freed itself. |
| 744 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 745 | void lysc_node_action_inout_free(struct ly_ctx *ctx, struct lysc_node_action_inout *inout); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 746 | |
| 747 | /** |
| 748 | * @brief Free the data inside compiled RPC/action structure. |
| 749 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 750 | * @param[in,out] action Compiled action structure to be cleaned. |
| 751 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 752 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 753 | void lysc_node_action_free(struct ly_ctx *ctx, struct lysc_node_action *action); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 754 | |
| 755 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 756 | * @brief Free the items inside the compiled Notification structure. |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 757 | * |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 758 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
Radek Krejci | 720d261 | 2021-03-03 19:44:22 +0100 | [diff] [blame] | 759 | * @param[in,out] notif Compiled Notification structure to be cleaned. |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 760 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 761 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 762 | void lysc_node_notif_free(struct ly_ctx *ctx, struct lysc_node_notif *notif); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 763 | |
| 764 | /** |
Radek Krejci | 720d261 | 2021-03-03 19:44:22 +0100 | [diff] [blame] | 765 | * @brief Free the compiled extension definition and NULL the provided pointer. |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 766 | * |
Radek Krejci | 720d261 | 2021-03-03 19:44:22 +0100 | [diff] [blame] | 767 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
aPiecek | b0445f2 | 2021-06-24 11:34:07 +0200 | [diff] [blame] | 768 | * @param[in,out] ext Compiled extension definition to be freed. |
Radek Krejci | 720d261 | 2021-03-03 19:44:22 +0100 | [diff] [blame] | 769 | */ |
| 770 | void lysc_extension_free(struct ly_ctx *ctx, struct lysc_ext **ext); |
| 771 | |
| 772 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 773 | * @brief Free the compiled extension instance structure. |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 774 | * |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 775 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 776 | * @param[in,out] ext Compiled extension instance structure to be cleaned. |
| 777 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 778 | */ |
| 779 | void lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext); |
| 780 | |
| 781 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 782 | * @brief Free the compiled node structure. |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 783 | * |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 784 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 785 | * @param[in] node Compiled node structure to be freed. |
| 786 | * @param[in] unlink Whether to first unlink the node before freeing. |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 787 | */ |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 788 | void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node, ly_bool unlink); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 789 | |
| 790 | /** |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 791 | * @brief Free the compiled container node structure. |
| 792 | * |
| 793 | * Only the container-specific members are freed, for generic node free function, |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 794 | * use ::lysc_node_free(). |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 795 | * |
| 796 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 797 | * @param[in,out] node Compiled container node structure to be freed. |
| 798 | */ |
| 799 | void lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node); |
| 800 | |
| 801 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 802 | * @brief Free the compiled schema structure. |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 803 | * |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 804 | * @param[in,out] module Compiled schema module structure to free. |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 805 | */ |
Radek Krejci | 90ed21e | 2021-04-12 14:47:46 +0200 | [diff] [blame] | 806 | void lysc_module_free(struct lysc_module *module); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 807 | |
| 808 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 809 | * @brief Free the schema structure. It just frees, it does not remove the schema from its context. |
Michal Vasko | f4fa90d | 2021-11-11 15:05:19 +0100 | [diff] [blame] | 810 | * |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 811 | * @param[in,out] module Schema module structure to free. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 812 | */ |
Radek Krejci | 90ed21e | 2021-04-12 14:47:46 +0200 | [diff] [blame] | 813 | void lys_module_free(struct lys_module *module); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 814 | |
| 815 | /** |
David Sedlák | 18e494b | 2018-12-17 03:58:39 +0100 | [diff] [blame] | 816 | * @brief match yang keyword |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 817 | * |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 818 | * @param[in,out] in Input structure, is updated. |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 819 | * @param[in,out] indent Pointer to the counter of current position on the line for YANG indentation (optional). |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 820 | * @return yang_keyword values. |
David Sedlák | 18e494b | 2018-12-17 03:58:39 +0100 | [diff] [blame] | 821 | */ |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 822 | enum ly_stmt lysp_match_kw(struct ly_in *in, uint64_t *indent); |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 823 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 824 | /** |
| 825 | * @brief Generate path of the given node in the requested format. |
| 826 | * |
| 827 | * @param[in] node Schema path of this node will be generated. |
| 828 | * @param[in] parent Build relative path only until this parent is found. If NULL, the full absolute path is printed. |
| 829 | * @param[in] pathtype Format of the path to generate. |
| 830 | * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path. |
| 831 | * If NULL, memory for the complete path is allocated. |
| 832 | * @param[in] buflen Size of the provided @p buffer. |
| 833 | * @return NULL in case of memory allocation error, path of the node otherwise. |
| 834 | * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it. |
| 835 | */ |
| 836 | 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] | 837 | size_t buflen); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 838 | |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 839 | /** |
Michal Vasko | 7224488 | 2021-01-12 15:21:05 +0100 | [diff] [blame] | 840 | * @brief Get nearest @p schema parent (including the node itself) that can be instantiated in data. |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 841 | * |
Michal Vasko | 7224488 | 2021-01-12 15:21:05 +0100 | [diff] [blame] | 842 | * @param[in] schema Schema node to get the nearest data node for. |
| 843 | * @return Schema data node, NULL if top-level (in data). |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 844 | */ |
Michal Vasko | 7224488 | 2021-01-12 15:21:05 +0100 | [diff] [blame] | 845 | const struct lysc_node *lysc_data_node(const struct lysc_node *schema); |
| 846 | |
| 847 | /** |
| 848 | * @brief Same as ::lysc_data_node() but never returns the node itself. |
| 849 | */ |
Michal Vasko | 4865f1b | 2021-12-02 14:20:15 +0100 | [diff] [blame] | 850 | #define lysc_data_parent(SCHEMA) lysc_data_node((SCHEMA) ? (SCHEMA)->parent : NULL) |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 851 | |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 852 | /** |
Radek Krejci | 239c38a | 2020-10-19 10:58:25 +0200 | [diff] [blame] | 853 | * @brief Get format-specific prefix for a module. |
| 854 | * |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 855 | * This function is available for type plugins via ::lyplg_type_get_prefix() API function. |
Radek Krejci | 239c38a | 2020-10-19 10:58:25 +0200 | [diff] [blame] | 856 | * |
| 857 | * @param[in] mod Module whose prefix to get. |
| 858 | * @param[in] format Format of the prefix. |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 859 | * @param[in] prefix_data Format-specific data based on @p format: |
Radek Krejci | 224d4b4 | 2021-04-23 13:54:59 +0200 | [diff] [blame] | 860 | * LY_VALUE_CANON - NULL |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 861 | * LY_VALUE_SCHEMA - const struct ::lysp_module* (module used for resolving imports to prefixes) |
| 862 | * LY_VALUE_SCHEMA_RESOLVED - struct ::lysc_prefix* (sized array of pairs: prefix - module) |
| 863 | * LY_VALUE_XML - struct ::ly_set* (set of all returned modules as struct ::lys_module) |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 864 | * LY_VALUE_JSON - NULL |
Radek Krejci | f994364 | 2021-04-26 10:18:21 +0200 | [diff] [blame] | 865 | * LY_VALUE_LYB - NULL |
Radek Krejci | 239c38a | 2020-10-19 10:58:25 +0200 | [diff] [blame] | 866 | * @return Module prefix to print. |
| 867 | * @return NULL on error. |
| 868 | */ |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 869 | const char *ly_get_prefix(const struct lys_module *mod, LY_VALUE_FORMAT format, void *prefix_data); |
Radek Krejci | 239c38a | 2020-10-19 10:58:25 +0200 | [diff] [blame] | 870 | |
| 871 | /** |
| 872 | * @brief Resolve format-specific prefixes to modules. |
| 873 | * |
Radek Krejci | 239c38a | 2020-10-19 10:58:25 +0200 | [diff] [blame] | 874 | * @param[in] ctx libyang context. |
| 875 | * @param[in] prefix Prefix to resolve. |
| 876 | * @param[in] prefix_len Length of @p prefix. |
| 877 | * @param[in] format Format of the prefix. |
Radek Krejci | f994364 | 2021-04-26 10:18:21 +0200 | [diff] [blame] | 878 | * @param[in] prefix_data Format-specific data based on @p format: |
| 879 | * LY_VALUE_CANON - NULL |
| 880 | * LY_VALUE_SCHEMA - const struct lysp_module * (module used for resolving prefixes from imports) |
| 881 | * LY_VALUE_SCHEMA_RESOLVED - struct lyd_value_prefix * (sized array of pairs: prefix - module) |
| 882 | * LY_VALUE_XML - const struct ly_set * (set with defined namespaces stored as ::lyxml_ns) |
| 883 | * LY_VALUE_JSON - NULL |
| 884 | * LY_VALUE_LYB - NULL |
Radek Krejci | 239c38a | 2020-10-19 10:58:25 +0200 | [diff] [blame] | 885 | * @return Resolved prefix module, |
| 886 | * @return NULL otherwise. |
| 887 | */ |
Radek Krejci | f994364 | 2021-04-26 10:18:21 +0200 | [diff] [blame] | 888 | const struct lys_module *ly_resolve_prefix(const struct ly_ctx *ctx, const void *prefix, size_t prefix_len, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 889 | LY_VALUE_FORMAT format, const void *prefix_data); |
Radek Krejci | 239c38a | 2020-10-19 10:58:25 +0200 | [diff] [blame] | 890 | |
Michal Vasko | f4258e1 | 2021-06-15 12:11:42 +0200 | [diff] [blame] | 891 | /** |
| 892 | * @brief Learn whether @p PMOD needs to be recompiled if it is implemented. |
| 893 | * |
| 894 | * @param[in] PMOD Parsed module or submodule. |
| 895 | * @return Whether it has statements that are recompiled or not. |
| 896 | */ |
| 897 | #define LYSP_HAS_RECOMPILED(PMOD) \ |
| 898 | (PMOD->data || PMOD->rpcs || PMOD->notifs || PMOD->exts) |
| 899 | |
| 900 | /** |
| 901 | * @brief Learn whether the module has statements that need to be recompiled or not. |
| 902 | * |
| 903 | * @param[in] mod Module to examine. |
| 904 | * @return Whether it has statements that are recompiled or not. |
| 905 | */ |
| 906 | ly_bool lys_has_recompiled(const struct lys_module *mod); |
| 907 | |
| 908 | /** |
| 909 | * @brief Learn whether @p PMOD needs to be compiled if it is implemented. |
| 910 | * |
| 911 | * @param[in] PMOD Parsed module or submodule. |
| 912 | * @return Whether it needs (has) a compiled module or not. |
| 913 | */ |
| 914 | #define LYSP_HAS_COMPILED(PMOD) \ |
aPiecek | 6b3d542 | 2021-07-30 15:55:43 +0200 | [diff] [blame] | 915 | (LYSP_HAS_RECOMPILED(PMOD) || PMOD->augments || PMOD->deviations) |
Michal Vasko | f4258e1 | 2021-06-15 12:11:42 +0200 | [diff] [blame] | 916 | |
| 917 | /** |
| 918 | * @brief Learn whether the module has statements that need to be compiled or not. |
| 919 | * |
| 920 | * @param[in] mod Module to examine. |
| 921 | * @return Whether it needs compiled module or not. |
| 922 | */ |
| 923 | ly_bool lys_has_compiled(const struct lys_module *mod); |
| 924 | |
Michal Vasko | 7ee5be2 | 2021-06-16 17:03:34 +0200 | [diff] [blame] | 925 | /** |
| 926 | * @brief Learn whether the module has any grouping statements or not. |
| 927 | * |
| 928 | * @param[in] mod Module to examine. |
| 929 | * @return Whether it has groupings or not. |
| 930 | */ |
| 931 | ly_bool lys_has_groupings(const struct lys_module *mod); |
| 932 | |
Michal Vasko | f8b1b0d | 2021-11-22 09:59:57 +0100 | [diff] [blame] | 933 | /** |
| 934 | * @brief Learn whether the module qualifies for a single dep set with only this module or not. |
| 935 | * |
| 936 | * @param[in] mod Module to examine. |
| 937 | * @return Whether it qualifies as a single dep set or not. |
| 938 | */ |
| 939 | #define LYS_IS_SINGLE_DEP_SET(mod) \ |
| 940 | (!(mod)->parsed->features && (!lys_has_compiled(mod) || ((mod)->compiled && !lys_has_recompiled(mod)))) |
| 941 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 942 | #endif /* LY_TREE_SCHEMA_INTERNAL_H_ */ |