blob: 0aeb6d5a301f168df30f27ad42c33629eee93ea3 [file] [log] [blame]
Radek Krejcid3ca0632019-04-16 16:54:54 +02001/**
2 * @file printer_yang.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief YANG printer
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#define _GNU_SOURCE
Radek Krejcid3ca0632019-04-16 16:54:54 +020016
Radek Krejci693262f2019-04-29 15:23:20 +020017#include <inttypes.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020018#include <stdint.h>
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
Radek Krejci47fab892020-11-05 17:02:41 +010022#include <sys/types.h>
Radek Krejci693262f2019-04-29 15:23:20 +020023
Radek Krejci535ea9f2020-05-29 16:01:05 +020024#include "common.h"
Radek Krejciaa45bda2020-07-20 07:43:38 +020025#include "compat.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020026#include "log.h"
Radek Krejci47fab892020-11-05 17:02:41 +010027#include "out.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020028#include "out_internal.h"
Radek Krejci47fab892020-11-05 17:02:41 +010029#include "plugins_types.h"
Radek Krejcid3ca0632019-04-16 16:54:54 +020030#include "printer_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020031#include "printer_schema.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020032#include "tree.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020033#include "tree_data.h"
Radek Krejcid3ca0632019-04-16 16:54:54 +020034#include "tree_schema.h"
35#include "tree_schema_internal.h"
Radek Krejci693262f2019-04-29 15:23:20 +020036#include "xpath.h"
Radek Krejcid3ca0632019-04-16 16:54:54 +020037
Radek Krejcie7b95092019-05-15 11:03:07 +020038/**
39 * @brief Types of the YANG printers
40 */
Radek Krejci693262f2019-04-29 15:23:20 +020041enum schema_type {
Radek Krejcie7b95092019-05-15 11:03:07 +020042 YPR_PARSED, /**< YANG printer of the parsed schema */
43 YPR_COMPILED /**< YANG printer of the compiled schema */
Radek Krejci693262f2019-04-29 15:23:20 +020044};
45
Radek Krejcie7b95092019-05-15 11:03:07 +020046/**
47 * @brief YANG printer context.
48 */
Radek Krejcid3ca0632019-04-16 16:54:54 +020049struct ypr_ctx {
Radek Krejci1deb5be2020-08-26 16:43:36 +020050 struct ly_out *out; /**< output specification */
51 uint16_t level; /**< current indentation level: 0 - no formatting, >= 1 indentation levels */
52 uint32_t options; /**< Schema output options (see @ref schemaprinterflags). */
Radek Krejcie7b95092019-05-15 11:03:07 +020053 const struct lys_module *module; /**< schema to print */
54 enum schema_type schema; /**< type of the schema to print */
Radek Krejcid3ca0632019-04-16 16:54:54 +020055};
56
Radek Krejcie7b95092019-05-15 11:03:07 +020057/**
58 * @brief Print the given text as content of a double quoted YANG string,
59 * including encoding characters that have special meanings. The quotation marks
60 * are not printed.
61 *
62 * Follows RFC 7950, section 6.1.3.
63 *
64 * @param[in] out Output specification.
65 * @param[in] text String to be printed.
Radek Krejcif56e2a42019-09-09 14:15:25 +020066 * @param[in] len Length of the string from @p text to be printed. In case of -1,
Radek Krejcie7b95092019-05-15 11:03:07 +020067 * the @p text is printed completely as a NULL-terminated string.
68 */
Radek Krejcid3ca0632019-04-16 16:54:54 +020069static void
Radek Krejci1deb5be2020-08-26 16:43:36 +020070ypr_encode(struct ly_out *out, const char *text, ssize_t len)
Radek Krejcid3ca0632019-04-16 16:54:54 +020071{
Radek Krejci1deb5be2020-08-26 16:43:36 +020072 size_t i, start_len;
Radek Krejcid3ca0632019-04-16 16:54:54 +020073 const char *start;
74 char special = 0;
75
76 if (!len) {
77 return;
78 }
79
80 if (len < 0) {
81 len = strlen(text);
82 }
83
84 start = text;
85 start_len = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +020086 for (i = 0; i < (size_t)len; ++i) {
Radek Krejcid3ca0632019-04-16 16:54:54 +020087 switch (text[i]) {
88 case '\n':
89 case '\t':
90 case '\"':
91 case '\\':
92 special = text[i];
93 break;
94 default:
95 ++start_len;
96 break;
97 }
98
99 if (special) {
Michal Vasko5233e962020-08-14 14:26:20 +0200100 ly_write_(out, start, start_len);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200101 switch (special) {
102 case '\n':
Michal Vasko5233e962020-08-14 14:26:20 +0200103 ly_write_(out, "\\n", 2);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200104 break;
105 case '\t':
Michal Vasko5233e962020-08-14 14:26:20 +0200106 ly_write_(out, "\\t", 2);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200107 break;
108 case '\"':
Michal Vasko5233e962020-08-14 14:26:20 +0200109 ly_write_(out, "\\\"", 2);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200110 break;
111 case '\\':
Michal Vasko5233e962020-08-14 14:26:20 +0200112 ly_write_(out, "\\\\", 2);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200113 break;
114 }
115
116 start += start_len + 1;
117 start_len = 0;
118
119 special = 0;
120 }
121 }
122
Michal Vasko5233e962020-08-14 14:26:20 +0200123 ly_write_(out, start, start_len);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200124}
125
126static void
Radek Krejci857189e2020-09-01 13:26:36 +0200127ypr_open(struct ly_out *out, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200128{
129 if (flag && !*flag) {
130 *flag = 1;
Michal Vasko5233e962020-08-14 14:26:20 +0200131 ly_print_(out, " {\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +0200132 }
133}
134
135static void
Radek Krejci857189e2020-09-01 13:26:36 +0200136ypr_close(struct ypr_ctx *ctx, ly_bool flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200137{
138 if (flag) {
Michal Vasko5233e962020-08-14 14:26:20 +0200139 ly_print_(ctx->out, "%*s}\n", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200140 } else {
Michal Vasko5233e962020-08-14 14:26:20 +0200141 ly_print_(ctx->out, ";\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +0200142 }
143}
144
145static void
Radek Krejci857189e2020-09-01 13:26:36 +0200146ypr_text(struct ypr_ctx *ctx, const char *name, const char *text, ly_bool singleline, ly_bool closed)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200147{
148 const char *s, *t;
149
150 if (singleline) {
Michal Vasko5233e962020-08-14 14:26:20 +0200151 ly_print_(ctx->out, "%*s%s \"", INDENT, name);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200152 } else {
Michal Vasko5233e962020-08-14 14:26:20 +0200153 ly_print_(ctx->out, "%*s%s\n", INDENT, name);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200154 LEVEL++;
155
Michal Vasko5233e962020-08-14 14:26:20 +0200156 ly_print_(ctx->out, "%*s\"", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200157 }
158 t = text;
159 while ((s = strchr(t, '\n'))) {
160 ypr_encode(ctx->out, t, s - t);
Michal Vasko5233e962020-08-14 14:26:20 +0200161 ly_print_(ctx->out, "\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +0200162 t = s + 1;
163 if (*t != '\n') {
Michal Vasko5233e962020-08-14 14:26:20 +0200164 ly_print_(ctx->out, "%*s ", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200165 }
166 }
167
168 ypr_encode(ctx->out, t, strlen(t));
169 if (closed) {
Michal Vasko5233e962020-08-14 14:26:20 +0200170 ly_print_(ctx->out, "\";\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +0200171 } else {
Michal Vasko5233e962020-08-14 14:26:20 +0200172 ly_print_(ctx->out, "\"");
Radek Krejcid3ca0632019-04-16 16:54:54 +0200173 }
174 if (!singleline) {
175 LEVEL--;
176 }
177}
178
179static void
Radek Krejci693262f2019-04-29 15:23:20 +0200180yprp_stmt(struct ypr_ctx *ctx, struct lysp_stmt *stmt)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200181{
182 struct lysp_stmt *childstmt;
183 const char *s, *t;
184
185 if (stmt->arg) {
186 if (stmt->flags) {
Michal Vasko5233e962020-08-14 14:26:20 +0200187 ly_print_(ctx->out, "%*s%s\n", INDENT, stmt->stmt);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200188 LEVEL++;
Michal Vasko5233e962020-08-14 14:26:20 +0200189 ly_print_(ctx->out, "%*s%c", INDENT, (stmt->flags & LYS_DOUBLEQUOTED) ? '\"' : '\'');
Radek Krejcid3ca0632019-04-16 16:54:54 +0200190 t = stmt->arg;
191 while ((s = strchr(t, '\n'))) {
192 ypr_encode(ctx->out, t, s - t);
Michal Vasko5233e962020-08-14 14:26:20 +0200193 ly_print_(ctx->out, "\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +0200194 t = s + 1;
195 if (*t != '\n') {
Michal Vasko5233e962020-08-14 14:26:20 +0200196 ly_print_(ctx->out, "%*s ", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200197 }
198 }
199 LEVEL--;
200 ypr_encode(ctx->out, t, strlen(t));
Michal Vasko5233e962020-08-14 14:26:20 +0200201 ly_print_(ctx->out, "%c%s", (stmt->flags & LYS_DOUBLEQUOTED) ? '\"' : '\'', stmt->child ? " {\n" : ";\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +0200202 } else {
Michal Vasko5233e962020-08-14 14:26:20 +0200203 ly_print_(ctx->out, "%*s%s %s%s", INDENT, stmt->stmt, stmt->arg, stmt->child ? " {\n" : ";\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +0200204 }
205 } else {
Michal Vasko5233e962020-08-14 14:26:20 +0200206 ly_print_(ctx->out, "%*s%s%s", INDENT, stmt->stmt, stmt->child ? " {\n" : ";\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +0200207 }
208
209 if (stmt->child) {
210 LEVEL++;
211 LY_LIST_FOR(stmt->child, childstmt) {
Radek Krejci693262f2019-04-29 15:23:20 +0200212 yprp_stmt(ctx, childstmt);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200213 }
214 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +0200215 ly_print_(ctx->out, "%*s}\n", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200216 }
217}
218
219/**
220 * @param[in] count Number of extensions to print, 0 to print them all.
221 */
222static void
Radek Krejci693262f2019-04-29 15:23:20 +0200223yprp_extension_instances(struct ypr_ctx *ctx, LYEXT_SUBSTMT substmt, uint8_t substmt_index,
Radek Krejci857189e2020-09-01 13:26:36 +0200224 struct lysp_ext_instance *ext, ly_bool *flag, LY_ARRAY_COUNT_TYPE count)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200225{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200226 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200227 struct lysp_stmt *stmt;
Radek Krejci857189e2020-09-01 13:26:36 +0200228 ly_bool child_presence;
Radek Krejcif56e2a42019-09-09 14:15:25 +0200229 const char *argument;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200230
231 if (!count && ext) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200232 count = LY_ARRAY_COUNT(ext);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200233 }
234 LY_ARRAY_FOR(ext, u) {
235 if (!count) {
236 break;
237 }
Radek Krejcid3ca0632019-04-16 16:54:54 +0200238
Radek Krejcid3ca0632019-04-16 16:54:54 +0200239 count--;
Michal Vasko3e9bc2f2020-11-04 17:13:56 +0100240 if ((ext->flags & LYS_INTERNAL) || (ext->insubstmt != substmt) || (ext->insubstmt_index != substmt_index)) {
Radek Krejcif56e2a42019-09-09 14:15:25 +0200241 continue;
242 }
243
244 if (!ext->compiled && ext->yin) {
Michal Vasko5233e962020-08-14 14:26:20 +0200245 ly_print_(ctx->out, "%*s%s; // Model comes from different input format, extensions must be resolved first.\n", INDENT, ext[u].name);
Radek Krejcif56e2a42019-09-09 14:15:25 +0200246 continue;
247 }
248
Radek Krejcif56e2a42019-09-09 14:15:25 +0200249 ypr_open(ctx->out, flag);
250 argument = NULL;
251 if (ext[u].compiled) {
252 argument = ext[u].compiled->argument;
253 } else {
254 argument = ext[u].argument;
255 }
256 if (argument) {
Michal Vasko5233e962020-08-14 14:26:20 +0200257 ly_print_(ctx->out, "%*s%s \"", INDENT, ext[u].name);
Radek Krejcif56e2a42019-09-09 14:15:25 +0200258 ypr_encode(ctx->out, argument, -1);
Michal Vasko5233e962020-08-14 14:26:20 +0200259 ly_print_(ctx->out, "\"");
Radek Krejcif56e2a42019-09-09 14:15:25 +0200260 } else {
Michal Vasko5233e962020-08-14 14:26:20 +0200261 ly_print_(ctx->out, "%*s%s", INDENT, ext[u].name);
Radek Krejcif56e2a42019-09-09 14:15:25 +0200262 }
263
264 child_presence = 0;
265 LEVEL++;
266 LY_LIST_FOR(ext[u].child, stmt) {
267 if (stmt->flags & (LYS_YIN_ATTR | LYS_YIN_ARGUMENT)) {
268 continue;
269 }
270 if (!child_presence) {
Michal Vasko5233e962020-08-14 14:26:20 +0200271 ly_print_(ctx->out, " {\n");
Radek Krejcif56e2a42019-09-09 14:15:25 +0200272 child_presence = 1;
273 }
274 yprp_stmt(ctx, stmt);
275 }
276 LEVEL--;
277 if (child_presence) {
Michal Vasko5233e962020-08-14 14:26:20 +0200278 ly_print_(ctx->out, "%*s}\n", INDENT);
Radek Krejcif56e2a42019-09-09 14:15:25 +0200279 } else {
Michal Vasko5233e962020-08-14 14:26:20 +0200280 ly_print_(ctx->out, ";\n");
Radek Krejcif56e2a42019-09-09 14:15:25 +0200281 }
Radek Krejcid3ca0632019-04-16 16:54:54 +0200282 }
283}
284
Radek Krejci693262f2019-04-29 15:23:20 +0200285/**
286 * @param[in] count Number of extensions to print, 0 to print them all.
287 */
Radek Krejcid3ca0632019-04-16 16:54:54 +0200288static void
Radek Krejci693262f2019-04-29 15:23:20 +0200289yprc_extension_instances(struct ypr_ctx *ctx, LYEXT_SUBSTMT substmt, uint8_t substmt_index,
Radek Krejci857189e2020-09-01 13:26:36 +0200290 struct lysc_ext_instance *ext, ly_bool *flag, LY_ARRAY_COUNT_TYPE count)
Radek Krejci693262f2019-04-29 15:23:20 +0200291{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200292 LY_ARRAY_COUNT_TYPE u;
Radek Krejci693262f2019-04-29 15:23:20 +0200293
294 if (!count && ext) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200295 count = LY_ARRAY_COUNT(ext);
Radek Krejci693262f2019-04-29 15:23:20 +0200296 }
297 LY_ARRAY_FOR(ext, u) {
298 if (!count) {
299 break;
300 }
301 /* TODO compiled extensions */
302 (void) ctx;
303 (void) substmt;
304 (void) substmt_index;
305 (void) flag;
306
307 count--;
308 }
309}
310
311static void
312ypr_substmt(struct ypr_ctx *ctx, LYEXT_SUBSTMT substmt, uint8_t substmt_index, const char *text, void *ext)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200313{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200314 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +0200315 ly_bool extflag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200316
317 if (!text) {
318 /* nothing to print */
319 return;
320 }
321
322 if (ext_substmt_info[substmt].flags & SUBST_FLAG_ID) {
Michal Vasko5233e962020-08-14 14:26:20 +0200323 ly_print_(ctx->out, "%*s%s %s", INDENT, ext_substmt_info[substmt].name, text);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200324 } else {
325 ypr_text(ctx, ext_substmt_info[substmt].name, text,
Radek Krejci0f969882020-08-21 16:56:47 +0200326 (ext_substmt_info[substmt].flags & SUBST_FLAG_YIN) ? 0 : 1, 0);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200327 }
328
329 LEVEL++;
330 LY_ARRAY_FOR(ext, u) {
Michal Vasko69730152020-10-09 16:30:07 +0200331 if ((((struct lysp_ext_instance *)ext)[u].insubstmt != substmt) || (((struct lysp_ext_instance *)ext)[u].insubstmt_index != substmt_index)) {
Radek Krejcid3ca0632019-04-16 16:54:54 +0200332 continue;
333 }
Radek Krejci693262f2019-04-29 15:23:20 +0200334 if (ctx->schema == YPR_PARSED) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200335 yprp_extension_instances(ctx, substmt, substmt_index, &((struct lysp_ext_instance *)ext)[u], &extflag, 1);
Radek Krejci693262f2019-04-29 15:23:20 +0200336 } else {
Michal Vasko22df3f02020-08-24 13:29:22 +0200337 yprc_extension_instances(ctx, substmt, substmt_index, &((struct lysc_ext_instance *)ext)[u], &extflag, 1);
Radek Krejci693262f2019-04-29 15:23:20 +0200338 }
Radek Krejcid3ca0632019-04-16 16:54:54 +0200339 }
340 LEVEL--;
341 ypr_close(ctx, extflag);
342}
343
344static void
Radek Krejci857189e2020-09-01 13:26:36 +0200345ypr_unsigned(struct ypr_ctx *ctx, LYEXT_SUBSTMT substmt, uint8_t substmt_index, void *exts, unsigned long int attr_value, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200346{
347 char *str;
348
Radek Krejci1deb5be2020-08-26 16:43:36 +0200349 if (asprintf(&str, "%lu", attr_value) == -1) {
Radek Krejcid3ca0632019-04-16 16:54:54 +0200350 LOGMEM(ctx->module->ctx);
351 return;
352 }
353 ypr_open(ctx->out, flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200354 ypr_substmt(ctx, substmt, substmt_index, str, exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200355 free(str);
356}
357
358static void
Radek Krejci857189e2020-09-01 13:26:36 +0200359ypr_signed(struct ypr_ctx *ctx, LYEXT_SUBSTMT substmt, uint8_t substmt_index, void *exts, signed long int attr_value, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200360{
361 char *str;
362
Radek Krejci1deb5be2020-08-26 16:43:36 +0200363 if (asprintf(&str, "%ld", attr_value) == -1) {
Radek Krejcid3ca0632019-04-16 16:54:54 +0200364 LOGMEM(ctx->module->ctx);
365 return;
366 }
367 ypr_open(ctx->out, flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200368 ypr_substmt(ctx, substmt, substmt_index, str, exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200369 free(str);
370}
371
372static void
Radek Krejci693262f2019-04-29 15:23:20 +0200373yprp_revision(struct ypr_ctx *ctx, const struct lysp_revision *rev)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200374{
375 if (rev->dsc || rev->ref || rev->exts) {
Michal Vasko5233e962020-08-14 14:26:20 +0200376 ly_print_(ctx->out, "%*srevision %s {\n", INDENT, rev->date);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200377 LEVEL++;
Radek Krejci693262f2019-04-29 15:23:20 +0200378 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, rev->exts, NULL, 0);
379 ypr_substmt(ctx, LYEXT_SUBSTMT_DESCRIPTION, 0, rev->dsc, rev->exts);
380 ypr_substmt(ctx, LYEXT_SUBSTMT_REFERENCE, 0, rev->ref, rev->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200381 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +0200382 ly_print_(ctx->out, "%*s}\n", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200383 } else {
Michal Vasko5233e962020-08-14 14:26:20 +0200384 ly_print_(ctx->out, "%*srevision %s;\n", INDENT, rev->date);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200385 }
386}
387
388static void
Radek Krejci857189e2020-09-01 13:26:36 +0200389ypr_mandatory(struct ypr_ctx *ctx, uint16_t flags, void *exts, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200390{
391 if (flags & LYS_MAND_MASK) {
392 ypr_open(ctx->out, flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200393 ypr_substmt(ctx, LYEXT_SUBSTMT_MANDATORY, 0, (flags & LYS_MAND_TRUE) ? "true" : "false", exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200394 }
395}
396
397static void
Radek Krejci857189e2020-09-01 13:26:36 +0200398ypr_config(struct ypr_ctx *ctx, uint16_t flags, void *exts, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200399{
400 if (flags & LYS_CONFIG_MASK) {
401 ypr_open(ctx->out, flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200402 ypr_substmt(ctx, LYEXT_SUBSTMT_CONFIG, 0, (flags & LYS_CONFIG_W) ? "true" : "false", exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200403 }
404}
405
406static void
Radek Krejci857189e2020-09-01 13:26:36 +0200407ypr_status(struct ypr_ctx *ctx, uint16_t flags, void *exts, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200408{
409 const char *status = NULL;
410
411 if (flags & LYS_STATUS_CURR) {
412 ypr_open(ctx->out, flag);
413 status = "current";
414 } else if (flags & LYS_STATUS_DEPRC) {
415 ypr_open(ctx->out, flag);
416 status = "deprecated";
417 } else if (flags & LYS_STATUS_OBSLT) {
418 ypr_open(ctx->out, flag);
419 status = "obsolete";
420 }
Radek Krejci693262f2019-04-29 15:23:20 +0200421
422 ypr_substmt(ctx, LYEXT_SUBSTMT_STATUS, 0, status, exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200423}
424
425static void
Radek Krejci857189e2020-09-01 13:26:36 +0200426ypr_description(struct ypr_ctx *ctx, const char *dsc, void *exts, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200427{
428 if (dsc) {
429 ypr_open(ctx->out, flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200430 ypr_substmt(ctx, LYEXT_SUBSTMT_DESCRIPTION, 0, dsc, exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200431 }
432}
433
434static void
Radek Krejci857189e2020-09-01 13:26:36 +0200435ypr_reference(struct ypr_ctx *ctx, const char *ref, void *exts, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200436{
437 if (ref) {
438 ypr_open(ctx->out, flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200439 ypr_substmt(ctx, LYEXT_SUBSTMT_REFERENCE, 0, ref, exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200440 }
441}
442
443static void
Michal Vasko7f45cf22020-10-01 12:49:44 +0200444yprp_iffeatures(struct ypr_ctx *ctx, struct lysp_qname *iffs, struct lysp_ext_instance *exts, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200445{
Michal Vasko7f45cf22020-10-01 12:49:44 +0200446 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci857189e2020-09-01 13:26:36 +0200447 ly_bool extflag;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200448
Michal Vasko7f45cf22020-10-01 12:49:44 +0200449 LY_ARRAY_FOR(iffs, u) {
Radek Krejcid3ca0632019-04-16 16:54:54 +0200450 ypr_open(ctx->out, flag);
451 extflag = 0;
452
Michal Vasko7f45cf22020-10-01 12:49:44 +0200453 ly_print_(ctx->out, "%*sif-feature \"%s\"", INDENT, iffs[u].str);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200454
455 /* extensions */
456 LEVEL++;
Michal Vasko7f45cf22020-10-01 12:49:44 +0200457 LY_ARRAY_FOR(exts, v) {
458 yprp_extension_instances(ctx, LYEXT_SUBSTMT_IFFEATURE, u, &exts[v], &extflag, 1);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200459 }
460 LEVEL--;
461 ypr_close(ctx, extflag);
462 }
463}
464
465static void
Radek Krejci693262f2019-04-29 15:23:20 +0200466yprp_extension(struct ypr_ctx *ctx, const struct lysp_ext *ext)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200467{
Radek Krejci857189e2020-09-01 13:26:36 +0200468 ly_bool flag = 0, flag2 = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200469 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200470
Michal Vasko5233e962020-08-14 14:26:20 +0200471 ly_print_(ctx->out, "%*sextension %s", INDENT, ext->name);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200472 LEVEL++;
473
474 if (ext->exts) {
Radek Krejci693262f2019-04-29 15:23:20 +0200475 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, ext->exts, &flag, 0);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200476 }
477
478 if (ext->argument) {
479 ypr_open(ctx->out, &flag);
Michal Vasko5233e962020-08-14 14:26:20 +0200480 ly_print_(ctx->out, "%*sargument %s", INDENT, ext->argument);
Radek Krejci38d2e9f2019-09-09 10:31:51 +0200481 LEVEL++;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200482 if (ext->exts) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200483 u = -1;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200484 while ((u = lysp_ext_instance_iter(ext->exts, u + 1, LYEXT_SUBSTMT_ARGUMENT)) != LY_ARRAY_COUNT(ext->exts)) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200485 yprp_extension_instances(ctx, LYEXT_SUBSTMT_ARGUMENT, 0, &ext->exts[u], &flag2, 1);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200486 }
Radek Krejcid3ca0632019-04-16 16:54:54 +0200487 }
488 if ((ext->flags & LYS_YINELEM_MASK) ||
Michal Vasko69730152020-10-09 16:30:07 +0200489 (ext->exts && (lysp_ext_instance_iter(ext->exts, 0, LYEXT_SUBSTMT_YINELEM) != LY_ARRAY_COUNT(ext->exts)))) {
Radek Krejcid3ca0632019-04-16 16:54:54 +0200490 ypr_open(ctx->out, &flag2);
Radek Krejci693262f2019-04-29 15:23:20 +0200491 ypr_substmt(ctx, LYEXT_SUBSTMT_YINELEM, 0, (ext->flags & LYS_YINELEM_TRUE) ? "true" : "false", ext->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200492 }
Radek Krejci38d2e9f2019-09-09 10:31:51 +0200493 LEVEL--;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200494 ypr_close(ctx, flag2);
495 }
496
Radek Krejci693262f2019-04-29 15:23:20 +0200497 ypr_status(ctx, ext->flags, ext->exts, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200498 ypr_description(ctx, ext->dsc, ext->exts, &flag);
499 ypr_reference(ctx, ext->ref, ext->exts, &flag);
500
501 LEVEL--;
502 ypr_close(ctx, flag);
503}
504
505static void
Radek Krejci693262f2019-04-29 15:23:20 +0200506yprp_feature(struct ypr_ctx *ctx, const struct lysp_feature *feat)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200507{
Radek Krejci857189e2020-09-01 13:26:36 +0200508 ly_bool flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200509
Michal Vasko5233e962020-08-14 14:26:20 +0200510 ly_print_(ctx->out, "\n%*sfeature %s", INDENT, feat->name);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200511 LEVEL++;
Radek Krejci693262f2019-04-29 15:23:20 +0200512 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, feat->exts, &flag, 0);
513 yprp_iffeatures(ctx, feat->iffeatures, feat->exts, &flag);
514 ypr_status(ctx, feat->flags, feat->exts, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200515 ypr_description(ctx, feat->dsc, feat->exts, &flag);
516 ypr_reference(ctx, feat->ref, feat->exts, &flag);
517 LEVEL--;
518 ypr_close(ctx, flag);
519}
520
521static void
Radek Krejci693262f2019-04-29 15:23:20 +0200522yprp_identity(struct ypr_ctx *ctx, const struct lysp_ident *ident)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200523{
Radek Krejci857189e2020-09-01 13:26:36 +0200524 ly_bool flag = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200525 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200526
Michal Vasko5233e962020-08-14 14:26:20 +0200527 ly_print_(ctx->out, "\n%*sidentity %s", INDENT, ident->name);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200528 LEVEL++;
529
Radek Krejci693262f2019-04-29 15:23:20 +0200530 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, ident->exts, &flag, 0);
531 yprp_iffeatures(ctx, ident->iffeatures, ident->exts, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200532
533 LY_ARRAY_FOR(ident->bases, u) {
534 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200535 ypr_substmt(ctx, LYEXT_SUBSTMT_BASE, u, ident->bases[u], ident->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200536 }
537
Radek Krejci693262f2019-04-29 15:23:20 +0200538 ypr_status(ctx, ident->flags, ident->exts, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200539 ypr_description(ctx, ident->dsc, ident->exts, &flag);
540 ypr_reference(ctx, ident->ref, ident->exts, &flag);
541
542 LEVEL--;
543 ypr_close(ctx, flag);
544}
545
546static void
Radek Krejci693262f2019-04-29 15:23:20 +0200547yprc_identity(struct ypr_ctx *ctx, const struct lysc_ident *ident)
548{
Radek Krejci857189e2020-09-01 13:26:36 +0200549 ly_bool flag = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200550 LY_ARRAY_COUNT_TYPE u;
Radek Krejci693262f2019-04-29 15:23:20 +0200551
Michal Vasko5233e962020-08-14 14:26:20 +0200552 ly_print_(ctx->out, "\n%*sidentity %s", INDENT, ident->name);
Radek Krejci693262f2019-04-29 15:23:20 +0200553 LEVEL++;
554
555 yprc_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, ident->exts, &flag, 0);
Radek Krejci693262f2019-04-29 15:23:20 +0200556
557 LY_ARRAY_FOR(ident->derived, u) {
558 ypr_open(ctx->out, &flag);
559 if (ctx->module != ident->derived[u]->module) {
Michal Vasko5233e962020-08-14 14:26:20 +0200560 ly_print_(ctx->out, "%*sderived %s:%s;\n", INDENT, ident->derived[u]->module->prefix, ident->derived[u]->name);
Radek Krejci693262f2019-04-29 15:23:20 +0200561 } else {
Michal Vasko5233e962020-08-14 14:26:20 +0200562 ly_print_(ctx->out, "%*sderived %s;\n", INDENT, ident->derived[u]->name);
Radek Krejci693262f2019-04-29 15:23:20 +0200563 }
564 }
565
566 ypr_status(ctx, ident->flags, ident->exts, &flag);
567 ypr_description(ctx, ident->dsc, ident->exts, &flag);
568 ypr_reference(ctx, ident->ref, ident->exts, &flag);
569
570 LEVEL--;
571 ypr_close(ctx, flag);
572}
573
574static void
Radek Krejci857189e2020-09-01 13:26:36 +0200575yprp_restr(struct ypr_ctx *ctx, const struct lysp_restr *restr, const char *name, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200576{
Radek Krejci857189e2020-09-01 13:26:36 +0200577 ly_bool inner_flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200578
579 if (!restr) {
580 return;
581 }
582
583 ypr_open(ctx->out, flag);
Michal Vasko5233e962020-08-14 14:26:20 +0200584 ly_print_(ctx->out, "%*s%s \"", INDENT, name);
Michal Vasko7f45cf22020-10-01 12:49:44 +0200585 ypr_encode(ctx->out, (restr->arg.str[0] != 0x15 && restr->arg.str[0] != 0x06) ? restr->arg.str : &restr->arg.str[1], -1);
Michal Vasko5233e962020-08-14 14:26:20 +0200586 ly_print_(ctx->out, "\"");
Radek Krejcid3ca0632019-04-16 16:54:54 +0200587
588 LEVEL++;
Radek Krejci693262f2019-04-29 15:23:20 +0200589 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, restr->exts, &inner_flag, 0);
Michal Vasko7f45cf22020-10-01 12:49:44 +0200590 if (restr->arg.str[0] == 0x15) {
Radek Krejcid3ca0632019-04-16 16:54:54 +0200591 /* special byte value in pattern's expression: 0x15 - invert-match, 0x06 - match */
592 ypr_open(ctx->out, &inner_flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200593 ypr_substmt(ctx, LYEXT_SUBSTMT_MODIFIER, 0, "invert-match", restr->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200594 }
595 if (restr->emsg) {
596 ypr_open(ctx->out, &inner_flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200597 ypr_substmt(ctx, LYEXT_SUBSTMT_ERRMSG, 0, restr->emsg, restr->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200598 }
599 if (restr->eapptag) {
600 ypr_open(ctx->out, &inner_flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200601 ypr_substmt(ctx, LYEXT_SUBSTMT_ERRTAG, 0, restr->eapptag, restr->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200602 }
Radek Krejci693262f2019-04-29 15:23:20 +0200603 ypr_description(ctx, restr->dsc, restr->exts, &inner_flag);
604 ypr_reference(ctx, restr->ref, restr->exts, &inner_flag);
605
Radek Krejcid3ca0632019-04-16 16:54:54 +0200606 LEVEL--;
607 ypr_close(ctx, inner_flag);
608}
609
610static void
Radek Krejci857189e2020-09-01 13:26:36 +0200611yprc_must(struct ypr_ctx *ctx, const struct lysc_must *must, ly_bool *flag)
Radek Krejci693262f2019-04-29 15:23:20 +0200612{
Radek Krejci857189e2020-09-01 13:26:36 +0200613 ly_bool inner_flag = 0;
Radek Krejci693262f2019-04-29 15:23:20 +0200614
615 ypr_open(ctx->out, flag);
Michal Vasko5233e962020-08-14 14:26:20 +0200616 ly_print_(ctx->out, "%*smust \"", INDENT);
Radek Krejci693262f2019-04-29 15:23:20 +0200617 ypr_encode(ctx->out, must->cond->expr, -1);
Michal Vasko5233e962020-08-14 14:26:20 +0200618 ly_print_(ctx->out, "\"");
Radek Krejci693262f2019-04-29 15:23:20 +0200619
620 LEVEL++;
621 yprc_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, must->exts, &inner_flag, 0);
622 if (must->emsg) {
623 ypr_open(ctx->out, &inner_flag);
624 ypr_substmt(ctx, LYEXT_SUBSTMT_ERRMSG, 0, must->emsg, must->exts);
625 }
626 if (must->eapptag) {
627 ypr_open(ctx->out, &inner_flag);
628 ypr_substmt(ctx, LYEXT_SUBSTMT_ERRTAG, 0, must->eapptag, must->exts);
629 }
630 ypr_description(ctx, must->dsc, must->exts, &inner_flag);
631 ypr_reference(ctx, must->ref, must->exts, &inner_flag);
632
633 LEVEL--;
634 ypr_close(ctx, inner_flag);
635}
636
637static void
Radek Krejci857189e2020-09-01 13:26:36 +0200638yprc_range(struct ypr_ctx *ctx, const struct lysc_range *range, LY_DATA_TYPE basetype, ly_bool *flag)
Radek Krejci693262f2019-04-29 15:23:20 +0200639{
Radek Krejci857189e2020-09-01 13:26:36 +0200640 ly_bool inner_flag = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200641 LY_ARRAY_COUNT_TYPE u;
Radek Krejci693262f2019-04-29 15:23:20 +0200642
Radek Krejci334ccc72019-06-12 13:49:29 +0200643 if (!range) {
644 return;
645 }
646
Radek Krejci693262f2019-04-29 15:23:20 +0200647 ypr_open(ctx->out, flag);
Michal Vasko5233e962020-08-14 14:26:20 +0200648 ly_print_(ctx->out, "%*s%s \"", INDENT, (basetype == LY_TYPE_STRING || basetype == LY_TYPE_BINARY) ? "length" : "range");
Radek Krejci693262f2019-04-29 15:23:20 +0200649 LY_ARRAY_FOR(range->parts, u) {
650 if (u > 0) {
Michal Vasko5233e962020-08-14 14:26:20 +0200651 ly_print_(ctx->out, " | ");
Radek Krejci693262f2019-04-29 15:23:20 +0200652 }
653 if (range->parts[u].max_64 == range->parts[u].min_64) {
654 if (basetype <= LY_TYPE_STRING) { /* unsigned values */
Radek Krejci0f969882020-08-21 16:56:47 +0200655 ly_print_(ctx->out, "%" PRIu64, range->parts[u].max_u64);
Radek Krejci693262f2019-04-29 15:23:20 +0200656 } else { /* signed values */
Radek Krejci0f969882020-08-21 16:56:47 +0200657 ly_print_(ctx->out, "%" PRId64, range->parts[u].max_64);
Radek Krejci693262f2019-04-29 15:23:20 +0200658 }
659 } else {
660 if (basetype <= LY_TYPE_STRING) { /* unsigned values */
Radek Krejci0f969882020-08-21 16:56:47 +0200661 ly_print_(ctx->out, "%" PRIu64 "..%" PRIu64, range->parts[u].min_u64, range->parts[u].max_u64);
Radek Krejci693262f2019-04-29 15:23:20 +0200662 } else { /* signed values */
Radek Krejci0f969882020-08-21 16:56:47 +0200663 ly_print_(ctx->out, "%" PRId64 "..%" PRId64, range->parts[u].min_64, range->parts[u].max_64);
Radek Krejci693262f2019-04-29 15:23:20 +0200664 }
665 }
666 }
Michal Vasko5233e962020-08-14 14:26:20 +0200667 ly_print_(ctx->out, "\"");
Radek Krejci693262f2019-04-29 15:23:20 +0200668
669 LEVEL++;
670 yprc_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, range->exts, &inner_flag, 0);
671 if (range->emsg) {
672 ypr_open(ctx->out, &inner_flag);
673 ypr_substmt(ctx, LYEXT_SUBSTMT_ERRMSG, 0, range->emsg, range->exts);
674 }
675 if (range->eapptag) {
676 ypr_open(ctx->out, &inner_flag);
677 ypr_substmt(ctx, LYEXT_SUBSTMT_ERRTAG, 0, range->eapptag, range->exts);
678 }
679 ypr_description(ctx, range->dsc, range->exts, &inner_flag);
680 ypr_reference(ctx, range->ref, range->exts, &inner_flag);
681
682 LEVEL--;
683 ypr_close(ctx, inner_flag);
684}
685
686static void
Radek Krejci857189e2020-09-01 13:26:36 +0200687yprc_pattern(struct ypr_ctx *ctx, const struct lysc_pattern *pattern, ly_bool *flag)
Radek Krejci693262f2019-04-29 15:23:20 +0200688{
Radek Krejci857189e2020-09-01 13:26:36 +0200689 ly_bool inner_flag = 0;
Radek Krejci693262f2019-04-29 15:23:20 +0200690
691 ypr_open(ctx->out, flag);
Michal Vasko5233e962020-08-14 14:26:20 +0200692 ly_print_(ctx->out, "%*spattern \"", INDENT);
Radek Krejci54579462019-04-30 12:47:06 +0200693 ypr_encode(ctx->out, pattern->expr, -1);
Michal Vasko5233e962020-08-14 14:26:20 +0200694 ly_print_(ctx->out, "\"");
Radek Krejci693262f2019-04-29 15:23:20 +0200695
696 LEVEL++;
697 yprc_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, pattern->exts, &inner_flag, 0);
698 if (pattern->inverted) {
699 /* special byte value in pattern's expression: 0x15 - invert-match, 0x06 - match */
700 ypr_open(ctx->out, &inner_flag);
701 ypr_substmt(ctx, LYEXT_SUBSTMT_MODIFIER, 0, "invert-match", pattern->exts);
702 }
703 if (pattern->emsg) {
704 ypr_open(ctx->out, &inner_flag);
705 ypr_substmt(ctx, LYEXT_SUBSTMT_ERRMSG, 0, pattern->emsg, pattern->exts);
706 }
707 if (pattern->eapptag) {
708 ypr_open(ctx->out, &inner_flag);
709 ypr_substmt(ctx, LYEXT_SUBSTMT_ERRTAG, 0, pattern->eapptag, pattern->exts);
710 }
711 ypr_description(ctx, pattern->dsc, pattern->exts, &inner_flag);
712 ypr_reference(ctx, pattern->ref, pattern->exts, &inner_flag);
713
714 LEVEL--;
715 ypr_close(ctx, inner_flag);
716}
717
718static void
Radek Krejci857189e2020-09-01 13:26:36 +0200719yprp_when(struct ypr_ctx *ctx, struct lysp_when *when, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200720{
Radek Krejci857189e2020-09-01 13:26:36 +0200721 ly_bool inner_flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200722
723 if (!when) {
724 return;
725 }
726 ypr_open(ctx->out, flag);
727
Michal Vasko5233e962020-08-14 14:26:20 +0200728 ly_print_(ctx->out, "%*swhen \"", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200729 ypr_encode(ctx->out, when->cond, -1);
Michal Vasko5233e962020-08-14 14:26:20 +0200730 ly_print_(ctx->out, "\"");
Radek Krejcid3ca0632019-04-16 16:54:54 +0200731
732 LEVEL++;
Radek Krejci693262f2019-04-29 15:23:20 +0200733 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, when->exts, &inner_flag, 0);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200734 ypr_description(ctx, when->dsc, when->exts, &inner_flag);
735 ypr_reference(ctx, when->ref, when->exts, &inner_flag);
736 LEVEL--;
737 ypr_close(ctx, inner_flag);
738}
739
740static void
Radek Krejci857189e2020-09-01 13:26:36 +0200741yprc_when(struct ypr_ctx *ctx, struct lysc_when *when, ly_bool *flag)
Radek Krejci693262f2019-04-29 15:23:20 +0200742{
Radek Krejci857189e2020-09-01 13:26:36 +0200743 ly_bool inner_flag = 0;
Radek Krejci693262f2019-04-29 15:23:20 +0200744
745 if (!when) {
746 return;
747 }
748 ypr_open(ctx->out, flag);
749
Michal Vasko5233e962020-08-14 14:26:20 +0200750 ly_print_(ctx->out, "%*swhen \"", INDENT);
Radek Krejci693262f2019-04-29 15:23:20 +0200751 ypr_encode(ctx->out, when->cond->expr, -1);
Michal Vasko5233e962020-08-14 14:26:20 +0200752 ly_print_(ctx->out, "\"");
Radek Krejci693262f2019-04-29 15:23:20 +0200753
754 LEVEL++;
755 yprc_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, when->exts, &inner_flag, 0);
756 ypr_description(ctx, when->dsc, when->exts, &inner_flag);
757 ypr_reference(ctx, when->ref, when->exts, &inner_flag);
758 LEVEL--;
759 ypr_close(ctx, inner_flag);
760}
761
762static void
Radek Krejci857189e2020-09-01 13:26:36 +0200763yprp_enum(struct ypr_ctx *ctx, const struct lysp_type_enum *items, LY_DATA_TYPE type, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200764{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200765 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +0200766 ly_bool inner_flag;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200767
768 LY_ARRAY_FOR(items, u) {
769 ypr_open(ctx->out, flag);
Radek Krejci7871ce52019-06-11 16:44:56 +0200770 if (type == LY_TYPE_BITS) {
Michal Vasko5233e962020-08-14 14:26:20 +0200771 ly_print_(ctx->out, "%*sbit %s", INDENT, items[u].name);
Radek Krejci7871ce52019-06-11 16:44:56 +0200772 } else { /* LY_TYPE_ENUM */
Michal Vasko5233e962020-08-14 14:26:20 +0200773 ly_print_(ctx->out, "%*senum \"", INDENT);
Radek Krejci7871ce52019-06-11 16:44:56 +0200774 ypr_encode(ctx->out, items[u].name, -1);
Michal Vasko5233e962020-08-14 14:26:20 +0200775 ly_print_(ctx->out, "\"");
Radek Krejci7871ce52019-06-11 16:44:56 +0200776 }
Radek Krejcid3ca0632019-04-16 16:54:54 +0200777 inner_flag = 0;
778 LEVEL++;
Radek Krejci693262f2019-04-29 15:23:20 +0200779 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, items[u].exts, &inner_flag, 0);
780 yprp_iffeatures(ctx, items[u].iffeatures, items[u].exts, &inner_flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200781 if (items[u].flags & LYS_SET_VALUE) {
782 if (type == LY_TYPE_BITS) {
Radek Krejci693262f2019-04-29 15:23:20 +0200783 ypr_unsigned(ctx, LYEXT_SUBSTMT_POSITION, 0, items[u].exts, items[u].value, &inner_flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200784 } else { /* LY_TYPE_ENUM */
Radek Krejci693262f2019-04-29 15:23:20 +0200785 ypr_signed(ctx, LYEXT_SUBSTMT_VALUE, 0, items[u].exts, items[u].value, &inner_flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200786 }
787 }
Radek Krejci693262f2019-04-29 15:23:20 +0200788 ypr_status(ctx, items[u].flags, items[u].exts, &inner_flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200789 ypr_description(ctx, items[u].dsc, items[u].exts, &inner_flag);
790 ypr_reference(ctx, items[u].ref, items[u].exts, &inner_flag);
791 LEVEL--;
792 ypr_close(ctx, inner_flag);
793 }
794}
795
796static void
Radek Krejci693262f2019-04-29 15:23:20 +0200797yprp_type(struct ypr_ctx *ctx, const struct lysp_type *type)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200798{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200799 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +0200800 ly_bool flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200801
Michal Vasko5233e962020-08-14 14:26:20 +0200802 ly_print_(ctx->out, "%*stype %s", INDENT, type->name);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200803 LEVEL++;
804
Radek Krejci693262f2019-04-29 15:23:20 +0200805 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, type->exts, &flag, 0);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200806
Radek Krejci693262f2019-04-29 15:23:20 +0200807 yprp_restr(ctx, type->range, "range", &flag);
808 yprp_restr(ctx, type->length, "length", &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200809 LY_ARRAY_FOR(type->patterns, u) {
Radek Krejci693262f2019-04-29 15:23:20 +0200810 yprp_restr(ctx, &type->patterns[u], "pattern", &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200811 }
Radek Krejci693262f2019-04-29 15:23:20 +0200812 yprp_enum(ctx, type->bits, LY_TYPE_BITS, &flag);
813 yprp_enum(ctx, type->enums, LY_TYPE_ENUM, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200814
815 if (type->path) {
816 ypr_open(ctx->out, &flag);
Michal Vasko004d3152020-06-11 19:59:22 +0200817 ypr_substmt(ctx, LYEXT_SUBSTMT_PATH, 0, type->path->expr, type->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200818 }
819 if (type->flags & LYS_SET_REQINST) {
820 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200821 ypr_substmt(ctx, LYEXT_SUBSTMT_REQINSTANCE, 0, type->require_instance ? "true" : "false", type->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200822 }
823 if (type->flags & LYS_SET_FRDIGITS) {
Radek Krejci693262f2019-04-29 15:23:20 +0200824 ypr_unsigned(ctx, LYEXT_SUBSTMT_FRACDIGITS, 0, type->exts, type->fraction_digits, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200825 }
826 LY_ARRAY_FOR(type->bases, u) {
827 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200828 ypr_substmt(ctx, LYEXT_SUBSTMT_BASE, u, type->bases[u], type->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200829 }
830 LY_ARRAY_FOR(type->types, u) {
831 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +0200832 yprp_type(ctx, &type->types[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200833 }
834
835 LEVEL--;
836 ypr_close(ctx, flag);
837}
838
839static void
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200840yprc_dflt_value(struct ypr_ctx *ctx, const struct lyd_value *value, struct lysc_ext_instance *exts)
Radek Krejcia1911222019-07-22 17:24:50 +0200841{
Radek Krejci857189e2020-09-01 13:26:36 +0200842 ly_bool dynamic;
Radek Krejcia1911222019-07-22 17:24:50 +0200843 const char *str;
844
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200845 str = value->realtype->plugin->print(value, LY_PREF_JSON, NULL, &dynamic);
Radek Krejcia1911222019-07-22 17:24:50 +0200846 ypr_substmt(ctx, LYEXT_SUBSTMT_DEFAULT, 0, str, exts);
847 if (dynamic) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200848 free((void *)str);
Radek Krejcia1911222019-07-22 17:24:50 +0200849 }
850}
851
852static void
Radek Krejci693262f2019-04-29 15:23:20 +0200853yprc_type(struct ypr_ctx *ctx, const struct lysc_type *type)
854{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200855 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +0200856 ly_bool flag = 0;
Radek Krejci693262f2019-04-29 15:23:20 +0200857
Michal Vasko5233e962020-08-14 14:26:20 +0200858 ly_print_(ctx->out, "%*stype %s", INDENT, lys_datatype2str(type->basetype));
Radek Krejci693262f2019-04-29 15:23:20 +0200859 LEVEL++;
860
861 yprc_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, type->exts, &flag, 0);
Radek Krejci693262f2019-04-29 15:23:20 +0200862
Michal Vasko2bb55bc2020-08-05 13:27:04 +0200863 switch (type->basetype) {
Radek Krejci693262f2019-04-29 15:23:20 +0200864 case LY_TYPE_BINARY: {
Michal Vasko22df3f02020-08-24 13:29:22 +0200865 struct lysc_type_bin *bin = (struct lysc_type_bin *)type;
Radek Krejci693262f2019-04-29 15:23:20 +0200866 yprc_range(ctx, bin->length, type->basetype, &flag);
867 break;
868 }
869 case LY_TYPE_UINT8:
870 case LY_TYPE_UINT16:
871 case LY_TYPE_UINT32:
872 case LY_TYPE_UINT64:
873 case LY_TYPE_INT8:
874 case LY_TYPE_INT16:
875 case LY_TYPE_INT32:
876 case LY_TYPE_INT64: {
Michal Vasko22df3f02020-08-24 13:29:22 +0200877 struct lysc_type_num *num = (struct lysc_type_num *)type;
Radek Krejci693262f2019-04-29 15:23:20 +0200878 yprc_range(ctx, num->range, type->basetype, &flag);
879 break;
880 }
881 case LY_TYPE_STRING: {
Michal Vasko22df3f02020-08-24 13:29:22 +0200882 struct lysc_type_str *str = (struct lysc_type_str *)type;
Radek Krejci693262f2019-04-29 15:23:20 +0200883 yprc_range(ctx, str->length, type->basetype, &flag);
884 LY_ARRAY_FOR(str->patterns, u) {
885 yprc_pattern(ctx, str->patterns[u], &flag);
886 }
887 break;
888 }
889 case LY_TYPE_BITS:
890 case LY_TYPE_ENUM: {
891 /* bits and enums structures are compatible */
Michal Vasko22df3f02020-08-24 13:29:22 +0200892 struct lysc_type_bits *bits = (struct lysc_type_bits *)type;
Radek Krejci693262f2019-04-29 15:23:20 +0200893 LY_ARRAY_FOR(bits->bits, u) {
894 struct lysc_type_bitenum_item *item = &bits->bits[u];
Radek Krejci857189e2020-09-01 13:26:36 +0200895 ly_bool inner_flag = 0;
Radek Krejci693262f2019-04-29 15:23:20 +0200896
897 ypr_open(ctx->out, &flag);
Michal Vasko5233e962020-08-14 14:26:20 +0200898 ly_print_(ctx->out, "%*s%s \"", INDENT, type->basetype == LY_TYPE_BITS ? "bit" : "enum");
Radek Krejci693262f2019-04-29 15:23:20 +0200899 ypr_encode(ctx->out, item->name, -1);
Michal Vasko5233e962020-08-14 14:26:20 +0200900 ly_print_(ctx->out, "\"");
Radek Krejci693262f2019-04-29 15:23:20 +0200901 LEVEL++;
902 yprc_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, item->exts, &inner_flag, 0);
Radek Krejci693262f2019-04-29 15:23:20 +0200903 if (type->basetype == LY_TYPE_BITS) {
904 ypr_unsigned(ctx, LYEXT_SUBSTMT_POSITION, 0, item->exts, item->position, &inner_flag);
905 } else { /* LY_TYPE_ENUM */
906 ypr_signed(ctx, LYEXT_SUBSTMT_VALUE, 0, item->exts, item->value, &inner_flag);
907 }
908 ypr_status(ctx, item->flags, item->exts, &inner_flag);
909 ypr_description(ctx, item->dsc, item->exts, &inner_flag);
910 ypr_reference(ctx, item->ref, item->exts, &inner_flag);
911 LEVEL--;
912 ypr_close(ctx, inner_flag);
913 }
914 break;
915 }
916 case LY_TYPE_BOOL:
917 case LY_TYPE_EMPTY:
918 /* nothing to do */
919 break;
920 case LY_TYPE_DEC64: {
Michal Vasko22df3f02020-08-24 13:29:22 +0200921 struct lysc_type_dec *dec = (struct lysc_type_dec *)type;
Radek Krejci693262f2019-04-29 15:23:20 +0200922 ypr_open(ctx->out, &flag);
923 ypr_unsigned(ctx, LYEXT_SUBSTMT_FRACDIGITS, 0, type->exts, dec->fraction_digits, &flag);
924 yprc_range(ctx, dec->range, dec->basetype, &flag);
925 break;
926 }
927 case LY_TYPE_IDENT: {
Michal Vasko22df3f02020-08-24 13:29:22 +0200928 struct lysc_type_identityref *ident = (struct lysc_type_identityref *)type;
Radek Krejci693262f2019-04-29 15:23:20 +0200929 LY_ARRAY_FOR(ident->bases, u) {
930 ypr_open(ctx->out, &flag);
931 ypr_substmt(ctx, LYEXT_SUBSTMT_BASE, u, ident->bases[u]->name, type->exts);
932 }
933 break;
934 }
935 case LY_TYPE_INST: {
Michal Vasko22df3f02020-08-24 13:29:22 +0200936 struct lysc_type_instanceid *inst = (struct lysc_type_instanceid *)type;
Radek Krejci693262f2019-04-29 15:23:20 +0200937 ypr_open(ctx->out, &flag);
938 ypr_substmt(ctx, LYEXT_SUBSTMT_REQINSTANCE, 0, inst->require_instance ? "true" : "false", inst->exts);
939 break;
940 }
941 case LY_TYPE_LEAFREF: {
Michal Vasko22df3f02020-08-24 13:29:22 +0200942 struct lysc_type_leafref *lr = (struct lysc_type_leafref *)type;
Radek Krejci693262f2019-04-29 15:23:20 +0200943 ypr_open(ctx->out, &flag);
Michal Vasko004d3152020-06-11 19:59:22 +0200944 ypr_substmt(ctx, LYEXT_SUBSTMT_PATH, 0, lr->path->expr, lr->exts);
Radek Krejci693262f2019-04-29 15:23:20 +0200945 ypr_substmt(ctx, LYEXT_SUBSTMT_REQINSTANCE, 0, lr->require_instance ? "true" : "false", lr->exts);
946 yprc_type(ctx, lr->realtype);
947 break;
948 }
949 case LY_TYPE_UNION: {
Michal Vasko22df3f02020-08-24 13:29:22 +0200950 struct lysc_type_union *un = (struct lysc_type_union *)type;
Radek Krejci693262f2019-04-29 15:23:20 +0200951 LY_ARRAY_FOR(un->types, u) {
952 ypr_open(ctx->out, &flag);
953 yprc_type(ctx, un->types[u]);
954 }
955 break;
956 }
957 default:
958 LOGINT(ctx->module->ctx);
959 }
960
961 LEVEL--;
962 ypr_close(ctx, flag);
963}
964
965static void
966yprp_typedef(struct ypr_ctx *ctx, const struct lysp_tpdf *tpdf)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200967{
Michal Vasko5233e962020-08-14 14:26:20 +0200968 ly_print_(ctx->out, "\n%*stypedef %s {\n", INDENT, tpdf->name);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200969 LEVEL++;
970
Radek Krejci693262f2019-04-29 15:23:20 +0200971 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, tpdf->exts, NULL, 0);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200972
Radek Krejci693262f2019-04-29 15:23:20 +0200973 yprp_type(ctx, &tpdf->type);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200974
975 if (tpdf->units) {
Radek Krejci693262f2019-04-29 15:23:20 +0200976 ypr_substmt(ctx, LYEXT_SUBSTMT_UNITS, 0, tpdf->units, tpdf->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200977 }
Michal Vasko7f45cf22020-10-01 12:49:44 +0200978 if (tpdf->dflt.str) {
979 ypr_substmt(ctx, LYEXT_SUBSTMT_DEFAULT, 0, tpdf->dflt.str, tpdf->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200980 }
981
Radek Krejci693262f2019-04-29 15:23:20 +0200982 ypr_status(ctx, tpdf->flags, tpdf->exts, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200983 ypr_description(ctx, tpdf->dsc, tpdf->exts, NULL);
984 ypr_reference(ctx, tpdf->ref, tpdf->exts, NULL);
985
986 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +0200987 ly_print_(ctx->out, "%*s}\n", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200988}
989
Radek Krejci693262f2019-04-29 15:23:20 +0200990static void yprp_node(struct ypr_ctx *ctx, const struct lysp_node *node);
991static void yprc_node(struct ypr_ctx *ctx, const struct lysc_node *node);
992static void yprp_action(struct ypr_ctx *ctx, const struct lysp_action *action);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200993
994static void
Radek Krejci693262f2019-04-29 15:23:20 +0200995yprp_grouping(struct ypr_ctx *ctx, const struct lysp_grp *grp)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200996{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200997 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +0200998 ly_bool flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200999 struct lysp_node *data;
1000
Michal Vasko5233e962020-08-14 14:26:20 +02001001 ly_print_(ctx->out, "\n%*sgrouping %s", INDENT, grp->name);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001002 LEVEL++;
1003
Radek Krejci693262f2019-04-29 15:23:20 +02001004 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, grp->exts, &flag, 0);
1005 ypr_status(ctx, grp->flags, grp->exts, &flag);
Radek Krejcifc81ea82019-04-18 13:27:22 +02001006 ypr_description(ctx, grp->dsc, grp->exts, &flag);
1007 ypr_reference(ctx, grp->ref, grp->exts, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001008
1009 LY_ARRAY_FOR(grp->typedefs, u) {
Radek Krejci59edcf72019-05-02 09:53:17 +02001010 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001011 yprp_typedef(ctx, &grp->typedefs[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001012 }
1013
1014 LY_ARRAY_FOR(grp->groupings, u) {
Radek Krejci59edcf72019-05-02 09:53:17 +02001015 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001016 yprp_grouping(ctx, &grp->groupings[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001017 }
1018
1019 LY_LIST_FOR(grp->data, data) {
Radek Krejcifc81ea82019-04-18 13:27:22 +02001020 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001021 yprp_node(ctx, data);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001022 }
1023
1024 LY_ARRAY_FOR(grp->actions, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02001025 yprp_action(ctx, &grp->actions[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001026 }
1027
1028 LEVEL--;
1029 ypr_close(ctx, flag);
1030}
1031
1032static void
Radek Krejci857189e2020-09-01 13:26:36 +02001033yprp_inout(struct ypr_ctx *ctx, const struct lysp_action_inout *inout, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001034{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001035 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001036 struct lysp_node *data;
1037
Michal Vasko7f45cf22020-10-01 12:49:44 +02001038 if (!inout->data) {
1039 /* no children */
Radek Krejcid3ca0632019-04-16 16:54:54 +02001040 return;
1041 }
1042 ypr_open(ctx->out, flag);
1043
Michal Vasko5233e962020-08-14 14:26:20 +02001044 ly_print_(ctx->out, "\n%*s%s {\n", INDENT, (inout->nodetype == LYS_INPUT ? "input" : "output"));
Radek Krejcid3ca0632019-04-16 16:54:54 +02001045 LEVEL++;
1046
Radek Krejci693262f2019-04-29 15:23:20 +02001047 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, inout->exts, NULL, 0);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001048 LY_ARRAY_FOR(inout->musts, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02001049 yprp_restr(ctx, &inout->musts[u], "must", NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001050 }
1051 LY_ARRAY_FOR(inout->typedefs, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02001052 yprp_typedef(ctx, &inout->typedefs[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001053 }
1054 LY_ARRAY_FOR(inout->groupings, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02001055 yprp_grouping(ctx, &inout->groupings[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001056 }
1057
1058 LY_LIST_FOR(inout->data, data) {
Radek Krejci693262f2019-04-29 15:23:20 +02001059 yprp_node(ctx, data);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001060 }
1061
1062 LEVEL--;
1063 ypr_close(ctx, 1);
1064}
1065
1066static void
Radek Krejci857189e2020-09-01 13:26:36 +02001067yprc_inout(struct ypr_ctx *ctx, const struct lysc_action *action, const struct lysc_action_inout *inout, ly_bool *flag)
Radek Krejci693262f2019-04-29 15:23:20 +02001068{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001069 LY_ARRAY_COUNT_TYPE u;
Radek Krejci693262f2019-04-29 15:23:20 +02001070 struct lysc_node *data;
1071
1072 if (!inout->data) {
1073 /* input/output is empty */
1074 return;
1075 }
1076 ypr_open(ctx->out, flag);
1077
Michal Vasko5233e962020-08-14 14:26:20 +02001078 ly_print_(ctx->out, "\n%*s%s {\n", INDENT, (&action->input == inout) ? "input" : "output");
Radek Krejci693262f2019-04-29 15:23:20 +02001079 LEVEL++;
1080
1081 yprc_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, (&action->input == inout) ? action->input_exts : action->output_exts, NULL, 0);
1082 LY_ARRAY_FOR(inout->musts, u) {
1083 yprc_must(ctx, &inout->musts[u], NULL);
1084 }
1085
Radek Krejci52f65552020-09-01 17:03:35 +02001086 if (!(ctx->options & LYS_PRINT_NO_SUBSTMT)) {
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08001087 LY_LIST_FOR(inout->data, data) {
1088 yprc_node(ctx, data);
1089 }
Radek Krejci693262f2019-04-29 15:23:20 +02001090 }
1091
1092 LEVEL--;
1093 ypr_close(ctx, 1);
1094}
1095
1096static void
1097yprp_notification(struct ypr_ctx *ctx, const struct lysp_notif *notif)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001098{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001099 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +02001100 ly_bool flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001101 struct lysp_node *data;
1102
Michal Vasko5233e962020-08-14 14:26:20 +02001103 ly_print_(ctx->out, "%*snotification %s", INDENT, notif->name);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001104
1105 LEVEL++;
Radek Krejci693262f2019-04-29 15:23:20 +02001106 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, notif->exts, &flag, 0);
1107 yprp_iffeatures(ctx, notif->iffeatures, notif->exts, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001108
1109 LY_ARRAY_FOR(notif->musts, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02001110 yprp_restr(ctx, &notif->musts[u], "must", &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001111 }
Radek Krejci693262f2019-04-29 15:23:20 +02001112 ypr_status(ctx, notif->flags, notif->exts, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001113 ypr_description(ctx, notif->dsc, notif->exts, &flag);
1114 ypr_reference(ctx, notif->ref, notif->exts, &flag);
1115
1116 LY_ARRAY_FOR(notif->typedefs, u) {
1117 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001118 yprp_typedef(ctx, &notif->typedefs[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001119 }
1120
1121 LY_ARRAY_FOR(notif->groupings, u) {
1122 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001123 yprp_grouping(ctx, &notif->groupings[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001124 }
1125
1126 LY_LIST_FOR(notif->data, data) {
1127 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001128 yprp_node(ctx, data);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001129 }
1130
1131 LEVEL--;
1132 ypr_close(ctx, flag);
1133}
1134
1135static void
Radek Krejci693262f2019-04-29 15:23:20 +02001136yprc_notification(struct ypr_ctx *ctx, const struct lysc_notif *notif)
1137{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001138 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +02001139 ly_bool flag = 0;
Radek Krejci693262f2019-04-29 15:23:20 +02001140 struct lysc_node *data;
1141
Michal Vasko5233e962020-08-14 14:26:20 +02001142 ly_print_(ctx->out, "%*snotification %s", INDENT, notif->name);
Radek Krejci693262f2019-04-29 15:23:20 +02001143
1144 LEVEL++;
1145 yprc_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, notif->exts, &flag, 0);
Radek Krejci693262f2019-04-29 15:23:20 +02001146
1147 LY_ARRAY_FOR(notif->musts, u) {
1148 yprc_must(ctx, &notif->musts[u], &flag);
1149 }
1150 ypr_status(ctx, notif->flags, notif->exts, &flag);
1151 ypr_description(ctx, notif->dsc, notif->exts, &flag);
1152 ypr_reference(ctx, notif->ref, notif->exts, &flag);
1153
Radek Krejci52f65552020-09-01 17:03:35 +02001154 if (!(ctx->options & LYS_PRINT_NO_SUBSTMT)) {
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08001155 LY_LIST_FOR(notif->data, data) {
1156 ypr_open(ctx->out, &flag);
1157 yprc_node(ctx, data);
1158 }
Radek Krejci693262f2019-04-29 15:23:20 +02001159 }
1160
1161 LEVEL--;
1162 ypr_close(ctx, flag);
1163}
1164
1165static void
1166yprp_action(struct ypr_ctx *ctx, const struct lysp_action *action)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001167{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001168 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +02001169 ly_bool flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001170
Michal Vasko5233e962020-08-14 14:26:20 +02001171 ly_print_(ctx->out, "%*s%s %s", INDENT, action->parent ? "action" : "rpc", action->name);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001172
1173 LEVEL++;
Radek Krejci693262f2019-04-29 15:23:20 +02001174 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, action->exts, &flag, 0);
1175 yprp_iffeatures(ctx, action->iffeatures, action->exts, &flag);
1176 ypr_status(ctx, action->flags, action->exts, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001177 ypr_description(ctx, action->dsc, action->exts, &flag);
1178 ypr_reference(ctx, action->ref, action->exts, &flag);
1179
1180 LY_ARRAY_FOR(action->typedefs, u) {
1181 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001182 yprp_typedef(ctx, &action->typedefs[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001183 }
1184
1185 LY_ARRAY_FOR(action->groupings, u) {
1186 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001187 yprp_grouping(ctx, &action->groupings[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001188 }
1189
Radek Krejci693262f2019-04-29 15:23:20 +02001190 yprp_inout(ctx, &action->input, &flag);
1191 yprp_inout(ctx, &action->output, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001192
1193 LEVEL--;
1194 ypr_close(ctx, flag);
1195}
1196
1197static void
Radek Krejci693262f2019-04-29 15:23:20 +02001198yprc_action(struct ypr_ctx *ctx, const struct lysc_action *action)
1199{
Radek Krejci857189e2020-09-01 13:26:36 +02001200 ly_bool flag = 0;
Radek Krejci693262f2019-04-29 15:23:20 +02001201
Michal Vasko5233e962020-08-14 14:26:20 +02001202 ly_print_(ctx->out, "%*s%s %s", INDENT, action->parent ? "action" : "rpc", action->name);
Radek Krejci693262f2019-04-29 15:23:20 +02001203
1204 LEVEL++;
1205 yprc_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, action->exts, &flag, 0);
Radek Krejci693262f2019-04-29 15:23:20 +02001206 ypr_status(ctx, action->flags, action->exts, &flag);
1207 ypr_description(ctx, action->dsc, action->exts, &flag);
1208 ypr_reference(ctx, action->ref, action->exts, &flag);
1209
1210 yprc_inout(ctx, action, &action->input, &flag);
1211 yprc_inout(ctx, action, &action->output, &flag);
1212
1213 LEVEL--;
1214 ypr_close(ctx, flag);
1215}
1216
1217static void
Radek Krejci857189e2020-09-01 13:26:36 +02001218yprp_node_common1(struct ypr_ctx *ctx, const struct lysp_node *node, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001219{
Michal Vasko5233e962020-08-14 14:26:20 +02001220 ly_print_(ctx->out, "%*s%s %s%s", INDENT, lys_nodetype2str(node->nodetype), node->name, flag ? "" : " {\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +02001221 LEVEL++;
1222
Radek Krejci693262f2019-04-29 15:23:20 +02001223 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, node->exts, flag, 0);
1224 yprp_when(ctx, node->when, flag);
1225 yprp_iffeatures(ctx, node->iffeatures, node->exts, flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001226}
1227
1228static void
Radek Krejci857189e2020-09-01 13:26:36 +02001229yprc_node_common1(struct ypr_ctx *ctx, const struct lysc_node *node, ly_bool *flag)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001230{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001231 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001232
Michal Vasko5233e962020-08-14 14:26:20 +02001233 ly_print_(ctx->out, "%*s%s %s%s", INDENT, lys_nodetype2str(node->nodetype), node->name, flag ? "" : " {\n");
Radek Krejci693262f2019-04-29 15:23:20 +02001234 LEVEL++;
1235
1236 yprc_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, node->exts, flag, 0);
1237 LY_ARRAY_FOR(node->when, u) {
1238 yprc_when(ctx, node->when[u], flag);
1239 }
Radek Krejci693262f2019-04-29 15:23:20 +02001240}
1241
1242/* macr oto unify the code */
1243#define YPR_NODE_COMMON2 \
1244 ypr_config(ctx, node->flags, node->exts, flag); \
1245 if (node->nodetype & (LYS_CHOICE | LYS_LEAF | LYS_ANYDATA)) { \
1246 ypr_mandatory(ctx, node->flags, node->exts, flag); \
1247 } \
1248 ypr_status(ctx, node->flags, node->exts, flag); \
1249 ypr_description(ctx, node->dsc, node->exts, flag); \
1250 ypr_reference(ctx, node->ref, node->exts, flag)
1251
1252static void
Radek Krejci857189e2020-09-01 13:26:36 +02001253yprp_node_common2(struct ypr_ctx *ctx, const struct lysp_node *node, ly_bool *flag)
Radek Krejci693262f2019-04-29 15:23:20 +02001254{
1255 YPR_NODE_COMMON2;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001256}
1257
1258static void
Radek Krejci857189e2020-09-01 13:26:36 +02001259yprc_node_common2(struct ypr_ctx *ctx, const struct lysc_node *node, ly_bool *flag)
Radek Krejci693262f2019-04-29 15:23:20 +02001260{
1261 YPR_NODE_COMMON2;
1262}
1263
1264#undef YPR_NODE_COMMON2
1265
1266static void
1267yprp_container(struct ypr_ctx *ctx, const struct lysp_node *node)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001268{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001269 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +02001270 ly_bool flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001271 struct lysp_node *child;
1272 struct lysp_node_container *cont = (struct lysp_node_container *)node;
1273
Radek Krejci693262f2019-04-29 15:23:20 +02001274 yprp_node_common1(ctx, node, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001275
1276 LY_ARRAY_FOR(cont->musts, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02001277 yprp_restr(ctx, &cont->musts[u], "must", &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001278 }
1279 if (cont->presence) {
1280 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001281 ypr_substmt(ctx, LYEXT_SUBSTMT_PRESENCE, 0, cont->presence, cont->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001282 }
1283
Radek Krejci693262f2019-04-29 15:23:20 +02001284 yprp_node_common2(ctx, node, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001285
1286 LY_ARRAY_FOR(cont->typedefs, u) {
1287 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001288 yprp_typedef(ctx, &cont->typedefs[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001289 }
1290
1291 LY_ARRAY_FOR(cont->groupings, u) {
1292 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001293 yprp_grouping(ctx, &cont->groupings[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001294 }
1295
1296 LY_LIST_FOR(cont->child, child) {
1297 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001298 yprp_node(ctx, child);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001299 }
1300
1301 LY_ARRAY_FOR(cont->actions, u) {
1302 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001303 yprp_action(ctx, &cont->actions[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001304 }
1305
1306 LY_ARRAY_FOR(cont->notifs, u) {
1307 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001308 yprp_notification(ctx, &cont->notifs[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001309 }
1310
1311 LEVEL--;
1312 ypr_close(ctx, flag);
1313}
1314
1315static void
Radek Krejci693262f2019-04-29 15:23:20 +02001316yprc_container(struct ypr_ctx *ctx, const struct lysc_node *node)
1317{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001318 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +02001319 ly_bool flag = 0;
Radek Krejci693262f2019-04-29 15:23:20 +02001320 struct lysc_node *child;
1321 struct lysc_node_container *cont = (struct lysc_node_container *)node;
1322
1323 yprc_node_common1(ctx, node, &flag);
1324
1325 LY_ARRAY_FOR(cont->musts, u) {
1326 yprc_must(ctx, &cont->musts[u], &flag);
1327 }
1328 if (cont->flags & LYS_PRESENCE) {
1329 ypr_open(ctx->out, &flag);
1330 ypr_substmt(ctx, LYEXT_SUBSTMT_PRESENCE, 0, "true", cont->exts);
1331 }
1332
1333 yprc_node_common2(ctx, node, &flag);
1334
Radek Krejci52f65552020-09-01 17:03:35 +02001335 if (!(ctx->options & LYS_PRINT_NO_SUBSTMT)) {
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08001336 LY_LIST_FOR(cont->child, child) {
1337 ypr_open(ctx->out, &flag);
1338 yprc_node(ctx, child);
1339 }
Radek Krejci693262f2019-04-29 15:23:20 +02001340
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08001341 LY_ARRAY_FOR(cont->actions, u) {
1342 ypr_open(ctx->out, &flag);
1343 yprc_action(ctx, &cont->actions[u]);
1344 }
Radek Krejci693262f2019-04-29 15:23:20 +02001345
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08001346 LY_ARRAY_FOR(cont->notifs, u) {
1347 ypr_open(ctx->out, &flag);
1348 yprc_notification(ctx, &cont->notifs[u]);
1349 }
Radek Krejci693262f2019-04-29 15:23:20 +02001350 }
1351
1352 LEVEL--;
1353 ypr_close(ctx, flag);
1354}
1355
1356static void
1357yprp_case(struct ypr_ctx *ctx, const struct lysp_node *node)
1358{
Radek Krejci857189e2020-09-01 13:26:36 +02001359 ly_bool flag = 0;
Radek Krejci693262f2019-04-29 15:23:20 +02001360 struct lysp_node *child;
1361 struct lysp_node_case *cas = (struct lysp_node_case *)node;
1362
1363 yprp_node_common1(ctx, node, &flag);
1364 yprp_node_common2(ctx, node, &flag);
1365
1366 LY_LIST_FOR(cas->child, child) {
1367 ypr_open(ctx->out, &flag);
1368 yprp_node(ctx, child);
1369 }
1370
1371 LEVEL--;
1372 ypr_close(ctx, flag);
1373}
1374
1375static void
1376yprc_case(struct ypr_ctx *ctx, const struct lysc_node_case *cs)
1377{
Radek Krejci857189e2020-09-01 13:26:36 +02001378 ly_bool flag = 0;
Radek Krejci693262f2019-04-29 15:23:20 +02001379 struct lysc_node *child;
1380
Michal Vasko22df3f02020-08-24 13:29:22 +02001381 yprc_node_common1(ctx, (struct lysc_node *)cs, &flag);
1382 yprc_node_common2(ctx, (struct lysc_node *)cs, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001383
Radek Krejci52f65552020-09-01 17:03:35 +02001384 if (!(ctx->options & LYS_PRINT_NO_SUBSTMT)) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001385 for (child = cs->child; child && child->parent == (struct lysc_node *)cs; child = child->next) {
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08001386 ypr_open(ctx->out, &flag);
1387 yprc_node(ctx, child);
1388 }
Radek Krejci693262f2019-04-29 15:23:20 +02001389 }
1390
1391 LEVEL--;
1392 ypr_close(ctx, flag);
1393}
1394
1395static void
1396yprp_choice(struct ypr_ctx *ctx, const struct lysp_node *node)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001397{
Radek Krejci857189e2020-09-01 13:26:36 +02001398 ly_bool flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001399 struct lysp_node *child;
1400 struct lysp_node_choice *choice = (struct lysp_node_choice *)node;
1401
Radek Krejci693262f2019-04-29 15:23:20 +02001402 yprp_node_common1(ctx, node, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001403
Michal Vasko7f45cf22020-10-01 12:49:44 +02001404 if (choice->dflt.str) {
Radek Krejcid3ca0632019-04-16 16:54:54 +02001405 ypr_open(ctx->out, &flag);
Michal Vasko7f45cf22020-10-01 12:49:44 +02001406 ypr_substmt(ctx, LYEXT_SUBSTMT_DEFAULT, 0, choice->dflt.str, choice->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001407 }
1408
Radek Krejci693262f2019-04-29 15:23:20 +02001409 yprp_node_common2(ctx, node, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001410
1411 LY_LIST_FOR(choice->child, child) {
1412 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001413 yprp_node(ctx, child);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001414 }
1415
1416 LEVEL--;
1417 ypr_close(ctx, flag);
1418}
1419
1420static void
Radek Krejci693262f2019-04-29 15:23:20 +02001421yprc_choice(struct ypr_ctx *ctx, const struct lysc_node *node)
1422{
Radek Krejci857189e2020-09-01 13:26:36 +02001423 ly_bool flag = 0;
Radek Krejci693262f2019-04-29 15:23:20 +02001424 struct lysc_node_case *cs;
1425 struct lysc_node_choice *choice = (struct lysc_node_choice *)node;
1426
1427 yprc_node_common1(ctx, node, &flag);
1428
1429 if (choice->dflt) {
1430 ypr_open(ctx->out, &flag);
1431 ypr_substmt(ctx, LYEXT_SUBSTMT_DEFAULT, 0, choice->dflt->name, choice->exts);
1432 }
1433
1434 yprc_node_common2(ctx, node, &flag);
1435
Michal Vasko22df3f02020-08-24 13:29:22 +02001436 for (cs = choice->cases; cs; cs = (struct lysc_node_case *)cs->next) {
Radek Krejci693262f2019-04-29 15:23:20 +02001437 ypr_open(ctx->out, &flag);
1438 yprc_case(ctx, cs);
1439 }
1440
1441 LEVEL--;
1442 ypr_close(ctx, flag);
1443}
1444
1445static void
1446yprp_leaf(struct ypr_ctx *ctx, const struct lysp_node *node)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001447{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001448 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001449 struct lysp_node_leaf *leaf = (struct lysp_node_leaf *)node;
1450
Radek Krejci693262f2019-04-29 15:23:20 +02001451 yprp_node_common1(ctx, node, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001452
Radek Krejci693262f2019-04-29 15:23:20 +02001453 yprp_type(ctx, &leaf->type);
1454 ypr_substmt(ctx, LYEXT_SUBSTMT_UNITS, 0, leaf->units, leaf->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001455 LY_ARRAY_FOR(leaf->musts, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02001456 yprp_restr(ctx, &leaf->musts[u], "must", NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001457 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02001458 ypr_substmt(ctx, LYEXT_SUBSTMT_DEFAULT, 0, leaf->dflt.str, leaf->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001459
Radek Krejci693262f2019-04-29 15:23:20 +02001460 yprp_node_common2(ctx, node, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001461
1462 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02001463 ly_print_(ctx->out, "%*s}\n", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001464}
1465
1466static void
Radek Krejci693262f2019-04-29 15:23:20 +02001467yprc_leaf(struct ypr_ctx *ctx, const struct lysc_node *node)
1468{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001469 LY_ARRAY_COUNT_TYPE u;
Radek Krejci693262f2019-04-29 15:23:20 +02001470 struct lysc_node_leaf *leaf = (struct lysc_node_leaf *)node;
1471
1472 yprc_node_common1(ctx, node, NULL);
1473
1474 yprc_type(ctx, leaf->type);
1475 ypr_substmt(ctx, LYEXT_SUBSTMT_UNITS, 0, leaf->units, leaf->exts);
1476 LY_ARRAY_FOR(leaf->musts, u) {
1477 yprc_must(ctx, &leaf->musts[u], NULL);
1478 }
Radek Krejcia1911222019-07-22 17:24:50 +02001479
1480 if (leaf->dflt) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +02001481 yprc_dflt_value(ctx, leaf->dflt, leaf->exts);
Radek Krejcia1911222019-07-22 17:24:50 +02001482 }
Radek Krejci693262f2019-04-29 15:23:20 +02001483
1484 yprc_node_common2(ctx, node, NULL);
1485
1486 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02001487 ly_print_(ctx->out, "%*s}\n", INDENT);
Radek Krejci693262f2019-04-29 15:23:20 +02001488}
1489
1490static void
1491yprp_leaflist(struct ypr_ctx *ctx, const struct lysp_node *node)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001492{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001493 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001494 struct lysp_node_leaflist *llist = (struct lysp_node_leaflist *)node;
1495
Radek Krejci693262f2019-04-29 15:23:20 +02001496 yprp_node_common1(ctx, node, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001497
Radek Krejci693262f2019-04-29 15:23:20 +02001498 yprp_type(ctx, &llist->type);
1499 ypr_substmt(ctx, LYEXT_SUBSTMT_UNITS, 0, llist->units, llist->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001500 LY_ARRAY_FOR(llist->musts, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02001501 yprp_restr(ctx, &llist->musts[u], "must", NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001502 }
1503 LY_ARRAY_FOR(llist->dflts, u) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02001504 ypr_substmt(ctx, LYEXT_SUBSTMT_DEFAULT, u, llist->dflts[u].str, llist->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001505 }
1506
Radek Krejci693262f2019-04-29 15:23:20 +02001507 ypr_config(ctx, node->flags, node->exts, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001508
1509 if (llist->flags & LYS_SET_MIN) {
Radek Krejci693262f2019-04-29 15:23:20 +02001510 ypr_unsigned(ctx, LYEXT_SUBSTMT_MIN, 0, llist->exts, llist->min, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001511 }
1512 if (llist->flags & LYS_SET_MAX) {
1513 if (llist->max) {
Radek Krejci693262f2019-04-29 15:23:20 +02001514 ypr_unsigned(ctx, LYEXT_SUBSTMT_MAX, 0, llist->exts, llist->max, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001515 } else {
Radek Krejci693262f2019-04-29 15:23:20 +02001516 ypr_substmt(ctx, LYEXT_SUBSTMT_MAX, 0, "unbounded", llist->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001517 }
1518 }
1519
1520 if (llist->flags & LYS_ORDBY_MASK) {
Radek Krejci693262f2019-04-29 15:23:20 +02001521 ypr_substmt(ctx, LYEXT_SUBSTMT_ORDEREDBY, 0, (llist->flags & LYS_ORDBY_USER) ? "user" : "system", llist->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001522 }
1523
Radek Krejci693262f2019-04-29 15:23:20 +02001524 ypr_status(ctx, node->flags, node->exts, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001525 ypr_description(ctx, node->dsc, node->exts, NULL);
1526 ypr_reference(ctx, node->ref, node->exts, NULL);
1527
1528 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02001529 ly_print_(ctx->out, "%*s}\n", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001530}
1531
1532static void
Radek Krejci693262f2019-04-29 15:23:20 +02001533yprc_leaflist(struct ypr_ctx *ctx, const struct lysc_node *node)
1534{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001535 LY_ARRAY_COUNT_TYPE u;
Radek Krejci693262f2019-04-29 15:23:20 +02001536 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist *)node;
1537
1538 yprc_node_common1(ctx, node, NULL);
1539
1540 yprc_type(ctx, llist->type);
1541 ypr_substmt(ctx, LYEXT_SUBSTMT_UNITS, 0, llist->units, llist->exts);
1542 LY_ARRAY_FOR(llist->musts, u) {
1543 yprc_must(ctx, &llist->musts[u], NULL);
1544 }
1545 LY_ARRAY_FOR(llist->dflts, u) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +02001546 yprc_dflt_value(ctx, llist->dflts[u], llist->exts);
Radek Krejci693262f2019-04-29 15:23:20 +02001547 }
1548
1549 ypr_config(ctx, node->flags, node->exts, NULL);
1550
1551 ypr_unsigned(ctx, LYEXT_SUBSTMT_MIN, 0, llist->exts, llist->min, NULL);
1552 if (llist->max) {
1553 ypr_unsigned(ctx, LYEXT_SUBSTMT_MAX, 0, llist->exts, llist->max, NULL);
1554 } else {
1555 ypr_substmt(ctx, LYEXT_SUBSTMT_MAX, 0, "unbounded", llist->exts);
1556 }
1557
1558 ypr_substmt(ctx, LYEXT_SUBSTMT_ORDEREDBY, 0, (llist->flags & LYS_ORDBY_USER) ? "user" : "system", llist->exts);
1559
1560 ypr_status(ctx, node->flags, node->exts, NULL);
1561 ypr_description(ctx, node->dsc, node->exts, NULL);
1562 ypr_reference(ctx, node->ref, node->exts, NULL);
1563
1564 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02001565 ly_print_(ctx->out, "%*s}\n", INDENT);
Radek Krejci693262f2019-04-29 15:23:20 +02001566}
1567
1568static void
1569yprp_list(struct ypr_ctx *ctx, const struct lysp_node *node)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001570{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001571 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +02001572 ly_bool flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001573 struct lysp_node *child;
1574 struct lysp_node_list *list = (struct lysp_node_list *)node;
1575
Radek Krejci693262f2019-04-29 15:23:20 +02001576 yprp_node_common1(ctx, node, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001577
1578 LY_ARRAY_FOR(list->musts, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02001579 yprp_restr(ctx, &list->musts[u], "must", NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001580 }
1581 if (list->key) {
1582 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001583 ypr_substmt(ctx, LYEXT_SUBSTMT_KEY, 0, list->key, list->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001584 }
1585 LY_ARRAY_FOR(list->uniques, u) {
1586 ypr_open(ctx->out, &flag);
Michal Vasko7f45cf22020-10-01 12:49:44 +02001587 ypr_substmt(ctx, LYEXT_SUBSTMT_UNIQUE, u, list->uniques[u].str, list->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001588 }
1589
Michal Vaskoacb8e742020-10-20 10:28:02 +02001590 ypr_config(ctx, node->flags, node->exts, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001591
1592 if (list->flags & LYS_SET_MIN) {
Michal Vaskoacb8e742020-10-20 10:28:02 +02001593 ypr_unsigned(ctx, LYEXT_SUBSTMT_MIN, 0, list->exts, list->min, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001594 }
1595 if (list->flags & LYS_SET_MAX) {
1596 if (list->max) {
Michal Vaskoacb8e742020-10-20 10:28:02 +02001597 ypr_unsigned(ctx, LYEXT_SUBSTMT_MAX, 0, list->exts, list->max, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001598 } else {
Michal Vaskoacb8e742020-10-20 10:28:02 +02001599 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001600 ypr_substmt(ctx, LYEXT_SUBSTMT_MAX, 0, "unbounded", list->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001601 }
1602 }
1603
1604 if (list->flags & LYS_ORDBY_MASK) {
Michal Vaskoacb8e742020-10-20 10:28:02 +02001605 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001606 ypr_substmt(ctx, LYEXT_SUBSTMT_ORDEREDBY, 0, (list->flags & LYS_ORDBY_USER) ? "user" : "system", list->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001607 }
1608
Michal Vaskoacb8e742020-10-20 10:28:02 +02001609 ypr_status(ctx, node->flags, node->exts, &flag);
1610 ypr_description(ctx, node->dsc, node->exts, &flag);
1611 ypr_reference(ctx, node->ref, node->exts, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001612
1613 LY_ARRAY_FOR(list->typedefs, u) {
1614 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001615 yprp_typedef(ctx, &list->typedefs[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001616 }
1617
1618 LY_ARRAY_FOR(list->groupings, u) {
1619 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001620 yprp_grouping(ctx, &list->groupings[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001621 }
1622
1623 LY_LIST_FOR(list->child, child) {
1624 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001625 yprp_node(ctx, child);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001626 }
1627
1628 LY_ARRAY_FOR(list->actions, u) {
1629 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001630 yprp_action(ctx, &list->actions[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001631 }
1632
1633 LY_ARRAY_FOR(list->notifs, u) {
1634 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001635 yprp_notification(ctx, &list->notifs[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001636 }
1637
1638 LEVEL--;
1639 ypr_close(ctx, flag);
1640}
1641
1642static void
Radek Krejci693262f2019-04-29 15:23:20 +02001643yprc_list(struct ypr_ctx *ctx, const struct lysc_node *node)
1644{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001645 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci693262f2019-04-29 15:23:20 +02001646 struct lysc_node *child;
1647 struct lysc_node_list *list = (struct lysc_node_list *)node;
1648
Michal Vaskoacb8e742020-10-20 10:28:02 +02001649 yprc_node_common1(ctx, node, NULL);
Radek Krejci693262f2019-04-29 15:23:20 +02001650
1651 LY_ARRAY_FOR(list->musts, u) {
1652 yprc_must(ctx, &list->musts[u], NULL);
1653 }
Radek Krejci0fe9b512019-07-26 17:51:05 +02001654 if (!(list->flags & LYS_KEYLESS)) {
Michal Vasko5233e962020-08-14 14:26:20 +02001655 ly_print_(ctx->out, "%*skey \"", INDENT);
Radek Krejci0fe9b512019-07-26 17:51:05 +02001656 for (struct lysc_node *key = list->child; key && key->nodetype == LYS_LEAF && (key->flags & LYS_KEY); key = key->next) {
Michal Vasko5233e962020-08-14 14:26:20 +02001657 ly_print_(ctx->out, "%s%s", u > 0 ? ", " : "", key->name);
Radek Krejci693262f2019-04-29 15:23:20 +02001658 }
Michal Vasko5233e962020-08-14 14:26:20 +02001659 ly_print_(ctx->out, "\";\n");
Radek Krejci693262f2019-04-29 15:23:20 +02001660 }
1661 LY_ARRAY_FOR(list->uniques, u) {
Michal Vasko5233e962020-08-14 14:26:20 +02001662 ly_print_(ctx->out, "%*sunique \"", INDENT);
Radek Krejci693262f2019-04-29 15:23:20 +02001663 LY_ARRAY_FOR(list->uniques[u], v) {
Michal Vasko5233e962020-08-14 14:26:20 +02001664 ly_print_(ctx->out, "%s%s", v > 0 ? ", " : "", list->uniques[u][v]->name);
Radek Krejci693262f2019-04-29 15:23:20 +02001665 }
1666 ypr_close(ctx, 0);
1667 }
1668
1669 ypr_config(ctx, node->flags, node->exts, NULL);
1670
1671 ypr_unsigned(ctx, LYEXT_SUBSTMT_MIN, 0, list->exts, list->min, NULL);
1672 if (list->max) {
1673 ypr_unsigned(ctx, LYEXT_SUBSTMT_MAX, 0, list->exts, list->max, NULL);
1674 } else {
1675 ypr_substmt(ctx, LYEXT_SUBSTMT_MAX, 0, "unbounded", list->exts);
1676 }
1677
1678 ypr_substmt(ctx, LYEXT_SUBSTMT_ORDEREDBY, 0, (list->flags & LYS_ORDBY_USER) ? "user" : "system", list->exts);
1679
1680 ypr_status(ctx, node->flags, node->exts, NULL);
1681 ypr_description(ctx, node->dsc, node->exts, NULL);
1682 ypr_reference(ctx, node->ref, node->exts, NULL);
1683
Radek Krejci52f65552020-09-01 17:03:35 +02001684 if (!(ctx->options & LYS_PRINT_NO_SUBSTMT)) {
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08001685 LY_LIST_FOR(list->child, child) {
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08001686 yprc_node(ctx, child);
1687 }
Radek Krejci693262f2019-04-29 15:23:20 +02001688
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08001689 LY_ARRAY_FOR(list->actions, u) {
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08001690 yprc_action(ctx, &list->actions[u]);
1691 }
Radek Krejci693262f2019-04-29 15:23:20 +02001692
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08001693 LY_ARRAY_FOR(list->notifs, u) {
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08001694 yprc_notification(ctx, &list->notifs[u]);
1695 }
Radek Krejci693262f2019-04-29 15:23:20 +02001696 }
1697
1698 LEVEL--;
Michal Vaskoacb8e742020-10-20 10:28:02 +02001699 ypr_close(ctx, 1);
Radek Krejci693262f2019-04-29 15:23:20 +02001700}
1701
1702static void
1703yprp_refine(struct ypr_ctx *ctx, struct lysp_refine *refine)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001704{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001705 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +02001706 ly_bool flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001707
Michal Vasko5233e962020-08-14 14:26:20 +02001708 ly_print_(ctx->out, "%*srefine \"%s\"", INDENT, refine->nodeid);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001709 LEVEL++;
1710
Radek Krejci693262f2019-04-29 15:23:20 +02001711 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, refine->exts, &flag, 0);
1712 yprp_iffeatures(ctx, refine->iffeatures, refine->exts, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001713
1714 LY_ARRAY_FOR(refine->musts, u) {
1715 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001716 yprp_restr(ctx, &refine->musts[u], "must", NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001717 }
1718
1719 if (refine->presence) {
1720 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001721 ypr_substmt(ctx, LYEXT_SUBSTMT_PRESENCE, 0, refine->presence, refine->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001722 }
1723
1724 LY_ARRAY_FOR(refine->dflts, u) {
1725 ypr_open(ctx->out, &flag);
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001726 ypr_substmt(ctx, LYEXT_SUBSTMT_DEFAULT, u, refine->dflts[u].str, refine->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001727 }
1728
Radek Krejci693262f2019-04-29 15:23:20 +02001729 ypr_config(ctx, refine->flags, refine->exts, &flag);
1730 ypr_mandatory(ctx, refine->flags, refine->exts, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001731
1732 if (refine->flags & LYS_SET_MIN) {
1733 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001734 ypr_unsigned(ctx, LYEXT_SUBSTMT_MIN, 0, refine->exts, refine->min, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001735 }
1736 if (refine->flags & LYS_SET_MAX) {
1737 ypr_open(ctx->out, &flag);
1738 if (refine->max) {
Radek Krejci693262f2019-04-29 15:23:20 +02001739 ypr_unsigned(ctx, LYEXT_SUBSTMT_MAX, 0, refine->exts, refine->max, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001740 } else {
Radek Krejci693262f2019-04-29 15:23:20 +02001741 ypr_substmt(ctx, LYEXT_SUBSTMT_MAX, 0, "unbounded", refine->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001742 }
1743 }
1744
1745 ypr_description(ctx, refine->dsc, refine->exts, &flag);
1746 ypr_reference(ctx, refine->ref, refine->exts, &flag);
1747
1748 LEVEL--;
1749 ypr_close(ctx, flag);
1750}
1751
1752static void
Radek Krejci693262f2019-04-29 15:23:20 +02001753yprp_augment(struct ypr_ctx *ctx, const struct lysp_augment *aug)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001754{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001755 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001756 struct lysp_node *child;
1757
Michal Vasko5233e962020-08-14 14:26:20 +02001758 ly_print_(ctx->out, "%*saugment \"%s\" {\n", INDENT, aug->nodeid);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001759 LEVEL++;
1760
Radek Krejci693262f2019-04-29 15:23:20 +02001761 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, aug->exts, NULL, 0);
1762 yprp_when(ctx, aug->when, NULL);
1763 yprp_iffeatures(ctx, aug->iffeatures, aug->exts, NULL);
1764 ypr_status(ctx, aug->flags, aug->exts, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001765 ypr_description(ctx, aug->dsc, aug->exts, NULL);
1766 ypr_reference(ctx, aug->ref, aug->exts, NULL);
1767
1768 LY_LIST_FOR(aug->child, child) {
Radek Krejci693262f2019-04-29 15:23:20 +02001769 yprp_node(ctx, child);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001770 }
1771
1772 LY_ARRAY_FOR(aug->actions, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02001773 yprp_action(ctx, &aug->actions[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001774 }
1775
1776 LY_ARRAY_FOR(aug->notifs, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02001777 yprp_notification(ctx, &aug->notifs[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001778 }
1779
1780 LEVEL--;
Radek Krejcifc81ea82019-04-18 13:27:22 +02001781 ypr_close(ctx, 1);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001782}
1783
Radek Krejcid3ca0632019-04-16 16:54:54 +02001784static void
Radek Krejci693262f2019-04-29 15:23:20 +02001785yprp_uses(struct ypr_ctx *ctx, const struct lysp_node *node)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001786{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001787 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +02001788 ly_bool flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001789 struct lysp_node_uses *uses = (struct lysp_node_uses *)node;
1790
Radek Krejci693262f2019-04-29 15:23:20 +02001791 yprp_node_common1(ctx, node, &flag);
1792 yprp_node_common2(ctx, node, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001793
1794 LY_ARRAY_FOR(uses->refines, u) {
1795 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001796 yprp_refine(ctx, &uses->refines[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001797 }
1798
1799 LY_ARRAY_FOR(uses->augments, u) {
1800 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001801 yprp_augment(ctx, &uses->augments[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001802 }
1803
1804 LEVEL--;
1805 ypr_close(ctx, flag);
1806}
1807
1808static void
Radek Krejci693262f2019-04-29 15:23:20 +02001809yprp_anydata(struct ypr_ctx *ctx, const struct lysp_node *node)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001810{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001811 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +02001812 ly_bool flag = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001813 struct lysp_node_anydata *any = (struct lysp_node_anydata *)node;
1814
Radek Krejci693262f2019-04-29 15:23:20 +02001815 yprp_node_common1(ctx, node, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001816
1817 LY_ARRAY_FOR(any->musts, u) {
1818 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001819 yprp_restr(ctx, &any->musts[u], "must", NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001820 }
1821
Radek Krejci693262f2019-04-29 15:23:20 +02001822 yprp_node_common2(ctx, node, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001823
1824 LEVEL--;
1825 ypr_close(ctx, flag);
1826}
1827
1828static void
Radek Krejci693262f2019-04-29 15:23:20 +02001829yprc_anydata(struct ypr_ctx *ctx, const struct lysc_node *node)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001830{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001831 LY_ARRAY_COUNT_TYPE u;
Radek Krejci857189e2020-09-01 13:26:36 +02001832 ly_bool flag = 0;
Radek Krejci693262f2019-04-29 15:23:20 +02001833 struct lysc_node_anydata *any = (struct lysc_node_anydata *)node;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001834
Radek Krejci693262f2019-04-29 15:23:20 +02001835 yprc_node_common1(ctx, node, &flag);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001836
Radek Krejci693262f2019-04-29 15:23:20 +02001837 LY_ARRAY_FOR(any->musts, u) {
Radek Krejcid3ca0632019-04-16 16:54:54 +02001838 ypr_open(ctx->out, &flag);
Radek Krejci693262f2019-04-29 15:23:20 +02001839 yprc_must(ctx, &any->musts[u], NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001840 }
1841
Radek Krejci693262f2019-04-29 15:23:20 +02001842 yprc_node_common2(ctx, node, &flag);
1843
Radek Krejcid3ca0632019-04-16 16:54:54 +02001844 LEVEL--;
1845 ypr_close(ctx, flag);
1846}
1847
1848static void
Radek Krejci693262f2019-04-29 15:23:20 +02001849yprp_node(struct ypr_ctx *ctx, const struct lysp_node *node)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001850{
1851 switch (node->nodetype) {
1852 case LYS_CONTAINER:
Radek Krejci693262f2019-04-29 15:23:20 +02001853 yprp_container(ctx, node);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001854 break;
1855 case LYS_CHOICE:
Radek Krejci693262f2019-04-29 15:23:20 +02001856 yprp_choice(ctx, node);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001857 break;
1858 case LYS_LEAF:
Radek Krejci693262f2019-04-29 15:23:20 +02001859 yprp_leaf(ctx, node);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001860 break;
1861 case LYS_LEAFLIST:
Radek Krejci693262f2019-04-29 15:23:20 +02001862 yprp_leaflist(ctx, node);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001863 break;
1864 case LYS_LIST:
Radek Krejci693262f2019-04-29 15:23:20 +02001865 yprp_list(ctx, node);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001866 break;
1867 case LYS_USES:
Radek Krejci693262f2019-04-29 15:23:20 +02001868 yprp_uses(ctx, node);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001869 break;
1870 case LYS_ANYXML:
1871 case LYS_ANYDATA:
Radek Krejci693262f2019-04-29 15:23:20 +02001872 yprp_anydata(ctx, node);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001873 break;
1874 case LYS_CASE:
Radek Krejci693262f2019-04-29 15:23:20 +02001875 yprp_case(ctx, node);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001876 break;
1877 default:
1878 break;
1879 }
1880}
1881
1882static void
Radek Krejci693262f2019-04-29 15:23:20 +02001883yprc_node(struct ypr_ctx *ctx, const struct lysc_node *node)
1884{
1885 switch (node->nodetype) {
1886 case LYS_CONTAINER:
1887 yprc_container(ctx, node);
1888 break;
1889 case LYS_CHOICE:
1890 yprc_choice(ctx, node);
1891 break;
1892 case LYS_LEAF:
1893 yprc_leaf(ctx, node);
1894 break;
1895 case LYS_LEAFLIST:
1896 yprc_leaflist(ctx, node);
1897 break;
1898 case LYS_LIST:
1899 yprc_list(ctx, node);
1900 break;
1901 case LYS_ANYXML:
1902 case LYS_ANYDATA:
1903 yprc_anydata(ctx, node);
1904 break;
1905 default:
1906 break;
1907 }
1908}
1909
1910static void
1911yprp_deviation(struct ypr_ctx *ctx, const struct lysp_deviation *deviation)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001912{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001913 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001914 struct lysp_deviate_add *add;
1915 struct lysp_deviate_rpl *rpl;
1916 struct lysp_deviate_del *del;
fredgan2b11ddb2019-10-21 11:03:39 +08001917 struct lysp_deviate *elem;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001918
Michal Vasko5233e962020-08-14 14:26:20 +02001919 ly_print_(ctx->out, "%*sdeviation \"%s\" {\n", INDENT, deviation->nodeid);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001920 LEVEL++;
1921
Radek Krejci693262f2019-04-29 15:23:20 +02001922 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, deviation->exts, NULL, 0);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001923 ypr_description(ctx, deviation->dsc, deviation->exts, NULL);
1924 ypr_reference(ctx, deviation->ref, deviation->exts, NULL);
1925
fredgan2b11ddb2019-10-21 11:03:39 +08001926 LY_LIST_FOR(deviation->deviates, elem) {
Michal Vasko5233e962020-08-14 14:26:20 +02001927 ly_print_(ctx->out, "%*sdeviate ", INDENT);
fredgan2b11ddb2019-10-21 11:03:39 +08001928 if (elem->mod == LYS_DEV_NOT_SUPPORTED) {
1929 if (elem->exts) {
Michal Vasko5233e962020-08-14 14:26:20 +02001930 ly_print_(ctx->out, "not-supported {\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +02001931 LEVEL++;
1932
fredgan2b11ddb2019-10-21 11:03:39 +08001933 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, elem->exts, NULL, 0);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001934 } else {
Michal Vasko5233e962020-08-14 14:26:20 +02001935 ly_print_(ctx->out, "not-supported;\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +02001936 continue;
1937 }
fredgan2b11ddb2019-10-21 11:03:39 +08001938 } else if (elem->mod == LYS_DEV_ADD) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001939 add = (struct lysp_deviate_add *)elem;
Michal Vasko5233e962020-08-14 14:26:20 +02001940 ly_print_(ctx->out, "add {\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +02001941 LEVEL++;
1942
Radek Krejci693262f2019-04-29 15:23:20 +02001943 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, add->exts, NULL, 0);
1944 ypr_substmt(ctx, LYEXT_SUBSTMT_UNITS, 0, add->units, add->exts);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001945 LY_ARRAY_FOR(add->musts, u) {
1946 yprp_restr(ctx, &add->musts[u], "must", NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001947 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001948 LY_ARRAY_FOR(add->uniques, u) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001949 ypr_substmt(ctx, LYEXT_SUBSTMT_UNIQUE, u, add->uniques[u].str, add->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001950 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001951 LY_ARRAY_FOR(add->dflts, u) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001952 ypr_substmt(ctx, LYEXT_SUBSTMT_DEFAULT, u, add->dflts[u].str, add->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001953 }
Radek Krejci693262f2019-04-29 15:23:20 +02001954 ypr_config(ctx, add->flags, add->exts, NULL);
1955 ypr_mandatory(ctx, add->flags, add->exts, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001956 if (add->flags & LYS_SET_MIN) {
Radek Krejci693262f2019-04-29 15:23:20 +02001957 ypr_unsigned(ctx, LYEXT_SUBSTMT_MIN, 0, add->exts, add->min, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001958 }
1959 if (add->flags & LYS_SET_MAX) {
1960 if (add->max) {
Radek Krejci693262f2019-04-29 15:23:20 +02001961 ypr_unsigned(ctx, LYEXT_SUBSTMT_MAX, 0, add->exts, add->max, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001962 } else {
Radek Krejci693262f2019-04-29 15:23:20 +02001963 ypr_substmt(ctx, LYEXT_SUBSTMT_MAX, 0, "unbounded", add->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001964 }
1965 }
fredgan2b11ddb2019-10-21 11:03:39 +08001966 } else if (elem->mod == LYS_DEV_REPLACE) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001967 rpl = (struct lysp_deviate_rpl *)elem;
Michal Vasko5233e962020-08-14 14:26:20 +02001968 ly_print_(ctx->out, "replace {\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +02001969 LEVEL++;
1970
Radek Krejci693262f2019-04-29 15:23:20 +02001971 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, rpl->exts, NULL, 0);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001972 if (rpl->type) {
Radek Krejci693262f2019-04-29 15:23:20 +02001973 yprp_type(ctx, rpl->type);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001974 }
Radek Krejci693262f2019-04-29 15:23:20 +02001975 ypr_substmt(ctx, LYEXT_SUBSTMT_UNITS, 0, rpl->units, rpl->exts);
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001976 ypr_substmt(ctx, LYEXT_SUBSTMT_DEFAULT, 0, rpl->dflt.str, rpl->exts);
Radek Krejci693262f2019-04-29 15:23:20 +02001977 ypr_config(ctx, rpl->flags, rpl->exts, NULL);
1978 ypr_mandatory(ctx, rpl->flags, rpl->exts, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001979 if (rpl->flags & LYS_SET_MIN) {
Radek Krejci693262f2019-04-29 15:23:20 +02001980 ypr_unsigned(ctx, LYEXT_SUBSTMT_MIN, 0, rpl->exts, rpl->min, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001981 }
1982 if (rpl->flags & LYS_SET_MAX) {
1983 if (rpl->max) {
Radek Krejci693262f2019-04-29 15:23:20 +02001984 ypr_unsigned(ctx, LYEXT_SUBSTMT_MAX, 0, rpl->exts, rpl->max, NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001985 } else {
Radek Krejci693262f2019-04-29 15:23:20 +02001986 ypr_substmt(ctx, LYEXT_SUBSTMT_MAX, 0, "unbounded", rpl->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001987 }
1988 }
fredgan2b11ddb2019-10-21 11:03:39 +08001989 } else if (elem->mod == LYS_DEV_DELETE) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001990 del = (struct lysp_deviate_del *)elem;
Michal Vasko5233e962020-08-14 14:26:20 +02001991 ly_print_(ctx->out, "delete {\n");
Radek Krejcid3ca0632019-04-16 16:54:54 +02001992 LEVEL++;
1993
Radek Krejci693262f2019-04-29 15:23:20 +02001994 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, del->exts, NULL, 0);
1995 ypr_substmt(ctx, LYEXT_SUBSTMT_UNITS, 0, del->units, del->exts);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001996 LY_ARRAY_FOR(del->musts, u) {
1997 yprp_restr(ctx, &del->musts[u], "must", NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001998 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001999 LY_ARRAY_FOR(del->uniques, u) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02002000 ypr_substmt(ctx, LYEXT_SUBSTMT_UNIQUE, u, del->uniques[u].str, del->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002001 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02002002 LY_ARRAY_FOR(del->dflts, u) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02002003 ypr_substmt(ctx, LYEXT_SUBSTMT_DEFAULT, u, del->dflts[u].str, del->exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002004 }
2005 }
2006
2007 LEVEL--;
2008 ypr_close(ctx, 1);
2009 }
2010
2011 LEVEL--;
2012 ypr_close(ctx, 1);
2013}
2014
Michal Vasko7c8439f2020-08-05 13:25:19 +02002015static void
2016yang_print_parsed_linkage(struct ypr_ctx *ctx, const struct lysp_module *modp)
Radek Krejcid3ca0632019-04-16 16:54:54 +02002017{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002018 LY_ARRAY_COUNT_TYPE u;
Radek Krejcid3ca0632019-04-16 16:54:54 +02002019
Radek Krejcid3ca0632019-04-16 16:54:54 +02002020 LY_ARRAY_FOR(modp->imports, u) {
Michal Vasko3e9bc2f2020-11-04 17:13:56 +01002021 if (modp->imports[u].flags & LYS_INTERNAL) {
2022 continue;
2023 }
2024
Michal Vasko5233e962020-08-14 14:26:20 +02002025 ly_print_(ctx->out, "%s%*simport %s {\n", u ? "" : "\n", INDENT, modp->imports[u].name);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002026 LEVEL++;
Radek Krejci693262f2019-04-29 15:23:20 +02002027 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, modp->imports[u].exts, NULL, 0);
2028 ypr_substmt(ctx, LYEXT_SUBSTMT_PREFIX, 0, modp->imports[u].prefix, modp->imports[u].exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002029 if (modp->imports[u].rev[0]) {
Radek Krejci693262f2019-04-29 15:23:20 +02002030 ypr_substmt(ctx, LYEXT_SUBSTMT_REVISIONDATE, 0, modp->imports[u].rev, modp->imports[u].exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002031 }
Radek Krejci693262f2019-04-29 15:23:20 +02002032 ypr_substmt(ctx, LYEXT_SUBSTMT_DESCRIPTION, 0, modp->imports[u].dsc, modp->imports[u].exts);
2033 ypr_substmt(ctx, LYEXT_SUBSTMT_REFERENCE, 0, modp->imports[u].ref, modp->imports[u].exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002034 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02002035 ly_print_(ctx->out, "%*s}\n", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002036 }
2037 LY_ARRAY_FOR(modp->includes, u) {
2038 if (modp->includes[u].rev[0] || modp->includes[u].dsc || modp->includes[u].ref || modp->includes[u].exts) {
Michal Vasko5233e962020-08-14 14:26:20 +02002039 ly_print_(ctx->out, "%s%*sinclude %s {\n", u ? "" : "\n", INDENT, modp->includes[u].name);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002040 LEVEL++;
Radek Krejci693262f2019-04-29 15:23:20 +02002041 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, modp->includes[u].exts, NULL, 0);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002042 if (modp->includes[u].rev[0]) {
Radek Krejci693262f2019-04-29 15:23:20 +02002043 ypr_substmt(ctx, LYEXT_SUBSTMT_REVISIONDATE, 0, modp->includes[u].rev, modp->includes[u].exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002044 }
Radek Krejci693262f2019-04-29 15:23:20 +02002045 ypr_substmt(ctx, LYEXT_SUBSTMT_DESCRIPTION, 0, modp->includes[u].dsc, modp->includes[u].exts);
2046 ypr_substmt(ctx, LYEXT_SUBSTMT_REFERENCE, 0, modp->includes[u].ref, modp->includes[u].exts);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002047 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02002048 ly_print_(ctx->out, "%*s}\n", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002049 } else {
Michal Vasko5233e962020-08-14 14:26:20 +02002050 ly_print_(ctx->out, "\n%*sinclude \"%s\";\n", INDENT, modp->includes[u].name);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002051 }
2052 }
Michal Vasko7c8439f2020-08-05 13:25:19 +02002053}
Radek Krejcid3ca0632019-04-16 16:54:54 +02002054
Michal Vasko7c8439f2020-08-05 13:25:19 +02002055static void
2056yang_print_parsed_body(struct ypr_ctx *ctx, const struct lysp_module *modp)
2057{
2058 LY_ARRAY_COUNT_TYPE u;
2059 struct lysp_node *data;
Radek Krejcid3ca0632019-04-16 16:54:54 +02002060
Radek Krejcid3ca0632019-04-16 16:54:54 +02002061 LY_ARRAY_FOR(modp->extensions, u) {
Michal Vasko5233e962020-08-14 14:26:20 +02002062 ly_print_(ctx->out, "\n");
Radek Krejci693262f2019-04-29 15:23:20 +02002063 yprp_extension(ctx, &modp->extensions[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002064 }
2065 if (modp->exts) {
Michal Vasko5233e962020-08-14 14:26:20 +02002066 ly_print_(ctx->out, "\n");
Michal Vasko7c8439f2020-08-05 13:25:19 +02002067 yprp_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, modp->exts, NULL, 0);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002068 }
2069
2070 LY_ARRAY_FOR(modp->features, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02002071 yprp_feature(ctx, &modp->features[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002072 }
2073
2074 LY_ARRAY_FOR(modp->identities, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02002075 yprp_identity(ctx, &modp->identities[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002076 }
2077
2078 LY_ARRAY_FOR(modp->typedefs, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02002079 yprp_typedef(ctx, &modp->typedefs[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002080 }
2081
2082 LY_ARRAY_FOR(modp->groupings, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02002083 yprp_grouping(ctx, &modp->groupings[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002084 }
2085
2086 LY_LIST_FOR(modp->data, data) {
Radek Krejci693262f2019-04-29 15:23:20 +02002087 yprp_node(ctx, data);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002088 }
2089
2090 LY_ARRAY_FOR(modp->augments, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02002091 yprp_augment(ctx, &modp->augments[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002092 }
2093
2094 LY_ARRAY_FOR(modp->rpcs, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02002095 yprp_action(ctx, &modp->rpcs[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002096 }
2097
2098 LY_ARRAY_FOR(modp->notifs, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02002099 yprp_notification(ctx, &modp->notifs[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002100 }
2101
2102 LY_ARRAY_FOR(modp->deviations, u) {
Radek Krejci693262f2019-04-29 15:23:20 +02002103 yprp_deviation(ctx, &modp->deviations[u]);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002104 }
Michal Vasko7c8439f2020-08-05 13:25:19 +02002105}
2106
2107LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002108yang_print_parsed_module(struct ly_out *out, const struct lys_module *module, const struct lysp_module *modp, uint32_t options)
Michal Vasko7c8439f2020-08-05 13:25:19 +02002109{
2110 LY_ARRAY_COUNT_TYPE u;
Radek Krejci52f65552020-09-01 17:03:35 +02002111 struct ypr_ctx ctx_ = {.out = out, .level = 0, .module = module, .schema = YPR_PARSED, .options = options}, *ctx = &ctx_;
Michal Vasko7c8439f2020-08-05 13:25:19 +02002112
Michal Vasko5233e962020-08-14 14:26:20 +02002113 ly_print_(ctx->out, "%*smodule %s {\n", INDENT, module->name);
Michal Vasko7c8439f2020-08-05 13:25:19 +02002114 LEVEL++;
2115
2116 /* module-header-stmts */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02002117 if (modp->version) {
2118 ypr_substmt(ctx, LYEXT_SUBSTMT_VERSION, 0, modp->version == LYS_VERSION_1_1 ? "1.1" : "1", modp->exts);
Michal Vasko7c8439f2020-08-05 13:25:19 +02002119 }
2120
2121 ypr_substmt(ctx, LYEXT_SUBSTMT_NAMESPACE, 0, module->ns, modp->exts);
2122 ypr_substmt(ctx, LYEXT_SUBSTMT_PREFIX, 0, module->prefix, modp->exts);
2123
2124 /* linkage-stmts (import/include) */
2125 yang_print_parsed_linkage(ctx, modp);
2126
2127 /* meta-stmts */
2128 if (module->org || module->contact || module->dsc || module->ref) {
Michal Vasko5233e962020-08-14 14:26:20 +02002129 ly_print_(out, "\n");
Michal Vasko7c8439f2020-08-05 13:25:19 +02002130 }
2131 ypr_substmt(ctx, LYEXT_SUBSTMT_ORGANIZATION, 0, module->org, modp->exts);
2132 ypr_substmt(ctx, LYEXT_SUBSTMT_CONTACT, 0, module->contact, modp->exts);
2133 ypr_substmt(ctx, LYEXT_SUBSTMT_DESCRIPTION, 0, module->dsc, modp->exts);
2134 ypr_substmt(ctx, LYEXT_SUBSTMT_REFERENCE, 0, module->ref, modp->exts);
2135
2136 /* revision-stmts */
2137 if (modp->revs) {
Michal Vasko5233e962020-08-14 14:26:20 +02002138 ly_print_(out, "\n");
Michal Vasko7c8439f2020-08-05 13:25:19 +02002139 }
2140 LY_ARRAY_FOR(modp->revs, u) {
2141 yprp_revision(ctx, &modp->revs[u]);
2142 }
2143 /* body-stmts */
2144 yang_print_parsed_body(ctx, modp);
2145
2146 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02002147 ly_print_(out, "%*s}\n", INDENT);
Michal Vasko7c8439f2020-08-05 13:25:19 +02002148 ly_print_flush(out);
2149
2150 return LY_SUCCESS;
2151}
2152
2153static void
2154yprp_belongsto(struct ypr_ctx *ctx, const struct lysp_submodule *submodp)
2155{
Michal Vaskoc3781c32020-10-06 14:04:08 +02002156 ly_print_(ctx->out, "%*sbelongs-to %s {\n", INDENT, submodp->mod->name);
Michal Vasko7c8439f2020-08-05 13:25:19 +02002157 LEVEL++;
2158 yprp_extension_instances(ctx, LYEXT_SUBSTMT_BELONGSTO, 0, submodp->exts, NULL, 0);
2159 ypr_substmt(ctx, LYEXT_SUBSTMT_PREFIX, 0, submodp->prefix, submodp->exts);
2160 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02002161 ly_print_(ctx->out, "%*s}\n", INDENT);
Michal Vasko7c8439f2020-08-05 13:25:19 +02002162}
2163
2164LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002165yang_print_parsed_submodule(struct ly_out *out, const struct lys_module *module, const struct lysp_submodule *submodp, uint32_t options)
Michal Vasko7c8439f2020-08-05 13:25:19 +02002166{
2167 LY_ARRAY_COUNT_TYPE u;
Radek Krejci52f65552020-09-01 17:03:35 +02002168 struct ypr_ctx ctx_ = {.out = out, .level = 0, .module = module, .schema = YPR_PARSED, .options = options}, *ctx = &ctx_;
Michal Vasko7c8439f2020-08-05 13:25:19 +02002169
Michal Vasko5233e962020-08-14 14:26:20 +02002170 ly_print_(ctx->out, "%*ssubmodule %s {\n", INDENT, submodp->name);
Michal Vasko7c8439f2020-08-05 13:25:19 +02002171 LEVEL++;
2172
2173 /* submodule-header-stmts */
2174 if (submodp->version) {
2175 ypr_substmt(ctx, LYEXT_SUBSTMT_VERSION, 0, submodp->version == LYS_VERSION_1_1 ? "1.1" : "1", submodp->exts);
2176 }
2177
2178 yprp_belongsto(ctx, submodp);
2179
2180 /* linkage-stmts (import/include) */
2181 yang_print_parsed_linkage(ctx, (struct lysp_module *)submodp);
2182
2183 /* meta-stmts */
2184 if (submodp->org || submodp->contact || submodp->dsc || submodp->ref) {
Michal Vasko5233e962020-08-14 14:26:20 +02002185 ly_print_(out, "\n");
Michal Vasko7c8439f2020-08-05 13:25:19 +02002186 }
2187 ypr_substmt(ctx, LYEXT_SUBSTMT_ORGANIZATION, 0, submodp->org, submodp->exts);
2188 ypr_substmt(ctx, LYEXT_SUBSTMT_CONTACT, 0, submodp->contact, submodp->exts);
2189 ypr_substmt(ctx, LYEXT_SUBSTMT_DESCRIPTION, 0, submodp->dsc, submodp->exts);
2190 ypr_substmt(ctx, LYEXT_SUBSTMT_REFERENCE, 0, submodp->ref, submodp->exts);
2191
2192 /* revision-stmts */
2193 if (submodp->revs) {
Michal Vasko5233e962020-08-14 14:26:20 +02002194 ly_print_(out, "\n");
Michal Vasko7c8439f2020-08-05 13:25:19 +02002195 }
2196 LY_ARRAY_FOR(submodp->revs, u) {
2197 yprp_revision(ctx, &submodp->revs[u]);
2198 }
2199 /* body-stmts */
2200 yang_print_parsed_body(ctx, (struct lysp_module *)submodp);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002201
2202 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02002203 ly_print_(out, "%*s}\n", INDENT);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002204 ly_print_flush(out);
2205
2206 return LY_SUCCESS;
2207}
2208
2209LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002210yang_print_compiled_node(struct ly_out *out, const struct lysc_node *node, uint32_t options)
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08002211{
Radek Krejci52f65552020-09-01 17:03:35 +02002212 struct ypr_ctx ctx_ = {.out = out, .level = 0, .module = node->module, .options = options}, *ctx = &ctx_;
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08002213
2214 yprc_node(ctx, node);
2215
2216 ly_print_flush(out);
2217 return LY_SUCCESS;
2218}
2219
2220LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02002221yang_print_compiled(struct ly_out *out, const struct lys_module *module, uint32_t options)
Radek Krejcid3ca0632019-04-16 16:54:54 +02002222{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002223 LY_ARRAY_COUNT_TYPE u;
Radek Krejci693262f2019-04-29 15:23:20 +02002224 struct lysc_node *data;
2225 struct lysc_module *modc = module->compiled;
Radek Krejci52f65552020-09-01 17:03:35 +02002226 struct ypr_ctx ctx_ = {.out = out, .level = 0, .module = module, .options = options}, *ctx = &ctx_;
Radek Krejci693262f2019-04-29 15:23:20 +02002227
Michal Vasko5233e962020-08-14 14:26:20 +02002228 ly_print_(ctx->out, "%*smodule %s {\n", INDENT, module->name);
Radek Krejci693262f2019-04-29 15:23:20 +02002229 LEVEL++;
2230
Radek Krejci693262f2019-04-29 15:23:20 +02002231 /* module-header-stmts */
Radek Krejci693262f2019-04-29 15:23:20 +02002232 ypr_substmt(ctx, LYEXT_SUBSTMT_NAMESPACE, 0, module->ns, modc->exts);
2233 ypr_substmt(ctx, LYEXT_SUBSTMT_PREFIX, 0, module->prefix, modc->exts);
2234
Michal Vasko7c8439f2020-08-05 13:25:19 +02002235 /* no linkage-stmts */
Radek Krejci693262f2019-04-29 15:23:20 +02002236
2237 /* meta-stmts */
2238 if (module->org || module->contact || module->dsc || module->ref) {
Michal Vasko5233e962020-08-14 14:26:20 +02002239 ly_print_(out, "\n");
Radek Krejci693262f2019-04-29 15:23:20 +02002240 }
2241 ypr_substmt(ctx, LYEXT_SUBSTMT_ORGANIZATION, 0, module->org, modc->exts);
2242 ypr_substmt(ctx, LYEXT_SUBSTMT_CONTACT, 0, module->contact, modc->exts);
2243 ypr_substmt(ctx, LYEXT_SUBSTMT_DESCRIPTION, 0, module->dsc, modc->exts);
2244 ypr_substmt(ctx, LYEXT_SUBSTMT_REFERENCE, 0, module->ref, modc->exts);
2245
2246 /* revision-stmts */
2247 if (module->revision) {
Michal Vasko5233e962020-08-14 14:26:20 +02002248 ly_print_(ctx->out, "\n%*srevision %s;\n", INDENT, module->revision);
Radek Krejci693262f2019-04-29 15:23:20 +02002249 }
2250
2251 /* body-stmts */
2252 if (modc->exts) {
Michal Vasko5233e962020-08-14 14:26:20 +02002253 ly_print_(out, "\n");
Radek Krejci693262f2019-04-29 15:23:20 +02002254 yprc_extension_instances(ctx, LYEXT_SUBSTMT_SELF, 0, module->compiled->exts, NULL, 0);
2255 }
2256
Radek Krejci80d281e2020-09-14 17:42:54 +02002257 LY_ARRAY_FOR(module->identities, u) {
2258 yprc_identity(ctx, &module->identities[u]);
Radek Krejci693262f2019-04-29 15:23:20 +02002259 }
2260
Radek Krejci52f65552020-09-01 17:03:35 +02002261 if (!(ctx->options & LYS_PRINT_NO_SUBSTMT)) {
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08002262 LY_LIST_FOR(modc->data, data) {
2263 yprc_node(ctx, data);
2264 }
Radek Krejci693262f2019-04-29 15:23:20 +02002265
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08002266 LY_ARRAY_FOR(modc->rpcs, u) {
2267 yprc_action(ctx, &modc->rpcs[u]);
2268 }
Radek Krejci693262f2019-04-29 15:23:20 +02002269
Radek Krejcid8c0f5e2019-11-17 12:18:34 +08002270 LY_ARRAY_FOR(modc->notifs, u) {
2271 yprc_notification(ctx, &modc->notifs[u]);
2272 }
Radek Krejci693262f2019-04-29 15:23:20 +02002273 }
2274
2275 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02002276 ly_print_(out, "%*s}\n", INDENT);
Radek Krejci693262f2019-04-29 15:23:20 +02002277 ly_print_flush(out);
Radek Krejcid3ca0632019-04-16 16:54:54 +02002278
2279 return LY_SUCCESS;
2280}