blob: 47b0acc183c68d5abdc5f3bd72153ec392a808c0 [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
2 * @file printer_xml.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @author Radek Krejci <rkrejci@cesnet.cz>
5 * @brief XML printer for libyang data structure
6 *
Michal Vasko78041d12022-11-29 14:11:07 +01007 * Copyright (c) 2015 - 2022 CESNET, z.s.p.o.
Radek Krejcie7b95092019-05-15 11:03:07 +02008 *
9 * This source code is licensed under BSD 3-Clause License (the "License").
10 * You may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
15
Radek Krejci535ea9f2020-05-29 16:01:05 +020016#include <assert.h>
17#include <stdint.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020018#include <stdlib.h>
19#include <string.h>
20
Radek Krejci535ea9f2020-05-29 16:01:05 +020021#include "common.h"
22#include "context.h"
23#include "dict.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020024#include "log.h"
Radek Krejci47fab892020-11-05 17:02:41 +010025#include "out.h"
26#include "out_internal.h"
Radek Krejci7931b192020-06-25 17:05:03 +020027#include "parser_data.h"
Michal Vaskob4750962022-10-06 15:33:35 +020028#include "plugins_exts/metadata.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020029#include "plugins_types.h"
30#include "printer_data.h"
31#include "printer_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020032#include "set.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020033#include "tree.h"
Radek Krejci47fab892020-11-05 17:02:41 +010034#include "tree_data.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020035#include "tree_schema.h"
36#include "xml.h"
37
38/**
39 * @brief XML printer context.
40 */
41struct xmlpr_ctx {
Radek Krejci1deb5be2020-08-26 16:43:36 +020042 struct ly_out *out; /**< output specification */
43 uint16_t level; /**< current indentation level: 0 - no formatting, >= 1 indentation levels */
44 uint32_t options; /**< [Data printer flags](@ref dataprinterflags) */
Michal Vasko52927e22020-03-16 17:26:14 +010045 const struct ly_ctx *ctx; /**< libyang context */
Radek Krejci1deb5be2020-08-26 16:43:36 +020046 struct ly_set prefix; /**< printed namespace prefixes */
47 struct ly_set ns; /**< printed namespaces */
Radek Krejcie7b95092019-05-15 11:03:07 +020048};
49
Michal Vasko52927e22020-03-16 17:26:14 +010050#define LYXML_PREFIX_REQUIRED 0x01 /**< The prefix is not just a suggestion but a requirement. */
Radek Krejci1798aae2020-07-14 13:26:06 +020051#define LYXML_PREFIX_DEFAULT 0x02 /**< The namespace is required to be a default (without prefix) */
Radek Krejcie7b95092019-05-15 11:03:07 +020052
53/**
Michal Vasko52927e22020-03-16 17:26:14 +010054 * @brief Print a namespace if not already printed.
55 *
56 * @param[in] ctx XML printer context.
57 * @param[in] ns Namespace to print, expected to be in dictionary.
58 * @param[in] new_prefix Suggested new prefix, NULL for a default namespace without prefix. Stored in the dictionary.
59 * @param[in] prefix_opts Prefix options changing the meaning of parameters.
60 * @return Printed prefix of the namespace to use.
Radek Krejcie7b95092019-05-15 11:03:07 +020061 */
Michal Vasko52927e22020-03-16 17:26:14 +010062static const char *
Michal Vasko61ad1ff2022-02-10 15:48:39 +010063xml_print_ns(struct xmlpr_ctx *pctx, const char *ns, const char *new_prefix, uint32_t prefix_opts)
Radek Krejcie7b95092019-05-15 11:03:07 +020064{
Radek Krejciba03a5a2020-08-27 14:40:41 +020065 uint32_t i;
Michal Vasko6f4cbb62020-02-28 11:15:47 +010066
Michal Vasko61ad1ff2022-02-10 15:48:39 +010067 for (i = pctx->ns.count; i > 0; --i) {
Michal Vasko52927e22020-03-16 17:26:14 +010068 if (!new_prefix) {
69 /* find default namespace */
Michal Vasko61ad1ff2022-02-10 15:48:39 +010070 if (!pctx->prefix.objs[i - 1]) {
71 if (!strcmp(pctx->ns.objs[i - 1], ns)) {
Radek Krejciba03a5a2020-08-27 14:40:41 +020072 /* matching default namespace */
Michal Vasko61ad1ff2022-02-10 15:48:39 +010073 return pctx->prefix.objs[i - 1];
Radek Krejcie7b95092019-05-15 11:03:07 +020074 }
Radek Krejciba03a5a2020-08-27 14:40:41 +020075 /* not matching default namespace */
Michal Vasko52927e22020-03-16 17:26:14 +010076 break;
77 }
78 } else {
79 /* find prefixed namespace */
Michal Vasko61ad1ff2022-02-10 15:48:39 +010080 if (!strcmp(pctx->ns.objs[i - 1], ns)) {
81 if (!pctx->prefix.objs[i - 1]) {
Michal Vasko52927e22020-03-16 17:26:14 +010082 /* default namespace is not interesting */
83 continue;
84 }
85
Michal Vasko61ad1ff2022-02-10 15:48:39 +010086 if (!strcmp(pctx->prefix.objs[i - 1], new_prefix) || !(prefix_opts & LYXML_PREFIX_REQUIRED)) {
Michal Vasko52927e22020-03-16 17:26:14 +010087 /* the same prefix or can be any */
Michal Vasko61ad1ff2022-02-10 15:48:39 +010088 return pctx->prefix.objs[i - 1];
Michal Vasko52927e22020-03-16 17:26:14 +010089 }
90 }
Radek Krejcie7b95092019-05-15 11:03:07 +020091 }
Radek Krejcie7b95092019-05-15 11:03:07 +020092 }
Radek Krejci28681fa2019-09-06 13:08:45 +020093
Radek Krejciba03a5a2020-08-27 14:40:41 +020094 /* suitable namespace not found, must be printed */
Michal Vasko61ad1ff2022-02-10 15:48:39 +010095 ly_print_(pctx->out, " xmlns%s%s=\"%s\"", new_prefix ? ":" : "", new_prefix ? new_prefix : "", ns);
Radek Krejcie7b95092019-05-15 11:03:07 +020096
Radek Krejciba03a5a2020-08-27 14:40:41 +020097 /* and added into namespaces */
98 if (new_prefix) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +010099 LY_CHECK_RET(lydict_insert(pctx->ctx, new_prefix, 0, &new_prefix), NULL);
Radek Krejcie7b95092019-05-15 11:03:07 +0200100 }
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100101 LY_CHECK_RET(ly_set_add(&pctx->prefix, (void *)new_prefix, 1, NULL), NULL);
102 LY_CHECK_RET(ly_set_add(&pctx->ns, (void *)ns, 1, &i), NULL);
Michal Vasko52927e22020-03-16 17:26:14 +0100103
104 /* return it */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100105 return pctx->prefix.objs[i];
Radek Krejci28681fa2019-09-06 13:08:45 +0200106}
107
Michal Vasko22df3f02020-08-24 13:29:22 +0200108static const char *
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100109xml_print_ns_opaq(struct xmlpr_ctx *pctx, LY_VALUE_FORMAT format, const struct ly_opaq_name *name, uint32_t prefix_opts)
Radek Krejci1798aae2020-07-14 13:26:06 +0200110{
Radek Krejci1798aae2020-07-14 13:26:06 +0200111 switch (format) {
Radek Krejci8df109d2021-04-23 12:19:08 +0200112 case LY_VALUE_XML:
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100113 return xml_print_ns(pctx, name->module_ns, (prefix_opts & LYXML_PREFIX_DEFAULT) ? NULL : name->prefix, prefix_opts);
Radek Krejci1798aae2020-07-14 13:26:06 +0200114 break;
Radek Krejci8df109d2021-04-23 12:19:08 +0200115 case LY_VALUE_JSON:
Michal Vaskoad92b672020-11-12 13:11:31 +0100116 if (name->module_name) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100117 const struct lys_module *mod = ly_ctx_get_module_latest(pctx->ctx, name->module_name);
Michal Vasko26bbb272022-08-02 14:54:33 +0200118
Radek Krejci1798aae2020-07-14 13:26:06 +0200119 if (mod) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100120 return xml_print_ns(pctx, mod->ns, (prefix_opts & LYXML_PREFIX_DEFAULT) ? NULL : name->prefix, prefix_opts);
Radek Krejci1798aae2020-07-14 13:26:06 +0200121 }
122 }
123 break;
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100124 default:
Radek Krejci1798aae2020-07-14 13:26:06 +0200125 /* cannot be created */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100126 LOGINT(pctx->ctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200127 }
128
129 return NULL;
130}
131
Radek Krejciec9ad602021-01-04 10:46:30 +0100132/**
133 * @brief Print prefix data.
134 *
135 * @param[in] ctx XML printer context.
Radek Krejci8df109d2021-04-23 12:19:08 +0200136 * @param[in] format Value prefix format, only ::LY_VALUE_XML supported.
137 * @param[in] prefix_data Format-specific data for resolving any prefixes (see ::ly_resolve_prefix).
Radek Krejciec9ad602021-01-04 10:46:30 +0100138 * @param[in] prefix_opts Prefix options changing the meaning of parameters.
139 * @return LY_ERR value.
140 */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100141static void
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100142xml_print_ns_prefix_data(struct xmlpr_ctx *pctx, LY_VALUE_FORMAT format, void *prefix_data, uint32_t prefix_opts)
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100143{
144 const struct ly_set *set;
145 const struct lyxml_ns *ns;
146 uint32_t i;
147
148 switch (format) {
Radek Krejci8df109d2021-04-23 12:19:08 +0200149 case LY_VALUE_XML:
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100150 set = prefix_data;
151 for (i = 0; i < set->count; ++i) {
152 ns = set->objs[i];
Michal Vasko294e7f02022-02-28 13:59:00 +0100153 if (!ns->prefix) {
154 /* default namespace is not for the element */
155 continue;
156 }
157
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100158 xml_print_ns(pctx, ns->uri, (prefix_opts & LYXML_PREFIX_DEFAULT) ? NULL : ns->prefix, prefix_opts);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100159 }
160 break;
161 default:
162 /* cannot be created */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100163 LOGINT(pctx->ctx);
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100164 }
165}
166
Radek Krejci28681fa2019-09-06 13:08:45 +0200167/**
Michal Vasko4da82072022-05-13 11:13:49 +0200168 * @brief Print metadata of a node.
169 *
170 * @param[in] pctx XML printer context.
171 * @param[in] node Data node with metadata.
Radek Krejcie7b95092019-05-15 11:03:07 +0200172 */
Michal Vasko52927e22020-03-16 17:26:14 +0100173static void
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100174xml_print_meta(struct xmlpr_ctx *pctx, const struct lyd_node *node)
Radek Krejcie7b95092019-05-15 11:03:07 +0200175{
Michal Vasko9f96a052020-03-10 09:41:45 +0100176 struct lyd_meta *meta;
Michal Vasko52927e22020-03-16 17:26:14 +0100177 const struct lys_module *mod;
178 struct ly_set ns_list = {0};
Michal Vasko45791ad2021-06-17 08:45:03 +0200179 LY_ARRAY_COUNT_TYPE u;
180 ly_bool dynamic, filter_attrs = 0;
Michal Vasko32f067f2023-06-01 12:31:14 +0200181 const char *value;
182 uint32_t i;
Radek Krejcie7b95092019-05-15 11:03:07 +0200183
Radek Krejcie7b95092019-05-15 11:03:07 +0200184 /* with-defaults */
Michal Vasko6f4cbb62020-02-28 11:15:47 +0100185 if (node->schema->nodetype & LYD_NODE_TERM) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100186 if (((node->flags & LYD_DEFAULT) && (pctx->options & (LYD_PRINT_WD_ALL_TAG | LYD_PRINT_WD_IMPL_TAG))) ||
187 ((pctx->options & LYD_PRINT_WD_ALL_TAG) && lyd_is_default(node))) {
Michal Vasko52927e22020-03-16 17:26:14 +0100188 /* we have implicit OR explicit default node, print attribute only if context include with-defaults schema */
Radek Krejcic2b49d82021-04-26 08:05:57 +0200189 mod = ly_ctx_get_module_latest(LYD_CTX(node), "ietf-netconf-with-defaults");
Michal Vasko52927e22020-03-16 17:26:14 +0100190 if (mod) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100191 ly_print_(pctx->out, " %s:default=\"true\"", xml_print_ns(pctx, mod->ns, mod->prefix, 0));
Radek Krejcie7b95092019-05-15 11:03:07 +0200192 }
193 }
194 }
Michal Vasko45791ad2021-06-17 08:45:03 +0200195
196 /* check for NETCONF filter unqualified attributes */
Michal Vasko1b2a3f42022-12-20 09:38:28 +0100197 if (!strcmp(node->schema->module->name, "notifications")) {
198 filter_attrs = 1;
199 } else {
200 LY_ARRAY_FOR(node->schema->exts, u) {
201 if (!strcmp(node->schema->exts[u].def->name, "get-filter-element-attributes") &&
202 !strcmp(node->schema->exts[u].def->module->name, "ietf-netconf")) {
203 filter_attrs = 1;
204 break;
205 }
Michal Vasko45791ad2021-06-17 08:45:03 +0200206 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200207 }
Michal Vasko45791ad2021-06-17 08:45:03 +0200208
Michal Vasko9f96a052020-03-10 09:41:45 +0100209 for (meta = node->meta; meta; meta = meta->next) {
Michal Vasko32f067f2023-06-01 12:31:14 +0200210 /* store the module of the default namespace, NULL because there is none */
211 ly_set_add(&ns_list, NULL, 0, NULL);
212
213 /* print the value */
214 value = meta->value.realtype->plugin->print(LYD_CTX(node), &meta->value, LY_VALUE_XML, &ns_list, &dynamic, NULL);
Radek Krejci28681fa2019-09-06 13:08:45 +0200215
Michal Vasko52927e22020-03-16 17:26:14 +0100216 /* print namespaces connected with the value's prefixes */
Michal Vasko32f067f2023-06-01 12:31:14 +0200217 for (i = 1; i < ns_list.count; ++i) {
Michal Vasko45791ad2021-06-17 08:45:03 +0200218 mod = ns_list.objs[i];
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100219 xml_print_ns(pctx, mod->ns, mod->prefix, 1);
Radek Krejci28681fa2019-09-06 13:08:45 +0200220 }
221 ly_set_erase(&ns_list, NULL);
222
Radek Krejci0f969882020-08-21 16:56:47 +0200223 mod = meta->annotation->module;
Michal Vasko45791ad2021-06-17 08:45:03 +0200224 if (filter_attrs && !strcmp(mod->name, "ietf-netconf") && (!strcmp(meta->name, "type") ||
225 !strcmp(meta->name, "select"))) {
226 /* print special NETCONF filter unqualified attributes */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100227 ly_print_(pctx->out, " %s=\"", meta->name);
Michal Vasko45791ad2021-06-17 08:45:03 +0200228 } else {
229 /* print the metadata with its namespace */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100230 ly_print_(pctx->out, " %s:%s=\"", xml_print_ns(pctx, mod->ns, mod->prefix, 1), meta->name);
Michal Vasko45791ad2021-06-17 08:45:03 +0200231 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200232
Michal Vasko52927e22020-03-16 17:26:14 +0100233 /* print metadata value */
Radek Krejci28681fa2019-09-06 13:08:45 +0200234 if (value && value[0]) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100235 lyxml_dump_text(pctx->out, value, 1);
Radek Krejcie7b95092019-05-15 11:03:07 +0200236 }
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100237 ly_print_(pctx->out, "\"");
Radek Krejci28681fa2019-09-06 13:08:45 +0200238 if (dynamic) {
Michal Vasko52927e22020-03-16 17:26:14 +0100239 free((void *)value);
Radek Krejcie7b95092019-05-15 11:03:07 +0200240 }
241 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200242}
243
244/**
245 * @brief Print generic XML element despite of the data node type.
246 *
247 * Prints the element name, attributes and necessary namespaces.
248 *
249 * @param[in] ctx XML printer context.
250 * @param[in] node Data node to be printed.
Radek Krejcie7b95092019-05-15 11:03:07 +0200251 */
Michal Vasko52927e22020-03-16 17:26:14 +0100252static void
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100253xml_print_node_open(struct xmlpr_ctx *pctx, const struct lyd_node *node)
Radek Krejcie7b95092019-05-15 11:03:07 +0200254{
Michal Vasko52927e22020-03-16 17:26:14 +0100255 /* print node name */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100256 ly_print_(pctx->out, "%*s<%s", INDENT, node->schema->name);
Michal Vasko52927e22020-03-16 17:26:14 +0100257
258 /* print default namespace */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100259 xml_print_ns(pctx, node->schema->module->ns, NULL, 0);
Michal Vasko52927e22020-03-16 17:26:14 +0100260
261 /* print metadata */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100262 xml_print_meta(pctx, node);
Michal Vasko52927e22020-03-16 17:26:14 +0100263}
264
265static LY_ERR
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100266xml_print_attr(struct xmlpr_ctx *pctx, const struct lyd_node_opaq *node)
Michal Vasko52927e22020-03-16 17:26:14 +0100267{
Radek Krejci5536d282020-08-04 23:27:44 +0200268 const struct lyd_attr *attr;
Michal Vasko52927e22020-03-16 17:26:14 +0100269 const char *pref;
Michal Vasko52927e22020-03-16 17:26:14 +0100270
271 LY_LIST_FOR(node->attr, attr) {
272 pref = NULL;
Michal Vaskoad92b672020-11-12 13:11:31 +0100273 if (attr->name.prefix) {
Michal Vasko52927e22020-03-16 17:26:14 +0100274 /* print attribute namespace */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100275 pref = xml_print_ns_opaq(pctx, attr->format, &attr->name, 0);
Michal Vasko52927e22020-03-16 17:26:14 +0100276 }
277
278 /* print namespaces connected with the value's prefixes */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100279 if (attr->val_prefix_data) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100280 xml_print_ns_prefix_data(pctx, attr->format, attr->val_prefix_data, LYXML_PREFIX_REQUIRED);
Michal Vasko52927e22020-03-16 17:26:14 +0100281 }
282
283 /* print the attribute with its prefix and value */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100284 ly_print_(pctx->out, " %s%s%s=\"", pref ? pref : "", pref ? ":" : "", attr->name.name);
285 lyxml_dump_text(pctx->out, attr->value, 1);
286 ly_print_(pctx->out, "\""); /* print attribute value terminator */
Radek IÅ¡a52c4ac62021-03-08 09:37:32 +0100287
Radek Krejcie7b95092019-05-15 11:03:07 +0200288 }
289
Michal Vasko52927e22020-03-16 17:26:14 +0100290 return LY_SUCCESS;
291}
292
293static LY_ERR
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100294xml_print_opaq_open(struct xmlpr_ctx *pctx, const struct lyd_node_opaq *node)
Michal Vasko52927e22020-03-16 17:26:14 +0100295{
296 /* print node name */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100297 ly_print_(pctx->out, "%*s<%s", INDENT, node->name.name);
Michal Vasko52927e22020-03-16 17:26:14 +0100298
Michal Vaskoea0f96c2022-12-20 08:34:39 +0100299 if (node->name.prefix || node->name.module_ns) {
300 /* print default namespace */
301 xml_print_ns_opaq(pctx, node->format, &node->name, LYXML_PREFIX_DEFAULT);
302 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200303
Michal Vasko52927e22020-03-16 17:26:14 +0100304 /* print attributes */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100305 LY_CHECK_RET(xml_print_attr(pctx, node));
Radek Krejcie7b95092019-05-15 11:03:07 +0200306
307 return LY_SUCCESS;
308}
309
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100310static LY_ERR xml_print_node(struct xmlpr_ctx *pctx, const struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +0200311
312/**
313 * @brief Print XML element representing lyd_node_term.
314 *
315 * @param[in] ctx XML printer context.
316 * @param[in] node Data node to be printed.
Michal Vasko569f2f42021-08-04 11:31:08 +0200317 * @return LY_ERR value.
Radek Krejcie7b95092019-05-15 11:03:07 +0200318 */
Michal Vasko569f2f42021-08-04 11:31:08 +0200319static LY_ERR
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100320xml_print_term(struct xmlpr_ctx *pctx, const struct lyd_node_term *node)
Radek Krejcie7b95092019-05-15 11:03:07 +0200321{
Michal Vasko32f067f2023-06-01 12:31:14 +0200322 LY_ERR rc = LY_SUCCESS;
Radek Krejcia1911222019-07-22 17:24:50 +0200323 struct ly_set ns_list = {0};
Michal Vasko32f067f2023-06-01 12:31:14 +0200324 ly_bool dynamic = 0;
325 const char *value = NULL;
326 const struct lys_module *mod;
327 uint32_t i;
Radek Krejci28681fa2019-09-06 13:08:45 +0200328
Michal Vasko32f067f2023-06-01 12:31:14 +0200329 /* store the module of the default namespace */
330 if ((rc = ly_set_add(&ns_list, node->schema->module, 0, NULL))) {
331 LOGMEM(pctx->ctx);
332 goto cleanup;
333 }
334
335 /* print the value */
Radek Krejci224d4b42021-04-23 13:54:59 +0200336 value = ((struct lysc_node_leaf *)node->schema)->type->plugin->print(LYD_CTX(node), &node->value, LY_VALUE_XML,
337 &ns_list, &dynamic, NULL);
Michal Vasko32f067f2023-06-01 12:31:14 +0200338 LY_CHECK_ERR_GOTO(!value, rc = LY_EINVAL, cleanup);
339
340 /* print node opening */
341 xml_print_node_open(pctx, &node->node);
Radek Krejcie7b95092019-05-15 11:03:07 +0200342
Radek Krejcia1911222019-07-22 17:24:50 +0200343 /* print namespaces connected with the values's prefixes */
Michal Vasko32f067f2023-06-01 12:31:14 +0200344 for (i = 1; i < ns_list.count; ++i) {
345 mod = ns_list.objs[i];
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100346 ly_print_(pctx->out, " xmlns:%s=\"%s\"", mod->prefix, mod->ns);
Radek Krejcie7b95092019-05-15 11:03:07 +0200347 }
348
Michal Vasko569f2f42021-08-04 11:31:08 +0200349 if (!value[0]) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100350 ly_print_(pctx->out, "/>%s", DO_FORMAT ? "\n" : "");
Radek Krejcie7b95092019-05-15 11:03:07 +0200351 } else {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100352 ly_print_(pctx->out, ">");
353 lyxml_dump_text(pctx->out, value, 0);
354 ly_print_(pctx->out, "</%s>%s", node->schema->name, DO_FORMAT ? "\n" : "");
Radek Krejcie7b95092019-05-15 11:03:07 +0200355 }
Michal Vasko32f067f2023-06-01 12:31:14 +0200356
357cleanup:
358 ly_set_erase(&ns_list, NULL);
Radek Krejcia1911222019-07-22 17:24:50 +0200359 if (dynamic) {
Michal Vasko6f4cbb62020-02-28 11:15:47 +0100360 free((void *)value);
Radek Krejcia1911222019-07-22 17:24:50 +0200361 }
Michal Vasko32f067f2023-06-01 12:31:14 +0200362 return rc;
Radek Krejcie7b95092019-05-15 11:03:07 +0200363}
364
365/**
366 * @brief Print XML element representing lyd_node_inner.
367 *
368 * @param[in] ctx XML printer context.
369 * @param[in] node Data node to be printed.
370 * @return LY_ERR value.
371 */
372static LY_ERR
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100373xml_print_inner(struct xmlpr_ctx *pctx, const struct lyd_node_inner *node)
Radek Krejcie7b95092019-05-15 11:03:07 +0200374{
375 LY_ERR ret;
376 struct lyd_node *child;
377
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100378 xml_print_node_open(pctx, &node->node);
Radek Krejcie7b95092019-05-15 11:03:07 +0200379
Michal Vasko630d9892020-12-08 17:11:08 +0100380 LY_LIST_FOR(node->child, child) {
Michal Vasko8db584d2022-03-30 13:42:48 +0200381 if (lyd_node_should_print(child, pctx->options)) {
Michal Vasko630d9892020-12-08 17:11:08 +0100382 break;
383 }
384 }
385 if (!child) {
386 /* there are no children that will be printed */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100387 ly_print_(pctx->out, "/>%s", DO_FORMAT ? "\n" : "");
Radek Krejcie7b95092019-05-15 11:03:07 +0200388 return LY_SUCCESS;
389 }
390
391 /* children */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100392 ly_print_(pctx->out, ">%s", DO_FORMAT ? "\n" : "");
Radek Krejcie7b95092019-05-15 11:03:07 +0200393
394 LEVEL_INC;
395 LY_LIST_FOR(node->child, child) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100396 ret = xml_print_node(pctx, child);
Radek Krejcie7b95092019-05-15 11:03:07 +0200397 LY_CHECK_ERR_RET(ret, LEVEL_DEC, ret);
398 }
399 LEVEL_DEC;
400
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100401 ly_print_(pctx->out, "%*s</%s>%s", INDENT, node->schema->name, DO_FORMAT ? "\n" : "");
Radek Krejcie7b95092019-05-15 11:03:07 +0200402
403 return LY_SUCCESS;
404}
405
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200406static LY_ERR
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100407xml_print_anydata(struct xmlpr_ctx *pctx, const struct lyd_node_any *node)
Radek Krejcie7b95092019-05-15 11:03:07 +0200408{
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200409 struct lyd_node_any *any = (struct lyd_node_any *)node;
Radek Krejcie7b95092019-05-15 11:03:07 +0200410 struct lyd_node *iter;
Michal Vaskod4a6d042022-12-08 08:34:29 +0100411 uint32_t prev_opts, temp_lo = 0;
Michal Vasko52927e22020-03-16 17:26:14 +0100412 LY_ERR ret;
Radek Krejcie7b95092019-05-15 11:03:07 +0200413
Michal Vaskoe3ed7dc2022-11-30 11:39:44 +0100414 if ((node->schema->nodetype == LYS_ANYDATA) && (node->value_type != LYD_ANYDATA_DATATREE)) {
415 LOGINT_RET(pctx->ctx);
416 }
417
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100418 xml_print_node_open(pctx, &node->node);
Radek Krejcie7b95092019-05-15 11:03:07 +0200419
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200420 if (!any->value.tree) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200421 /* no content */
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200422no_content:
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100423 ly_print_(pctx->out, "/>%s", DO_FORMAT ? "\n" : "");
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200424 return LY_SUCCESS;
Radek Krejcie7b95092019-05-15 11:03:07 +0200425 } else {
Michal Vasko60ea6352020-06-29 13:39:39 +0200426 if (any->value_type == LYD_ANYDATA_LYB) {
427 /* turn logging off */
Michal Vaskod4a6d042022-12-08 08:34:29 +0100428 ly_temp_log_options(&temp_lo);
Michal Vasko60ea6352020-06-29 13:39:39 +0200429
430 /* try to parse it into a data tree */
Michal Vasko78041d12022-11-29 14:11:07 +0100431 if (lyd_parse_data_mem((struct ly_ctx *)LYD_CTX(node), any->value.mem, LYD_LYB,
432 LYD_PARSE_ONLY | LYD_PARSE_OPAQ | LYD_PARSE_STRICT, 0, &iter) == LY_SUCCESS) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200433 /* successfully parsed */
434 free(any->value.mem);
435 any->value.tree = iter;
436 any->value_type = LYD_ANYDATA_DATATREE;
437 }
Radek Krejci7931b192020-06-25 17:05:03 +0200438
Michal Vasko78041d12022-11-29 14:11:07 +0100439 /* turn logging on again */
Michal Vaskod4a6d042022-12-08 08:34:29 +0100440 ly_temp_log_options(NULL);
Michal Vasko60ea6352020-06-29 13:39:39 +0200441 }
442
Radek Krejcie7b95092019-05-15 11:03:07 +0200443 switch (any->value_type) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200444 case LYD_ANYDATA_DATATREE:
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200445 /* close opening tag and print data */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100446 prev_opts = pctx->options;
447 pctx->options &= ~LYD_PRINT_WITHSIBLINGS;
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200448 LEVEL_INC;
449
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100450 ly_print_(pctx->out, ">%s", DO_FORMAT ? "\n" : "");
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200451 LY_LIST_FOR(any->value.tree, iter) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100452 ret = xml_print_node(pctx, iter);
Michal Vasko52927e22020-03-16 17:26:14 +0100453 LY_CHECK_ERR_RET(ret, LEVEL_DEC, ret);
Radek Krejcie7b95092019-05-15 11:03:07 +0200454 }
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200455
456 LEVEL_DEC;
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100457 pctx->options = prev_opts;
Radek Krejcie7b95092019-05-15 11:03:07 +0200458 break;
459 case LYD_ANYDATA_STRING:
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200460 /* escape XML-sensitive characters */
461 if (!any->value.str[0]) {
462 goto no_content;
463 }
464 /* close opening tag and print data */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100465 ly_print_(pctx->out, ">");
466 lyxml_dump_text(pctx->out, any->value.str, 0);
Radek Krejcie7b95092019-05-15 11:03:07 +0200467 break;
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200468 case LYD_ANYDATA_XML:
469 /* print without escaping special characters */
470 if (!any->value.str[0]) {
471 goto no_content;
472 }
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100473 ly_print_(pctx->out, ">%s", any->value.str);
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200474 break;
475 case LYD_ANYDATA_JSON:
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200476 case LYD_ANYDATA_LYB:
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200477 /* JSON and LYB format is not supported */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100478 LOGWRN(pctx->ctx, "Unable to print anydata content (type %d) as XML.", any->value_type);
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200479 goto no_content;
Radek Krejcie7b95092019-05-15 11:03:07 +0200480 }
481
482 /* closing tag */
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200483 if (any->value_type == LYD_ANYDATA_DATATREE) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100484 ly_print_(pctx->out, "%*s</%s>%s", INDENT, node->schema->name, DO_FORMAT ? "\n" : "");
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200485 } else {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100486 ly_print_(pctx->out, "</%s>%s", node->schema->name, DO_FORMAT ? "\n" : "");
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200487 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200488 }
489
Radek Krejci26a5dfb2019-07-26 14:51:06 +0200490 return LY_SUCCESS;
Radek Krejcie7b95092019-05-15 11:03:07 +0200491}
Radek Krejcie7b95092019-05-15 11:03:07 +0200492
Michal Vasko52927e22020-03-16 17:26:14 +0100493static LY_ERR
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100494xml_print_opaq(struct xmlpr_ctx *pctx, const struct lyd_node_opaq *node)
Michal Vasko52927e22020-03-16 17:26:14 +0100495{
496 LY_ERR ret;
497 struct lyd_node *child;
Michal Vasko52927e22020-03-16 17:26:14 +0100498
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100499 LY_CHECK_RET(xml_print_opaq_open(pctx, node));
Michal Vasko52927e22020-03-16 17:26:14 +0100500
501 if (node->value[0]) {
502 /* print namespaces connected with the value's prefixes */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100503 if (node->val_prefix_data) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100504 xml_print_ns_prefix_data(pctx, node->format, node->val_prefix_data, LYXML_PREFIX_REQUIRED);
Michal Vasko52927e22020-03-16 17:26:14 +0100505 }
506
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100507 ly_print_(pctx->out, ">");
508 lyxml_dump_text(pctx->out, node->value, 0);
Michal Vasko52927e22020-03-16 17:26:14 +0100509 }
510
511 if (node->child) {
512 /* children */
513 if (!node->value[0]) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100514 ly_print_(pctx->out, ">%s", DO_FORMAT ? "\n" : "");
Michal Vasko52927e22020-03-16 17:26:14 +0100515 }
516
517 LEVEL_INC;
518 LY_LIST_FOR(node->child, child) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100519 ret = xml_print_node(pctx, child);
Michal Vasko52927e22020-03-16 17:26:14 +0100520 LY_CHECK_ERR_RET(ret, LEVEL_DEC, ret);
521 }
522 LEVEL_DEC;
523
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100524 ly_print_(pctx->out, "%*s</%s>%s", INDENT, node->name.name, DO_FORMAT ? "\n" : "");
Michal Vasko52927e22020-03-16 17:26:14 +0100525 } else if (node->value[0]) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100526 ly_print_(pctx->out, "</%s>%s", node->name.name, DO_FORMAT ? "\n" : "");
Michal Vasko52927e22020-03-16 17:26:14 +0100527 } else {
528 /* no value or children */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100529 ly_print_(pctx->out, "/>%s", DO_FORMAT ? "\n" : "");
Michal Vasko52927e22020-03-16 17:26:14 +0100530 }
531
532 return LY_SUCCESS;
533}
534
Radek Krejcie7b95092019-05-15 11:03:07 +0200535/**
536 * @brief Print XML element representing lyd_node.
537 *
538 * @param[in] ctx XML printer context.
539 * @param[in] node Data node to be printed.
540 * @return LY_ERR value.
541 */
542static LY_ERR
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100543xml_print_node(struct xmlpr_ctx *pctx, const struct lyd_node *node)
Radek Krejcie7b95092019-05-15 11:03:07 +0200544{
545 LY_ERR ret = LY_SUCCESS;
Michal Vasko52927e22020-03-16 17:26:14 +0100546 uint32_t ns_count;
Radek Krejcie7b95092019-05-15 11:03:07 +0200547
Michal Vasko8db584d2022-03-30 13:42:48 +0200548 if (!lyd_node_should_print(node, pctx->options)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100549 /* do not print at all */
Michal Vasko52927e22020-03-16 17:26:14 +0100550 return LY_SUCCESS;
Radek Krejcie7b95092019-05-15 11:03:07 +0200551 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200552
Michal Vasko52927e22020-03-16 17:26:14 +0100553 /* remember namespace definition count on this level */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100554 ns_count = pctx->ns.count;
Michal Vasko52927e22020-03-16 17:26:14 +0100555
556 if (!node->schema) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100557 ret = xml_print_opaq(pctx, (const struct lyd_node_opaq *)node);
Michal Vasko52927e22020-03-16 17:26:14 +0100558 } else {
559 switch (node->schema->nodetype) {
560 case LYS_CONTAINER:
561 case LYS_LIST:
562 case LYS_NOTIF:
Michal Vasko1bf09392020-03-27 12:38:10 +0100563 case LYS_RPC:
Michal Vasko52927e22020-03-16 17:26:14 +0100564 case LYS_ACTION:
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100565 ret = xml_print_inner(pctx, (const struct lyd_node_inner *)node);
Michal Vasko52927e22020-03-16 17:26:14 +0100566 break;
567 case LYS_LEAF:
568 case LYS_LEAFLIST:
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100569 ret = xml_print_term(pctx, (const struct lyd_node_term *)node);
Michal Vasko52927e22020-03-16 17:26:14 +0100570 break;
571 case LYS_ANYXML:
572 case LYS_ANYDATA:
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100573 ret = xml_print_anydata(pctx, (const struct lyd_node_any *)node);
Michal Vasko52927e22020-03-16 17:26:14 +0100574 break;
575 default:
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100576 LOGINT(pctx->ctx);
Michal Vasko52927e22020-03-16 17:26:14 +0100577 ret = LY_EINT;
578 break;
579 }
580 }
581
582 /* remove all added namespaces */
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100583 while (ns_count < pctx->ns.count) {
584 lydict_remove(pctx->ctx, pctx->prefix.objs[pctx->prefix.count - 1]);
585 ly_set_rm_index(&pctx->prefix, pctx->prefix.count - 1, NULL);
586 ly_set_rm_index(&pctx->ns, pctx->ns.count - 1, NULL);
Radek Krejcie7b95092019-05-15 11:03:07 +0200587 }
588
589 return ret;
590}
591
592LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200593xml_print_data(struct ly_out *out, const struct lyd_node *root, uint32_t options)
Radek Krejcie7b95092019-05-15 11:03:07 +0200594{
595 const struct lyd_node *node;
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100596 struct xmlpr_ctx pctx = {0};
Radek Krejcie7b95092019-05-15 11:03:07 +0200597
598 if (!root) {
Michal Vasko69730152020-10-09 16:30:07 +0200599 if ((out->type == LY_OUT_MEMORY) || (out->type == LY_OUT_CALLBACK)) {
Michal Vasko5233e962020-08-14 14:26:20 +0200600 ly_print_(out, "");
Radek Krejcie7b95092019-05-15 11:03:07 +0200601 }
602 goto finish;
603 }
604
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100605 pctx.out = out;
606 pctx.level = 0;
607 pctx.options = options;
608 pctx.ctx = LYD_CTX(root);
Michal Vasko52927e22020-03-16 17:26:14 +0100609
Radek Krejcie7b95092019-05-15 11:03:07 +0200610 /* content */
611 LY_LIST_FOR(root, node) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100612 LY_CHECK_RET(xml_print_node(&pctx, node));
Radek Krejci7931b192020-06-25 17:05:03 +0200613 if (!(options & LYD_PRINT_WITHSIBLINGS)) {
Radek Krejcie7b95092019-05-15 11:03:07 +0200614 break;
615 }
616 }
617
618finish:
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100619 assert(!pctx.prefix.count && !pctx.ns.count);
620 ly_set_erase(&pctx.prefix, NULL);
621 ly_set_erase(&pctx.ns, NULL);
Radek Krejcie7b95092019-05-15 11:03:07 +0200622 ly_print_flush(out);
623 return LY_SUCCESS;
624}