| /** |
| * @file xml.c |
| * @author Radek Krejci <rkrejci@cesnet.cz> |
| * @brief Generic XML parser implementation for libyang |
| * |
| * Copyright (c) 2015 - 2018 CESNET, z.s.p.o. |
| * |
| * This source code is licensed under BSD 3-Clause License (the "License"). |
| * You may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * https://opensource.org/licenses/BSD-3-Clause |
| */ |
| |
| #define _POSIX_C_SOURCE 200809L /* strndup() */ |
| |
| #include <assert.h> |
| #include <ctype.h> |
| #include <stdbool.h> |
| #include <stdint.h> |
| #include <string.h> |
| |
| #include "libyang.h" |
| #include "xml.h" |
| #include "common.h" |
| |
| /* Move input p by s characters, if EOF log with lyxml_context c */ |
| #define move_input(c,p,s) p += s; LY_CHECK_ERR_RET(!p[0], LOGVAL(c->ctx, LY_VLOG_LINE, &c->line, LY_VCODE_EOF), LY_EVALID) |
| |
| /* Ignore whitespaces in the input string p */ |
| #define ign_xmlws(c,p) while (is_xmlws(*(p))) {if (*(p) == '\n') {++c->line;} ++p;} |
| |
| /** |
| * @brief Ignore any characters until the delim of the size delim_len is read |
| * |
| * Detects number of read new lines. |
| * Returns the pointer to the beginning of the detected delim, or NULL in case the delim not found in |
| * NULL-terminated input string. |
| * */ |
| static const char * |
| ign_todelim(register const char *input, const char *delim, size_t delim_len, size_t *newlines) |
| { |
| size_t i; |
| register const char *a, *b; |
| |
| (*newlines) = 0; |
| for ( ; *input; ++input) { |
| if (*input != *delim) { |
| if (*input == '\n') { |
| ++(*newlines); |
| } |
| continue; |
| } |
| a = input; |
| b = delim; |
| for (i = 0; i < delim_len; ++i) { |
| if (*a++ != *b++) { |
| break; |
| } |
| } |
| if (i == delim_len) { |
| return input; |
| } |
| } |
| return NULL; |
| } |
| |
| /** |
| * Store UTF-8 character specified as 4byte integer into the dst buffer. |
| * Returns number of written bytes (4 max), expects that dst has enough space. |
| * |
| * UTF-8 mapping: |
| * 00000000 -- 0000007F: 0xxxxxxx |
| * 00000080 -- 000007FF: 110xxxxx 10xxxxxx |
| * 00000800 -- 0000FFFF: 1110xxxx 10xxxxxx 10xxxxxx |
| * 00010000 -- 001FFFFF: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx |
| * |
| * Includes checking for valid characters (following RFC 7950, sec 9.4) |
| */ |
| static LY_ERR |
| lyxml_pututf8(char *dst, uint32_t value, size_t *bytes_written) |
| { |
| if (value < 0x80) { |
| /* one byte character */ |
| if (value < 0x20 && |
| value != 0x09 && |
| value != 0x0a && |
| value != 0x0d) { |
| return LY_EINVAL; |
| } |
| |
| dst[0] = value; |
| (*bytes_written) = 1; |
| } else if (value < 0x800) { |
| /* two bytes character */ |
| dst[0] = 0xc0 | (value >> 6); |
| dst[1] = 0x80 | (value & 0x3f); |
| (*bytes_written) = 2; |
| } else if (value < 0xfffe) { |
| /* three bytes character */ |
| if (((value & 0xf800) == 0xd800) || |
| (value >= 0xfdd0 && value <= 0xfdef)) { |
| /* exclude surrogate blocks %xD800-DFFF */ |
| /* exclude noncharacters %xFDD0-FDEF */ |
| return LY_EINVAL; |
| } |
| |
| dst[0] = 0xe0 | (value >> 12); |
| dst[1] = 0x80 | ((value >> 6) & 0x3f); |
| dst[2] = 0x80 | (value & 0x3f); |
| |
| (*bytes_written) = 3; |
| } else if (value < 0x10fffe) { |
| if ((value & 0xffe) == 0xffe) { |
| /* exclude noncharacters %xFFFE-FFFF, %x1FFFE-1FFFF, %x2FFFE-2FFFF, %x3FFFE-3FFFF, %x4FFFE-4FFFF, |
| * %x5FFFE-5FFFF, %x6FFFE-6FFFF, %x7FFFE-7FFFF, %x8FFFE-8FFFF, %x9FFFE-9FFFF, %xAFFFE-AFFFF, |
| * %xBFFFE-BFFFF, %xCFFFE-CFFFF, %xDFFFE-DFFFF, %xEFFFE-EFFFF, %xFFFFE-FFFFF, %x10FFFE-10FFFF */ |
| return LY_EINVAL; |
| } |
| /* four bytes character */ |
| dst[0] = 0xf0 | (value >> 18); |
| dst[1] = 0x80 | ((value >> 12) & 0x3f); |
| dst[2] = 0x80 | ((value >> 6) & 0x3f); |
| dst[3] = 0x80 | (value & 0x3f); |
| |
| (*bytes_written) = 4; |
| } |
| return LY_SUCCESS; |
| } |
| |
| /** |
| * @brief Check/Get an XML qualified name from the input string. |
| * |
| * The identifier must have at least one valid character complying the name start character constraints. |
| * The identifier is terminated by the first character, which does not comply to the name character constraints. |
| * |
| * See https://www.w3.org/TR/xml-names/#NT-NCName |
| * |
| * @param[in] context XML context to track lines or store errors into libyang context. |
| * @param[in,out] input Input string to process, updated according to the processed/read data. |
| * Note that the term_char is also read, so input points after the term_char at the end. |
| * @param[out] term_char The first character in the input string which does not compy to the name constraints. |
| * @param[out] term_char_len Number of bytes used to encode UTF8 term_char. Serves to be able to go back in input string. |
| * @return LY_ERR value. |
| */ |
| static LY_ERR |
| lyxml_check_qname(struct lyxml_context *context, const char **input, unsigned int *term_char, size_t *term_char_len) |
| { |
| unsigned int c; |
| const char *id = (*input); |
| LY_ERR rc; |
| |
| /* check NameStartChar (minus colon) */ |
| LY_CHECK_ERR_RET(ly_getutf8(input, &c, NULL) != LY_SUCCESS, |
| LOGVAL(context->ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INCHAR, (*input)[0]), LY_EVALID); |
| LY_CHECK_ERR_RET(!is_xmlqnamestartchar(c), |
| LOGVAL(context->ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, |
| "Identifier \"%s\" starts with invalid character.", id), |
| LY_EVALID); |
| |
| /* check rest of the identifier */ |
| for (rc = ly_getutf8(input, &c, term_char_len); |
| rc == LY_SUCCESS && is_xmlqnamechar(c); |
| rc = ly_getutf8(input, &c, term_char_len)); |
| LY_CHECK_ERR_RET(rc != LY_SUCCESS, LOGVAL(context->ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INCHAR, (*input)[0]), LY_EVALID); |
| |
| (*term_char) = c; |
| return LY_SUCCESS; |
| } |
| |
| LY_ERR |
| lyxml_get_string(struct lyxml_context *context, const char **input, char **buffer, size_t *buffer_size, char **output, size_t *length, int *dynamic) |
| { |
| #define BUFSIZE 4096 |
| #define BUFSIZE_STEP 4096 |
| #define BUFSIZE_CHECK(CTX, BUF, SIZE, CURR, NEED) \ |
| if (CURR+NEED >= SIZE) { \ |
| BUF = ly_realloc(BUF, SIZE + BUFSIZE_STEP); \ |
| LY_CHECK_ERR_RET(!BUF, LOGMEM(CTX), LY_EMEM); \ |
| SIZE += BUFSIZE_STEP; \ |
| } |
| |
| struct ly_ctx *ctx = context->ctx; /* shortcut */ |
| const char *in = (*input), *start; |
| char *buf = NULL, delim; |
| size_t offset; /* read offset in input buffer */ |
| size_t len; /* length of the output string (write offset in output buffer) */ |
| size_t size; /* size of the output buffer */ |
| void *p; |
| uint32_t n; |
| size_t u, newlines; |
| bool empty_content = false; |
| LY_ERR rc; |
| |
| assert(context); |
| assert(context->status == LYXML_ELEM_CONTENT || context->status == LYXML_ATTR_CONTENT); |
| |
| if (in[0] == '\'') { |
| delim = '\''; |
| ++in; |
| } else if (in[0] == '"') { |
| delim = '"'; |
| ++in; |
| } else { |
| delim = '<'; |
| empty_content = true; |
| } |
| start = in; |
| |
| if (empty_content) { |
| /* only when processing element's content - try to ignore whitespaces used to format XML data |
| * before element's child or closing tag */ |
| for (offset = newlines = 0; in[offset] && is_xmlws(in[offset]); ++offset) { |
| if (in[offset] == '\n') { |
| ++newlines; |
| } |
| } |
| LY_CHECK_ERR_RET(!in[offset], LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_EOF), LY_EVALID); |
| context->line += newlines; |
| if (in[offset] == '<') { |
| (*input) = in + offset; |
| return LY_EINVAL; |
| } |
| } |
| /* init */ |
| offset = len = 0; |
| |
| if (0) { |
| getbuffer: |
| /* prepare output buffer */ |
| if (*buffer) { |
| buf = *buffer; |
| size = *buffer_size; |
| } else { |
| buf = malloc(BUFSIZE); |
| size = BUFSIZE; |
| LY_CHECK_ERR_RET(!buf, LOGMEM(ctx), LY_EMEM); |
| } |
| } |
| |
| /* parse */ |
| while (in[offset]) { |
| if (in[offset] == '&') { |
| if (!buf) { |
| /* it is necessary to modify the input, so we will need a dynamically allocated buffer */ |
| goto getbuffer; |
| } |
| |
| if (offset) { |
| /* store what we have so far */ |
| BUFSIZE_CHECK(ctx, buf, size, len, offset); |
| memcpy(&buf[len], in, offset); |
| len += offset; |
| in += offset; |
| offset = 0; |
| } |
| /* process reference */ |
| /* we will need 4 bytes at most since we support only the predefined |
| * (one-char) entities and character references */ |
| BUFSIZE_CHECK(ctx, buf, size, len, 4); |
| ++offset; |
| if (in[offset] != '#') { |
| /* entity reference - only predefined references are supported */ |
| if (!strncmp(&in[offset], "lt;", 3)) { |
| buf[len++] = '<'; |
| in += 4; /* < */ |
| } else if (!strncmp(&in[offset], "gt;", 3)) { |
| buf[len++] = '>'; |
| in += 4; /* > */ |
| } else if (!strncmp(&in[offset], "amp;", 4)) { |
| buf[len++] = '&'; |
| in += 5; /* & */ |
| } else if (!strncmp(&in[offset], "apos;", 5)) { |
| buf[len++] = '\''; |
| in += 6; /* ' */ |
| } else if (!strncmp(&in[offset], "quot;", 5)) { |
| buf[len++] = '\"'; |
| in += 6; /* " */ |
| } else { |
| LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, |
| "Entity reference \"%.*s\" not supported, only predefined references allowed.", 10, &in[offset-1]); |
| goto error; |
| } |
| offset = 0; |
| } else { |
| p = (void*)&in[offset - 1]; |
| /* character reference */ |
| ++offset; |
| if (isdigit(in[offset])) { |
| for (n = 0; isdigit(in[offset]); offset++) { |
| n = (10 * n) + (in[offset] - '0'); |
| } |
| } else if (in[offset] == 'x' && isxdigit(in[offset + 1])) { |
| for (n = 0, ++offset; isxdigit(in[offset]); offset++) { |
| if (isdigit(in[offset])) { |
| u = (in[offset] - '0'); |
| } else if (in[offset] > 'F') { |
| u = 10 + (in[offset] - 'a'); |
| } else { |
| u = 10 + (in[offset] - 'A'); |
| } |
| n = (16 * n) + u; |
| } |
| } else { |
| LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, "Invalid character reference \"%.*s\".", 12, p); |
| goto error; |
| |
| } |
| LY_CHECK_ERR_GOTO(in[offset] != ';', |
| LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INSTREXP, |
| LY_VCODE_INSTREXP_len(&in[offset]), &in[offset], ";"), |
| error); |
| ++offset; |
| rc = lyxml_pututf8(&buf[len], n, &u); |
| LY_CHECK_ERR_GOTO(rc, LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, |
| "Invalid character reference \"%.*s\" (0x%08x).", 12, p, n), |
| error); |
| len += u; |
| in += offset; |
| offset = 0; |
| } |
| } else if (in[offset] == delim) { |
| /* end of string */ |
| if (buf) { |
| if (len + offset >= size) { |
| buf = ly_realloc(buf, len + offset + 1); |
| LY_CHECK_ERR_RET(!buf, LOGMEM(ctx), LY_EMEM); |
| size = len + offset + 1; |
| } |
| memcpy(&buf[len], in, offset); |
| } |
| len += offset; |
| /* in case of element content, keep the leading <, |
| * for attribute's value move after the terminating quotation mark */ |
| if (context->status == LYXML_ELEM_CONTENT) { |
| in += offset; |
| } else { |
| in += offset + 1; |
| } |
| goto success; |
| } else { |
| /* log lines */ |
| if (in[offset] == '\n') { |
| ++context->line; |
| } |
| |
| /* continue */ |
| ++offset; |
| } |
| } |
| LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_EOF); |
| error: |
| if (!(*buffer)) { |
| free(buf); |
| } |
| return LY_EVALID; |
| |
| success: |
| if (buf) { |
| if (!(*buffer) && size != len + 1) { |
| /* not using provided buffer, so fit the allocated buffer to what we really have inside */ |
| p = realloc(buf, len + 1); |
| /* ignore realloc fail because we are reducing the buffer, |
| * so just return bigger buffer than needed */ |
| if (p) { |
| size = len + 1; |
| buf = p; |
| } |
| } |
| /* set terminating NULL byte */ |
| buf[len] = '\0'; |
| } |
| |
| context->status -= 1; |
| (*input) = in; |
| if (buf) { |
| (*buffer) = buf; |
| (*buffer_size) = size; |
| (*output) = buf; |
| (*dynamic) = 1; |
| } else { |
| (*output) = (char*)start; |
| (*dynamic) = 0; |
| } |
| (*length) = len; |
| |
| return LY_SUCCESS; |
| |
| #undef BUFSIZE |
| #undef BUFSIZE_STEP |
| #undef BUFSIZE_CHECK |
| } |
| |
| LY_ERR |
| lyxml_get_attribute(struct lyxml_context *context, const char **input, |
| const char **prefix, size_t *prefix_len, const char **name, size_t *name_len) |
| { |
| struct ly_ctx *ctx = context->ctx; /* shortcut */ |
| const char *in = (*input); |
| const char *id; |
| const char *endtag; |
| LY_ERR rc; |
| unsigned int c; |
| size_t endtag_len; |
| |
| /* initialize output variables */ |
| (*prefix) = (*name) = NULL; |
| (*prefix_len) = (*name_len) = 0; |
| |
| /* skip initial whitespaces */ |
| ign_xmlws(context, in); |
| |
| if (in[0] == '\0') { |
| /* EOF - not expected at this place */ |
| return LY_EINVAL; |
| } else if (in[0] == '>') { |
| /* element terminated by > - termination of the opening tag */ |
| context->status = LYXML_ELEM_CONTENT; |
| ++in; |
| goto success; |
| } else if (in[0] == '/' && in[1] == '>') { |
| /* element terminated by /> - termination of an empty element */ |
| context->status = LYXML_ELEMENT; |
| in += 2; |
| goto success; |
| } |
| |
| /* remember the identifier start before checking its format */ |
| id = in; |
| rc = lyxml_check_qname(context, &in, &c, &endtag_len); |
| LY_CHECK_RET(rc); |
| if (c == ':') { |
| /* we have prefixed identifier */ |
| endtag = in - endtag_len; |
| |
| rc = lyxml_check_qname(context, &in, &c, &endtag_len); |
| LY_CHECK_RET(rc); |
| |
| (*prefix) = id; |
| (*prefix_len) = endtag - id; |
| id = endtag + 1; |
| } |
| if (!is_xmlws(c) && c != '=') { |
| in = in - endtag_len; |
| LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INSTREXP, LY_VCODE_INSTREXP_len(in), in, "whitespace or '='"); |
| return LY_EVALID; |
| } |
| in = in - endtag_len; |
| (*name) = id; |
| (*name_len) = in - id; |
| |
| /* eat '=' and stop at the value beginning */ |
| ign_xmlws(context, in); |
| if (in[0] != '=') { |
| LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INSTREXP, LY_VCODE_INSTREXP_len(in), in, "'='"); |
| return LY_EVALID; |
| } |
| ++in; |
| ign_xmlws(context, in); |
| if (in[0] != '\'' && in[0] != '"') { |
| LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INSTREXP, |
| LY_VCODE_INSTREXP_len(in), in, "either single or double quotation mark"); |
| return LY_EVALID; |
| } |
| context->status = LYXML_ATTR_CONTENT; |
| |
| success: |
| /* move caller's input */ |
| (*input) = in; |
| return LY_SUCCESS; |
| } |
| |
| LY_ERR |
| lyxml_get_element(struct lyxml_context *context, const char **input, |
| const char **prefix, size_t *prefix_len, const char **name, size_t *name_len) |
| { |
| struct ly_ctx *ctx = context->ctx; /* shortcut */ |
| const char *in = (*input); |
| const char *endtag; |
| const char *sectname; |
| const char *id; |
| size_t endtag_len, newlines; |
| bool loop = true, closing = false; |
| unsigned int c; |
| LY_ERR rc; |
| struct lyxml_elem *e; |
| |
| /* initialize output variables */ |
| (*prefix) = (*name) = NULL; |
| (*prefix_len) = (*name_len) = 0; |
| |
| while (loop) { |
| ign_xmlws(context, in); |
| |
| if (in[0] == '\0') { |
| /* EOF */ |
| context->status = LYXML_END; |
| goto success; |
| } else if (in[0] != '<') { |
| return LY_EINVAL; |
| } |
| move_input(context, in, 1); |
| |
| if (in[0] == '!') { |
| move_input(context, in, 1); |
| /* sections to ignore */ |
| if (!strncmp(in, "--", 2)) { |
| /* comment */ |
| move_input(context, in, 2); |
| sectname = "Comment"; |
| endtag = "-->"; |
| endtag_len = 3; |
| } else if (!strncmp(in, "[CDATA[", 7)) { |
| /* CDATA section */ |
| move_input(context, in, 7); |
| sectname = "CData"; |
| endtag = "]]>"; |
| endtag_len = 3; |
| } else if (!strncmp(in, "DOCTYPE", 7)) { |
| /* Document type declaration - not supported */ |
| LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_NSUPP, "Document Type Declaration"); |
| return LY_EVALID; |
| } |
| in = ign_todelim(in, endtag, endtag_len, &newlines); |
| LY_CHECK_ERR_RET(!in, LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_NTERM, sectname), LY_EVALID); |
| context->line += newlines; |
| in += endtag_len; |
| } else if (in[0] == '?') { |
| in = ign_todelim(in, "?>", 2, &newlines); |
| LY_CHECK_ERR_RET(!in, LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_NTERM, "Declaration"), LY_EVALID); |
| context->line += newlines; |
| in += 2; |
| } else if (in[0] == '/') { |
| /* closing element */ |
| closing = true; |
| ++in; |
| goto element; |
| } else { |
| /* element */ |
| element: |
| ign_xmlws(context, in); |
| LY_CHECK_ERR_RET(!in[0], LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_EOF), LY_EVALID); |
| |
| /* remember the identifier start before checking its format */ |
| id = in; |
| rc = lyxml_check_qname(context, &in, &c, &endtag_len); |
| LY_CHECK_RET(rc); |
| if (c == ':') { |
| /* we have prefixed identifier */ |
| endtag = in - endtag_len; |
| |
| rc = lyxml_check_qname(context, &in, &c, &endtag_len); |
| LY_CHECK_RET(rc); |
| |
| (*prefix) = id; |
| (*prefix_len) = endtag - id; |
| id = endtag + 1; |
| } |
| if (!is_xmlws(c) && c != '/' && c != '>') { |
| in = in - endtag_len; |
| LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_INSTREXP, LY_VCODE_INSTREXP_len(in), in, |
| "whitespace or element tag termination ('>' or '/>'"); |
| return LY_EVALID; |
| } |
| (*name) = id; |
| (*name_len) = in - endtag_len - id; |
| |
| if (is_xmlws(c)) { |
| /* go to the next meaningful input */ |
| ign_xmlws(context, in); |
| LY_CHECK_ERR_RET(!in[0], LOGVAL(ctx, LY_VLOG_LINE, &context->line, LY_VCODE_EOF), LY_EVALID); |
| c = in[0]; |
| ++in; |
| endtag_len = 1; |
| } |
| |
| if (closing) { |
| /* match opening and closing element tags */ |
| LY_CHECK_ERR_RET( |
| !context->elements.count, |
| LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, "Opening and closing elements tag missmatch (\"%.*s\").", name_len, *name), |
| LY_EVALID); |
| e = (struct lyxml_elem*)context->elements.objs[context->elements.count - 1]; |
| LY_CHECK_ERR_RET(e->prefix_len != *prefix_len || e->name_len != *name_len |
| || (*prefix_len && strncmp(*prefix, e->prefix, e->prefix_len)) || strncmp(*name, e->name, e->name_len), |
| LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, "Opening and closing elements tag missmatch (\"%.*s\").", name_len, *name), |
| LY_EVALID); |
| /* opening and closing element tags matches, remove record from the opening tags list */ |
| free(e); |
| --context->elements.count; |
| /* do not return element information to announce closing element being currently processed */ |
| *name = *prefix = NULL; |
| *name_len = *prefix_len = 0; |
| |
| if (c == '>') { |
| /* end of closing element */ |
| context->status = LYXML_ELEMENT; |
| } else { |
| in -= endtag_len; |
| LOGVAL(ctx, LY_VLOG_LINE, &context->line, LYVE_SYNTAX, "Unexpected data \"%.*s\" in closing element tag.", |
| LY_VCODE_INSTREXP_len(in), in); |
| return LY_EVALID; |
| } |
| } else { |
| if (c == '>') { |
| /* end of opening element */ |
| context->status = LYXML_ELEM_CONTENT; |
| } else if (c == '/' && in[0] == '>') { |
| /* empty element closing */ |
| context->status = LYXML_ELEMENT; |
| ++in; |
| } else { |
| /* attribute */ |
| context->status = LYXML_ATTRIBUTE; |
| in -= endtag_len; |
| } |
| |
| if (context->status != LYXML_ELEMENT) { |
| /* store element opening tag information */ |
| e = malloc(sizeof *e); |
| LY_CHECK_ERR_RET(!e, LOGMEM(ctx), LY_EMEM); |
| e->name = *name; |
| e->prefix = *prefix; |
| e->name_len = *name_len; |
| e->prefix_len = *prefix_len; |
| ly_set_add(&context->elements, e, LY_SET_OPT_USEASLIST); |
| } |
| } |
| loop = false; |
| } |
| } |
| |
| success: |
| /* move caller's input */ |
| (*input) = in; |
| return LY_SUCCESS; |
| } |
| |
| LY_ERR |
| lyxml_ns_add(struct lyxml_context *context, const char *element_name, const char *prefix, size_t prefix_len, char *uri) |
| { |
| struct lyxml_ns *ns; |
| |
| ns = malloc(sizeof *ns); |
| LY_CHECK_ERR_RET(!ns, LOGMEM(context->ctx), LY_EMEM); |
| |
| ns->element = element_name; |
| ns->uri = uri; |
| if (prefix) { |
| ns->prefix = strndup(prefix, prefix_len); |
| LY_CHECK_ERR_RET(!ns->prefix, LOGMEM(context->ctx); free(ns), LY_EMEM); |
| } else { |
| ns->prefix = NULL; |
| } |
| |
| LY_CHECK_ERR_RET(ly_set_add(&context->ns, ns, LY_SET_OPT_USEASLIST) == -1, free(ns->prefix), LY_EMEM); |
| return LY_SUCCESS; |
| } |
| |
| const struct lyxml_ns * |
| lyxml_ns_get(struct lyxml_context *context, const char *prefix, size_t prefix_len) |
| { |
| unsigned int u; |
| struct lyxml_ns *ns; |
| |
| for (u = context->ns.count - 1; u + 1 > 0; --u) { |
| ns = (struct lyxml_ns *)context->ns.objs[u]; |
| if (prefix) { |
| if (!strncmp(prefix, ns->prefix, prefix_len) && ns->prefix[prefix_len] == '\0') { |
| return ns; |
| } |
| } else if (!ns->prefix) { |
| /* default namespace */ |
| return ns; |
| } |
| } |
| |
| return NULL; |
| } |
| |
| LY_ERR |
| lyxml_ns_rm(struct lyxml_context *context, const char *element_name) |
| { |
| unsigned int u; |
| |
| for (u = context->ns.count - 1; u + 1 > 0; --u) { |
| if (((struct lyxml_ns *)context->ns.objs[u])->element != element_name) { |
| /* we are done, the namespaces from a single element are supposed to be together */ |
| break; |
| } |
| /* remove the ns structure */ |
| free(((struct lyxml_ns *)context->ns.objs[u])->prefix); |
| free(((struct lyxml_ns *)context->ns.objs[u])->uri); |
| free(context->ns.objs[u]); |
| --context->ns.count; |
| } |
| |
| if (!context->ns.count) { |
| /* cleanup the context's namespaces storage */ |
| ly_set_erase(&context->ns, NULL); |
| } |
| |
| return LY_SUCCESS; |
| } |
| |
| void |
| lyxml_context_clear(struct lyxml_context *context) |
| { |
| unsigned int u; |
| |
| ly_set_erase(&context->elements, free); |
| for (u = context->ns.count - 1; u + 1 > 0; --u) { |
| /* remove the ns structure */ |
| free(((struct lyxml_ns *)context->ns.objs[u])->prefix); |
| free(((struct lyxml_ns *)context->ns.objs[u])->uri); |
| free(context->ns.objs[u]); |
| } |
| ly_set_erase(&context->ns, NULL); |
| } |