blob: 2039ad791ebbf3be68cc1d013ffc594dc2df01dc [file] [log] [blame]
/**
* @file printer/json.c
* @author Radek Krejci <rkrejci@cesnet.cz>
* @brief JSON printer for libyang data structure
*
* Copyright (c) 2015 CESNET, z.s.p.o.
*
* This source code is licensed under BSD 3-Clause License (the "License").
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://opensource.org/licenses/BSD-3-Clause
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <inttypes.h>
#include "common.h"
#include "printer.h"
#include "tree_data.h"
#include "resolve.h"
#include "tree_internal.h"
#define INDENT ""
#define LEVEL (level*2)
static void json_print_nodes(struct lyout *out, int level, const struct lyd_node *root, int withsiblings);
static int
json_print_string(struct lyout *out, const char *text)
{
unsigned int i, n;
if (!text) {
return 0;
}
ly_write(out, "\"", 1);
for (i = n = 0; text[i]; i++) {
if (text[i] < 0x20) {
/* control character */
n += ly_print(out, "\\u%.4X");
} else {
switch (text[i]) {
case '"':
n += ly_print(out, "\\\"");
break;
case '\\':
n += ly_print(out, "\\\\");
break;
default:
ly_write(out, &text[i], 1);
n++;
}
}
}
ly_write(out, "\"", 1);
return n + 2;
}
static void
json_print_attrs(struct lyout *out, int level, const struct lyd_node *node)
{
struct lyd_attr *attr;
for (attr = node->attr; attr; attr = attr->next) {
if (attr->module != node->schema->module) {
ly_print(out, "%*s\"%s:%s\":", LEVEL, INDENT, attr->module->name, attr->name);
} else {
ly_print(out, "%*s\"%s\":", LEVEL, INDENT, attr->name);
}
json_print_string(out, attr->value ? attr->value : "");
ly_print(out, "%s", attr->next ? ",\n" : "\n");
}
}
static void
json_print_leaf(struct lyout *out, int level, const struct lyd_node *node, int onlyvalue)
{
struct lyd_node_leaf_list *leaf = (struct lyd_node_leaf_list *)node;
const char *schema = NULL;
if (!onlyvalue) {
if (!node->parent || nscmp(node, node->parent)) {
/* print "namespace" */
schema = lys_node_module(node->schema)->name;
ly_print(out, "%*s\"%s:%s\": ", LEVEL, INDENT, schema, node->schema->name);
} else {
ly_print(out, "%*s\"%s\": ", LEVEL, INDENT, node->schema->name);
}
}
switch (leaf->value_type & LY_DATA_TYPE_MASK) {
case LY_TYPE_BINARY:
case LY_TYPE_STRING:
case LY_TYPE_BITS:
case LY_TYPE_ENUM:
case LY_TYPE_IDENT:
case LY_TYPE_INST:
json_print_string(out, leaf->value_str ? leaf->value_str : "");
break;
case LY_TYPE_BOOL:
case LY_TYPE_DEC64:
case LY_TYPE_INT8:
case LY_TYPE_INT16:
case LY_TYPE_INT32:
case LY_TYPE_INT64:
case LY_TYPE_UINT8:
case LY_TYPE_UINT16:
case LY_TYPE_UINT32:
case LY_TYPE_UINT64:
ly_print(out, "%s", leaf->value_str ? leaf->value_str : "null");
break;
case LY_TYPE_LEAFREF:
if (leaf->value.leafref) {
json_print_leaf(out, level, leaf->value.leafref, 1);
} else {
ly_print(out, "");
}
break;
case LY_TYPE_EMPTY:
ly_print(out, "[null]");
break;
default:
/* error */
ly_print(out, "\"(!error!)\"");
}
/* print attributes as sibling leafs */
if (!onlyvalue && node->attr) {
if (schema) {
ly_print(out, ",\n%*s\"@%s:%s\": {\n", LEVEL, INDENT, schema, node->schema->name);
} else {
ly_print(out, ",\n%*s\"@%s\": {\n", LEVEL, INDENT, node->schema->name);
}
json_print_attrs(out, level + 1, node);
ly_print(out, "%*s}", LEVEL, INDENT);
}
return;
}
static void
json_print_container(struct lyout *out, int level, const struct lyd_node *node)
{
const char *schema;
if (!node->parent || nscmp(node, node->parent)) {
/* print "namespace" */
schema = lys_node_module(node->schema)->name;
ly_print(out, "%*s\"%s:%s\": {\n", LEVEL, INDENT, schema, node->schema->name);
} else {
ly_print(out, "%*s\"%s\": {\n", LEVEL, INDENT, node->schema->name);
}
level++;
if (node->attr) {
ly_print(out, "%*s\"@\": {\n", LEVEL, INDENT);
json_print_attrs(out, level + 1, node);
ly_print(out, "%*s}%s", LEVEL, INDENT, node->child ? ",\n" : "");
}
json_print_nodes(out, level, node->child, 1);
level--;
ly_print(out, "%*s}", LEVEL, INDENT);
}
static void
json_print_leaf_list(struct lyout *out, int level, const struct lyd_node *node, int is_list)
{
const char *schema = NULL;
const struct lyd_node *list = node;
int flag_empty = 0, flag_attrs = 0;
if (!list->child) {
/* empty, e.g. in case of filter */
flag_empty = 1;
}
if (!node->parent || nscmp(node, node->parent)) {
/* print "namespace" */
schema = lys_node_module(node->schema)->name;
ly_print(out, "%*s\"%s:%s\":", LEVEL, INDENT, schema, node->schema->name);
} else {
ly_print(out, "%*s\"%s\":", LEVEL, INDENT, node->schema->name);
}
if (flag_empty) {
ly_print(out, " null");
return;
}
ly_print(out, " [\n");
if (!is_list) {
++level;
}
while (list) {
if (is_list) {
/* list print */
++level;
ly_print(out, "%*s{\n", LEVEL, INDENT);
++level;
if (list->attr) {
ly_print(out, "%*s\"@\": {\n", LEVEL, INDENT);
json_print_attrs(out, level + 1, node);
ly_print(out, "%*s}%s", LEVEL, INDENT, list->child ? ",\n" : "");
}
json_print_nodes(out, level, list->child, 1);
--level;
ly_print(out, "%*s}", LEVEL, INDENT);
--level;
} else {
/* leaf-list print */
ly_print(out, "%*s", LEVEL, INDENT);
json_print_leaf(out, level, list, 1);
if (list->attr) {
flag_attrs = 1;
}
}
for (list = list->next; list && list->schema != node->schema; list = list->next);
if (list) {
ly_print(out, ",\n");
}
}
if (!is_list) {
--level;
}
ly_print(out, "\n%*s]", LEVEL, INDENT);
/* attributes */
if (!is_list && flag_attrs) {
if (schema) {
ly_print(out, ",\n%*s\"@%s:%s\": [\n", LEVEL, INDENT, schema, node->schema->name);
} else {
ly_print(out, ",\n%*s\"@%s\": [\n", LEVEL, INDENT, node->schema->name);
}
level++;
for (list = node; list; ) {
if (list->attr) {
ly_print(out, "%*s{ ", LEVEL, INDENT);
json_print_attrs(out, 0, list);
ly_print(out, "%*s}", LEVEL, INDENT);
} else {
ly_print(out, "%*snull", LEVEL, INDENT);
}
for (list = list->next; list && list->schema != node->schema; list = list->next);
if (list) {
ly_print(out, ",\n");
}
}
level--;
ly_print(out, "\n%*s]", LEVEL, INDENT);
}
}
static void
json_print_anyxml(struct lyout *out, int level, const struct lyd_node *node)
{
const char *schema = NULL;
struct lyd_node_anyxml *axml = (struct lyd_node_anyxml *)node;
char *xml;
if (!node->parent || nscmp(node, node->parent)) {
/* print "namespace" */
schema = lys_node_module(node->schema)->name;
ly_print(out, "%*s\"%s:%s\": ", LEVEL, INDENT, schema, node->schema->name);
} else {
ly_print(out, "%*s\"%s\": ", LEVEL, INDENT, node->schema->name);
}
if (axml->value) {
/* print content */
if (axml->value->content) {
json_print_string(out, axml->value->content);
}
/* print children */
if (axml->value->child) {
lyxml_print_mem(&xml, axml->value->child, LYXML_PRINT_SIBLINGS);
json_print_string(out, xml);
free(xml);
}
}
if (!axml->value || (!axml->value->content && !axml->value->child)) {
ly_print(out, "[null]");
}
/* print attributes as sibling leaf */
if (node->attr) {
if (schema) {
ly_print(out, ",\n%*s\"@%s:%s\": {\n", LEVEL, INDENT, schema, node->schema->name);
} else {
ly_print(out, ",\n%*s\"@%s\": {\n", LEVEL, INDENT, node->schema->name);
}
json_print_attrs(out, level + 1, node);
ly_print(out, "%*s}", LEVEL, INDENT);
}
}
static void
json_print_nodes(struct lyout *out, int level, const struct lyd_node *root, int withsiblings)
{
const struct lyd_node *node, *iter;
LY_TREE_FOR(root, node) {
switch (node->schema->nodetype) {
case LYS_RPC:
case LYS_NOTIF:
case LYS_CONTAINER:
if (node->prev->next) {
/* print the previous comma */
ly_print(out, ",\n");
}
json_print_container(out, level, node);
break;
case LYS_LEAF:
if (node->prev->next) {
/* print the previous comma */
ly_print(out, ",\n");
}
json_print_leaf(out, level, node, 0);
break;
case LYS_LEAFLIST:
case LYS_LIST:
/* is it already printed? */
for (iter = node->prev; iter->next; iter = iter->prev) {
if (iter == node) {
continue;
}
if (iter->schema == node->schema) {
/* the list has alread some previous instance and therefore it is already printed */
break;
}
}
if (!iter->next) {
if (node->prev->next) {
/* print the previous comma */
ly_print(out, ",\n");
}
/* print the list/leaflist */
json_print_leaf_list(out, level, node, node->schema->nodetype == LYS_LIST ? 1 : 0);
}
break;
case LYS_ANYXML:
if (node->prev->next) {
/* print the previous comma */
ly_print(out, ",\n");
}
json_print_anyxml(out, level, node);
break;
default:
LOGINT;
break;
}
if (!withsiblings) {
break;
}
}
ly_print(out, "\n");
}
int
json_print_data(struct lyout *out, const struct lyd_node *root, int options)
{
int level = 0;
/* start */
ly_print(out, "{\n");
/* content */
json_print_nodes(out, level + 1, root, options & LYP_WITHSIBLINGS);
/* end */
ly_print(out, "}\n");
return EXIT_SUCCESS;
}