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 | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 20 | #include "plugins_exts.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 | |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 25 | #define LOGVAL_PARSER(CTX, ...) LOGVAL((CTX)->ctx, (CTX)->pos_type, (CTX)->pos_type == LY_VLOG_LINE ? &(CTX)->line : (void*)(CTX)->path, __VA_ARGS__) |
| 26 | |
| 27 | /** |
| 28 | * @brief Check module version is at least 2 (YANG 1.1) because of the keyword presence. |
| 29 | * Logs error message and returns LY_EVALID in case of module in YANG version 1.0. |
| 30 | * @param[in] CTX yang parser context to get current module and for logging. |
| 31 | * @param[in] KW keyword allowed only in YANG version 1.1 (or later) - for logging. |
| 32 | * @param[in] PARENT parent statement where the KW is present - for logging. |
| 33 | */ |
| 34 | #define PARSER_CHECK_STMTVER2_RET(CTX, KW, PARENT) \ |
| 35 | if ((CTX)->mod_version < 2) {LOGVAL_PARSER((CTX), LY_VCODE_INCHILDSTMT2, KW, PARENT); return LY_EVALID;} |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 36 | |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 37 | /* These 2 macros checks YANG's identifier grammar rule */ |
| 38 | #define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_') |
| 39 | #define is_yangidentchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || \ |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 40 | c == '_' || c == '-' || c == '.') |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 41 | |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 42 | /* Macro to check YANG's yang-char grammar rule */ |
David Sedlák | 2c0d5ef | 2019-08-14 11:40:44 +0200 | [diff] [blame] | 43 | #define is_yangutf8char(c) ((c >= 0x20 && c <= 0xd7ff) || c == 0x09 || c == 0x0a || c == 0x0d || \ |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 44 | (c >= 0xe000 && c <= 0xfdcf) || (c >= 0xfdf0 && c <= 0xfffd) || \ |
| 45 | (c >= 0x10000 && c <= 0x1fffd) || (c >= 0x20000 && c <= 0x2fffd) || \ |
| 46 | (c >= 0x30000 && c <= 0x3fffd) || (c >= 0x40000 && c <= 0x2fffd) || \ |
| 47 | (c >= 0x50000 && c <= 0x5fffd) || (c >= 0x60000 && c <= 0x6fffd) || \ |
| 48 | (c >= 0x70000 && c <= 0x7fffd) || (c >= 0x80000 && c <= 0x8fffd) || \ |
| 49 | (c >= 0x90000 && c <= 0x9fffd) || (c >= 0xa0000 && c <= 0xafffd) || \ |
| 50 | (c >= 0xb0000 && c <= 0xbfffd) || (c >= 0xc0000 && c <= 0xcfffd) || \ |
| 51 | (c >= 0xd0000 && c <= 0xdfffd) || (c >= 0xe0000 && c <= 0xefffd) || \ |
| 52 | (c >= 0xf0000 && c <= 0xffffd) || (c >= 0x100000 && c <= 0x10fffd)) |
| 53 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 54 | /** |
David Sedlák | ca36c42 | 2019-07-12 12:47:55 +0200 | [diff] [blame] | 55 | * @brief Try to find object with MEMBER string matching the IDENT in the given ARRAY. |
| 56 | * Macro logs an error message and returns LY_EVALID in case of existence of a matching object. |
| 57 | * |
| 58 | * @param[in] CTX yang parser context for logging. |
| 59 | * @param[in] ARRAY [sized array](@ref sizedarrays) of a generic objects with member named MEMBER to search. |
| 60 | * @param[in] MEMBER Name of the member of the objects in the ARRAY to compare. |
| 61 | * @param[in] STMT Name of the compared YANG statements for logging. |
| 62 | * @param[in] IDENT String trying to find in the ARRAY's objects inside the MEMBER member. |
| 63 | */ |
| 64 | #define CHECK_UNIQUENESS(CTX, ARRAY, MEMBER, STMT, IDENT) \ |
| 65 | if (ARRAY) { \ |
| 66 | for (unsigned int u = 0; u < LY_ARRAY_SIZE(ARRAY) - 1; ++u) { \ |
| 67 | if (!strcmp((ARRAY)[u].MEMBER, IDENT)) { \ |
| 68 | LOGVAL_PARSER(CTX, LY_VCODE_DUPIDENT, IDENT, STMT); \ |
| 69 | return LY_EVALID; \ |
| 70 | } \ |
| 71 | } \ |
| 72 | } |
| 73 | |
David Sedlák | b9b892c | 2019-07-12 14:44:02 +0200 | [diff] [blame] | 74 | #define YANG_CHECK_NONEMPTY(CTX, VALUE_LEN, STMT) \ |
David Sedlák | 129a09c | 2019-07-12 14:08:34 +0200 | [diff] [blame] | 75 | if (!VALUE_LEN) { \ |
| 76 | LOGWRN((CTX)->ctx, "Empty argument of %s statement does not make sense.", STMT); \ |
| 77 | } |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 78 | |
| 79 | /** |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 80 | * @brief List of YANG statement groups - the (sub)module's substatements |
| 81 | */ |
| 82 | enum yang_module_stmt { |
| 83 | Y_MOD_MODULE_HEADER, |
| 84 | Y_MOD_LINKAGE, |
| 85 | Y_MOD_META, |
| 86 | Y_MOD_REVISION, |
| 87 | Y_MOD_BODY |
| 88 | }; |
| 89 | |
| 90 | /** |
| 91 | * @brief Types of arguments of YANG statements |
| 92 | */ |
| 93 | enum yang_arg { |
| 94 | Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */ |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 95 | Y_PREF_IDENTIF_ARG, /**< YANG "identifier-ref-arg-str" or node-identifier rule */ |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 96 | Y_STR_ARG, /**< YANG "string" rule */ |
| 97 | Y_MAYBE_STR_ARG /**< optional YANG "string" rule */ |
| 98 | }; |
| 99 | |
| 100 | /** |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 101 | * @brief Internal context for yang schema parser. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 102 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 103 | struct lys_parser_ctx { |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 104 | struct ly_set tpdfs_nodes; /**< set of typedef nodes */ |
| 105 | struct ly_set grps_nodes; /**< set of grouping nodes */ |
| 106 | uint8_t mod_version; /**< module's version */ |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 107 | enum LY_VLOG_ELEM pos_type; /**< */ |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 108 | struct ly_ctx *ctx; /**< context of then yang schemas */ |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 109 | union { |
| 110 | uint64_t line; /**< line number */ |
| 111 | const char *path; /**< path */ |
| 112 | }; |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 113 | uint64_t indent; /**< current position on the line for YANG indentation */ |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 114 | }; |
| 115 | |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 116 | /** |
| 117 | * @brief free lys parser context. |
| 118 | */ |
| 119 | void lys_parser_ctx_free(struct lys_parser_ctx *ctx); |
| 120 | |
| 121 | /** |
| 122 | * @brief Internal context for yin schema parser. |
| 123 | */ |
| 124 | struct yin_parser_ctx { |
| 125 | struct ly_set tpdfs_nodes; /**< set of typedef nodes */ |
| 126 | struct ly_set grps_nodes; /**< set of grouping nodes */ |
| 127 | uint8_t mod_version; /**< module's version */ |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 128 | enum LY_VLOG_ELEM pos_type; /**< */ |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 129 | struct lyxml_context xml_ctx; /**< context for xml parser */ |
| 130 | }; |
| 131 | |
| 132 | /** |
| 133 | * @brief free yin parser context |
| 134 | * |
| 135 | * @param[in] ctx Context to free. |
| 136 | */ |
| 137 | void yin_parser_ctx_free(struct yin_parser_ctx *ctx); |
| 138 | |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 139 | struct lysc_incomplete_dflt { |
| 140 | struct lyd_value *dflt; |
| 141 | struct lys_module *dflt_mod; |
| 142 | struct lysc_node *context_node; |
| 143 | }; |
| 144 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 145 | /** |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 146 | * @brief Check that \p c is valid UTF8 code point for YANG string. |
| 147 | * |
| 148 | * @param[in] ctx yang parser context for logging. |
| 149 | * @param[in] c UTF8 code point of a character to check. |
| 150 | * @return LY_ERR values. |
| 151 | */ |
| 152 | LY_ERR lysp_check_stringchar(struct lys_parser_ctx *ctx, unsigned int c); |
| 153 | |
| 154 | /** |
| 155 | * @brief Check that \p c is valid UTF8 code point for YANG identifier. |
| 156 | * |
| 157 | * @param[in] ctx yang parser context for logging. |
| 158 | * @param[in] c UTF8 code point of a character to check. |
| 159 | * @param[in] first Flag to check the first character of an identifier, which is more restricted. |
| 160 | * @param[in,out] prefix Storage for internally used flag in case of possible prefixed identifiers: |
| 161 | * 0 - colon not yet found (no prefix) |
| 162 | * 1 - \p c is the colon character |
| 163 | * 2 - prefix already processed, now processing the identifier |
| 164 | * |
| 165 | * If the identifier cannot be prefixed, NULL is expected. |
| 166 | * @return LY_ERR values. |
| 167 | */ |
| 168 | LY_ERR lysp_check_identifierchar(struct lys_parser_ctx *ctx, unsigned int c, int first, int *prefix); |
| 169 | |
| 170 | /** |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 171 | * @brief Internal structure for lys_get_prefix(). |
| 172 | */ |
| 173 | struct lys_get_prefix_data { |
| 174 | const struct lys_module *context_mod; |
| 175 | struct ly_set prefixes; |
| 176 | }; |
| 177 | |
| 178 | /** |
| 179 | * @brief Schema mapping of YANG modules to prefixes in values. |
| 180 | * |
| 181 | * Implementation of ly_clb_get_prefix. Inverse function to lys_resolve_prefix. |
| 182 | * |
| 183 | * In this case the @p mod is searched in the list of imports and the import's prefix |
| 184 | * (not the module's itself) prefix is returned. |
| 185 | */ |
| 186 | const char *lys_get_prefix(const struct lys_module *mod, void *private); |
| 187 | |
| 188 | /** |
| 189 | * @brief Schema mapping of prefix in values to YANG modules (imports). |
| 190 | * |
| 191 | * Implementation of ly_clb_resolve_prefix. Inverse function to lys_get_prefix(). |
| 192 | * |
| 193 | * In this case the @p prefix is searched in the list of imports' prefixes (not the prefixes of the imported modules themselves). |
| 194 | */ |
| 195 | const struct lys_module *lys_resolve_prefix(struct ly_ctx *ctx, const char *prefix, size_t prefix_len, void *private); |
| 196 | |
| 197 | /** |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 198 | * @brief Check the currently present prefixes in the module for collision with the new one. |
| 199 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 200 | * @param[in] ctx Context for logging. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 201 | * @param[in] imports List of current imports of the module to check prefix collision. |
| 202 | * @param[in] module_prefix Prefix of the module to check collision. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 203 | * @param[in] value Newly added prefix value (including its location to distinguish collision with itself). |
| 204 | * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise |
| 205 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 206 | 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] | 207 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 208 | /** |
| 209 | * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT) |
| 210 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 211 | * @param[in] ctx Optional context for logging. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 212 | * @param[in] date Date string to check (non-necessarily terminated by \0) |
| 213 | * @param[in] date_len Length of the date string, 10 expected. |
| 214 | * @param[in] stmt Statement name for error message. |
| 215 | * @return LY_ERR value. |
| 216 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 217 | LY_ERR lysp_check_date(struct lys_parser_ctx *ctx, const char *date, int date_len, const char *stmt); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 218 | |
| 219 | /** |
| 220 | * @brief Check names of typedefs in the parsed module to detect collisions. |
| 221 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 222 | * @param[in] ctx Parser context for logging and to maintain tpdfs_nodes |
| 223 | * @param[in] mod Module where the type is being defined. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 224 | * @return LY_ERR value. |
| 225 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 226 | 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] | 227 | |
| 228 | /** |
David Sedlák | d2ebe57 | 2019-07-22 12:53:14 +0200 | [diff] [blame] | 229 | * @brief Finalize some of the structures in case they are stored in sized array, |
| 230 | * which can be possibly reallocated and some other data may point to them. |
| 231 | * |
| 232 | * Update parent pointers in the nodes inside grouping/augment/RPC/Notification, which could be reallocated. |
| 233 | * |
| 234 | * @param[in] mod Parsed module to be updated. |
| 235 | * @return LY_ERR value (currently only LY_SUCCESS, but it can change in future). |
| 236 | */ |
| 237 | LY_ERR |
| 238 | lysp_parse_finalize_reallocated(struct lys_parser_ctx *ctx, struct lysp_grp *groupings, struct lysp_augment *augments, |
| 239 | struct lysp_action *actions, struct lysp_notif *notifs); |
| 240 | |
| 241 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 242 | * @brief Just move the newest revision into the first position, does not sort the rest |
| 243 | * @param[in] revs Sized-array of the revisions in a printable schema tree. |
| 244 | */ |
| 245 | void lysp_sort_revisions(struct lysp_revision *revs); |
| 246 | |
| 247 | /** |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 248 | * @brief Find type specified type definition. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 249 | * |
| 250 | * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module. |
| 251 | * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents. |
| 252 | * @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] | 253 | * @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] | 254 | * @param[out] tpdf Found type definition. |
| 255 | * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef. |
| 256 | * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types. |
| 257 | */ |
| 258 | LY_ERR lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module, |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 259 | 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] | 260 | |
| 261 | /** |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 262 | * @brief Validate enum name. |
| 263 | * |
| 264 | * @param[in] ctx yang parser context for logging. |
| 265 | * @param[in] name String to check. |
| 266 | * @param[in] name_len Length of name. |
| 267 | * |
| 268 | * @return LY_ERR values |
| 269 | */ |
David Sedlák | 07869a5 | 2019-07-12 14:28:19 +0200 | [diff] [blame] | 270 | 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] | 271 | |
| 272 | /** |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 273 | * @brief Find and parse module of the given name. |
| 274 | * |
| 275 | * @param[in] ctx libyang context. |
| 276 | * @param[in] name Name of the module to load. |
| 277 | * @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] | 278 | * @param[in] implement Flag if the loaded module is supposed to be marked as implemented. If revision is NULL and implement flag set, |
| 279 | * the implemented module in the context is returned despite it might not be of the latest revision, because in this case the module |
| 280 | * of the latest revision can not be made implemented. |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 281 | * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context, |
| 282 | * but only the compiled structure is available. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 283 | * @param[out] mod Parsed module structure. |
| 284 | * @return LY_ERR value. |
| 285 | */ |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 286 | LY_ERR lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, int implement, int require_parsed, struct lys_module **mod); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 287 | |
| 288 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 289 | * @brief Parse included submodule into the simply parsed YANG module. |
| 290 | * |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 291 | * @param[in] ctx parser context |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 292 | * @param[in] mod Module including a submodule. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 293 | * @param[in,out] inc Include structure holding all available information about the include statement, the parsed |
| 294 | * submodule is stored into this structure. |
| 295 | * @return LY_ERR value. |
| 296 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 297 | LY_ERR lysp_load_submodule(struct lys_parser_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 298 | |
| 299 | /** |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 300 | * @defgroup scflags Schema compile flags |
| 301 | * @ingroup schematree |
| 302 | * |
| 303 | * @{ |
| 304 | */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 305 | #define LYSC_OPT_RPC_INPUT LYS_CONFIG_W /**< Internal option when compiling schema tree of RPC/action input */ |
| 306 | #define LYSC_OPT_RPC_OUTPUT LYS_CONFIG_R /**< Internal option when compiling schema tree of RPC/action output */ |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 307 | #define LYSC_OPT_RPC_MASK LYS_CONFIG_MASK /**< mask for the internal RPC options */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 308 | #define LYSC_OPT_FREE_SP 0x04 /**< Free the input printable schema */ |
| 309 | #define LYSC_OPT_INTERNAL 0x08 /**< Internal compilation caused by dependency */ |
| 310 | #define LYSC_OPT_NOTIFICATION 0x10 /**< Internal option when compiling schema tree of Notification */ |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 311 | |
| 312 | #define LYSC_OPT_GROUPING 0x20 /** Compiling (validation) of a non-instantiated grouping. |
| 313 | In this case not all the restrictions are checked since they can be valid only |
| 314 | in the real placement of the grouping. TODO - what specifically is not done */ |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 315 | /** @} scflags */ |
| 316 | |
| 317 | /** |
| 318 | * @brief Compile printable schema into a validated schema linking all the references. |
| 319 | * |
| 320 | * @param[in, out] mod Schema structure holding pointers to both schema structure types. The ::lys_module#parsed |
| 321 | * member is used as input and ::lys_module#compiled is used to hold the result of the compilation. |
| 322 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 323 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 324 | */ |
| 325 | LY_ERR lys_compile(struct lys_module *mod, int options); |
| 326 | |
| 327 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 328 | * @brief Get address of a node's actions list if any. |
| 329 | * |
| 330 | * Decides the node's type and in case it has an actions list, returns its address. |
| 331 | * @param[in] node Node to check. |
| 332 | * @return Address of the node's actions member if any, NULL otherwise. |
| 333 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 334 | struct lysp_action **lysp_node_actions_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 335 | |
| 336 | /** |
| 337 | * @brief Get address of a node's notifications list if any. |
| 338 | * |
| 339 | * Decides the node's type and in case it has a notifications list, returns its address. |
| 340 | * @param[in] node Node to check. |
| 341 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 342 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 343 | struct lysp_notif **lysp_node_notifs_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 344 | |
| 345 | /** |
| 346 | * @brief Get address of a node's child pointer if any. |
| 347 | * |
| 348 | * Decides the node's type and in case it has a children list, returns its address. |
| 349 | * @param[in] node Node to check. |
| 350 | * @return Address of the node's child member if any, NULL otherwise. |
| 351 | */ |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 352 | struct lysp_node **lysp_node_children_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 353 | |
| 354 | /** |
| 355 | * @brief Get address of a node's child pointer if any. |
| 356 | * |
| 357 | * Decides the node's type and in case it has a children list, returns its address. |
| 358 | * @param[in] node Node to check. |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 359 | * @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] | 360 | * @return Address of the node's child member if any, NULL otherwise. |
| 361 | */ |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 362 | 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] | 363 | |
| 364 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 365 | * @brief Get address of a node's notifs pointer if any. |
| 366 | * |
| 367 | * Decides the node's type and in case it has a notifs array, returns its address. |
| 368 | * @param[in] node Node to check. |
| 369 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 370 | */ |
| 371 | struct lysc_notif **lysc_node_notifs_p(struct lysc_node *node); |
| 372 | |
| 373 | /** |
| 374 | * @brief Get address of a node's actions pointer if any. |
| 375 | * |
| 376 | * Decides the node's type and in case it has a actions array, returns its address. |
| 377 | * @param[in] node Node to check. |
| 378 | * @return Address of the node's actions member if any, NULL otherwise. |
| 379 | */ |
| 380 | struct lysc_action **lysc_node_actions_p(struct lysc_node *node); |
| 381 | |
| 382 | /** |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 383 | * @brief Iterate over the specified type of the extension instances |
| 384 | * |
| 385 | * @param[in] ext ([Sized array](@ref sizedarrays)) of extensions to explore |
| 386 | * @param[in] index Index in the \p ext array where to start searching (first call with 0, the consequent calls with |
| 387 | * the returned index increased by 1 (until the iteration is not terminated by returning LY_ARRAY_SIZE(ext). |
| 388 | * @param[in] substmt Type of the extension (its belongins to the specific substatement) to iterate, use |
| 389 | * #LYEXT_SUBSTMT_ALL to go through all the extensions in the array |
| 390 | * @result index in the ext array, LY_ARRAY_SIZE(ext) value if not present. |
| 391 | */ |
| 392 | unsigned int lysp_ext_instance_iter(struct lysp_ext_instance *ext, unsigned int index, LYEXT_SUBSTMT substmt); |
| 393 | |
| 394 | /** |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 395 | * @brief Get the covering schema module structure for the given parsed module structure. |
| 396 | * @param[in] ctx libyang context to search. |
| 397 | * @param[in] mod Parsed schema structure. |
| 398 | * @return Corresponding lys_module structure for the given parsed schema structure. |
| 399 | */ |
| 400 | struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod); |
| 401 | |
| 402 | /** |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 403 | * @brief Find the module referenced by prefix in the provided parsed mod. |
| 404 | * |
| 405 | * @param[in] mod Schema module where the prefix was used. |
| 406 | * @param[in] prefix Prefix used to reference a module. |
| 407 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 408 | * @return Pointer to the module or NULL if the module is not found. |
| 409 | */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 410 | struct lysp_module *lysp_module_find_prefix(const struct lysp_module *mod, const char *prefix, size_t len); |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 411 | |
| 412 | /** |
| 413 | * @brief Find the module referenced by prefix in the provided compiled mod. |
| 414 | * |
| 415 | * @param[in] mod Schema module where the prefix was used. |
| 416 | * @param[in] prefix Prefix used to reference a module. |
| 417 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 418 | * @return Pointer to the module or NULL if the module is not found. |
| 419 | */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 420 | struct lysc_module *lysc_module_find_prefix(const struct lysc_module *mod, const char *prefix, size_t len); |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 421 | |
| 422 | /** |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 423 | * @brief Check statement's status for invalid combination. |
| 424 | * |
| 425 | * The modX parameters are used just to determine if both flags are in the same module, |
| 426 | * so any of the schema module structure can be used, but both modules must be provided |
| 427 | * in the same type. |
| 428 | * |
| 429 | * @param[in] ctx Compile context for logging. |
| 430 | * @param[in] flags1 Flags of the referencing node. |
| 431 | * @param[in] mod1 Module of the referencing node, |
| 432 | * @param[in] name1 Schema node name of the referencing node. |
| 433 | * @param[in] flags2 Flags of the referenced node. |
| 434 | * @param[in] mod2 Module of the referenced node, |
| 435 | * @param[in] name2 Schema node name of the referenced node. |
| 436 | * @return LY_ERR value |
| 437 | */ |
| 438 | LY_ERR lysc_check_status(struct lysc_ctx *ctx, |
| 439 | uint16_t flags1, void *mod1, const char *name1, |
| 440 | uint16_t flags2, void *mod2, const char *name2); |
| 441 | |
| 442 | /** |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 443 | * @brief Find the node according to the given descendant/absolute schema nodeid. |
| 444 | * Used in unique, refine and augment statements. |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 445 | * |
| 446 | * @param[in] ctx Compile context |
| 447 | * @param[in] nodeid Descendant-schema-nodeid (according to the YANG grammar) |
| 448 | * @param[in] nodeid_len Length of the given nodeid, if it is not NULL-terminated string. |
| 449 | * @param[in] context_node Node where the nodeid is specified to correctly resolve prefixes and to start searching. |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 450 | * If no context node is provided, the nodeid is actually expected to be the absolute schema node . |
| 451 | * @param[in] context_module Explicit module to resolve prefixes in @nodeid. |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 452 | * @param[in] nodetype Optional (can be 0) restriction for target's nodetype. If target exists, but does not match |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 453 | * the given nodetype, LY_EDENIED is returned (and target is provided), but no error message is printed. |
| 454 | * The value can be even an ORed value to allow multiple nodetypes. |
| 455 | * @param[in] implement Flag if the modules mentioned in the nodeid are supposed to be made implemented. |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 456 | * @param[out] target Found target node if any. In case of RPC/action input/output node, LYS_ACTION node is actually returned |
| 457 | * since the input/output has not a standalone node structure and it is part of ::lysc_action which is better compatible with ::lysc_node. |
| 458 | * @param[out] result_flag Output parameter to announce if the schema nodeid goes through the action's input/output or a Notification. |
| 459 | * The LYSC_OPT_RPC_INPUT, LYSC_OPT_RPC_OUTPUT and LYSC_OPT_NOTIFICATION are used as flags. |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 460 | * @return LY_ERR values - LY_ENOTFOUND, LY_EVALID, LY_EDENIED or LY_SUCCESS. |
| 461 | */ |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 462 | LY_ERR lys_resolve_schema_nodeid(struct lysc_ctx *ctx, const char *nodeid, size_t nodeid_len, const struct lysc_node *context_node, |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 463 | const struct lys_module *context_module, int nodetype, int implement, |
| 464 | const struct lysc_node **target, uint16_t *result_flag); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 465 | |
| 466 | /** |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 467 | * @brief Find the module referenced by prefix in the provided mod. |
| 468 | * |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 469 | * Reverse function to lys_prefix_find_module(). |
| 470 | * |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 471 | * @param[in] mod Schema module where the prefix was used. |
| 472 | * @param[in] prefix Prefix used to reference a module. |
| 473 | * @param[in] len Length of the prefix since it is not necessary NULL-terminated. |
| 474 | * @return Pointer to the module or NULL if the module is not found. |
| 475 | */ |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 476 | struct lys_module *lys_module_find_prefix(const struct lys_module *mod, const char *prefix, size_t len); |
| 477 | |
| 478 | /** |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 479 | * @brief Find the prefix used to referenced the import module in the provided mod. |
| 480 | * |
| 481 | * Reverse function to lys_module_find_prefix(). |
| 482 | * |
| 483 | * Note that original prefixes are present only in the parsed schema. In case it is not available |
| 484 | * (only compiled schema available), the own prefix of the import module is returned instead. |
| 485 | * |
| 486 | * @param[in] mod Schema module where the import module was used. |
| 487 | * @param[in] import Module referenced in mod. |
| 488 | * @return Prefix of the import module. |
| 489 | */ |
| 490 | const char *lys_prefix_find_module(const struct lys_module *mod, const struct lys_module *import); |
| 491 | |
| 492 | /** |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 493 | * @brief Stringify YANG built-in type. |
| 494 | * @param[in] basetype Built-in tyep ID to stringify. |
| 495 | * @return Constant string with the name of the built-in type. |
| 496 | */ |
| 497 | const char *lys_datatype2str(LY_DATA_TYPE basetype); |
| 498 | |
| 499 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 500 | * @brief Parse YANG module from a string. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 501 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 502 | * The modules are added into the context and the latest_revision flag is updated. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 503 | * |
| 504 | * @param[in] ctx libyang context where to process the data model. |
| 505 | * @param[in] data The string containing the dumped data model in the specified |
| 506 | * format. |
| 507 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 508 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 509 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 510 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 511 | * @return Pointer to the data model structure or NULL on error. |
| 512 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 513 | struct lys_module *lys_parse_mem_module(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, int implement, |
| 514 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data), |
| 515 | void *check_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 516 | |
| 517 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 518 | * @brief Parse YANG submodule from a string. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 519 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 520 | * The latest_revision flag of submodule is updated. |
| 521 | * |
| 522 | * @param[in] ctx libyang context where to process the data model. |
| 523 | * @param[in] data The string containing the dumped data model in the specified |
| 524 | * format. |
| 525 | * @param[in] format Format of the input data (YANG or YIN). |
| 526 | * @param[in] main_ctx Parser context of the main module. |
| 527 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 528 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
| 529 | * @return Pointer to the data model structure or NULL on error. |
| 530 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 531 | struct lysp_submodule *lys_parse_mem_submodule(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, struct lys_parser_ctx *main_ctx, |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 532 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data), |
| 533 | void *check_data); |
| 534 | |
| 535 | /** |
| 536 | * @brief Parse YANG module or submodule from a file descriptor. |
| 537 | * |
| 538 | * The modules are added into the context, submodules not. The latest_revision flag is updated in both cases. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 539 | * |
| 540 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 541 | * |
| 542 | * @param[in] ctx libyang context where to process the data model. |
| 543 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 544 | * in the specified format. |
| 545 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 546 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 547 | * @param[in] main_ctx Parser context of the main module in case of parsing submodule. This flag decides if the module |
| 548 | * or submodule was expected to be parsed. |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 549 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 550 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 551 | * @return Pointer to the data model structure or NULL on error. |
| 552 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 553 | void *lys_parse_fd_(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement, struct lys_parser_ctx *main_ctx, |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 554 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data), |
| 555 | void *check_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 556 | |
| 557 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 558 | * @brief Parse YANG module from a file descriptor. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 559 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 560 | * The modules are added into the context. The latest_revision flag is updated. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 561 | * |
| 562 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 563 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 564 | * @param[in] ctx libyang context where to process the data model. |
| 565 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 566 | * in the specified format. |
| 567 | * @param[in] format Format of the input data (YANG or YIN). |
| 568 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
| 569 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 570 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
| 571 | * @return Pointer to the data model structure or NULL on error. |
| 572 | */ |
| 573 | struct lys_module *lys_parse_fd_module(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement, |
| 574 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data), |
| 575 | void *check_data); |
| 576 | |
| 577 | /** |
| 578 | * @brief Parse YANG submodule from a file descriptor. |
| 579 | * |
| 580 | * The latest_revision flag of submodules is updated. |
| 581 | * |
| 582 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 583 | * |
| 584 | * @param[in] ctx libyang context where to process the data model. |
| 585 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema |
| 586 | * in the specified format. |
| 587 | * @param[in] format Format of the input data (YANG or YIN). |
| 588 | * @param[in] main_ctx Parser context of the main module. |
| 589 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 590 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
| 591 | * @return Pointer to the data model structure or NULL on error. |
| 592 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 593 | struct lysp_submodule *lys_parse_fd_submodule(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, struct lys_parser_ctx *main_ctx, |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 594 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data), |
| 595 | void *check_data); |
| 596 | |
| 597 | /** |
| 598 | * @brief Parse YANG module from a filepath. |
| 599 | * |
| 600 | * The modules are added into the context. The latest_revision flag is updated. |
| 601 | * |
| 602 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 603 | * |
| 604 | * @param[in] ctx libyang context where to process the data model. |
| 605 | * @param[in] path Path to the file with the model in the specified format. |
| 606 | * @param[in] format Format of the input data (YANG or YIN). |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 607 | * @param[in] implement Flag if the schema is supposed to be marked as implemented. |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 608 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 609 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 610 | * @return Pointer to the data model structure or NULL on error. |
| 611 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 612 | struct lys_module *lys_parse_path_(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, int implement, |
| 613 | LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data), |
| 614 | void *check_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 615 | |
| 616 | /** |
| 617 | * @brief Load the (sub)module into the context. |
| 618 | * |
| 619 | * This function does not check the presence of the (sub)module in context, it should be done before calling this function. |
| 620 | * |
| 621 | * module_name and submodule_name are alternatives - only one of the |
| 622 | * |
| 623 | * @param[in] ctx libyang context where to work. |
| 624 | * @param[in] name Name of the (sub)module to load. |
| 625 | * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded. |
| 626 | * @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] | 627 | * @param[in] main_ctx Parser context of the main module in case of loading submodule. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 628 | * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*). |
| 629 | * If it is a module, it is already in the context! |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 630 | * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided. |
| 631 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 632 | LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement, struct lys_parser_ctx *main_ctx, |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 633 | void **result); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 634 | |
| 635 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 636 | * @brief Create pre-compiled features array. |
| 637 | * |
| 638 | * Features are compiled in two steps to allow forward references between them via their if-feature statements. |
| 639 | * In case of not implemented schemas, the precompiled list of features is stored in lys_module structure and |
| 640 | * the compilation is not finished (if-feature and extensions are missing) and all the features are permanently |
| 641 | * disabled without a chance to change it. The list is used as target for any if-feature statement in any |
| 642 | * implemented module to get valid data to evaluate its result. The compilation is finished via |
| 643 | * lys_feature_precompile_finish() in implemented modules. In case a not implemented module becomes implemented, |
| 644 | * the precompiled list is reused to finish the compilation to preserve pointers already used in various compiled |
| 645 | * if-feature structures. |
| 646 | * |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 647 | * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p module. |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 648 | * @param[in] ctx libyang context. |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 649 | * @param[in] module Module of the features. |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 650 | * @param[in] features_p Array of the parsed features definitions to precompile. |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 651 | * @param[in,out] features Pointer to the storage of the (pre)compiled features array where the new features are |
| 652 | * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed features are going |
| 653 | * to be processed. |
| 654 | * @return LY_ERR value. |
| 655 | */ |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 656 | LY_ERR lys_feature_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module, |
| 657 | struct lysp_feature *features_p, struct lysc_feature **features); |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 658 | |
| 659 | /** |
| 660 | * @brief Get the @ref ifftokens from the given position in the 2bits array |
| 661 | * (libyang format of the if-feature expression). |
| 662 | * @param[in] list The 2bits array with the compiled if-feature expression. |
| 663 | * @param[in] pos Position (0-based) to specify from which position get the operator. |
| 664 | */ |
| 665 | uint8_t lysc_iff_getop(uint8_t *list, int pos); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 666 | |
| 667 | /** |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 668 | * @brief Internal wrapper around lys_compile_extension() to be able to prepare list of compiled extension definitions |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 669 | * even for the parsed (not-implemented) module - see lys_module::off_extensions. |
| 670 | * |
| 671 | * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p module. |
| 672 | * @param[in] ctx libyang context. |
| 673 | * @param[in] module Module of the extensions. |
| 674 | * @param[in] extensions_p Array of the parsed extension definitions to precompile. |
| 675 | * @param[in,out] extensions Pointer to the storage of the (pre)compiled extensions array where the new extensions are |
| 676 | * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed extensions are going |
| 677 | * to be processed. |
| 678 | * @return LY_ERR value. |
| 679 | */ |
| 680 | LY_ERR lys_extension_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module, |
| 681 | struct lysp_ext *extensions_p, struct lysc_ext **extensions); |
| 682 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 683 | * @brief Macro to free [sized array](@ref sizedarrays) of items using the provided free function. The ARRAY itself is also freed, |
| 684 | * but the memory is not sanitized. |
| 685 | */ |
| 686 | #define FREE_ARRAY(CTX, ARRAY, FUNC) {uint64_t c__; LY_ARRAY_FOR(ARRAY, c__){FUNC(CTX, &(ARRAY)[c__]);}LY_ARRAY_FREE(ARRAY);} |
| 687 | |
| 688 | /** |
| 689 | * @brief Macro to free the specified MEMBER of a structure using the provided free function. The memory is not sanitized. |
| 690 | */ |
| 691 | #define FREE_MEMBER(CTX, MEMBER, FUNC) if (MEMBER) {FUNC(CTX, MEMBER);free(MEMBER);} |
| 692 | |
| 693 | /** |
| 694 | * @brief Macro to free [sized array](@ref sizedarrays) of strings stored in the context's dictionary. The ARRAY itself is also freed, |
| 695 | * but the memory is not sanitized. |
| 696 | */ |
| 697 | #define FREE_STRINGS(CTX, ARRAY) {uint64_t c__; LY_ARRAY_FOR(ARRAY, c__){FREE_STRING(CTX, ARRAY[c__]);}LY_ARRAY_FREE(ARRAY);} |
| 698 | |
| 699 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 700 | * @brief Free the parsed submodule structure. |
| 701 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 702 | * @param[in,out] submod Parsed schema submodule structure to free. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 703 | */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 704 | void lysp_submodule_free(struct ly_ctx *ctx, struct lysp_submodule *submod); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 705 | |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 706 | /** |
| 707 | * @brief Free the parsed type structure. |
| 708 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 709 | * @param[in] type Parsed schema type structure to free. Note that since the type itself is not freed. |
| 710 | */ |
| 711 | void lysp_type_free(struct ly_ctx *ctx, struct lysp_type *type); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 712 | |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 713 | /** |
| 714 | * @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. |
| 715 | */ |
| 716 | 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] | 717 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 718 | /** |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 719 | * @brief Free the compiled type structure. |
| 720 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 721 | * @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. |
| 722 | */ |
| 723 | void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type); |
| 724 | |
| 725 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 726 | * @brief Free the compiled if-feature structure. |
| 727 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 728 | * @param[in,out] iff Compiled if-feature structure to be cleaned. |
| 729 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 730 | */ |
| 731 | void lysc_iffeature_free(struct ly_ctx *ctx, struct lysc_iffeature *iff); |
| 732 | |
| 733 | /** |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 734 | * @brief Free the compiled must structure. |
| 735 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 736 | * @param[in,out] must Compiled must structure to be cleaned. |
| 737 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 738 | */ |
| 739 | void lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must); |
| 740 | |
| 741 | /** |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 742 | * @brief Free the data inside compiled input/output structure. |
| 743 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 744 | * @param[in,out] inout Compiled inout structure to be cleaned. |
| 745 | * Since the structure is part of the RPC/action structure, it is not freed itself. |
| 746 | */ |
| 747 | void lysc_action_inout_free(struct ly_ctx *ctx, struct lysc_action_inout *inout); |
| 748 | |
| 749 | /** |
| 750 | * @brief Free the data inside compiled RPC/action structure. |
| 751 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 752 | * @param[in,out] action Compiled action structure to be cleaned. |
| 753 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 754 | */ |
| 755 | void lysc_action_free(struct ly_ctx *ctx, struct lysc_action *action); |
| 756 | |
| 757 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 758 | * @brief Free the items inside the compiled Notification structure. |
| 759 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 760 | * @param[in,out] action Compiled Notification structure to be cleaned. |
| 761 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 762 | */ |
| 763 | void lysc_notif_free(struct ly_ctx *ctx, struct lysc_notif *notif); |
| 764 | |
| 765 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 766 | * @brief Free the compiled extension instance structure. |
| 767 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 768 | * @param[in,out] ext Compiled extension instance structure to be cleaned. |
| 769 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 770 | */ |
| 771 | void lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext); |
| 772 | |
| 773 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 774 | * @brief Free the compiled node structure. |
| 775 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 776 | * @param[in,out] node Compiled node structure to be freed. |
| 777 | */ |
| 778 | void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node); |
| 779 | |
| 780 | /** |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 781 | * @brief Free the compiled container node structure. |
| 782 | * |
| 783 | * Only the container-specific members are freed, for generic node free function, |
| 784 | * use lysc_node_free(). |
| 785 | * |
| 786 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 787 | * @param[in,out] node Compiled container node structure to be freed. |
| 788 | */ |
| 789 | void lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node); |
| 790 | |
| 791 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 792 | * @brief Free the compiled schema structure. |
| 793 | * @param[in,out] module Compiled schema module structure to free. |
| 794 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 795 | */ |
| 796 | void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 797 | |
| 798 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 799 | * @brief Free the schema structure. It just frees, it does not remove the schema from its context. |
| 800 | * @param[in,out] module Schema module structure to free. |
| 801 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 802 | */ |
| 803 | void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 804 | |
| 805 | /** |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 806 | * @brief Parse submodule from YANG data. |
David Sedlák | 1b62312 | 2019-08-05 15:27:49 +0200 | [diff] [blame] | 807 | * @param[in,out] ctx Parser context. |
| 808 | * @param[in] ly_ctx Context of YANG schemas. |
| 809 | * @param[in] main_ctx Parser context of main module. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 810 | * @param[in] data Input data to be parsed. |
| 811 | * @param[out] submod Pointer to the parsed submodule structure. |
| 812 | * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 813 | */ |
David Sedlák | 1b62312 | 2019-08-05 15:27:49 +0200 | [diff] [blame] | 814 | LY_ERR yang_parse_submodule(struct lys_parser_ctx **context, struct ly_ctx *ly_ctx, struct lys_parser_ctx *main_ctx, |
| 815 | const char *data, struct lysp_submodule **submod); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 816 | |
| 817 | /** |
| 818 | * @brief Parse module from YANG data. |
| 819 | * @param[in] ctx Parser context. |
| 820 | * @param[in] data Input data to be parsed. |
| 821 | * @param[in, out] mod Prepared module structure where the parsed information, including the parsed |
| 822 | * module structure, will be filled in. |
| 823 | * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID. |
| 824 | */ |
David Sedlák | 1b62312 | 2019-08-05 15:27:49 +0200 | [diff] [blame] | 825 | LY_ERR yang_parse_module(struct lys_parser_ctx **context, const char *data, struct lys_module *mod); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 826 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 827 | /** |
David Sedlák | ecf5eb8 | 2019-06-03 14:12:44 +0200 | [diff] [blame] | 828 | * @brief Parse module from YIN data. |
David Sedlák | 8985a14 | 2019-07-31 16:43:06 +0200 | [diff] [blame] | 829 | * |
| 830 | * @param[in,out] yin_ctx Context created during parsing, is used to finalize lysp_model after it's completly parsed. |
David Sedlák | ecf5eb8 | 2019-06-03 14:12:44 +0200 | [diff] [blame] | 831 | * @param[in] data Input data to be parsed. |
David Sedlák | b666bcc | 2019-06-05 15:00:05 +0200 | [diff] [blame] | 832 | * @param[in,out] mod Prepared module structure where the parsed information, including the parsed |
David Sedlák | ecf5eb8 | 2019-06-03 14:12:44 +0200 | [diff] [blame] | 833 | * module structure, will be filled in. |
David Sedlák | 8985a14 | 2019-07-31 16:43:06 +0200 | [diff] [blame] | 834 | * |
David Sedlák | 6882673 | 2019-06-05 10:50:58 +0200 | [diff] [blame] | 835 | * @return LY_ERR values. |
David Sedlák | ecf5eb8 | 2019-06-03 14:12:44 +0200 | [diff] [blame] | 836 | */ |
David Sedlák | 8985a14 | 2019-07-31 16:43:06 +0200 | [diff] [blame] | 837 | LY_ERR yin_parse_module(struct yin_parser_ctx **yin_ctx, const char *data, struct lys_module *mod); |
| 838 | |
| 839 | /** |
| 840 | * @brief Parse submodule from YIN data. |
| 841 | * |
| 842 | * @param[in,out] yin_ctx Context created during parsing, is used to finalize lysp_model after it's completly parsed. |
| 843 | * @param[in] ctx Libyang context. |
David Sedlák | 1b62312 | 2019-08-05 15:27:49 +0200 | [diff] [blame] | 844 | * @param[in] main_ctx Parser context of main module. |
| 845 | * @param[in,out] data Input data to be parsed. |
| 846 | * @param[in,out] submod Submodule structure where the parsed information, will be filled in. |
David Sedlák | 8985a14 | 2019-07-31 16:43:06 +0200 | [diff] [blame] | 847 | * |
| 848 | * @return LY_ERR values. |
| 849 | */ |
David Sedlák | 1b62312 | 2019-08-05 15:27:49 +0200 | [diff] [blame] | 850 | LY_ERR yin_parse_submodule(struct yin_parser_ctx **yin_ctx, struct ly_ctx *ctx, struct lys_parser_ctx *main_ctx, |
David Sedlák | 8985a14 | 2019-07-31 16:43:06 +0200 | [diff] [blame] | 851 | const char *data, struct lysp_submodule **submod); |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 852 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 853 | |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 854 | /** |
| 855 | * @brief Make the specific module implemented, use the provided value as flag. |
| 856 | * |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 857 | * @param[in] mod Module to make implemented. It is not an error to provide already implemented module, it just does nothing. |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 858 | * @param[in] implemented Flag value for the ::lys_module#implemented item. |
| 859 | * @return LY_SUCCESS or LY_EDENIED in case the context contains some other revision of the |
| 860 | * same module which is already implemented. |
| 861 | */ |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 862 | LY_ERR lys_set_implemented_internal(struct lys_module *mod, uint8_t implemented); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 863 | |
David Sedlák | 18e494b | 2018-12-17 03:58:39 +0100 | [diff] [blame] | 864 | /** |
| 865 | * @brief match yang keyword |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 866 | * |
| 867 | * param[in] ctx yang parser context for logging, can be NULL if keyword is from YIN data. |
| 868 | * param[in,out] data Data to read from, always moved to currently handled character. |
| 869 | * |
| 870 | * return yang_keyword values. |
David Sedlák | 18e494b | 2018-12-17 03:58:39 +0100 | [diff] [blame] | 871 | */ |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 872 | enum ly_stmt lysp_match_kw(struct lys_parser_ctx *ctx, const char **data); |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 873 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 874 | #endif /* LY_TREE_SCHEMA_INTERNAL_H_ */ |