blob: bbb2eda3cfd7cc04f7b36e34d9662b96c83fd27a [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
2 * @file printer_data.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Generic data printers functions.
5 *
6 * Copyright (c) 2015 - 2019 CESNET, z.s.p.o.
7 *
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
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
Radek Krejci535ea9f2020-05-29 16:01:05 +020015#include "printer_data.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020016
Radek Krejcie7b95092019-05-15 11:03:07 +020017#include <stdio.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020018#include <unistd.h>
19
Radek Krejci535ea9f2020-05-29 16:01:05 +020020#include "common.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020021#include "log.h"
Radek Krejci26da5222020-06-09 17:43:17 +020022#include "printer.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020023#include "printer_internal.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020024#include "tree_data.h"
25
Michal Vasko63f3d842020-07-08 10:10:14 +020026API LY_ERR
Radek Krejci241f6b52020-05-21 18:13:49 +020027lyd_print(struct ly_out *out, const struct lyd_node *root, LYD_FORMAT format, int options)
Radek Krejcie7b95092019-05-15 11:03:07 +020028{
Radek Krejcib1247842020-07-02 16:22:38 +020029 LY_ERR ret = LY_EINVAL;
Radek Krejcia5bba312020-01-09 15:41:20 +010030
Michal Vasko63f3d842020-07-08 10:10:14 +020031 LY_CHECK_ARG_RET(NULL, out, root, LY_EINVAL);
Radek Krejcia5bba312020-01-09 15:41:20 +010032
Michal Vasko63f3d842020-07-08 10:10:14 +020033 /* reset number of printed bytes */
34 out->func_printed = 0;
Radek Krejcie7b95092019-05-15 11:03:07 +020035
36 switch (format) {
37 case LYD_XML:
38 ret = xml_print_data(out, root, options);
39 break;
40#if 0
41 case LYD_JSON:
42 ret = json_print_data(out, root, options);
43 break;
Michal Vasko60ea6352020-06-29 13:39:39 +020044#endif
Radek Krejcie7b95092019-05-15 11:03:07 +020045 case LYD_LYB:
46 ret = lyb_print_data(out, root, options);
47 break;
Michal Vasko60ea6352020-06-29 13:39:39 +020048 case LYD_SCHEMA:
49 LOGERR(out->ctx, LY_EINVAL, "Invalid output format.");
Radek Krejcie7b95092019-05-15 11:03:07 +020050 ret = LY_EINVAL;
51 break;
52 }
53
Michal Vasko63f3d842020-07-08 10:10:14 +020054 return ret;
Radek Krejcie7b95092019-05-15 11:03:07 +020055}
Radek Krejci26da5222020-06-09 17:43:17 +020056
57static LY_ERR
58lyd_print_(struct ly_out *out, const struct lyd_node *root, LYD_FORMAT format, int options)
59{
Michal Vasko63f3d842020-07-08 10:10:14 +020060 LY_ERR ret;
Radek Krejci26da5222020-06-09 17:43:17 +020061
62 LY_CHECK_ARG_RET(NULL, out, LY_EINVAL);
63
Michal Vasko63f3d842020-07-08 10:10:14 +020064 ret = lyd_print(out, root, format, options);
Radek Krejci26da5222020-06-09 17:43:17 +020065
66 ly_out_free(out, NULL, 0);
Michal Vasko63f3d842020-07-08 10:10:14 +020067 return ret;
Radek Krejci26da5222020-06-09 17:43:17 +020068}
69
70API LY_ERR
71lyd_print_mem(char **strp, const struct lyd_node *root, LYD_FORMAT format, int options)
72{
73 struct ly_out *out;
74
75 LY_CHECK_ARG_RET(NULL, strp, root, LY_EINVAL);
76
77 /* init */
78 *strp = NULL;
79
Radek Krejci84ce7b12020-06-11 17:28:25 +020080 LY_CHECK_RET(ly_out_new_memory(strp, 0, &out));
Radek Krejci26da5222020-06-09 17:43:17 +020081 return lyd_print_(out, root, format, options);
82}
83
84API LY_ERR
85lyd_print_fd(int fd, const struct lyd_node *root, LYD_FORMAT format, int options)
86{
87 struct ly_out *out;
88
89 LY_CHECK_ARG_RET(NULL, fd != -1, root, LY_EINVAL);
90
Radek Krejci84ce7b12020-06-11 17:28:25 +020091 LY_CHECK_RET(ly_out_new_fd(fd, &out));
Radek Krejci26da5222020-06-09 17:43:17 +020092 return lyd_print_(out, root, format, options);
93}
94
95API LY_ERR
96lyd_print_file(FILE *f, const struct lyd_node *root, LYD_FORMAT format, int options)
97{
98 struct ly_out *out;
99
100 LY_CHECK_ARG_RET(NULL, f, root, LY_EINVAL);
101
Radek Krejci84ce7b12020-06-11 17:28:25 +0200102 LY_CHECK_RET(ly_out_new_file(f, &out));
Radek Krejci26da5222020-06-09 17:43:17 +0200103 return lyd_print_(out, root, format, options);
104}
105
106API LY_ERR
107lyd_print_path(const char *path, const struct lyd_node *root, LYD_FORMAT format, int options)
108{
109 struct ly_out *out;
110
111 LY_CHECK_ARG_RET(NULL, path, root, LY_EINVAL);
112
Radek Krejci84ce7b12020-06-11 17:28:25 +0200113 LY_CHECK_RET(ly_out_new_filepath(path, &out));
Radek Krejci26da5222020-06-09 17:43:17 +0200114 return lyd_print_(out, root, format, options);
115}
116
117API LY_ERR
118lyd_print_clb(ssize_t (*writeclb)(void *arg, const void *buf, size_t count), void *arg,
119 const struct lyd_node *root, LYD_FORMAT format, int options)
120{
121 struct ly_out *out;
122
123 LY_CHECK_ARG_RET(NULL, writeclb, root, LY_EINVAL);
124
Radek Krejci84ce7b12020-06-11 17:28:25 +0200125 LY_CHECK_RET(ly_out_new_clb(writeclb, arg, &out));
Radek Krejci26da5222020-06-09 17:43:17 +0200126 return lyd_print_(out, root, format, options);
127}