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