Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file printer/json.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief JSON printer for libyang data structure |
| 5 | * |
| 6 | * Copyright (c) 2015 CESNET, z.s.p.o. |
| 7 | * |
Radek Krejci | 54f6fb3 | 2016-02-24 12:56:39 +0100 | [diff] [blame] | 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 |
Michal Vasko | 8de098c | 2016-02-26 10:00:25 +0100 | [diff] [blame] | 11 | * |
Radek Krejci | 54f6fb3 | 2016-02-24 12:56:39 +0100 | [diff] [blame] | 12 | * https://opensource.org/licenses/BSD-3-Clause |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <stdlib.h> |
| 16 | #include <stdio.h> |
| 17 | #include <string.h> |
| 18 | #include <assert.h> |
Radek Krejci | 7511f40 | 2015-07-10 09:56:30 +0200 | [diff] [blame] | 19 | #include <inttypes.h> |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 20 | |
Radek Krejci | 998a0b8 | 2015-08-17 13:14:36 +0200 | [diff] [blame] | 21 | #include "common.h" |
Radek Krejci | 76b0790 | 2015-10-09 09:11:25 +0200 | [diff] [blame] | 22 | #include "printer.h" |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 23 | #include "tree_data.h" |
Radek Krejci | 998a0b8 | 2015-08-17 13:14:36 +0200 | [diff] [blame] | 24 | #include "resolve.h" |
| 25 | #include "tree_internal.h" |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 26 | |
| 27 | #define INDENT "" |
| 28 | #define LEVEL (level*2) |
| 29 | |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 30 | static int json_print_nodes(struct lyout *out, int level, const struct lyd_node *root, int withsiblings, int toplevel, |
| 31 | int options); |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 32 | |
Radek Krejci | 0e67ac4 | 2018-07-25 15:46:37 +0200 | [diff] [blame] | 33 | int |
Radek Krejci | 382e7f9 | 2016-01-12 17:15:47 +0100 | [diff] [blame] | 34 | json_print_string(struct lyout *out, const char *text) |
| 35 | { |
| 36 | unsigned int i, n; |
| 37 | |
| 38 | if (!text) { |
| 39 | return 0; |
| 40 | } |
| 41 | |
| 42 | ly_write(out, "\"", 1); |
| 43 | for (i = n = 0; text[i]; i++) { |
Jan Kundrát | f5cbb96 | 2018-08-24 14:17:35 +0200 | [diff] [blame] | 44 | const unsigned char ascii = text[i]; |
| 45 | if (ascii < 0x20) { |
Radek Krejci | 382e7f9 | 2016-01-12 17:15:47 +0100 | [diff] [blame] | 46 | /* control character */ |
Jan Kundrát | f5cbb96 | 2018-08-24 14:17:35 +0200 | [diff] [blame] | 47 | n += ly_print(out, "\\u%.4X", ascii); |
Radek Krejci | 382e7f9 | 2016-01-12 17:15:47 +0100 | [diff] [blame] | 48 | } else { |
Jan Kundrát | f5cbb96 | 2018-08-24 14:17:35 +0200 | [diff] [blame] | 49 | switch (ascii) { |
Radek Krejci | 382e7f9 | 2016-01-12 17:15:47 +0100 | [diff] [blame] | 50 | case '"': |
| 51 | n += ly_print(out, "\\\""); |
| 52 | break; |
| 53 | case '\\': |
| 54 | n += ly_print(out, "\\\\"); |
| 55 | break; |
| 56 | default: |
| 57 | ly_write(out, &text[i], 1); |
| 58 | n++; |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | ly_write(out, "\"", 1); |
| 63 | |
| 64 | return n + 2; |
| 65 | } |
| 66 | |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 67 | static int |
Radek Krejci | 1eefeb3 | 2016-04-15 16:01:46 +0200 | [diff] [blame] | 68 | json_print_attrs(struct lyout *out, int level, const struct lyd_node *node, const struct lys_module *wdmod) |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 69 | { |
| 70 | struct lyd_attr *attr; |
Radek Krejci | a571d94 | 2017-02-24 09:26:49 +0100 | [diff] [blame] | 71 | size_t len; |
| 72 | char *p; |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 73 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 74 | LY_PRINT_SET; |
| 75 | |
Radek Krejci | 1eefeb3 | 2016-04-15 16:01:46 +0200 | [diff] [blame] | 76 | if (wdmod) { |
| 77 | ly_print(out, "%*s\"%s:default\":\"true\"", LEVEL, INDENT, wdmod->name); |
| 78 | ly_print(out, "%s%s", node->attr ? "," : "", (level ? "\n" : "")); |
| 79 | } |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 80 | for (attr = node->attr; attr; attr = attr->next) { |
Radek Krejci | 532e5e9 | 2017-02-22 12:59:24 +0100 | [diff] [blame] | 81 | if (!attr->annotation) { |
| 82 | /* skip exception for the NETCONF's attribute since JSON is not defined for NETCONF */ |
| 83 | continue; |
| 84 | } |
Radek Krejci | b1ef187 | 2017-02-23 14:33:34 +0100 | [diff] [blame] | 85 | if (lys_main_module(attr->annotation->module) != lys_main_module(node->schema->module)) { |
Radek Krejci | 532e5e9 | 2017-02-22 12:59:24 +0100 | [diff] [blame] | 86 | ly_print(out, "%*s\"%s:%s\":", LEVEL, INDENT, attr->annotation->module->name, attr->name); |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 87 | } else { |
Radek Krejci | 382e7f9 | 2016-01-12 17:15:47 +0100 | [diff] [blame] | 88 | ly_print(out, "%*s\"%s\":", LEVEL, INDENT, attr->name); |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 89 | } |
Radek Krejci | a571d94 | 2017-02-24 09:26:49 +0100 | [diff] [blame] | 90 | /* leafref is not supported */ |
Michal Vasko | 70bf8e5 | 2018-03-26 11:32:33 +0200 | [diff] [blame] | 91 | switch (attr->value_type) { |
Radek Krejci | a571d94 | 2017-02-24 09:26:49 +0100 | [diff] [blame] | 92 | case LY_TYPE_BINARY: |
| 93 | case LY_TYPE_STRING: |
| 94 | case LY_TYPE_BITS: |
| 95 | case LY_TYPE_ENUM: |
| 96 | case LY_TYPE_INST: |
| 97 | case LY_TYPE_INT64: |
| 98 | case LY_TYPE_UINT64: |
| 99 | case LY_TYPE_DEC64: |
Michal Vasko | a80d830 | 2017-03-02 10:52:02 +0100 | [diff] [blame] | 100 | json_print_string(out, attr->value_str); |
Radek Krejci | a571d94 | 2017-02-24 09:26:49 +0100 | [diff] [blame] | 101 | break; |
| 102 | |
| 103 | case LY_TYPE_INT8: |
| 104 | case LY_TYPE_INT16: |
| 105 | case LY_TYPE_INT32: |
| 106 | case LY_TYPE_UINT8: |
| 107 | case LY_TYPE_UINT16: |
| 108 | case LY_TYPE_UINT32: |
| 109 | case LY_TYPE_BOOL: |
| 110 | ly_print(out, "%s", attr->value_str[0] ? attr->value_str : "null"); |
| 111 | break; |
| 112 | |
| 113 | case LY_TYPE_IDENT: |
| 114 | p = strchr(attr->value_str, ':'); |
| 115 | assert(p); |
| 116 | len = p - attr->value_str; |
| 117 | if (!strncmp(attr->value_str, attr->annotation->module->name, len) |
| 118 | && !attr->annotation->module->name[len]) { |
| 119 | /* do not print the prefix, it is the default prefix for this node */ |
| 120 | json_print_string(out, ++p); |
| 121 | } else { |
| 122 | json_print_string(out, attr->value_str); |
| 123 | } |
| 124 | break; |
| 125 | |
| 126 | case LY_TYPE_EMPTY: |
| 127 | ly_print(out, "[null]"); |
| 128 | break; |
| 129 | |
| 130 | default: |
| 131 | /* error */ |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 132 | LOGINT(node->schema->module->ctx); |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 133 | return EXIT_FAILURE; |
Radek Krejci | a571d94 | 2017-02-24 09:26:49 +0100 | [diff] [blame] | 134 | } |
| 135 | |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 136 | ly_print(out, "%s%s", attr->next ? "," : "", (level ? "\n" : "")); |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 137 | } |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 138 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 139 | LY_PRINT_RET(node->schema->module->ctx); |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 140 | } |
| 141 | |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 142 | static int |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 143 | json_print_leaf(struct lyout *out, int level, const struct lyd_node *node, int onlyvalue, int toplevel, int options) |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 144 | { |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 145 | struct lyd_node_leaf_list *leaf = (struct lyd_node_leaf_list *)node, *iter; |
Michal Vasko | 0bff322 | 2017-01-05 10:55:31 +0100 | [diff] [blame] | 146 | const struct lys_type *type; |
Radek Krejci | 7a2a562 | 2016-12-05 13:32:05 +0100 | [diff] [blame] | 147 | const char *schema = NULL, *p, *mod_name; |
Radek Krejci | 1eefeb3 | 2016-04-15 16:01:46 +0200 | [diff] [blame] | 148 | const struct lys_module *wdmod = NULL; |
Radek Krejci | 9b6aad2 | 2016-09-20 15:55:51 +0200 | [diff] [blame] | 149 | LY_DATA_TYPE datatype; |
Radek Krejci | 7a2a562 | 2016-12-05 13:32:05 +0100 | [diff] [blame] | 150 | size_t len; |
Radek Krejci | 1eefeb3 | 2016-04-15 16:01:46 +0200 | [diff] [blame] | 151 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 152 | LY_PRINT_SET; |
| 153 | |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 154 | if ((node->dflt && (options & (LYP_WD_ALL_TAG | LYP_WD_IMPL_TAG))) || |
| 155 | (!node->dflt && (options & LYP_WD_ALL_TAG) && lyd_wd_default(leaf))) { |
| 156 | /* we have implicit OR explicit default node */ |
Radek Krejci | 1eefeb3 | 2016-04-15 16:01:46 +0200 | [diff] [blame] | 157 | /* get with-defaults module */ |
Radek Krejci | dfb00d6 | 2017-09-06 09:39:35 +0200 | [diff] [blame] | 158 | wdmod = ly_ctx_get_module(node->schema->module->ctx, "ietf-netconf-with-defaults", NULL, 1); |
Radek Krejci | 1eefeb3 | 2016-04-15 16:01:46 +0200 | [diff] [blame] | 159 | } |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 160 | |
Radek Krejci | 5a98815 | 2015-07-15 11:16:26 +0200 | [diff] [blame] | 161 | if (!onlyvalue) { |
Michal Vasko | 635bd45 | 2016-05-18 13:26:55 +0200 | [diff] [blame] | 162 | if (toplevel || !node->parent || nscmp(node, node->parent)) { |
Radek Krejci | 5a98815 | 2015-07-15 11:16:26 +0200 | [diff] [blame] | 163 | /* print "namespace" */ |
Michal Vasko | 6c629ac | 2016-02-15 14:08:23 +0100 | [diff] [blame] | 164 | schema = lys_node_module(node->schema)->name; |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 165 | ly_print(out, "%*s\"%s:%s\":%s", LEVEL, INDENT, schema, node->schema->name, (level ? " " : "")); |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 166 | } else { |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 167 | ly_print(out, "%*s\"%s\":%s", LEVEL, INDENT, node->schema->name, (level ? " " : "")); |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 168 | } |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 169 | } |
Radek Krejci | e474847 | 2015-07-08 18:00:22 +0200 | [diff] [blame] | 170 | |
Michal Vasko | 70bf8e5 | 2018-03-26 11:32:33 +0200 | [diff] [blame] | 171 | datatype = leaf->value_type; |
Radek Krejci | 9b6aad2 | 2016-09-20 15:55:51 +0200 | [diff] [blame] | 172 | contentprint: |
| 173 | switch (datatype) { |
Radek Krejci | e474847 | 2015-07-08 18:00:22 +0200 | [diff] [blame] | 174 | case LY_TYPE_BINARY: |
| 175 | case LY_TYPE_STRING: |
Radek Krejci | 3e3affe | 2015-07-09 15:38:40 +0200 | [diff] [blame] | 176 | case LY_TYPE_BITS: |
Radek Krejci | 5b315a9 | 2015-07-10 13:18:45 +0200 | [diff] [blame] | 177 | case LY_TYPE_ENUM: |
Radek Krejci | c5090c3 | 2015-08-12 09:46:19 +0200 | [diff] [blame] | 178 | case LY_TYPE_INST: |
Radek Krejci | c27114c | 2016-09-20 10:02:28 +0200 | [diff] [blame] | 179 | case LY_TYPE_INT64: |
| 180 | case LY_TYPE_UINT64: |
Michal Vasko | 3db6968 | 2018-03-27 16:11:31 +0200 | [diff] [blame] | 181 | case LY_TYPE_UNION: |
严军喜10079489 | 1758ff6 | 2016-10-25 10:14:47 +0800 | [diff] [blame] | 182 | case LY_TYPE_DEC64: |
Michal Vasko | 4491384 | 2016-04-13 14:20:41 +0200 | [diff] [blame] | 183 | json_print_string(out, leaf->value_str); |
Radek Krejci | ac8aac6 | 2015-07-10 15:36:35 +0200 | [diff] [blame] | 184 | break; |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 185 | |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 186 | case LY_TYPE_INT8: |
| 187 | case LY_TYPE_INT16: |
| 188 | case LY_TYPE_INT32: |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 189 | case LY_TYPE_UINT8: |
| 190 | case LY_TYPE_UINT16: |
| 191 | case LY_TYPE_UINT32: |
严军喜10079489 | 1758ff6 | 2016-10-25 10:14:47 +0800 | [diff] [blame] | 192 | case LY_TYPE_BOOL: |
Michal Vasko | 4491384 | 2016-04-13 14:20:41 +0200 | [diff] [blame] | 193 | ly_print(out, "%s", leaf->value_str[0] ? leaf->value_str : "null"); |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 194 | break; |
| 195 | |
Radek Krejci | 7a2a562 | 2016-12-05 13:32:05 +0100 | [diff] [blame] | 196 | case LY_TYPE_IDENT: |
| 197 | p = strchr(leaf->value_str, ':'); |
| 198 | assert(p); |
| 199 | len = p - leaf->value_str; |
| 200 | mod_name = leaf->schema->module->name; |
| 201 | if (!strncmp(leaf->value_str, mod_name, len) && !mod_name[len]) { |
| 202 | /* do not print the prefix, it is the default prefix for this node */ |
| 203 | json_print_string(out, ++p); |
| 204 | } else { |
| 205 | json_print_string(out, leaf->value_str); |
| 206 | } |
| 207 | break; |
| 208 | |
Radek Krejci | 9b6aad2 | 2016-09-20 15:55:51 +0200 | [diff] [blame] | 209 | case LY_TYPE_LEAFREF: |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 210 | iter = (struct lyd_node_leaf_list *)leaf->value.leafref; |
| 211 | while (iter && (iter->value_type == LY_TYPE_LEAFREF)) { |
| 212 | iter = (struct lyd_node_leaf_list *)iter->value.leafref; |
| 213 | } |
| 214 | if (!iter) { |
Michal Vasko | 0bff322 | 2017-01-05 10:55:31 +0100 | [diff] [blame] | 215 | /* unresolved and invalid, but we can learn the correct type anyway */ |
| 216 | type = lyd_leaf_type((struct lyd_node_leaf_list *)leaf); |
| 217 | if (!type) { |
| 218 | /* error */ |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 219 | return EXIT_FAILURE; |
Michal Vasko | 0bff322 | 2017-01-05 10:55:31 +0100 | [diff] [blame] | 220 | } |
| 221 | datatype = type->base; |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 222 | } else { |
Michal Vasko | 70bf8e5 | 2018-03-26 11:32:33 +0200 | [diff] [blame] | 223 | datatype = iter->value_type; |
Radek Krejci | 9ad23f4 | 2016-10-31 15:46:52 +0100 | [diff] [blame] | 224 | } |
Michal Vasko | 0bff322 | 2017-01-05 10:55:31 +0100 | [diff] [blame] | 225 | goto contentprint; |
Radek Krejci | 9b6aad2 | 2016-09-20 15:55:51 +0200 | [diff] [blame] | 226 | |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 227 | case LY_TYPE_EMPTY: |
Radek Krejci | 76b0790 | 2015-10-09 09:11:25 +0200 | [diff] [blame] | 228 | ly_print(out, "[null]"); |
Michal Vasko | 5811016 | 2015-07-15 15:50:16 +0200 | [diff] [blame] | 229 | break; |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 230 | |
Fred Gan | a68649e | 2021-01-27 15:30:18 +0800 | [diff] [blame] | 231 | case LY_TYPE_UNKNOWN: |
| 232 | if (leaf->value_str[0] == '\0') { |
| 233 | ly_write(out, "\"\"", 2); |
| 234 | break; |
| 235 | } |
| 236 | datatype = ((struct lys_node_leaf *)leaf->schema)->type.base; |
| 237 | goto contentprint; |
| 238 | |
Radek Krejci | e474847 | 2015-07-08 18:00:22 +0200 | [diff] [blame] | 239 | default: |
Michal Vasko | 493bea7 | 2015-07-16 16:08:12 +0200 | [diff] [blame] | 240 | /* error */ |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 241 | LOGINT(node->schema->module->ctx); |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 242 | return EXIT_FAILURE; |
Radek Krejci | e474847 | 2015-07-08 18:00:22 +0200 | [diff] [blame] | 243 | } |
| 244 | |
Radek Krejci | 382e7f9 | 2016-01-12 17:15:47 +0100 | [diff] [blame] | 245 | /* print attributes as sibling leafs */ |
Radek Krejci | 1eefeb3 | 2016-04-15 16:01:46 +0200 | [diff] [blame] | 246 | if (!onlyvalue && (node->attr || wdmod)) { |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 247 | if (schema) { |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 248 | ly_print(out, ",%s%*s\"@%s:%s\":%s{%s", (level ? "\n" : ""), LEVEL, INDENT, schema, node->schema->name, |
| 249 | (level ? " " : ""), (level ? "\n" : "")); |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 250 | } else { |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 251 | ly_print(out, ",%s%*s\"@%s\":%s{%s", (level ? "\n" : ""), LEVEL, INDENT, node->schema->name, |
| 252 | (level ? " " : ""), (level ? "\n" : "")); |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 253 | } |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 254 | if (json_print_attrs(out, (level ? level + 1 : level), node, wdmod)) { |
| 255 | return EXIT_FAILURE; |
| 256 | } |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 257 | ly_print(out, "%*s}", LEVEL, INDENT); |
| 258 | } |
| 259 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 260 | LY_PRINT_RET(node->schema->module->ctx); |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 261 | } |
| 262 | |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 263 | static int |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 264 | json_print_container(struct lyout *out, int level, const struct lyd_node *node, int toplevel, int options) |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 265 | { |
| 266 | const char *schema; |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 267 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 268 | LY_PRINT_SET; |
| 269 | |
Michal Vasko | 635bd45 | 2016-05-18 13:26:55 +0200 | [diff] [blame] | 270 | if (toplevel || !node->parent || nscmp(node, node->parent)) { |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 271 | /* print "namespace" */ |
Michal Vasko | 6c629ac | 2016-02-15 14:08:23 +0100 | [diff] [blame] | 272 | schema = lys_node_module(node->schema)->name; |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 273 | ly_print(out, "%*s\"%s:%s\":%s{%s", LEVEL, INDENT, schema, node->schema->name, (level ? " " : ""), (level ? "\n" : "")); |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 274 | } else { |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 275 | ly_print(out, "%*s\"%s\":%s{%s", LEVEL, INDENT, node->schema->name, (level ? " " : ""), (level ? "\n" : "")); |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 276 | } |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 277 | if (level) { |
| 278 | level++; |
| 279 | } |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 280 | if (node->attr) { |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 281 | ly_print(out, "%*s\"@\":%s{%s", LEVEL, INDENT, (level ? " " : ""), (level ? "\n" : "")); |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 282 | if (json_print_attrs(out, (level ? level + 1 : level), node, NULL)) { |
| 283 | return EXIT_FAILURE; |
| 284 | } |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 285 | ly_print(out, "%*s}", LEVEL, INDENT); |
Fred Gan | a68649e | 2021-01-27 15:30:18 +0800 | [diff] [blame] | 286 | ly_print(out, "%s%s", (node->child? "," : ""), (level ? "\n" : "")); |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 287 | } |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 288 | if (json_print_nodes(out, level, node->child, 1, 0, options)) { |
| 289 | return EXIT_FAILURE; |
| 290 | } |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 291 | if (level) { |
| 292 | level--; |
| 293 | } |
Radek Krejci | 76b0790 | 2015-10-09 09:11:25 +0200 | [diff] [blame] | 294 | ly_print(out, "%*s}", LEVEL, INDENT); |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 295 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 296 | LY_PRINT_RET(node->schema->module->ctx); |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 297 | } |
| 298 | |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 299 | static int |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 300 | json_print_leaf_list(struct lyout *out, int level, const struct lyd_node *node, int is_list, int toplevel, int options) |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 301 | { |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 302 | const char *schema = NULL; |
Michal Vasko | 1e62a09 | 2015-12-01 12:27:20 +0100 | [diff] [blame] | 303 | const struct lyd_node *list = node; |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 304 | int flag_empty = 0, flag_attrs = 0; |
Radek Krejci | 2323892 | 2015-10-27 17:13:34 +0100 | [diff] [blame] | 305 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 306 | LY_PRINT_SET; |
| 307 | |
Radek Krejci | e877516 | 2016-09-14 13:08:58 +0200 | [diff] [blame] | 308 | if (is_list && !list->child) { |
Radek Krejci | 2323892 | 2015-10-27 17:13:34 +0100 | [diff] [blame] | 309 | /* empty, e.g. in case of filter */ |
| 310 | flag_empty = 1; |
| 311 | } |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 312 | |
Michal Vasko | 635bd45 | 2016-05-18 13:26:55 +0200 | [diff] [blame] | 313 | if (toplevel || !node->parent || nscmp(node, node->parent)) { |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 314 | /* print "namespace" */ |
Michal Vasko | 6c629ac | 2016-02-15 14:08:23 +0100 | [diff] [blame] | 315 | schema = lys_node_module(node->schema)->name; |
Radek Krejci | 2323892 | 2015-10-27 17:13:34 +0100 | [diff] [blame] | 316 | ly_print(out, "%*s\"%s:%s\":", LEVEL, INDENT, schema, node->schema->name); |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 317 | } else { |
Radek Krejci | 2323892 | 2015-10-27 17:13:34 +0100 | [diff] [blame] | 318 | ly_print(out, "%*s\"%s\":", LEVEL, INDENT, node->schema->name); |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 319 | } |
| 320 | |
Radek Krejci | 2323892 | 2015-10-27 17:13:34 +0100 | [diff] [blame] | 321 | if (flag_empty) { |
Fred Gan | a68649e | 2021-01-27 15:30:18 +0800 | [diff] [blame] | 322 | ly_print(out, "%s[]", (level ? " " : "")); |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 323 | goto finish; |
Radek Krejci | 2323892 | 2015-10-27 17:13:34 +0100 | [diff] [blame] | 324 | } |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 325 | ly_print(out, "%s[%s", (level ? " " : ""), (level ? "\n" : "")); |
Radek Krejci | 2323892 | 2015-10-27 17:13:34 +0100 | [diff] [blame] | 326 | |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 327 | if (!is_list && level) { |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 328 | ++level; |
| 329 | } |
Radek Krejci | 27aaa73 | 2015-09-04 15:24:04 +0200 | [diff] [blame] | 330 | |
| 331 | while (list) { |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 332 | if (is_list) { |
Radek Krejci | 27aaa73 | 2015-09-04 15:24:04 +0200 | [diff] [blame] | 333 | /* list print */ |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 334 | if (level) { |
| 335 | ++level; |
| 336 | } |
| 337 | ly_print(out, "%*s{%s", LEVEL, INDENT, (level ? "\n" : "")); |
| 338 | if (level) { |
| 339 | ++level; |
| 340 | } |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 341 | if (list->attr) { |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 342 | ly_print(out, "%*s\"@\":%s{%s", LEVEL, INDENT, (level ? " " : ""), (level ? "\n" : "")); |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 343 | if (json_print_attrs(out, (level ? level + 1 : level), list, NULL)) { |
| 344 | return EXIT_FAILURE; |
| 345 | } |
Michal Vasko | f6aa861 | 2017-03-02 10:52:44 +0100 | [diff] [blame] | 346 | if (list->child) { |
| 347 | ly_print(out, "%*s},%s", LEVEL, INDENT, (level ? "\n" : "")); |
| 348 | } else { |
| 349 | ly_print(out, "%*s}", LEVEL, INDENT); |
| 350 | } |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 351 | } |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 352 | if (json_print_nodes(out, level, list->child, 1, 0, options)) { |
| 353 | return EXIT_FAILURE; |
| 354 | } |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 355 | if (level) { |
| 356 | --level; |
| 357 | } |
Radek Krejci | 76b0790 | 2015-10-09 09:11:25 +0200 | [diff] [blame] | 358 | ly_print(out, "%*s}", LEVEL, INDENT); |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 359 | if (level) { |
| 360 | --level; |
| 361 | } |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 362 | } else { |
Radek Krejci | 27aaa73 | 2015-09-04 15:24:04 +0200 | [diff] [blame] | 363 | /* leaf-list print */ |
Radek Krejci | 76b0790 | 2015-10-09 09:11:25 +0200 | [diff] [blame] | 364 | ly_print(out, "%*s", LEVEL, INDENT); |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 365 | if (json_print_leaf(out, level, list, 1, toplevel, options)) { |
| 366 | return EXIT_FAILURE; |
| 367 | } |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 368 | if (list->attr) { |
| 369 | flag_attrs = 1; |
| 370 | } |
Radek Krejci | 27aaa73 | 2015-09-04 15:24:04 +0200 | [diff] [blame] | 371 | } |
Alexandre Snarskii | ce16bcf | 2018-09-12 12:10:07 +0300 | [diff] [blame] | 372 | if (toplevel && !(options & LYP_WITHSIBLINGS)) { |
| 373 | /* if initially called without LYP_WITHSIBLINGS do not print other list entries */ |
| 374 | break; |
| 375 | } |
Radek Krejci | 27aaa73 | 2015-09-04 15:24:04 +0200 | [diff] [blame] | 376 | for (list = list->next; list && list->schema != node->schema; list = list->next); |
| 377 | if (list) { |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 378 | ly_print(out, ",%s", (level ? "\n" : "")); |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 379 | } |
| 380 | } |
Radek Krejci | 27aaa73 | 2015-09-04 15:24:04 +0200 | [diff] [blame] | 381 | |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 382 | if (!is_list && level) { |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 383 | --level; |
| 384 | } |
| 385 | |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 386 | ly_print(out, "%s%*s]", (level ? "\n" : ""), LEVEL, INDENT); |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 387 | |
| 388 | /* attributes */ |
| 389 | if (!is_list && flag_attrs) { |
| 390 | if (schema) { |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 391 | ly_print(out, ",%s%*s\"@%s:%s\":%s[%s", (level ? "\n" : ""), LEVEL, INDENT, schema, node->schema->name, |
| 392 | (level ? " " : ""), (level ? "\n" : "")); |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 393 | } else { |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 394 | ly_print(out, ",%s%*s\"@%s\":%s[%s", (level ? "\n" : ""), LEVEL, INDENT, node->schema->name, |
| 395 | (level ? " " : ""), (level ? "\n" : "")); |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 396 | } |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 397 | if (level) { |
| 398 | level++; |
| 399 | } |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 400 | for (list = node; list; ) { |
| 401 | if (list->attr) { |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 402 | ly_print(out, "%*s{%s", LEVEL, INDENT, (level ? " " : "")); |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 403 | if (json_print_attrs(out, 0, list, NULL)) { |
| 404 | return EXIT_FAILURE; |
| 405 | } |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 406 | ly_print(out, "%*s}", LEVEL, INDENT); |
| 407 | } else { |
| 408 | ly_print(out, "%*snull", LEVEL, INDENT); |
| 409 | } |
| 410 | |
| 411 | |
| 412 | for (list = list->next; list && list->schema != node->schema; list = list->next); |
| 413 | if (list) { |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 414 | ly_print(out, ",%s", (level ? "\n" : "")); |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 415 | } |
| 416 | } |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 417 | if (level) { |
| 418 | level--; |
| 419 | } |
| 420 | ly_print(out, "%s%*s]", (level ? "\n" : ""), LEVEL, INDENT); |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 421 | } |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 422 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 423 | finish: |
| 424 | LY_PRINT_RET(node->schema->module->ctx); |
Michal Vasko | 98763c6 | 2015-07-17 13:47:00 +0200 | [diff] [blame] | 425 | } |
| 426 | |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 427 | static int |
Michal Vasko | 9696e4d | 2018-05-28 08:28:31 +0200 | [diff] [blame] | 428 | json_print_anydataxml(struct lyout *out, int level, const struct lyd_node *node, int toplevel, int options) |
Radek Krejci | a717767 | 2016-11-17 14:53:03 +0900 | [diff] [blame] | 429 | { |
| 430 | struct lyd_node_anydata *any = (struct lyd_node_anydata *)node; |
Michal Vasko | 9696e4d | 2018-05-28 08:28:31 +0200 | [diff] [blame] | 431 | int is_object = 0; |
Radek Krejci | a717767 | 2016-11-17 14:53:03 +0900 | [diff] [blame] | 432 | char *buf; |
| 433 | const char *schema = NULL; |
| 434 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 435 | LY_PRINT_SET; |
| 436 | |
Radek Krejci | a717767 | 2016-11-17 14:53:03 +0900 | [diff] [blame] | 437 | if (toplevel || !node->parent || nscmp(node, node->parent)) { |
| 438 | /* print "namespace" */ |
| 439 | schema = lys_node_module(node->schema)->name; |
Michal Vasko | 9696e4d | 2018-05-28 08:28:31 +0200 | [diff] [blame] | 440 | ly_print(out, "%*s\"%s:%s\":", LEVEL, INDENT, schema, node->schema->name); |
Radek Krejci | a717767 | 2016-11-17 14:53:03 +0900 | [diff] [blame] | 441 | } else { |
Michal Vasko | 9696e4d | 2018-05-28 08:28:31 +0200 | [diff] [blame] | 442 | ly_print(out, "%*s\"%s\":", LEVEL, INDENT, node->schema->name); |
Radek Krejci | a717767 | 2016-11-17 14:53:03 +0900 | [diff] [blame] | 443 | } |
| 444 | if (level) { |
| 445 | level++; |
| 446 | } |
| 447 | |
| 448 | switch (any->value_type) { |
| 449 | case LYD_ANYDATA_DATATREE: |
Michal Vasko | 9696e4d | 2018-05-28 08:28:31 +0200 | [diff] [blame] | 450 | is_object = 1; |
| 451 | ly_print(out, "%s{%s", (level ? " " : ""), (level ? "\n" : "")); |
Radek Krejci | db2f58c | 2016-11-24 11:24:48 +0100 | [diff] [blame] | 452 | /* do not print any default values nor empty containers */ |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 453 | if (json_print_nodes(out, level, any->value.tree, 1, 0, LYP_WITHSIBLINGS | (options & ~LYP_NETCONF))) { |
| 454 | return EXIT_FAILURE; |
| 455 | } |
Radek Krejci | a717767 | 2016-11-17 14:53:03 +0900 | [diff] [blame] | 456 | break; |
| 457 | case LYD_ANYDATA_JSON: |
Michal Vasko | 9696e4d | 2018-05-28 08:28:31 +0200 | [diff] [blame] | 458 | if (level) { |
| 459 | ly_print(out, "\n"); |
| 460 | } |
Radek Krejci | a717767 | 2016-11-17 14:53:03 +0900 | [diff] [blame] | 461 | if (any->value.str) { |
Michal Vasko | 9696e4d | 2018-05-28 08:28:31 +0200 | [diff] [blame] | 462 | ly_print(out, "%s", any->value.str); |
| 463 | } |
Michal Vasko | e748db4 | 2018-08-17 10:30:32 +0200 | [diff] [blame] | 464 | if (level && (!any->value.str || (any->value.str[strlen(any->value.str) - 1] != '\n'))) { |
Michal Vasko | 9696e4d | 2018-05-28 08:28:31 +0200 | [diff] [blame] | 465 | /* do not print 2 newlines */ |
| 466 | ly_print(out, "\n"); |
Radek Krejci | a717767 | 2016-11-17 14:53:03 +0900 | [diff] [blame] | 467 | } |
| 468 | break; |
| 469 | case LYD_ANYDATA_XML: |
| 470 | lyxml_print_mem(&buf, any->value.xml, (level ? LYXML_PRINT_FORMAT | LYXML_PRINT_NO_LAST_NEWLINE : 0) |
| 471 | | LYXML_PRINT_SIBLINGS); |
Michal Vasko | 9696e4d | 2018-05-28 08:28:31 +0200 | [diff] [blame] | 472 | if (level) { |
| 473 | ly_print(out, " "); |
| 474 | } |
Radek Krejci | a717767 | 2016-11-17 14:53:03 +0900 | [diff] [blame] | 475 | json_print_string(out, buf); |
| 476 | free(buf); |
| 477 | break; |
| 478 | case LYD_ANYDATA_CONSTSTRING: |
| 479 | case LYD_ANYDATA_SXML: |
Michal Vasko | 9696e4d | 2018-05-28 08:28:31 +0200 | [diff] [blame] | 480 | if (level) { |
| 481 | ly_print(out, " "); |
| 482 | } |
Radek Krejci | a717767 | 2016-11-17 14:53:03 +0900 | [diff] [blame] | 483 | if (any->value.str) { |
| 484 | json_print_string(out, any->value.str); |
| 485 | } else { |
| 486 | ly_print(out, "\"\""); |
| 487 | } |
| 488 | break; |
Michal Vasko | dcaf722 | 2018-08-08 16:27:00 +0200 | [diff] [blame] | 489 | case LYD_ANYDATA_STRING: |
| 490 | case LYD_ANYDATA_SXMLD: |
| 491 | case LYD_ANYDATA_JSOND: |
| 492 | case LYD_ANYDATA_LYBD: |
| 493 | case LYD_ANYDATA_LYB: |
Radek Krejci | a717767 | 2016-11-17 14:53:03 +0900 | [diff] [blame] | 494 | /* other formats are not supported */ |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 495 | LOGINT(node->schema->module->ctx); |
| 496 | return EXIT_FAILURE; |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | /* print attributes as sibling leaf */ |
Fred Gan | a68649e | 2021-01-27 15:30:18 +0800 | [diff] [blame] | 500 | switch(node->schema->nodetype) { |
| 501 | case LYS_ANYXML: |
| 502 | if (level) { |
| 503 | level--; |
Radek Krejci | da61fb2 | 2015-10-30 11:10:03 +0100 | [diff] [blame] | 504 | } |
Fred Gan | a68649e | 2021-01-27 15:30:18 +0800 | [diff] [blame] | 505 | if (is_object) { |
| 506 | ly_print(out, "%*s}", LEVEL, INDENT); |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 507 | } |
Fred Gan | a68649e | 2021-01-27 15:30:18 +0800 | [diff] [blame] | 508 | if (node->attr) { |
| 509 | if (schema) { |
| 510 | ly_print(out, ",%s%*s\"@%s:%s\":%s{%s", (level ? "\n" : ""), LEVEL, INDENT, schema, node->schema->name, |
| 511 | (level ? " " : ""), (level ? "\n" : "")); |
| 512 | } else { |
| 513 | ly_print(out, ",%s%*s\"@%s\":%s{%s", (level ? "\n" : ""), LEVEL, INDENT, node->schema->name, |
| 514 | (level ? " " : ""), (level ? "\n" : "")); |
| 515 | } |
| 516 | if (json_print_attrs(out, (level ? level + 1 : level), node, NULL)) { |
| 517 | return EXIT_FAILURE; |
| 518 | } |
| 519 | ly_print(out, "%*s}", LEVEL, INDENT); |
| 520 | } |
| 521 | break; |
| 522 | case LYS_ANYDATA: |
| 523 | if (node->attr) { |
| 524 | ly_print(out, ",%s%*s\"@\":%s{%s", (level ? "\n" : ""), LEVEL, INDENT, (level ? " " : ""), (level ? "\n" : "")); |
| 525 | if (json_print_attrs(out, (level ? level + 1 : level), node, NULL)) { |
| 526 | return EXIT_FAILURE; |
| 527 | } |
| 528 | ly_print(out, "%*s}", LEVEL, INDENT); |
| 529 | } |
| 530 | if (level) { |
| 531 | level--; |
| 532 | } |
| 533 | if (is_object) { |
| 534 | ly_print(out, "%s%*s}", (level ? "\n" : ""), LEVEL, INDENT); |
| 535 | } |
| 536 | break; |
| 537 | default: |
| 538 | LOGINT(node->schema->module->ctx); |
| 539 | return EXIT_FAILURE; |
Michal Vasko | 9696e4d | 2018-05-28 08:28:31 +0200 | [diff] [blame] | 540 | } |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 541 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 542 | LY_PRINT_RET(node->schema->module->ctx); |
Michal Vasko | ab8e440 | 2015-07-17 12:54:28 +0200 | [diff] [blame] | 543 | } |
| 544 | |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 545 | static int |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 546 | json_print_nodes(struct lyout *out, int level, const struct lyd_node *root, int withsiblings, int toplevel, int options) |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 547 | { |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 548 | int comma_flag = 0; |
Radek Krejci | 572f122 | 2016-09-01 09:52:47 +0200 | [diff] [blame] | 549 | const struct lyd_node *node, *iter; |
Radek Krejci | 27aaa73 | 2015-09-04 15:24:04 +0200 | [diff] [blame] | 550 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 551 | LY_PRINT_SET; |
| 552 | |
Radek Krejci | 27aaa73 | 2015-09-04 15:24:04 +0200 | [diff] [blame] | 553 | LY_TREE_FOR(root, node) { |
Michal Vasko | b5bf9bb | 2020-06-01 16:43:40 +0200 | [diff] [blame] | 554 | if (lyd_node_should_print(node, options)) { |
| 555 | /* wd says to print */ |
| 556 | switch (node->schema->nodetype) { |
| 557 | case LYS_RPC: |
| 558 | case LYS_ACTION: |
| 559 | case LYS_NOTIF: |
| 560 | case LYS_CONTAINER: |
Radek Krejci | c90c651 | 2018-02-14 15:21:19 +0100 | [diff] [blame] | 561 | if (comma_flag) { |
Radek Krejci | 27aaa73 | 2015-09-04 15:24:04 +0200 | [diff] [blame] | 562 | /* print the previous comma */ |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 563 | ly_print(out, ",%s", (level ? "\n" : "")); |
Radek Krejci | 27aaa73 | 2015-09-04 15:24:04 +0200 | [diff] [blame] | 564 | } |
Michal Vasko | b5bf9bb | 2020-06-01 16:43:40 +0200 | [diff] [blame] | 565 | if (json_print_container(out, level, node, toplevel, options)) { |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 566 | return EXIT_FAILURE; |
| 567 | } |
Michal Vasko | b5bf9bb | 2020-06-01 16:43:40 +0200 | [diff] [blame] | 568 | break; |
| 569 | case LYS_LEAF: |
| 570 | if (comma_flag) { |
| 571 | /* print the previous comma */ |
| 572 | ly_print(out, ",%s", (level ? "\n" : "")); |
| 573 | } |
| 574 | if (json_print_leaf(out, level, node, 0, toplevel, options)) { |
| 575 | return EXIT_FAILURE; |
| 576 | } |
| 577 | break; |
| 578 | case LYS_LEAFLIST: |
| 579 | case LYS_LIST: |
| 580 | /* is it already printed? (root node is not) */ |
| 581 | for (iter = node->prev; iter->next && node != root; iter = iter->prev) { |
| 582 | if (iter == node) { |
| 583 | continue; |
| 584 | } |
| 585 | if (iter->schema == node->schema) { |
| 586 | /* the list has alread some previous instance and therefore it is already printed */ |
| 587 | break; |
| 588 | } |
| 589 | } |
| 590 | if (!iter->next || node == root) { |
| 591 | if (comma_flag) { |
| 592 | /* print the previous comma */ |
| 593 | ly_print(out, ",%s", (level ? "\n" : "")); |
| 594 | } |
| 595 | |
| 596 | /* print the list/leaflist */ |
| 597 | if (json_print_leaf_list(out, level, node, node->schema->nodetype == LYS_LIST ? 1 : 0, toplevel, options)) { |
| 598 | return EXIT_FAILURE; |
| 599 | } |
| 600 | } |
| 601 | break; |
| 602 | case LYS_ANYXML: |
| 603 | case LYS_ANYDATA: |
| 604 | if (comma_flag) { |
| 605 | /* print the previous comma */ |
| 606 | ly_print(out, ",%s", (level ? "\n" : "")); |
| 607 | } |
| 608 | if (json_print_anydataxml(out, level, node, toplevel, options)) { |
| 609 | return EXIT_FAILURE; |
| 610 | } |
| 611 | break; |
| 612 | default: |
| 613 | LOGINT(node->schema->module->ctx); |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 614 | return EXIT_FAILURE; |
| 615 | } |
Michal Vasko | b5bf9bb | 2020-06-01 16:43:40 +0200 | [diff] [blame] | 616 | |
| 617 | comma_flag = 1; |
Radek Krejci | 27aaa73 | 2015-09-04 15:24:04 +0200 | [diff] [blame] | 618 | } |
Radek Krejci | 5044be3 | 2016-01-18 17:05:51 +0100 | [diff] [blame] | 619 | |
| 620 | if (!withsiblings) { |
| 621 | break; |
| 622 | } |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 623 | } |
Radek Krejci | 4ae8294 | 2016-09-19 16:41:06 +0200 | [diff] [blame] | 624 | if (root && level) { |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 625 | ly_print(out, "\n"); |
| 626 | } |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 627 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 628 | LY_PRINT_RET(root ? root->schema->module->ctx : NULL); |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 629 | } |
| 630 | |
Radek Krejci | f3752b0 | 2015-10-02 15:31:34 +0200 | [diff] [blame] | 631 | int |
Radek Krejci | 5044be3 | 2016-01-18 17:05:51 +0100 | [diff] [blame] | 632 | json_print_data(struct lyout *out, const struct lyd_node *root, int options) |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 633 | { |
Michal Vasko | afa7a64 | 2016-10-18 15:11:38 +0200 | [diff] [blame] | 634 | const struct lyd_node *node, *next; |
| 635 | int level = 0, action_input = 0; |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 636 | |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 637 | LY_PRINT_SET; |
| 638 | |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 639 | if (options & LYP_FORMAT) { |
| 640 | ++level; |
| 641 | } |
| 642 | |
Michal Vasko | afa7a64 | 2016-10-18 15:11:38 +0200 | [diff] [blame] | 643 | if (options & LYP_NETCONF) { |
| 644 | if (root->schema->nodetype != LYS_RPC) { |
| 645 | /* learn whether we are printing an action */ |
| 646 | LY_TREE_DFS_BEGIN(root, next, node) { |
| 647 | if (node->schema->nodetype == LYS_ACTION) { |
| 648 | break; |
| 649 | } |
| 650 | LY_TREE_DFS_END(root, next, node); |
| 651 | } |
| 652 | } else { |
| 653 | node = root; |
| 654 | } |
| 655 | |
| 656 | if (node && (node->schema->nodetype & (LYS_RPC | LYS_ACTION))) { |
| 657 | if (node->child && (node->child->schema->parent->nodetype == LYS_OUTPUT)) { |
| 658 | /* skip the container */ |
| 659 | root = node->child; |
| 660 | } else if (node->schema->nodetype == LYS_ACTION) { |
| 661 | action_input = 1; |
| 662 | } |
| 663 | } |
| 664 | } |
| 665 | |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 666 | /* start */ |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 667 | ly_print(out, "{%s", (level ? "\n" : "")); |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 668 | |
Michal Vasko | afa7a64 | 2016-10-18 15:11:38 +0200 | [diff] [blame] | 669 | if (action_input) { |
| 670 | ly_print(out, "%*s\"yang:action\":%s{%s", LEVEL, INDENT, (level ? " " : ""), (level ? "\n" : "")); |
| 671 | if (level) { |
| 672 | ++level; |
| 673 | } |
| 674 | } |
| 675 | |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 676 | /* content */ |
Michal Vasko | b3c31bd | 2017-07-17 10:01:48 +0200 | [diff] [blame] | 677 | if (json_print_nodes(out, level, root, options & LYP_WITHSIBLINGS, 1, options)) { |
| 678 | return EXIT_FAILURE; |
| 679 | } |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 680 | |
Michal Vasko | afa7a64 | 2016-10-18 15:11:38 +0200 | [diff] [blame] | 681 | if (action_input) { |
| 682 | if (level) { |
| 683 | --level; |
| 684 | } |
| 685 | ly_print(out, "%*s}%s", LEVEL, INDENT, (level ? "\n" : "")); |
| 686 | } |
| 687 | |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 688 | /* end */ |
Michal Vasko | 95068c4 | 2016-03-24 14:58:11 +0100 | [diff] [blame] | 689 | ly_print(out, "}%s", (level ? "\n" : "")); |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 690 | |
Michal Vasko | afa7a64 | 2016-10-18 15:11:38 +0200 | [diff] [blame] | 691 | ly_print_flush(out); |
Michal Vasko | 609d708 | 2019-04-26 09:35:40 +0200 | [diff] [blame] | 692 | LY_PRINT_RET(NULL); |
Radek Krejci | 94ca54b | 2015-07-08 15:48:47 +0200 | [diff] [blame] | 693 | } |