David Sedlák | b1ce3f8 | 2019-06-05 14:37:26 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file parser_yin.h |
| 3 | * @author David Sedlák <xsedla1d@stud.fit.vutbr.cz> |
| 4 | * @brief YIN parser. |
| 5 | * |
| 6 | * Copyright (c) 2015 - 2019 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 | */ |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 14 | |
| 15 | #ifndef LY_PARSER_YIN_H_ |
| 16 | #define LY_PARSER_YIN_H_ |
| 17 | |
| 18 | #include <stdio.h> |
David Sedlák | b1ce3f8 | 2019-06-05 14:37:26 +0200 | [diff] [blame] | 19 | #include <stdlib.h> |
| 20 | |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 21 | #include "log.h" |
| 22 | #include "xml.h" |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 23 | |
David Sedlák | f625118 | 2019-06-06 10:22:13 +0200 | [diff] [blame] | 24 | /* list of yin attribute strings */ |
| 25 | extern const char *const yin_attr_list[]; |
| 26 | #define yin_attr2str(STMT) yin_attr_list[STMT] |
| 27 | |
David Sedlák | 2b214ac | 2019-06-06 16:11:03 +0200 | [diff] [blame] | 28 | #define YIN_NS_URI "urn:ietf:params:xml:ns:yang:yin:1" |
David Sedlák | d6e5689 | 2019-07-01 15:40:24 +0200 | [diff] [blame] | 29 | #define name2fullname(name, prefix_len) (prefix_len != 0 ? name - (prefix_len + 1) : name) |
David Sedlák | f250ecf | 2019-07-01 11:02:05 +0200 | [diff] [blame] | 30 | #define namelen2fulllen(name_len, prefix_len) (prefix_len != 0 ? name_len + prefix_len + 1 : name_len) |
David Sedlák | 2b214ac | 2019-06-06 16:11:03 +0200 | [diff] [blame] | 31 | |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 32 | enum YIN_ARGUMENT { |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 33 | YIN_ARG_UNKNOWN = 0, /**< parsed argument can not be matched with any supported yin argument keyword */ |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 34 | YIN_ARG_NAME, /**< argument name */ |
| 35 | YIN_ARG_TARGET_NODE, /**< argument target-node */ |
| 36 | YIN_ARG_MODULE, /**< argument module */ |
| 37 | YIN_ARG_VALUE, /**< argument value */ |
| 38 | YIN_ARG_TEXT, /**< argument text */ |
| 39 | YIN_ARG_CONDITION, /**< argument condition */ |
| 40 | YIN_ARG_URI, /**< argument uri */ |
| 41 | YIN_ARG_DATE, /**< argument data */ |
| 42 | YIN_ARG_TAG, /**< argument tag */ |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 43 | YIN_ARG_NONE, /**< empty (special value) */ |
David Sedlák | 7ff55a9 | 2019-06-17 11:11:41 +0200 | [diff] [blame] | 44 | }; |
| 45 | |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 46 | /** |
| 47 | * @brief structure to store instance of xml attribute |
| 48 | */ |
David Sedlák | 7ff55a9 | 2019-06-17 11:11:41 +0200 | [diff] [blame] | 49 | struct yin_arg_record { |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 50 | const char *prefix; /**< start of prefix */ |
| 51 | size_t prefix_len; /**< length of prefix */ |
| 52 | const char *name; /**< start of name */ |
| 53 | size_t name_len; /**< length of name */ |
| 54 | char *content; /**< start of content */ |
| 55 | size_t content_len; /**< length of content */ |
| 56 | int dynamic_content; /**< is set to 1 iff content is dynamically allocated 0 otherwise */ |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 57 | }; |
| 58 | |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 59 | struct yin_parser_ctx { |
David Sedlák | 04e17b2 | 2019-07-19 15:29:48 +0200 | [diff] [blame] | 60 | struct ly_set tpdfs_nodes; |
| 61 | struct ly_set grps_nodes; |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 62 | uint8_t mod_version; /**< module's version */ |
David Sedlák | 04e17b2 | 2019-07-19 15:29:48 +0200 | [diff] [blame] | 63 | struct lyxml_context xml_ctx; /**< context for xml parser */ |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 64 | }; |
| 65 | |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 66 | /* flags to encode cardinality of subelement */ |
| 67 | #define YIN_SUBELEM_MANDATORY 0x01 /**< is set when subelement is mandatory */ |
| 68 | #define YIN_SUBELEM_UNIQUE 0x02 /**< is set when subelement is unique */ |
David Sedlák | e1a3030 | 2019-07-10 13:49:38 +0200 | [diff] [blame] | 69 | #define YIN_SUBELEM_FIRST 0x04 /**< is set when subelement is actually yang argument mapped to yin element */ |
David Sedlák | 0c2bab9 | 2019-07-22 15:33:19 +0200 | [diff] [blame] | 70 | #define YIN_SUBELEM_VER2 0x08 /**< subelemnt is allowed only in modules with version at least 2 (YANG 1.1) */ |
David Sedlák | 21f87cd | 2019-07-03 16:53:23 +0200 | [diff] [blame] | 71 | |
| 72 | #define YIN_SUBELEM_PARSED 0x80 /**< is set during parsing when given subelement is encountered for the first |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 73 | time to simply check validity of given constraints */ |
| 74 | |
| 75 | struct yin_subelement { |
| 76 | enum yang_keyword type; /**< type of keyword */ |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 77 | void *dest; /**< meta infromation passed to responsible function (mostly information about where parsed subelement should be stored) */ |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 78 | uint8_t flags; /**< describes cardianlity of subelement can be set to YIN_SUBELEM_MANDATORY and YIN_SUBELEM_UNIQUE and YIN_SUBELEM_FIRST */ |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 79 | }; |
| 80 | |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 81 | /* helper structure just to make code look simpler */ |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 82 | struct sized_string { |
| 83 | const char *value; |
| 84 | size_t len; |
| 85 | }; |
| 86 | |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 87 | /* Meta information passed to yin_parse_argument function, |
| 88 | holds information about where content of argument element will be stored. */ |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 89 | struct yin_argument_meta { |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 90 | uint16_t *flags; /**< Argument flags */ |
| 91 | const char **argument; /**< Argument value */ |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 92 | }; |
| 93 | |
David Sedlák | 04e17b2 | 2019-07-19 15:29:48 +0200 | [diff] [blame] | 94 | /* Meta information passed to functions working with tree schema such as yin_parse_any */ |
David Sedlák | 8a83bbb | 2019-07-18 14:46:00 +0200 | [diff] [blame] | 95 | struct tree_node_meta { |
| 96 | struct lysp_node *parent; /**< parent node */ |
| 97 | struct lysp_node **siblings; /**< linked list of siblings */ |
| 98 | }; |
| 99 | |
David Sedlák | 04e17b2 | 2019-07-19 15:29:48 +0200 | [diff] [blame] | 100 | /* Meta information passed to yin_parse_typedef */ |
| 101 | struct typedef_meta { |
| 102 | struct lysp_node *parent; /**< parent node */ |
David Sedlák | 0d6de5a | 2019-07-22 13:25:44 +0200 | [diff] [blame] | 103 | struct lysp_tpdf **typedefs; /**< [Sized array](@ref sizedarrays) of typedefs to add to */ |
| 104 | }; |
| 105 | |
David Sedlák | 0c2bab9 | 2019-07-22 15:33:19 +0200 | [diff] [blame] | 106 | /* Meta information passed to yin_parse_augment function */ |
David Sedlák | 0d6de5a | 2019-07-22 13:25:44 +0200 | [diff] [blame] | 107 | struct augment_meta { |
| 108 | struct lysp_node *parent; /**< parent node */ |
| 109 | struct lysp_augment **augments; /**< [Sized array](@ref sizedarrays) of augments to add to */ |
David Sedlák | 04e17b2 | 2019-07-19 15:29:48 +0200 | [diff] [blame] | 110 | }; |
| 111 | |
David Sedlák | 0c2bab9 | 2019-07-22 15:33:19 +0200 | [diff] [blame] | 112 | /* Meta information passed to yin_parse_include function */ |
| 113 | struct include_meta { |
| 114 | const char *name; /**< module/submodule name */ |
| 115 | struct lysp_include **includes; /**< [Sized array](@ref sizedarrays) of parsed includes to add to */ |
| 116 | }; |
| 117 | |
David Sedlák | 031b9e7 | 2019-07-23 15:19:37 +0200 | [diff] [blame^] | 118 | struct notif_meta { |
| 119 | struct lysp_node *parent; /**< parent node */ |
| 120 | struct lysp_notif **notifs; /**< [Sized array](@ref sizedarrays) of notifications to add to */ |
| 121 | }; |
| 122 | |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 123 | /** |
| 124 | * @brief Match argument name. |
| 125 | * |
| 126 | * @param[in] name String representing name. |
| 127 | * @param[in] len Lenght of the name. |
| 128 | * |
David Sedlák | b1ce3f8 | 2019-06-05 14:37:26 +0200 | [diff] [blame] | 129 | * @return YIN_ARGUMENT value. |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 130 | */ |
David Sedlák | 060b00e | 2019-06-19 11:12:06 +0200 | [diff] [blame] | 131 | enum YIN_ARGUMENT yin_match_argument_name(const char *name, size_t len); |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 132 | |
| 133 | /** |
David Sedlák | 555c720 | 2019-07-04 12:14:12 +0200 | [diff] [blame] | 134 | * @brief Generic function for content parsing |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 135 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 136 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | 555c720 | 2019-07-04 12:14:12 +0200 | [diff] [blame] | 137 | * @param[in] subelem_info array of valid subelement types and meta information, |
| 138 | * array must be ordered by subelem_info->type in ascending order. |
| 139 | * @param[in] subelem_info_size Size of subelem_info array. |
| 140 | * @param[in,out] data Data to read from, always moved to currently handled character. |
| 141 | * @param[in] current_element Type of current element. |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 142 | * @param[out] text_content Where the text content of element should be stored if any. Text content is ignored if set to NULL. |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 143 | * @param[in,out] exts Extension instance to add to. Can be se to null if element cannot have extension as subelements. |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 144 | |
David Sedlák | 2b214ac | 2019-06-06 16:11:03 +0200 | [diff] [blame] | 145 | * @return LY_ERR values. |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 146 | */ |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 147 | LY_ERR yin_parse_content(struct yin_parser_ctx *ctx, struct yin_subelement *subelem_info, signed char subelem_info_size, |
David Sedlák | 555c720 | 2019-07-04 12:14:12 +0200 | [diff] [blame] | 148 | const char **data, enum yang_keyword current_element, const char **text_content, |
| 149 | struct lysp_ext_instance **exts); |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 150 | |
David Sedlák | d9d3a31 | 2019-06-04 09:47:10 +0200 | [diff] [blame] | 151 | /** |
David Sedlák | 92147b0 | 2019-07-09 14:01:01 +0200 | [diff] [blame] | 152 | * @brief Parse yang-version element. |
| 153 | * |
| 154 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 155 | * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of yang-version element. |
David Sedlák | 92147b0 | 2019-07-09 14:01:01 +0200 | [diff] [blame] | 156 | * @param[in] data Data to read from, always moved to currently handled character. |
| 157 | * @param[out] version Storage for the parsed information. |
| 158 | * @param[in,out] exts Extension instance to add to. |
| 159 | * |
| 160 | * @return LY_ERR values. |
| 161 | */ |
| 162 | LY_ERR yin_parse_yangversion(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, uint8_t *version, |
| 163 | struct lysp_ext_instance **exts); |
| 164 | |
| 165 | /** |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 166 | * @brief Check that val is valid UTF8 character sequence of val_type. |
| 167 | * Doesn't check empty string, only character validity. |
| 168 | * |
| 169 | * @param[in] ctx Yin parser context for logging. |
| 170 | * @param[in] val_type Type of the input string to select method of checking character validity. |
| 171 | * @param[in] val Input to validate. |
| 172 | * @param[in] len Length of input. |
| 173 | * |
| 174 | * @return LY_ERR values. |
| 175 | */ |
| 176 | LY_ERR yin_validate_value(struct yin_parser_ctx *ctx, enum yang_arg val_type, char *val, size_t len); |
| 177 | |
| 178 | /** |
David Sedlák | 2b214ac | 2019-06-06 16:11:03 +0200 | [diff] [blame] | 179 | * @brief Parse import element. |
David Sedlák | da63c08 | 2019-06-04 13:52:23 +0200 | [diff] [blame] | 180 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 181 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 182 | * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of import element. |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 183 | * @param[in,out] data Data to read from, always moved to currently handled character. |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 184 | * @param[in,out] mod Structure of module that is being parsed. |
David Sedlák | da63c08 | 2019-06-04 13:52:23 +0200 | [diff] [blame] | 185 | * |
David Sedlák | 2b214ac | 2019-06-06 16:11:03 +0200 | [diff] [blame] | 186 | * @return LY_ERR values. |
David Sedlák | da63c08 | 2019-06-04 13:52:23 +0200 | [diff] [blame] | 187 | */ |
David Sedlák | 1f90d25 | 2019-07-10 17:09:32 +0200 | [diff] [blame] | 188 | LY_ERR yin_parse_import(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, |
David Sedlák | 619db94 | 2019-07-03 14:47:30 +0200 | [diff] [blame] | 189 | const char **data, struct lysp_module *mod); |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 190 | |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 191 | /** |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 192 | * @brief Match yang keyword from yin data. |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 193 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 194 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 195 | * @param[in] name Start of keyword name |
David Sedlák | 8f7a117 | 2019-06-20 14:42:18 +0200 | [diff] [blame] | 196 | * @param[in] name_len Lenght of keyword name. |
| 197 | * @param[in] prefix Start of keyword prefix. |
| 198 | * @param[in] prefix_len lenght of prefix. |
David Sedlák | c1771b1 | 2019-07-10 15:55:46 +0200 | [diff] [blame] | 199 | * @param[in] parrent Identification of parrent element, use YANG_NONE for elements without parrent. |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 200 | * |
| 201 | * @return yang_keyword values. |
| 202 | */ |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 203 | enum yang_keyword yin_match_keyword(struct yin_parser_ctx *ctx, const char *name, size_t name_len, |
David Sedlák | c1771b1 | 2019-07-10 15:55:46 +0200 | [diff] [blame] | 204 | const char *prefix, size_t prefix_len, enum yang_keyword parrent); |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 205 | |
David Sedlák | b6e6597 | 2019-06-19 10:44:13 +0200 | [diff] [blame] | 206 | /** |
David Sedlák | 1fdb252 | 2019-07-09 16:22:57 +0200 | [diff] [blame] | 207 | * @brief Parse mandatory element. |
| 208 | * |
| 209 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
| 210 | * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of status element. |
| 211 | * @param[in,out] data Data to read from, always moved to currently handled character. |
| 212 | * @param[in,out] flags Flags to add to. |
| 213 | * @param[in,out] exts Extension instances to add to. |
| 214 | * |
| 215 | * @return LY_ERR values. |
| 216 | */ |
| 217 | LY_ERR yin_parse_mandatory(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, |
| 218 | uint16_t *flags, struct lysp_ext_instance **exts); |
| 219 | |
| 220 | /** |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 221 | * @brief Parse status element. |
David Sedlák | b6e6597 | 2019-06-19 10:44:13 +0200 | [diff] [blame] | 222 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 223 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 224 | * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of status element. |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 225 | * @param[in,out] data Data to read from, always moved to currently handled character. |
David Sedlák | b6e6597 | 2019-06-19 10:44:13 +0200 | [diff] [blame] | 226 | * @param[in,out] flags Flags to add to. |
| 227 | * @param[in,out] exts Extension instances to add to. |
| 228 | * |
| 229 | * @return LY_ERR values. |
| 230 | */ |
David Sedlák | 1f90d25 | 2019-07-10 17:09:32 +0200 | [diff] [blame] | 231 | LY_ERR yin_parse_status(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, |
David Sedlák | 554e36d | 2019-06-20 16:00:04 +0200 | [diff] [blame] | 232 | uint16_t *flags, struct lysp_ext_instance **exts); |
David Sedlák | 8f7a117 | 2019-06-20 14:42:18 +0200 | [diff] [blame] | 233 | |
| 234 | /** |
David Sedlák | 32eee7b | 2019-07-09 12:38:44 +0200 | [diff] [blame] | 235 | * @brief Parse when element. |
| 236 | * |
| 237 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 238 | * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of when element. |
David Sedlák | 32eee7b | 2019-07-09 12:38:44 +0200 | [diff] [blame] | 239 | * @param[in,out] data Data to read from, always moved to currently handled character. |
| 240 | * @param[out] when_p When pointer to parse to. |
| 241 | */ |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 242 | LY_ERR yin_parse_when(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, |
| 243 | struct lysp_when **when_p); |
David Sedlák | 32eee7b | 2019-07-09 12:38:44 +0200 | [diff] [blame] | 244 | |
| 245 | /** |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 246 | * @brief Parse revision date element. |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 247 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 248 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 249 | * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of revision-date element. |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 250 | * @param[in,out] data Data to read from, always moved to currently handled character. |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 251 | * @param[in,out] rev Array to store the parsed value in. |
| 252 | * @param[in,out] exts Extension instances to add to. |
| 253 | * |
| 254 | * @return LY_ERR values. |
| 255 | */ |
David Sedlák | 1f90d25 | 2019-07-10 17:09:32 +0200 | [diff] [blame] | 256 | LY_ERR yin_parse_revision_date(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 257 | char *rev, struct lysp_ext_instance **exts); |
| 258 | |
| 259 | /** |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 260 | * @brief load all attributes of element into ([sized array](@ref sizedarrays)). Caller is suposed to free the array. |
David Sedlák | 8f7a117 | 2019-06-20 14:42:18 +0200 | [diff] [blame] | 261 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 262 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
| 263 | * @param[in,out] data Data to read from, always moved to currently handled character. |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 264 | * @param[out] attrs ([Sized array](@ref sizedarrays)) of attributes. |
David Sedlák | 8f7a117 | 2019-06-20 14:42:18 +0200 | [diff] [blame] | 265 | * |
| 266 | * @return LY_ERR values. |
| 267 | */ |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 268 | LY_ERR yin_load_attributes(struct yin_parser_ctx *ctx, const char **data, struct yin_arg_record **attrs); |
David Sedlák | b6e6597 | 2019-06-19 10:44:13 +0200 | [diff] [blame] | 269 | |
David Sedlák | 554e36d | 2019-06-20 16:00:04 +0200 | [diff] [blame] | 270 | /** |
David Sedlák | 2721d3d | 2019-06-21 15:37:41 +0200 | [diff] [blame] | 271 | * @brief Parse yin-elemenet element. |
| 272 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 273 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 274 | * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of yin-element element. |
David Sedlák | 2721d3d | 2019-06-21 15:37:41 +0200 | [diff] [blame] | 275 | * @param[in,out] data Data to read from, always moved to currently handled position. |
| 276 | * @param[in,out] flags Flags to add to. |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 277 | * @prama[in,out] exts Extension instance to add to. |
David Sedlák | 2721d3d | 2019-06-21 15:37:41 +0200 | [diff] [blame] | 278 | * |
| 279 | * @return LY_ERR values. |
| 280 | */ |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 281 | LY_ERR yin_parse_yin_element_element(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 282 | uint16_t *flags, struct lysp_ext_instance **exts); |
| 283 | |
| 284 | /** |
| 285 | * @brief Parse argument element. |
| 286 | * |
| 287 | * @param[in,out] xml_ctx Xml context. |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 288 | * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of argument element. |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 289 | * @param[in,out] data Data to read from, always moved to currently handled character. |
| 290 | * @param[in,out] arg_meta Meta information about destionation af prased data. |
| 291 | * @param[in,out] exts Extension instance to add to. |
| 292 | * |
| 293 | * @return LY_ERR values. |
| 294 | */ |
David Sedlák | 1f90d25 | 2019-07-10 17:09:32 +0200 | [diff] [blame] | 295 | LY_ERR yin_parse_argument_element(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, |
David Sedlák | 3ffbc52 | 2019-07-02 17:49:28 +0200 | [diff] [blame] | 296 | struct yin_argument_meta *arg_meta, struct lysp_ext_instance **exts); |
David Sedlák | 2721d3d | 2019-06-21 15:37:41 +0200 | [diff] [blame] | 297 | |
| 298 | /** |
David Sedlák | 554e36d | 2019-06-20 16:00:04 +0200 | [diff] [blame] | 299 | * @brief Parse the extension statement. |
| 300 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 301 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 302 | * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of extension element. |
David Sedlák | 554e36d | 2019-06-20 16:00:04 +0200 | [diff] [blame] | 303 | * @param[in,out] data Data to read from. |
| 304 | * @param[in,out] extensions Extensions to add to. |
| 305 | * |
| 306 | * @return LY_ERR values. |
| 307 | */ |
David Sedlák | 1f90d25 | 2019-07-10 17:09:32 +0200 | [diff] [blame] | 308 | LY_ERR yin_parse_extension(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, |
David Sedlák | 554e36d | 2019-06-20 16:00:04 +0200 | [diff] [blame] | 309 | const char **data, struct lysp_ext **extensions); |
| 310 | |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 311 | /** |
| 312 | * @brief Parse instance of extension. |
| 313 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 314 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | bba38e5 | 2019-07-09 15:20:01 +0200 | [diff] [blame] | 315 | * @param[in] attrs [Sized array](@ref sizedarrays) of attributes of extension instance. |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 316 | * @param[in,out] data Data to read from, always moved to currently handled character. |
| 317 | * @param[in] ext_name Name of the extension element. |
| 318 | * @param[in] ext_name_len Length of extension name. |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 319 | * @param[in] subelem Type of the keyword this extension instance is a subelement of. |
| 320 | * @param[in] subelem_index Index of the keyword instance this extension instance is a subelement of |
| 321 | * @param[in,out] exts Extension instance to add to. |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 322 | * |
| 323 | * @return LY_ERR values. |
| 324 | */ |
David Sedlák | 1f90d25 | 2019-07-10 17:09:32 +0200 | [diff] [blame] | 325 | LY_ERR yin_parse_extension_instance(struct yin_parser_ctx *ctx, struct yin_arg_record *attrs, const char **data, |
David Sedlák | 619db94 | 2019-07-03 14:47:30 +0200 | [diff] [blame] | 326 | const char *ext_name, int ext_name_len, LYEXT_SUBSTMT subelem, |
| 327 | uint32_t subelem_index, struct lysp_ext_instance **exts); |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 328 | |
| 329 | /** |
| 330 | * @brief Parse yin element into generic structure. |
| 331 | * |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 332 | * @param[in,out] ctx Yin parser context for logging and to store current state. |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 333 | * @param[in] name Name of element. |
| 334 | * @param[in] name_len Length of elements Name. |
David Sedlák | b4e4456 | 2019-07-04 15:42:12 +0200 | [diff] [blame] | 335 | * @param[in] prefix Element prefix. |
| 336 | * @param[in] prefix_len Length of element prefix. |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 337 | * @param[in,out] data Data to read from, always moved to currently handled character. |
| 338 | * @param[out] element Where the element structure should be stored. |
| 339 | * |
| 340 | * @return LY_ERR values. |
| 341 | */ |
David Sedlák | da8ffa3 | 2019-07-08 14:17:10 +0200 | [diff] [blame] | 342 | LY_ERR yin_parse_element_generic(struct yin_parser_ctx *ctx, const char *name, size_t name_len, const char *prefix, |
| 343 | size_t prefix_len, const char **data, struct lysp_stmt **element); |
David Sedlák | b1a7835 | 2019-06-28 16:16:29 +0200 | [diff] [blame] | 344 | |
David Sedlák | 2b626ee | 2019-06-03 16:40:18 +0200 | [diff] [blame] | 345 | #endif /* LY_PARSER_YIN_H_*/ |