Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file xml.h |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief Generic XML parser routines. |
| 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_XML_H_ |
| 16 | #define LY_XML_H_ |
| 17 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 18 | #include <stddef.h> |
Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 19 | #include <stdint.h> |
| 20 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 21 | #include "log.h" |
Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 22 | #include "set.h" |
| 23 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 24 | struct ly_ctx; |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 25 | struct ly_in; |
Radek Krejci | 241f6b5 | 2020-05-21 18:13:49 +0200 | [diff] [blame] | 26 | struct ly_out; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 27 | |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 28 | /* Macro to test if character is whitespace */ |
| 29 | #define is_xmlws(c) (c == 0x20 || c == 0x9 || c == 0xa || c == 0xd) |
| 30 | |
| 31 | /* Macro to test if character is allowed to be a first character of an qualified identifier */ |
| 32 | #define is_xmlqnamestartchar(c) ((c >= 'a' && c <= 'z') || c == '_' || \ |
| 33 | (c >= 'A' && c <= 'Z') || /* c == ':' || */ \ |
| 34 | (c >= 0x370 && c <= 0x1fff && c != 0x37e ) || \ |
| 35 | (c >= 0xc0 && c <= 0x2ff && c != 0xd7 && c != 0xf7) || c == 0x200c || \ |
| 36 | c == 0x200d || (c >= 0x2070 && c <= 0x218f) || \ |
| 37 | (c >= 0x2c00 && c <= 0x2fef) || (c >= 0x3001 && c <= 0xd7ff) || \ |
| 38 | (c >= 0xf900 && c <= 0xfdcf) || (c >= 0xfdf0 && c <= 0xfffd) || \ |
| 39 | (c >= 0x10000 && c <= 0xeffff)) |
| 40 | |
| 41 | /* Macro to test if character is allowed to be used in an qualified identifier */ |
| 42 | #define is_xmlqnamechar(c) ((c >= 'a' && c <= 'z') || c == '_' || c == '-' || \ |
| 43 | (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || /* c == ':' || */ \ |
| 44 | c == '.' || c == 0xb7 || (c >= 0x370 && c <= 0x1fff && c != 0x37e ) ||\ |
| 45 | (c >= 0xc0 && c <= 0x2ff && c != 0xd7 && c != 0xf7) || c == 0x200c || \ |
| 46 | c == 0x200d || (c >= 0x300 && c <= 0x36f) || \ |
Radek Krejci | c8a6390 | 2021-02-04 14:48:19 +0100 | [diff] [blame] | 47 | (c >= 0x2070 && c <= 0x218f) || (c >= 0x203f && c <= 0x2040) || \ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 48 | (c >= 0x2c00 && c <= 0x2fef) || (c >= 0x3001 && c <= 0xd7ff) || \ |
| 49 | (c >= 0xf900 && c <= 0xfdcf) || (c >= 0xfdf0 && c <= 0xfffd) || \ |
| 50 | (c >= 0x10000 && c <= 0xeffff)) |
| 51 | |
Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 52 | struct lyxml_ns { |
Radek Krejci | 4b74d5e | 2018-09-26 14:30:55 +0200 | [diff] [blame] | 53 | char *prefix; /* prefix of the namespace, NULL for the default namespace */ |
| 54 | char *uri; /* namespace URI */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 55 | uint32_t depth; /* depth level of the element to maintain the list of accessible namespace definitions */ |
Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 56 | }; |
| 57 | |
Radek Krejci | b189064 | 2018-10-03 14:05:40 +0200 | [diff] [blame] | 58 | /* element tag identifier for matching opening and closing tags */ |
| 59 | struct lyxml_elem { |
Michal Vasko | da8fbbf | 2021-06-16 11:44:44 +0200 | [diff] [blame] | 60 | const char *prefix; /**< only pointer, not in dictionary */ |
| 61 | const char *name; /**< only pointer, not in dictionary */ |
Radek Krejci | b189064 | 2018-10-03 14:05:40 +0200 | [diff] [blame] | 62 | size_t prefix_len; |
| 63 | size_t name_len; |
| 64 | }; |
| 65 | |
Radek Krejci | 28e8cb5 | 2019-03-08 11:31:31 +0100 | [diff] [blame] | 66 | /** |
| 67 | * @brief Status of the parser providing information what is expected next (which function is supposed to be called). |
| 68 | */ |
Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 69 | enum LYXML_PARSER_STATUS { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 70 | LYXML_ELEMENT, /* opening XML element parsed */ |
| 71 | LYXML_ELEM_CLOSE, /* closing XML element parsed */ |
| 72 | LYXML_ELEM_CONTENT, /* XML element context parsed */ |
| 73 | LYXML_ATTRIBUTE, /* XML attribute parsed */ |
| 74 | LYXML_ATTR_CONTENT, /* XML attribute content parsed */ |
Radek Krejci | b189064 | 2018-10-03 14:05:40 +0200 | [diff] [blame] | 75 | LYXML_END /* end of input data */ |
Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 76 | }; |
| 77 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 78 | struct lyxml_ctx { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 79 | const struct ly_ctx *ctx; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 80 | struct ly_in *in; /* input structure */ |
| 81 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 82 | enum LYXML_PARSER_STATUS status; /* status providing information about the last parsed object, following attributes |
| 83 | are filled based on it */ |
| 84 | union { |
Michal Vasko | 8cef523 | 2020-06-15 17:59:47 +0200 | [diff] [blame] | 85 | const char *prefix; /* LYXML_ELEMENT, LYXML_ATTRIBUTE - elem/attr prefix */ |
| 86 | const char *value; /* LYXML_ELEM_CONTENT, LYXML_ATTR_CONTENT - elem/attr value */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 87 | }; |
| 88 | union { |
Michal Vasko | 8cef523 | 2020-06-15 17:59:47 +0200 | [diff] [blame] | 89 | size_t prefix_len; /* LYXML_ELEMENT, LYXML_ATTRIBUTE - elem/attr prefix length */ |
| 90 | size_t value_len; /* LYXML_ELEM_CONTENT, LYXML_ATTR_CONTENT - elem/attr value length */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 91 | }; |
| 92 | union { |
Michal Vasko | 8cef523 | 2020-06-15 17:59:47 +0200 | [diff] [blame] | 93 | const char *name; /* LYXML_ELEMENT, LYXML_ATTRIBUTE - elem/attr name */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 94 | ly_bool ws_only; /* LYXML_ELEM_CONTENT, LYXML_ATTR_CONTENT - whether elem/attr value is empty/white-space only */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 95 | }; |
| 96 | union { |
Michal Vasko | 8cef523 | 2020-06-15 17:59:47 +0200 | [diff] [blame] | 97 | size_t name_len; /* LYXML_ELEMENT, LYXML_ATTRIBUTE - elem/attr name length */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 98 | ly_bool dynamic; /* LYXML_ELEM_CONTENT, LYXML_ATTR_CONTENT - whether elem/attr value is dynamically allocated */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 99 | }; |
| 100 | |
Radek Krejci | b189064 | 2018-10-03 14:05:40 +0200 | [diff] [blame] | 101 | struct ly_set elements; /* list of not-yet-closed elements */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 102 | struct ly_set ns; /* handled with LY_SET_OPT_USEASLIST */ |
Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 103 | }; |
| 104 | |
Michal Vasko | 8cef523 | 2020-06-15 17:59:47 +0200 | [diff] [blame] | 105 | /** |
| 106 | * @brief Create a new XML parser context and start parsing. |
| 107 | * |
| 108 | * @param[in] ctx libyang context. |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 109 | * @param[in] in Input structure. |
Michal Vasko | 8cef523 | 2020-06-15 17:59:47 +0200 | [diff] [blame] | 110 | * @param[out] xmlctx New XML context with status ::LYXML_ELEMENT. |
| 111 | * @return LY_ERR value. |
| 112 | */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 113 | LY_ERR lyxml_ctx_new(const struct ly_ctx *ctx, struct ly_in *in, struct lyxml_ctx **xmlctx); |
Radek Krejci | 4b74d5e | 2018-09-26 14:30:55 +0200 | [diff] [blame] | 114 | |
Michal Vasko | 8cef523 | 2020-06-15 17:59:47 +0200 | [diff] [blame] | 115 | /** |
| 116 | * @brief Move to the next XML artefact and update parser status. |
| 117 | * |
| 118 | * LYXML_ELEMENT (-> LYXML_ATTRIBUTE -> LYXML_ATTR_CONTENT)* -> LYXML_ELEM_CONTENT -> LYXML_ELEM_CLOSE ... |
| 119 | * -> LYXML_ELEMENT ... |
| 120 | * |
| 121 | * @param[in] xmlctx XML context to move. |
| 122 | * @return LY_ERR value. |
| 123 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 124 | LY_ERR lyxml_ctx_next(struct lyxml_ctx *xmlctx); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 125 | |
Michal Vasko | 8cef523 | 2020-06-15 17:59:47 +0200 | [diff] [blame] | 126 | /** |
| 127 | * @brief Peek at the next XML parser status without changing it. |
| 128 | * |
| 129 | * @param[in] xmlctx XML context to use. |
| 130 | * @param[out] next Next XML parser status. |
| 131 | * @return LY_ERR value. |
| 132 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 133 | LY_ERR lyxml_ctx_peek(struct lyxml_ctx *xmlctx, enum LYXML_PARSER_STATUS *next); |
Radek Krejci | 4b74d5e | 2018-09-26 14:30:55 +0200 | [diff] [blame] | 134 | |
| 135 | /** |
Radek Krejci | 4b74d5e | 2018-09-26 14:30:55 +0200 | [diff] [blame] | 136 | * @brief Get a namespace record for the given prefix in the current context. |
| 137 | * |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 138 | * @param[in] ns_set Set with namespaces from the XML context. |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 139 | * @param[in] prefix Pointer to the namespace prefix. Can be NULL for default namespace. |
| 140 | * @param[in] prefix_len Length of the prefix string (since it might not be NULL-terminated). |
Radek Krejci | 4b74d5e | 2018-09-26 14:30:55 +0200 | [diff] [blame] | 141 | * @return The namespace record or NULL if the record for the specified prefix not found. |
| 142 | */ |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 143 | const struct lyxml_ns *lyxml_ns_get(const struct ly_set *ns_set, const char *prefix, size_t prefix_len); |
Radek Krejci | 4b74d5e | 2018-09-26 14:30:55 +0200 | [diff] [blame] | 144 | |
| 145 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 146 | * @brief Print the given @p text as XML string which replaces some of the characters which cannot appear in XML data. |
| 147 | * |
| 148 | * @param[in] out Output structure for printing. |
| 149 | * @param[in] text String to print. |
| 150 | * @param[in] attribute Flag for attribute's value where a double quotes must be replaced. |
| 151 | * @return LY_ERR values. |
| 152 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 153 | LY_ERR lyxml_dump_text(struct ly_out *out, const char *text, ly_bool attribute); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 154 | |
| 155 | /** |
Radek Krejci | b189064 | 2018-10-03 14:05:40 +0200 | [diff] [blame] | 156 | * @brief Remove the allocated working memory of the context. |
| 157 | * |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 158 | * @param[in] xmlctx XML context to clear. |
Radek Krejci | b189064 | 2018-10-03 14:05:40 +0200 | [diff] [blame] | 159 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 160 | void lyxml_ctx_free(struct lyxml_ctx *xmlctx); |
Radek Krejci | b189064 | 2018-10-03 14:05:40 +0200 | [diff] [blame] | 161 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 162 | /** |
Michal Vasko | da8fbbf | 2021-06-16 11:44:44 +0200 | [diff] [blame] | 163 | * @brief Create a backup of XML context. |
| 164 | * |
| 165 | * @param[in] xmlctx XML context to back up. |
| 166 | * @param[out] backup Backup XML context. |
| 167 | * @return LY_ERR value. |
| 168 | */ |
| 169 | LY_ERR lyxml_ctx_backup(struct lyxml_ctx *xmlctx, struct lyxml_ctx *backup); |
| 170 | |
| 171 | /** |
| 172 | * @brief Restore previous backup of XML context. |
| 173 | * |
| 174 | * @param[in,out] xmlctx XML context to restore. |
aPiecek | b0445f2 | 2021-06-24 11:34:07 +0200 | [diff] [blame] | 175 | * @param[in] backup Backup XML context to restore, is unusable afterwards. |
Michal Vasko | da8fbbf | 2021-06-16 11:44:44 +0200 | [diff] [blame] | 176 | */ |
| 177 | void lyxml_ctx_restore(struct lyxml_ctx *xmlctx, struct lyxml_ctx *backup); |
| 178 | |
| 179 | /** |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 180 | * @brief Compare values and their prefix mappings. |
| 181 | * |
aPiecek | 2f63f95 | 2021-03-30 12:22:18 +0200 | [diff] [blame] | 182 | * @param[in] ctx1 Libyang context for resolving prefixes in @p value1. |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 183 | * @param[in] value1 First value. |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 184 | * @param[in] val_prefix_data1 First value prefix data. |
aPiecek | 2f63f95 | 2021-03-30 12:22:18 +0200 | [diff] [blame] | 185 | * @param[in] ctx2 Libyang context for resolving prefixes in @p value2. |
| 186 | * Can be set to NULL if @p ctx1 is equal to @p ctx2. |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 187 | * @param[in] value2 Second value. |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 188 | * @param[in] val_prefix_data2 Second value prefix data. |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 189 | * @return LY_SUCCESS if values are equal. |
| 190 | * @return LY_ENOT if values are not equal. |
| 191 | * @return LY_ERR on error. |
| 192 | */ |
aPiecek | 2f63f95 | 2021-03-30 12:22:18 +0200 | [diff] [blame] | 193 | LY_ERR lyxml_value_compare(const struct ly_ctx *ctx1, const char *value1, void *val_prefix_data1, |
| 194 | const struct ly_ctx *ctx2, const char *value2, void *val_prefix_data2); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 195 | |
Radek Krejci | b416be6 | 2018-10-01 14:51:45 +0200 | [diff] [blame] | 196 | #endif /* LY_XML_H_ */ |