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 | |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 25 | struct lysc_ctx; |
| 26 | |
FredGan | d944bdc | 2019-11-05 21:57:07 +0800 | [diff] [blame] | 27 | #define YIN_NS_URI "urn:ietf:params:xml:ns:yang:yin:1" |
| 28 | |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 29 | /** |
| 30 | * @brief Check module version is at least 2 (YANG 1.1) because of the keyword presence. |
| 31 | * Logs error message and returns LY_EVALID in case of module in YANG version 1.0. |
| 32 | * @param[in] CTX yang parser context to get current module and for logging. |
| 33 | * @param[in] KW keyword allowed only in YANG version 1.1 (or later) - for logging. |
| 34 | * @param[in] PARENT parent statement where the KW is present - for logging. |
| 35 | */ |
| 36 | #define PARSER_CHECK_STMTVER2_RET(CTX, KW, PARENT) \ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 37 | 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] | 38 | |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 39 | /* These 2 macros checks YANG's identifier grammar rule */ |
| 40 | #define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_') |
| 41 | #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] | 42 | c == '_' || c == '-' || c == '.') |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 43 | |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 44 | /* Macro to check YANG's yang-char grammar rule */ |
David Sedlák | 2c0d5ef | 2019-08-14 11:40:44 +0200 | [diff] [blame] | 45 | #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] | 46 | (c >= 0xe000 && c <= 0xfdcf) || (c >= 0xfdf0 && c <= 0xfffd) || \ |
| 47 | (c >= 0x10000 && c <= 0x1fffd) || (c >= 0x20000 && c <= 0x2fffd) || \ |
| 48 | (c >= 0x30000 && c <= 0x3fffd) || (c >= 0x40000 && c <= 0x2fffd) || \ |
| 49 | (c >= 0x50000 && c <= 0x5fffd) || (c >= 0x60000 && c <= 0x6fffd) || \ |
| 50 | (c >= 0x70000 && c <= 0x7fffd) || (c >= 0x80000 && c <= 0x8fffd) || \ |
| 51 | (c >= 0x90000 && c <= 0x9fffd) || (c >= 0xa0000 && c <= 0xafffd) || \ |
| 52 | (c >= 0xb0000 && c <= 0xbfffd) || (c >= 0xc0000 && c <= 0xcfffd) || \ |
| 53 | (c >= 0xd0000 && c <= 0xdfffd) || (c >= 0xe0000 && c <= 0xefffd) || \ |
| 54 | (c >= 0xf0000 && c <= 0xffffd) || (c >= 0x100000 && c <= 0x10fffd)) |
| 55 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 56 | /** |
David Sedlák | ca36c42 | 2019-07-12 12:47:55 +0200 | [diff] [blame] | 57 | * @brief Try to find object with MEMBER string matching the IDENT in the given ARRAY. |
| 58 | * Macro logs an error message and returns LY_EVALID in case of existence of a matching object. |
| 59 | * |
| 60 | * @param[in] CTX yang parser context for logging. |
| 61 | * @param[in] ARRAY [sized array](@ref sizedarrays) of a generic objects with member named MEMBER to search. |
| 62 | * @param[in] MEMBER Name of the member of the objects in the ARRAY to compare. |
| 63 | * @param[in] STMT Name of the compared YANG statements for logging. |
| 64 | * @param[in] IDENT String trying to find in the ARRAY's objects inside the MEMBER member. |
| 65 | */ |
| 66 | #define CHECK_UNIQUENESS(CTX, ARRAY, MEMBER, STMT, IDENT) \ |
| 67 | if (ARRAY) { \ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 68 | 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] | 69 | if (!strcmp((ARRAY)[u_].MEMBER, IDENT)) { \ |
David Sedlák | ca36c42 | 2019-07-12 12:47:55 +0200 | [diff] [blame] | 70 | LOGVAL_PARSER(CTX, LY_VCODE_DUPIDENT, IDENT, STMT); \ |
| 71 | return LY_EVALID; \ |
| 72 | } \ |
| 73 | } \ |
| 74 | } |
| 75 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 76 | #define CHECK_NONEMPTY(CTX, VALUE_LEN, STMT) \ |
David Sedlák | 129a09c | 2019-07-12 14:08:34 +0200 | [diff] [blame] | 77 | if (!VALUE_LEN) { \ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 78 | 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] | 79 | } |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 80 | |
| 81 | /** |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 82 | * @brief List of YANG statement groups - the (sub)module's substatements |
| 83 | */ |
| 84 | enum yang_module_stmt { |
| 85 | Y_MOD_MODULE_HEADER, |
| 86 | Y_MOD_LINKAGE, |
| 87 | Y_MOD_META, |
| 88 | Y_MOD_REVISION, |
| 89 | Y_MOD_BODY |
| 90 | }; |
| 91 | |
| 92 | /** |
| 93 | * @brief Types of arguments of YANG statements |
| 94 | */ |
| 95 | enum yang_arg { |
| 96 | Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */ |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 97 | 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] | 98 | Y_STR_ARG, /**< YANG "string" rule */ |
| 99 | Y_MAYBE_STR_ARG /**< optional YANG "string" rule */ |
| 100 | }; |
| 101 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 102 | #define PARSER_CTX(CTX) ((CTX)->parsed_mod->mod->ctx) |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 103 | |
| 104 | #define LOGVAL_PARSER(CTX, ...) (CTX)->format == LYS_IN_YANG ? LOGVAL_YANG(CTX, __VA_ARGS__) : LOGVAL_YIN(CTX, __VA_ARGS__) |
| 105 | |
| 106 | #define LOGVAL_YANG(CTX, ...) LOGVAL(PARSER_CTX(CTX), ((struct lys_yang_parser_ctx *)CTX)->pos_type, \ |
| 107 | ((struct lys_yang_parser_ctx *)CTX)->pos_type == LY_VLOG_LINE ? \ |
| 108 | (void *)&((struct lys_yang_parser_ctx *)CTX)->line : \ |
| 109 | (void *)((struct lys_yang_parser_ctx *)CTX)->path, __VA_ARGS__) |
| 110 | |
| 111 | #define LOGVAL_YIN(CTX, ...) LOGVAL(PARSER_CTX(CTX), LY_VLOG_LINE, \ |
| 112 | &((struct lys_yin_parser_ctx *)CTX)->xmlctx->line, __VA_ARGS__) |
| 113 | |
| 114 | struct lys_parser_ctx { |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 115 | LYS_INFORMAT format; /**< parser format */ |
| 116 | struct ly_set tpdfs_nodes; /**< set of typedef nodes */ |
| 117 | struct ly_set grps_nodes; /**< set of grouping nodes */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 118 | struct lysp_module *parsed_mod; /**< (sub)module being parsed */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 119 | }; |
| 120 | |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 121 | /** |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 122 | * @brief Internal context for yang schema parser. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 123 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 124 | struct lys_yang_parser_ctx { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 125 | LYS_INFORMAT format; /**< parser format */ |
| 126 | struct ly_set tpdfs_nodes; /**< set of typedef nodes */ |
| 127 | struct ly_set grps_nodes; /**< set of grouping nodes */ |
| 128 | struct lysp_module *parsed_mod; /**< (sub)module being parsed */ |
| 129 | enum LY_VLOG_ELEM pos_type; /**< */ |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 130 | union { |
| 131 | uint64_t line; /**< line number */ |
| 132 | const char *path; /**< path */ |
| 133 | }; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 134 | uint64_t indent; /**< current position on the line for YANG indentation */ |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 135 | }; |
| 136 | |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 137 | /** |
| 138 | * @brief free lys parser context. |
| 139 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 140 | void yang_parser_ctx_free(struct lys_yang_parser_ctx *ctx); |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 141 | |
| 142 | /** |
| 143 | * @brief Internal context for yin schema parser. |
| 144 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 145 | struct lys_yin_parser_ctx { |
| 146 | LYS_INFORMAT format; /**< parser format */ |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 147 | struct ly_set tpdfs_nodes; /**< set of typedef nodes */ |
| 148 | struct ly_set grps_nodes; /**< set of grouping nodes */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 149 | struct lysp_module *parsed_mod;/**< (sub)module being parsed */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 150 | struct lyxml_ctx *xmlctx; /**< context for xml parser */ |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 151 | }; |
| 152 | |
| 153 | /** |
| 154 | * @brief free yin parser context |
| 155 | * |
| 156 | * @param[in] ctx Context to free. |
| 157 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 158 | void yin_parser_ctx_free(struct lys_yin_parser_ctx *ctx); |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 159 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 160 | /** |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 161 | * @brief Check that \p c is valid UTF8 code point for YANG string. |
| 162 | * |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 163 | * @param[in] ctx parser context for logging. |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 164 | * @param[in] c UTF8 code point of a character to check. |
| 165 | * @return LY_ERR values. |
| 166 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 167 | 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] | 168 | |
| 169 | /** |
| 170 | * @brief Check that \p c is valid UTF8 code point for YANG identifier. |
| 171 | * |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 172 | * @param[in] ctx parser context for logging. |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 173 | * @param[in] c UTF8 code point of a character to check. |
| 174 | * @param[in] first Flag to check the first character of an identifier, which is more restricted. |
| 175 | * @param[in,out] prefix Storage for internally used flag in case of possible prefixed identifiers: |
| 176 | * 0 - colon not yet found (no prefix) |
| 177 | * 1 - \p c is the colon character |
| 178 | * 2 - prefix already processed, now processing the identifier |
| 179 | * |
| 180 | * If the identifier cannot be prefixed, NULL is expected. |
| 181 | * @return LY_ERR values. |
| 182 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 183 | 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] | 184 | |
| 185 | /** |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 186 | * @brief Check the currently present prefixes in the module for collision with the new one. |
| 187 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 188 | * @param[in] ctx Context for logging. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 189 | * @param[in] imports List of current imports of the module to check prefix collision. |
| 190 | * @param[in] module_prefix Prefix of the module to check collision. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 191 | * @param[in] value Newly added prefix value (including its location to distinguish collision with itself). |
| 192 | * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise |
| 193 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 194 | 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] | 195 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 196 | /** |
| 197 | * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT) |
| 198 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 199 | * @param[in] ctx Optional context for logging. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 200 | * @param[in] date Date string to check (non-necessarily terminated by \0) |
| 201 | * @param[in] date_len Length of the date string, 10 expected. |
| 202 | * @param[in] stmt Statement name for error message. |
| 203 | * @return LY_ERR value. |
| 204 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 205 | 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] | 206 | |
| 207 | /** |
| 208 | * @brief Check names of typedefs in the parsed module to detect collisions. |
| 209 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 210 | * @param[in] ctx Parser context for logging and to maintain tpdfs_nodes |
| 211 | * @param[in] mod Module where the type is being defined. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 212 | * @return LY_ERR value. |
| 213 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 214 | 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] | 215 | |
| 216 | /** |
David Sedlák | d2ebe57 | 2019-07-22 12:53:14 +0200 | [diff] [blame] | 217 | * @brief Finalize some of the structures in case they are stored in sized array, |
| 218 | * which can be possibly reallocated and some other data may point to them. |
| 219 | * |
| 220 | * Update parent pointers in the nodes inside grouping/augment/RPC/Notification, which could be reallocated. |
| 221 | * |
| 222 | * @param[in] mod Parsed module to be updated. |
| 223 | * @return LY_ERR value (currently only LY_SUCCESS, but it can change in future). |
| 224 | */ |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 225 | 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] | 226 | struct lysp_action *actions, struct lysp_notif *notifs); |
David Sedlák | d2ebe57 | 2019-07-22 12:53:14 +0200 | [diff] [blame] | 227 | |
| 228 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 229 | * @brief Just move the newest revision into the first position, does not sort the rest |
| 230 | * @param[in] revs Sized-array of the revisions in a printable schema tree. |
| 231 | */ |
| 232 | void lysp_sort_revisions(struct lysp_revision *revs); |
| 233 | |
| 234 | /** |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 235 | * @brief Find type specified type definition. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 236 | * |
| 237 | * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module. |
| 238 | * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents. |
| 239 | * @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] | 240 | * @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] | 241 | * @param[out] tpdf Found type definition. |
| 242 | * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef. |
| 243 | * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types. |
| 244 | */ |
| 245 | 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] | 246 | 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] | 247 | |
| 248 | /** |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 249 | * @brief Validate enum name. |
| 250 | * |
| 251 | * @param[in] ctx yang parser context for logging. |
| 252 | * @param[in] name String to check. |
| 253 | * @param[in] name_len Length of name. |
| 254 | * |
| 255 | * @return LY_ERR values |
| 256 | */ |
David Sedlák | 07869a5 | 2019-07-12 14:28:19 +0200 | [diff] [blame] | 257 | 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] | 258 | |
| 259 | /** |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 260 | * @brief Find and parse module of the given name. |
| 261 | * |
| 262 | * @param[in] ctx libyang context. |
| 263 | * @param[in] name Name of the module to load. |
| 264 | * @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] | 265 | * @param[in] implement Flag if the loaded module is supposed to be marked as implemented. If revision is NULL and implement flag set, |
| 266 | * the implemented module in the context is returned despite it might not be of the latest revision, because in this case the module |
| 267 | * of the latest revision can not be made implemented. |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 268 | * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context, |
| 269 | * but only the compiled structure is available. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 270 | * @param[out] mod Parsed module structure. |
| 271 | * @return LY_ERR value. |
| 272 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 273 | 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] | 274 | |
| 275 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 276 | * @brief Parse included submodule into the simply parsed YANG module. |
| 277 | * |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 278 | * @param[in] pctx main parser context |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 279 | * @param[in,out] inc Include structure holding all available information about the include statement, the parsed |
| 280 | * submodule is stored into this structure. |
| 281 | * @return LY_ERR value. |
| 282 | */ |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 283 | 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] | 284 | |
| 285 | /** |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 286 | * @brief Free a parsed restriction. |
| 287 | * |
| 288 | * @param[in] ctx libyang context. |
| 289 | * @param[in] restr Restriction to free. |
| 290 | */ |
| 291 | void lysp_restr_free(struct ly_ctx *ctx, struct lysp_restr *restr); |
| 292 | |
| 293 | /** |
| 294 | * @brief Free a parsed qualified name. |
| 295 | * |
| 296 | * @param[in] ctx libyang context. |
| 297 | * @param[in] qname Qualified name to free. |
| 298 | */ |
| 299 | void lysp_qname_free(struct ly_ctx *ctx, struct lysp_qname *qname); |
| 300 | |
| 301 | /** |
| 302 | * @brief Free a parsed node. |
| 303 | * |
| 304 | * @param[in] ctx libyang context. |
| 305 | * @param[in] node Node to free. |
| 306 | */ |
| 307 | void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node); |
| 308 | |
| 309 | /** |
| 310 | * @brief Free a parsed input/output node. |
| 311 | * |
| 312 | * @param[in] ctx libyang context. |
| 313 | * @param[in] inout Input/output to free. |
| 314 | */ |
| 315 | void lysp_action_inout_free(struct ly_ctx *ctx, struct lysp_action_inout *inout); |
| 316 | |
| 317 | /** |
| 318 | * @brief Free a parsed action node. |
| 319 | * |
| 320 | * @param[in] ctx libyang context. |
| 321 | * @param[in] action Action to free. |
| 322 | */ |
| 323 | void lysp_action_free(struct ly_ctx *ctx, struct lysp_action *action); |
| 324 | |
| 325 | /** |
| 326 | * @brief Free a parsed notification node. |
| 327 | * |
| 328 | * @param[in] ctx libyang context. |
| 329 | * @param[in] notif Notification to free. |
| 330 | */ |
| 331 | void lysp_notif_free(struct ly_ctx *ctx, struct lysp_notif *notif); |
| 332 | |
| 333 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 334 | * @brief Get address of a node's actions list if any. |
| 335 | * |
| 336 | * Decides the node's type and in case it has an actions list, returns its address. |
| 337 | * @param[in] node Node to check. |
| 338 | * @return Address of the node's actions member if any, NULL otherwise. |
| 339 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 340 | struct lysp_action **lysp_node_actions_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 341 | |
| 342 | /** |
| 343 | * @brief Get address of a node's notifications list if any. |
| 344 | * |
| 345 | * Decides the node's type and in case it has a notifications list, returns its address. |
| 346 | * @param[in] node Node to check. |
| 347 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 348 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 349 | struct lysp_notif **lysp_node_notifs_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 350 | |
| 351 | /** |
| 352 | * @brief Get address of a node's child pointer if any. |
| 353 | * |
| 354 | * Decides the node's type and in case it has a children list, returns its address. |
| 355 | * @param[in] node Node to check. |
| 356 | * @return Address of the node's child member if any, NULL otherwise. |
| 357 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 358 | struct lysp_node **lysp_node_children_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 359 | |
| 360 | /** |
| 361 | * @brief Get address of a node's child pointer if any. |
| 362 | * |
| 363 | * Decides the node's type and in case it has a children list, returns its address. |
| 364 | * @param[in] node Node to check. |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 365 | * @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] | 366 | * @return Address of the node's child member if any, NULL otherwise. |
| 367 | */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 368 | 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] | 369 | |
| 370 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 371 | * @brief Get address of a node's notifs pointer if any. |
| 372 | * |
| 373 | * Decides the node's type and in case it has a notifs array, returns its address. |
| 374 | * @param[in] node Node to check. |
| 375 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 376 | */ |
| 377 | struct lysc_notif **lysc_node_notifs_p(struct lysc_node *node); |
| 378 | |
| 379 | /** |
| 380 | * @brief Get address of a node's actions pointer if any. |
| 381 | * |
| 382 | * Decides the node's type and in case it has a actions array, returns its address. |
| 383 | * @param[in] node Node to check. |
| 384 | * @return Address of the node's actions member if any, NULL otherwise. |
| 385 | */ |
| 386 | struct lysc_action **lysc_node_actions_p(struct lysc_node *node); |
| 387 | |
| 388 | /** |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 389 | * @brief Iterate over the specified type of the extension instances |
| 390 | * |
| 391 | * @param[in] ext ([Sized array](@ref sizedarrays)) of extensions to explore |
| 392 | * @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] | 393 | * 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] | 394 | * @param[in] substmt Type of the extension (its belongins to the specific substatement) to iterate, use |
| 395 | * #LYEXT_SUBSTMT_ALL to go through all the extensions in the array |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 396 | * @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] | 397 | */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 398 | 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] | 399 | |
| 400 | /** |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 401 | * @brief Get the covering schema module structure for the given parsed module structure. |
| 402 | * @param[in] ctx libyang context to search. |
| 403 | * @param[in] mod Parsed schema structure. |
| 404 | * @return Corresponding lys_module structure for the given parsed schema structure. |
| 405 | */ |
| 406 | struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod); |
| 407 | |
| 408 | /** |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 409 | * @brief Find the module referenced by prefix in the provided mod. |
| 410 | * |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 411 | * @param[in] prefix_mod Schema module where the prefix was used. |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 412 | * @param[in] prefix Prefix used to reference a module. |
| 413 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 414 | * @return Pointer to the module or NULL if the module is not found. |
| 415 | */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 416 | 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] | 417 | |
| 418 | /** |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 419 | * @brief Stringify YANG built-in type. |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 420 | * @param[in] basetype Built-in type ID to stringify. |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 421 | * @return Constant string with the name of the built-in type. |
| 422 | */ |
| 423 | const char *lys_datatype2str(LY_DATA_TYPE basetype); |
| 424 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 425 | 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] | 426 | void *check_data); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 427 | |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 428 | /** |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 429 | * @brief Create a new module. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 430 | * |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 431 | * 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] | 432 | * |
| 433 | * @param[in] ctx libyang context where to process the data model. |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 434 | * @param[in] in Input structure. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 435 | * @param[in] format Format of the input data (YANG or YIN). |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 436 | * @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] | 437 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 438 | * @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] | 439 | * @param[out] module Created module. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 440 | * @return LY_ERR value. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 441 | */ |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 442 | 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] | 443 | lys_custom_check custom_check, void *check_data, struct lys_module **module); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 444 | |
| 445 | /** |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 446 | * @brief Parse submodule. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 447 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 448 | * The latest_revision flag of submodule is updated. |
| 449 | * |
| 450 | * @param[in] ctx libyang context where to process the data model. |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 451 | * @param[in] in Input structure. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 452 | * @param[in] format Format of the input data (YANG or YIN). |
| 453 | * @param[in] main_ctx Parser context of the main module. |
| 454 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 455 | * @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] | 456 | * @param[out] submodule Parsed submodule. |
| 457 | * @return LY_ERR value. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 458 | */ |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 459 | 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] | 460 | struct lys_parser_ctx *main_ctx, lys_custom_check custom_check, |
| 461 | void *check_data, struct lysp_submodule **submodule); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 462 | |
| 463 | /** |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 464 | * @brief Fill filepath value if available in input handler @p in |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 465 | * |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 466 | * @param[in] ctx Context with dictionary where the filepath value will be stored. |
| 467 | * @param[in] in Input handler to examine (filepath is not available for all the input types). |
| 468 | * @param[out] filepath Address of the variable where the filepath is stored. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 469 | */ |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 470 | 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] | 471 | |
| 472 | /** |
| 473 | * @brief Load the (sub)module into the context. |
| 474 | * |
| 475 | * This function does not check the presence of the (sub)module in context, it should be done before calling this function. |
| 476 | * |
| 477 | * module_name and submodule_name are alternatives - only one of the |
| 478 | * |
| 479 | * @param[in] ctx libyang context where to work. |
| 480 | * @param[in] name Name of the (sub)module to load. |
| 481 | * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded. |
| 482 | * @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] | 483 | * @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] | 484 | * @param[in] main_name Main module name in case of loading submodule. |
Radek Krejci | 78f0682 | 2019-10-30 12:54:05 +0100 | [diff] [blame] | 485 | * @param[in] required Module is required so error (even if the input file not found) are important. If 0, there is some |
| 486 | * 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] | 487 | * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*). |
| 488 | * If it is a module, it is already in the context! |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 489 | * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided. |
| 490 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 491 | LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, ly_bool implement, |
| 492 | 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] | 493 | |
| 494 | /** |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 495 | * @brief Get the @ref ifftokens from the given position in the 2bits array |
| 496 | * (libyang format of the if-feature expression). |
| 497 | * @param[in] list The 2bits array with the compiled if-feature expression. |
| 498 | * @param[in] pos Position (0-based) to specify from which position get the operator. |
| 499 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 500 | uint8_t lysc_iff_getop(uint8_t *list, size_t pos); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 501 | |
| 502 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 503 | * @brief Macro to free [sized array](@ref sizedarrays) of items using the provided free function. The ARRAY itself is also freed, |
| 504 | * but the memory is not sanitized. |
| 505 | */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 506 | #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] | 507 | |
| 508 | /** |
| 509 | * @brief Macro to free the specified MEMBER of a structure using the provided free function. The memory is not sanitized. |
| 510 | */ |
| 511 | #define FREE_MEMBER(CTX, MEMBER, FUNC) if (MEMBER) {FUNC(CTX, MEMBER);free(MEMBER);} |
| 512 | |
| 513 | /** |
| 514 | * @brief Macro to free [sized array](@ref sizedarrays) of strings stored in the context's dictionary. The ARRAY itself is also freed, |
| 515 | * but the memory is not sanitized. |
| 516 | */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 517 | #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] | 518 | |
| 519 | /** |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 520 | * @brief Free the parsed type structure. |
| 521 | * @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] | 522 | * @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] | 523 | */ |
| 524 | void lysp_type_free(struct ly_ctx *ctx, struct lysp_type *type); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 525 | |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 526 | /** |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 527 | * @brief Free the parsed extension instance structure. |
| 528 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 529 | * @param[in] type Parsed extension instance structure to free. Note that the instance itself is not freed. |
| 530 | */ |
| 531 | void lysp_ext_instance_free(struct ly_ctx *ctx, struct lysp_ext_instance *ext); |
| 532 | |
| 533 | /** |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 534 | * @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. |
| 535 | */ |
| 536 | 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] | 537 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 538 | /** |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 539 | * @brief Free a parsed node. |
| 540 | * |
| 541 | * @param[in] ctx libyang context. |
| 542 | * @param[in] node Node to free. |
| 543 | */ |
| 544 | void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node); |
| 545 | |
| 546 | /** |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 547 | * @brief Free the compiled type structure. |
| 548 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 549 | * @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. |
| 550 | */ |
| 551 | void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type); |
| 552 | |
| 553 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 554 | * @brief Free the compiled if-feature structure. |
| 555 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 556 | * @param[in,out] iff Compiled if-feature structure to be cleaned. |
| 557 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 558 | */ |
| 559 | void lysc_iffeature_free(struct ly_ctx *ctx, struct lysc_iffeature *iff); |
| 560 | |
| 561 | /** |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 562 | * @brief Free the compiled must structure. |
| 563 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 564 | * @param[in,out] must Compiled must structure to be cleaned. |
| 565 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 566 | */ |
| 567 | void lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must); |
| 568 | |
| 569 | /** |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 570 | * @brief Free the data inside compiled input/output structure. |
| 571 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 572 | * @param[in,out] inout Compiled inout structure to be cleaned. |
| 573 | * Since the structure is part of the RPC/action structure, it is not freed itself. |
| 574 | */ |
| 575 | void lysc_action_inout_free(struct ly_ctx *ctx, struct lysc_action_inout *inout); |
| 576 | |
| 577 | /** |
| 578 | * @brief Free the data inside compiled RPC/action structure. |
| 579 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 580 | * @param[in,out] action Compiled action structure to be cleaned. |
| 581 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 582 | */ |
| 583 | void lysc_action_free(struct ly_ctx *ctx, struct lysc_action *action); |
| 584 | |
| 585 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 586 | * @brief Free the items inside the compiled Notification structure. |
| 587 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 588 | * @param[in,out] action Compiled Notification structure to be cleaned. |
| 589 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 590 | */ |
| 591 | void lysc_notif_free(struct ly_ctx *ctx, struct lysc_notif *notif); |
| 592 | |
| 593 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 594 | * @brief Free the compiled extension instance structure. |
| 595 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 596 | * @param[in,out] ext Compiled extension instance structure to be cleaned. |
| 597 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 598 | */ |
| 599 | void lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext); |
| 600 | |
| 601 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 602 | * @brief Free the compiled node structure. |
| 603 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 604 | * @param[in,out] node Compiled node structure to be freed. |
| 605 | */ |
| 606 | void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node); |
| 607 | |
| 608 | /** |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 609 | * @brief Free the compiled container node structure. |
| 610 | * |
| 611 | * Only the container-specific members are freed, for generic node free function, |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 612 | * use ::lysc_node_free(). |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 613 | * |
| 614 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 615 | * @param[in,out] node Compiled container node structure to be freed. |
| 616 | */ |
| 617 | void lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node); |
| 618 | |
| 619 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 620 | * @brief Free the compiled schema structure. |
| 621 | * @param[in,out] module Compiled schema module structure to free. |
| 622 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 623 | */ |
| 624 | void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 625 | |
| 626 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 627 | * @brief Free the schema structure. It just frees, it does not remove the schema from its context. |
| 628 | * @param[in,out] module Schema module structure to free. |
| 629 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 630 | */ |
| 631 | void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 632 | |
| 633 | /** |
David Sedlák | 18e494b | 2018-12-17 03:58:39 +0100 | [diff] [blame] | 634 | * @brief match yang keyword |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 635 | * |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 636 | * @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] | 637 | * @param[in,out] in Input structure, is updated. |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 638 | * @return yang_keyword values. |
David Sedlák | 18e494b | 2018-12-17 03:58:39 +0100 | [diff] [blame] | 639 | */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 640 | 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] | 641 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 642 | /** |
| 643 | * @brief Generate path of the given node in the requested format. |
| 644 | * |
| 645 | * @param[in] node Schema path of this node will be generated. |
| 646 | * @param[in] parent Build relative path only until this parent is found. If NULL, the full absolute path is printed. |
| 647 | * @param[in] pathtype Format of the path to generate. |
| 648 | * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path. |
| 649 | * If NULL, memory for the complete path is allocated. |
| 650 | * @param[in] buflen Size of the provided @p buffer. |
| 651 | * @return NULL in case of memory allocation error, path of the node otherwise. |
| 652 | * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it. |
| 653 | */ |
| 654 | 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] | 655 | size_t buflen); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 656 | |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 657 | /** |
| 658 | * @brief Get schema parent that can be instantiated in data. In other words, skip any choice or case nodes. |
| 659 | * |
| 660 | * @param[in] schema Schema node to get the parent for. |
| 661 | * @return Parent, NULL if top-level (in data). |
| 662 | */ |
| 663 | const struct lysc_node *lysc_data_parent(const struct lysc_node *schema); |
| 664 | |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 665 | /** |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 666 | * @brief Learn whether a node is inside an operation output. |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 667 | * |
| 668 | * @param[in] schema Schema node to examine. |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 669 | * @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] | 670 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 671 | ly_bool lysc_is_output(const struct lysc_node *schema); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 672 | |
Radek Krejci | 239c38a | 2020-10-19 10:58:25 +0200 | [diff] [blame] | 673 | /** |
| 674 | * @brief Get format-specific prefix for a module. |
| 675 | * |
| 676 | * For type plugins available as ::ly_type_print_get_prefix(). |
| 677 | * |
| 678 | * @param[in] mod Module whose prefix to get. |
| 679 | * @param[in] format Format of the prefix. |
| 680 | * @param[in] prefix_data Format-specific data: |
| 681 | * LY_PREF_SCHEMA - const struct lysp_module * (module used for resolving imports to prefixes) |
| 682 | * LY_PREF_SCHEMA_RESOLVED - struct lyd_value_prefix * (sized array of pairs: prefix - module) |
| 683 | * LY_PREF_XML - struct ly_set * (set of all returned modules as ::struct lys_module) |
| 684 | * LY_PREF_JSON - NULL |
| 685 | * @return Module prefix to print. |
| 686 | * @return NULL on error. |
| 687 | */ |
| 688 | const char *ly_get_prefix(const struct lys_module *mod, LY_PREFIX_FORMAT format, void *prefix_data); |
| 689 | |
| 690 | /** |
| 691 | * @brief Resolve format-specific prefixes to modules. |
| 692 | * |
| 693 | * For type plugins available as ::ly_type_store_resolve_prefix(). |
| 694 | * |
| 695 | * @param[in] ctx libyang context. |
| 696 | * @param[in] prefix Prefix to resolve. |
| 697 | * @param[in] prefix_len Length of @p prefix. |
| 698 | * @param[in] format Format of the prefix. |
| 699 | * @param[in] prefix_data Format-specific data: |
| 700 | * LY_PREF_SCHEMA - const struct lysp_module * (module used for resolving prefixes from imports) |
| 701 | * LY_PREF_SCHEMA_RESOLVED - struct lyd_value_prefix * (sized array of pairs: prefix - module) |
| 702 | * LY_PREF_XML - const struct ly_set * (set with defined namespaces stored as ::lyxml_ns) |
| 703 | * LY_PREF_JSON - NULL |
| 704 | * @return Resolved prefix module, |
| 705 | * @return NULL otherwise. |
| 706 | */ |
| 707 | const struct lys_module *ly_resolve_prefix(const struct ly_ctx *ctx, const char *prefix, size_t prefix_len, |
| 708 | LY_PREFIX_FORMAT format, void *prefix_data); |
| 709 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 710 | #endif /* LY_TREE_SCHEMA_INTERNAL_H_ */ |