blob: 93fd271edce36b3537abc62deb1ee23cfd91bb89 [file] [log] [blame]
FredGand944bdc2019-11-05 21:57:07 +08001/**
2 * @file printer_yin.c
3 * @author Fred Gan <ganshaolong@vip.qq.com>
4 * @brief YIN 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
FredGand944bdc2019-11-05 21:57:07 +080016
FredGand944bdc2019-11-05 21:57:07 +080017#include <stdint.h>
18#include <stdio.h>
19#include <stdlib.h>
FredGand944bdc2019-11-05 21:57:07 +080020
Radek Krejci535ea9f2020-05-29 16:01:05 +020021#include "common.h"
Radek Krejciaa45bda2020-07-20 07:43:38 +020022#include "compat.h"
FredGand944bdc2019-11-05 21:57:07 +080023#include "log.h"
Radek Krejci47fab892020-11-05 17:02:41 +010024#include "out.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020025#include "out_internal.h"
FredGand944bdc2019-11-05 21:57:07 +080026#include "printer_internal.h"
27#include "tree.h"
28#include "tree_schema.h"
29#include "tree_schema_internal.h"
FredGand944bdc2019-11-05 21:57:07 +080030#include "xml.h"
Michal Vasko004d3152020-06-11 19:59:22 +020031#include "xpath.h"
FredGand944bdc2019-11-05 21:57:07 +080032
33/**
34 * @brief YIN printer context.
35 */
Radek Krejciadcf63d2021-02-09 10:21:18 +010036struct lys_ypr_ctx {
Radek Krejcif8d7f9a2021-03-10 14:32:36 +010037 union {
38 struct {
39 struct ly_out *out; /**< output specification */
40 uint16_t level; /**< current indentation level: 0 - no formatting, >= 1 indentation levels */
41 uint32_t options; /**< Schema output options (see @ref schemaprinterflags). */
42 const struct lys_module *module; /**< schema to print */
43 };
44 struct lyspr_ctx printer_ctx;
45 };
46
47 /* YIN printer specific members */
FredGand944bdc2019-11-05 21:57:07 +080048};
49
Radek Krejcifc596f92021-02-26 22:40:26 +010050static void yprp_extension_instances(struct lys_ypr_ctx *ctx, enum ly_stmt substmt, uint8_t substmt_index,
Radek Krejci1deb5be2020-08-26 16:43:36 +020051 struct lysp_ext_instance *ext, int8_t *flag, LY_ARRAY_COUNT_TYPE count);
FredGand944bdc2019-11-05 21:57:07 +080052
53static void
Radek Krejciadcf63d2021-02-09 10:21:18 +010054ypr_open(struct lys_ypr_ctx *ctx, const char *elem_name, const char *attr_name, const char *attr_value, int8_t flag)
FredGand944bdc2019-11-05 21:57:07 +080055{
Michal Vasko5233e962020-08-14 14:26:20 +020056 ly_print_(ctx->out, "%*s<%s", INDENT, elem_name);
FredGand944bdc2019-11-05 21:57:07 +080057
58 if (attr_name) {
Michal Vasko5233e962020-08-14 14:26:20 +020059 ly_print_(ctx->out, " %s=\"", attr_name);
FredGand944bdc2019-11-05 21:57:07 +080060 lyxml_dump_text(ctx->out, attr_value, 1);
Michal Vasko5233e962020-08-14 14:26:20 +020061 ly_print_(ctx->out, "\"%s", flag == -1 ? "/>\n" : flag == 1 ? ">\n" : "");
FredGand944bdc2019-11-05 21:57:07 +080062 } else if (flag) {
Michal Vasko5233e962020-08-14 14:26:20 +020063 ly_print_(ctx->out, flag == -1 ? "/>\n" : ">\n");
FredGand944bdc2019-11-05 21:57:07 +080064 }
65}
66
67static void
Radek Krejciadcf63d2021-02-09 10:21:18 +010068ypr_close(struct lys_ypr_ctx *ctx, const char *elem_name, int8_t flag)
FredGand944bdc2019-11-05 21:57:07 +080069{
70 if (flag) {
Michal Vasko5233e962020-08-14 14:26:20 +020071 ly_print_(ctx->out, "%*s</%s>\n", INDENT, elem_name);
FredGand944bdc2019-11-05 21:57:07 +080072 } else {
Michal Vasko5233e962020-08-14 14:26:20 +020073 ly_print_(ctx->out, "/>\n");
FredGand944bdc2019-11-05 21:57:07 +080074 }
75}
76
77/*
78 * par_close_flag
79 * 0 - parent not yet closed, printing >\n, setting flag to 1
80 * 1 or NULL - parent already closed, do nothing
81 */
82static void
Radek Krejciadcf63d2021-02-09 10:21:18 +010083ypr_close_parent(struct lys_ypr_ctx *ctx, int8_t *par_close_flag)
FredGand944bdc2019-11-05 21:57:07 +080084{
85 if (par_close_flag && !(*par_close_flag)) {
86 (*par_close_flag) = 1;
Michal Vasko5233e962020-08-14 14:26:20 +020087 ly_print_(ctx->out, ">\n");
FredGand944bdc2019-11-05 21:57:07 +080088 }
89}
90
91static void
Radek Krejciadcf63d2021-02-09 10:21:18 +010092ypr_yin_arg(struct lys_ypr_ctx *ctx, const char *arg, const char *text)
FredGand944bdc2019-11-05 21:57:07 +080093{
Michal Vasko5233e962020-08-14 14:26:20 +020094 ly_print_(ctx->out, "%*s<%s>", INDENT, arg);
FredGand944bdc2019-11-05 21:57:07 +080095 lyxml_dump_text(ctx->out, text, 0);
Michal Vasko5233e962020-08-14 14:26:20 +020096 ly_print_(ctx->out, "</%s>\n", arg);
FredGand944bdc2019-11-05 21:57:07 +080097}
98
FredGand944bdc2019-11-05 21:57:07 +080099static void
Radek Krejcifc596f92021-02-26 22:40:26 +0100100ypr_substmt(struct lys_ypr_ctx *ctx, enum ly_stmt substmt, uint8_t substmt_index, const char *text, void *ext)
FredGand944bdc2019-11-05 21:57:07 +0800101{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200102 LY_ARRAY_COUNT_TYPE u;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200103 int8_t extflag = 0;
FredGand944bdc2019-11-05 21:57:07 +0800104
105 if (!text) {
106 /* nothing to print */
107 return;
108 }
109
Radek Krejcieccf6602021-02-05 19:42:54 +0100110 if (stmt_attr_info[substmt].flags & STMT_FLAG_YIN) {
FredGand944bdc2019-11-05 21:57:07 +0800111 extflag = 1;
Radek Krejcieccf6602021-02-05 19:42:54 +0100112 ypr_open(ctx, stmt_attr_info[substmt].name, NULL, NULL, extflag);
FredGand944bdc2019-11-05 21:57:07 +0800113 } else {
Radek Krejcieccf6602021-02-05 19:42:54 +0100114 ypr_open(ctx, stmt_attr_info[substmt].name, stmt_attr_info[substmt].arg, text, extflag);
FredGand944bdc2019-11-05 21:57:07 +0800115 }
116
117 LEVEL++;
118 LY_ARRAY_FOR(ext, u) {
Radek Krejciab430862021-03-02 20:13:40 +0100119 if ((((struct lysp_ext_instance *)ext)[u].parent_stmt != substmt) || (((struct lysp_ext_instance *)ext)[u].parent_stmt_index != substmt_index)) {
FredGand944bdc2019-11-05 21:57:07 +0800120 continue;
121 }
Michal Vasko22df3f02020-08-24 13:29:22 +0200122 yprp_extension_instances(ctx, substmt, substmt_index, &((struct lysp_ext_instance *)ext)[u], &extflag, 1);
FredGand944bdc2019-11-05 21:57:07 +0800123 }
124
125 /* argument as yin-element */
Radek Krejcieccf6602021-02-05 19:42:54 +0100126 if (stmt_attr_info[substmt].flags & STMT_FLAG_YIN) {
127 ypr_yin_arg(ctx, stmt_attr_info[substmt].arg, text);
FredGand944bdc2019-11-05 21:57:07 +0800128 }
129
130 LEVEL--;
Radek Krejcieccf6602021-02-05 19:42:54 +0100131 ypr_close(ctx, stmt_attr_info[substmt].name, extflag);
FredGand944bdc2019-11-05 21:57:07 +0800132}
133
134static void
Radek Krejcifc596f92021-02-26 22:40:26 +0100135ypr_unsigned(struct lys_ypr_ctx *ctx, enum ly_stmt substmt, uint8_t substmt_index, void *exts, unsigned long int attr_value)
FredGand944bdc2019-11-05 21:57:07 +0800136{
137 char *str;
Michal Vasko69730152020-10-09 16:30:07 +0200138
Radek Krejci1deb5be2020-08-26 16:43:36 +0200139 if (asprintf(&str, "%lu", attr_value) == -1) {
FredGand944bdc2019-11-05 21:57:07 +0800140 LOGMEM(ctx->module->ctx);
FredGand944bdc2019-11-05 21:57:07 +0800141 return;
142 }
143 ypr_substmt(ctx, substmt, substmt_index, str, exts);
144 free(str);
145}
146
147static void
Radek Krejcifc596f92021-02-26 22:40:26 +0100148ypr_signed(struct lys_ypr_ctx *ctx, enum ly_stmt substmt, uint8_t substmt_index, void *exts, signed long int attr_value)
FredGand944bdc2019-11-05 21:57:07 +0800149{
150 char *str;
151
Radek Krejci1deb5be2020-08-26 16:43:36 +0200152 if (asprintf(&str, "%ld", attr_value) == -1) {
FredGand944bdc2019-11-05 21:57:07 +0800153 LOGMEM(ctx->module->ctx);
FredGand944bdc2019-11-05 21:57:07 +0800154 return;
155 }
156 ypr_substmt(ctx, substmt, substmt_index, str, exts);
157 free(str);
158}
159
160static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100161yprp_revision(struct lys_ypr_ctx *ctx, const struct lysp_revision *rev)
FredGand944bdc2019-11-05 21:57:07 +0800162{
163 if (rev->dsc || rev->ref || rev->exts) {
164 ypr_open(ctx, "revision", "date", rev->date, 1);
165 LEVEL++;
Radek Krejci39b7fc22021-02-26 23:29:18 +0100166 yprp_extension_instances(ctx, LY_STMT_REVISION, 0, rev->exts, NULL, 0);
Radek Krejcifc596f92021-02-26 22:40:26 +0100167 ypr_substmt(ctx, LY_STMT_DESCRIPTION, 0, rev->dsc, rev->exts);
168 ypr_substmt(ctx, LY_STMT_REFERENCE, 0, rev->ref, rev->exts);
FredGand944bdc2019-11-05 21:57:07 +0800169 LEVEL--;
170 ypr_close(ctx, "revision", 1);
171 } else {
172 ypr_open(ctx, "revision", "date", rev->date, -1);
173 }
174}
175
176static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100177ypr_mandatory(struct lys_ypr_ctx *ctx, uint16_t flags, void *exts, int8_t *flag)
FredGand944bdc2019-11-05 21:57:07 +0800178{
179 if (flags & LYS_MAND_MASK) {
180 ypr_close_parent(ctx, flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100181 ypr_substmt(ctx, LY_STMT_MANDATORY, 0, (flags & LYS_MAND_TRUE) ? "true" : "false", exts);
FredGand944bdc2019-11-05 21:57:07 +0800182 }
183}
184
185static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100186ypr_config(struct lys_ypr_ctx *ctx, uint16_t flags, void *exts, int8_t *flag)
FredGand944bdc2019-11-05 21:57:07 +0800187{
188 if (flags & LYS_CONFIG_MASK) {
189 ypr_close_parent(ctx, flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100190 ypr_substmt(ctx, LY_STMT_CONFIG, 0, (flags & LYS_CONFIG_W) ? "true" : "false", exts);
FredGand944bdc2019-11-05 21:57:07 +0800191 }
192}
193
194static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100195ypr_status(struct lys_ypr_ctx *ctx, uint16_t flags, void *exts, int8_t *flag)
FredGand944bdc2019-11-05 21:57:07 +0800196{
197 const char *status = NULL;
198
199 if (flags & LYS_STATUS_CURR) {
200 ypr_close_parent(ctx, flag);
201 status = "current";
202 } else if (flags & LYS_STATUS_DEPRC) {
203 ypr_close_parent(ctx, flag);
204 status = "deprecated";
205 } else if (flags & LYS_STATUS_OBSLT) {
206 ypr_close_parent(ctx, flag);
207 status = "obsolete";
208 }
209
Radek Krejcifc596f92021-02-26 22:40:26 +0100210 ypr_substmt(ctx, LY_STMT_STATUS, 0, status, exts);
FredGand944bdc2019-11-05 21:57:07 +0800211}
212
213static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100214ypr_description(struct lys_ypr_ctx *ctx, const char *dsc, void *exts, int8_t *flag)
FredGand944bdc2019-11-05 21:57:07 +0800215{
216 if (dsc) {
217 ypr_close_parent(ctx, flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100218 ypr_substmt(ctx, LY_STMT_DESCRIPTION, 0, dsc, exts);
FredGand944bdc2019-11-05 21:57:07 +0800219 }
220}
221
222static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100223ypr_reference(struct lys_ypr_ctx *ctx, const char *ref, void *exts, int8_t *flag)
FredGand944bdc2019-11-05 21:57:07 +0800224{
225 if (ref) {
226 ypr_close_parent(ctx, flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100227 ypr_substmt(ctx, LY_STMT_REFERENCE, 0, ref, exts);
FredGand944bdc2019-11-05 21:57:07 +0800228 }
229}
230
231static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100232yprp_iffeatures(struct lys_ypr_ctx *ctx, struct lysp_qname *iffs, struct lysp_ext_instance *exts, int8_t *flag)
FredGand944bdc2019-11-05 21:57:07 +0800233{
Michal Vasko7f45cf22020-10-01 12:49:44 +0200234 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200235 int8_t extflag;
FredGand944bdc2019-11-05 21:57:07 +0800236
Michal Vasko7f45cf22020-10-01 12:49:44 +0200237 LY_ARRAY_FOR(iffs, u) {
FredGand944bdc2019-11-05 21:57:07 +0800238 ypr_close_parent(ctx, flag);
239 extflag = 0;
240
Michal Vasko7f45cf22020-10-01 12:49:44 +0200241 ly_print_(ctx->out, "%*s<if-feature name=\"%s", INDENT, iffs[u].str);
FredGand944bdc2019-11-05 21:57:07 +0800242
243 /* extensions */
244 LEVEL++;
Michal Vasko7f45cf22020-10-01 12:49:44 +0200245 LY_ARRAY_FOR(exts, v) {
Radek Krejcifc596f92021-02-26 22:40:26 +0100246 yprp_extension_instances(ctx, LY_STMT_IF_FEATURE, u, &exts[v], &extflag, 1);
FredGand944bdc2019-11-05 21:57:07 +0800247 }
248 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +0200249 ly_print_(ctx->out, "\"/>\n");
FredGand944bdc2019-11-05 21:57:07 +0800250 }
251}
252
253static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100254yprp_extension(struct lys_ypr_ctx *ctx, const struct lysp_ext *ext)
FredGand944bdc2019-11-05 21:57:07 +0800255{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200256 int8_t flag = 0, flag2 = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200257 LY_ARRAY_COUNT_TYPE u;
FredGand944bdc2019-11-05 21:57:07 +0800258
259 ypr_open(ctx, "extension", "name", ext->name, flag);
260 LEVEL++;
261
262 if (ext->exts) {
263 ypr_close_parent(ctx, &flag);
Radek Krejci39b7fc22021-02-26 23:29:18 +0100264 yprp_extension_instances(ctx, LY_STMT_EXTENSION, 0, ext->exts, &flag, 0);
FredGand944bdc2019-11-05 21:57:07 +0800265 }
266
Radek Krejci9f87b0c2021-03-05 14:45:26 +0100267 if (ext->argname) {
FredGand944bdc2019-11-05 21:57:07 +0800268 ypr_close_parent(ctx, &flag);
Radek Krejci9f87b0c2021-03-05 14:45:26 +0100269 ypr_open(ctx, "argument", "name", ext->argname, flag2);
FredGand944bdc2019-11-05 21:57:07 +0800270
271 LEVEL++;
272 if (ext->exts) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200273 u = -1;
Radek Krejcifc596f92021-02-26 22:40:26 +0100274 while ((u = lysp_ext_instance_iter(ext->exts, u + 1, LY_STMT_ARGUMENT)) != LY_ARRAY_COUNT(ext->exts)) {
FredGand944bdc2019-11-05 21:57:07 +0800275 ypr_close_parent(ctx, &flag2);
Radek Krejcifc596f92021-02-26 22:40:26 +0100276 yprp_extension_instances(ctx, LY_STMT_ARGUMENT, 0, &ext->exts[u], &flag2, 1);
FredGand944bdc2019-11-05 21:57:07 +0800277 }
278 }
279 if ((ext->flags & LYS_YINELEM_MASK) ||
Radek Krejcifc596f92021-02-26 22:40:26 +0100280 (ext->exts && (lysp_ext_instance_iter(ext->exts, 0, LY_STMT_YIN_ELEMENT) != LY_ARRAY_COUNT(ext->exts)))) {
FredGand944bdc2019-11-05 21:57:07 +0800281 ypr_close_parent(ctx, &flag2);
Radek Krejcifc596f92021-02-26 22:40:26 +0100282 ypr_substmt(ctx, LY_STMT_YIN_ELEMENT, 0, (ext->flags & LYS_YINELEM_TRUE) ? "true" : "false", ext->exts);
FredGand944bdc2019-11-05 21:57:07 +0800283 }
284 LEVEL--;
285 ypr_close(ctx, "argument", flag2);
286 }
287
288 ypr_status(ctx, ext->flags, ext->exts, &flag);
289 ypr_description(ctx, ext->dsc, ext->exts, &flag);
290 ypr_reference(ctx, ext->ref, ext->exts, &flag);
291
292 LEVEL--;
293 ypr_close(ctx, "extension", flag);
294}
295
296static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100297yprp_feature(struct lys_ypr_ctx *ctx, const struct lysp_feature *feat)
FredGand944bdc2019-11-05 21:57:07 +0800298{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200299 int8_t flag = 0;
FredGand944bdc2019-11-05 21:57:07 +0800300
301 ypr_open(ctx, "feature", "name", feat->name, flag);
302 LEVEL++;
Radek Krejci39b7fc22021-02-26 23:29:18 +0100303 yprp_extension_instances(ctx, LY_STMT_FEATURE, 0, feat->exts, &flag, 0);
FredGand944bdc2019-11-05 21:57:07 +0800304 yprp_iffeatures(ctx, feat->iffeatures, feat->exts, &flag);
305 ypr_status(ctx, feat->flags, feat->exts, &flag);
306 ypr_description(ctx, feat->dsc, feat->exts, &flag);
307 ypr_reference(ctx, feat->ref, feat->exts, &flag);
308 LEVEL--;
309 ypr_close(ctx, "feature", flag);
310}
311
312static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100313yprp_identity(struct lys_ypr_ctx *ctx, const struct lysp_ident *ident)
FredGand944bdc2019-11-05 21:57:07 +0800314{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200315 int8_t flag = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200316 LY_ARRAY_COUNT_TYPE u;
FredGand944bdc2019-11-05 21:57:07 +0800317
318 ypr_open(ctx, "identity", "name", ident->name, flag);
319 LEVEL++;
320
Radek Krejci39b7fc22021-02-26 23:29:18 +0100321 yprp_extension_instances(ctx, LY_STMT_IDENTITY, 0, ident->exts, &flag, 0);
FredGand944bdc2019-11-05 21:57:07 +0800322 yprp_iffeatures(ctx, ident->iffeatures, ident->exts, &flag);
323
324 LY_ARRAY_FOR(ident->bases, u) {
325 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100326 ypr_substmt(ctx, LY_STMT_BASE, u, ident->bases[u], ident->exts);
FredGand944bdc2019-11-05 21:57:07 +0800327 }
328
329 ypr_status(ctx, ident->flags, ident->exts, &flag);
330 ypr_description(ctx, ident->dsc, ident->exts, &flag);
331 ypr_reference(ctx, ident->ref, ident->exts, &flag);
332
333 LEVEL--;
334 ypr_close(ctx, "identity", flag);
335}
336
337static void
Radek Krejci39b7fc22021-02-26 23:29:18 +0100338yprp_restr(struct lys_ypr_ctx *ctx, const struct lysp_restr *restr, enum ly_stmt stmt, const char *attr, int8_t *flag)
FredGand944bdc2019-11-05 21:57:07 +0800339{
340 (void)flag;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200341 int8_t inner_flag = 0;
FredGand944bdc2019-11-05 21:57:07 +0800342
343 if (!restr) {
344 return;
345 }
346
Radek Krejci39b7fc22021-02-26 23:29:18 +0100347 ly_print_(ctx->out, "%*s<%s %s=\"", INDENT, ly_stmt2str(stmt), attr);
Radek Krejcif13b87b2020-12-01 22:02:17 +0100348 lyxml_dump_text(ctx->out,
349 (restr->arg.str[0] != LYSP_RESTR_PATTERN_NACK && restr->arg.str[0] != LYSP_RESTR_PATTERN_ACK) ?
350 restr->arg.str : &restr->arg.str[1], 1);
Michal Vasko5233e962020-08-14 14:26:20 +0200351 ly_print_(ctx->out, "\"");
FredGand944bdc2019-11-05 21:57:07 +0800352
353 LEVEL++;
Radek Krejci39b7fc22021-02-26 23:29:18 +0100354 yprp_extension_instances(ctx, stmt, 0, restr->exts, &inner_flag, 0);
Radek Krejcif13b87b2020-12-01 22:02:17 +0100355 if (restr->arg.str[0] == LYSP_RESTR_PATTERN_NACK) {
FredGand944bdc2019-11-05 21:57:07 +0800356 ypr_close_parent(ctx, &inner_flag);
357 /* special byte value in pattern's expression: 0x15 - invert-match, 0x06 - match */
Radek Krejcifc596f92021-02-26 22:40:26 +0100358 ypr_substmt(ctx, LY_STMT_MODIFIER, 0, "invert-match", restr->exts);
FredGand944bdc2019-11-05 21:57:07 +0800359 }
360 if (restr->emsg) {
361 ypr_close_parent(ctx, &inner_flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100362 ypr_substmt(ctx, LY_STMT_ERROR_MESSAGE, 0, restr->emsg, restr->exts);
FredGand944bdc2019-11-05 21:57:07 +0800363 }
364 if (restr->eapptag) {
365 ypr_close_parent(ctx, &inner_flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100366 ypr_substmt(ctx, LY_STMT_ERROR_APP_TAG, 0, restr->eapptag, restr->exts);
FredGand944bdc2019-11-05 21:57:07 +0800367 }
368 ypr_description(ctx, restr->dsc, restr->exts, &inner_flag);
369 ypr_reference(ctx, restr->ref, restr->exts, &inner_flag);
370
371 LEVEL--;
Radek Krejci39b7fc22021-02-26 23:29:18 +0100372 ypr_close(ctx, ly_stmt2str(stmt), inner_flag);
FredGand944bdc2019-11-05 21:57:07 +0800373}
374
375static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100376yprp_when(struct lys_ypr_ctx *ctx, struct lysp_when *when, int8_t *flag)
FredGand944bdc2019-11-05 21:57:07 +0800377{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200378 int8_t inner_flag = 0;
Michal Vasko69730152020-10-09 16:30:07 +0200379
FredGand944bdc2019-11-05 21:57:07 +0800380 (void)flag;
381
382 if (!when) {
383 return;
384 }
385
Michal Vasko5233e962020-08-14 14:26:20 +0200386 ly_print_(ctx->out, "%*s<when condition=\"", INDENT);
FredGand944bdc2019-11-05 21:57:07 +0800387 lyxml_dump_text(ctx->out, when->cond, 1);
Michal Vasko5233e962020-08-14 14:26:20 +0200388 ly_print_(ctx->out, "\"");
FredGand944bdc2019-11-05 21:57:07 +0800389
390 LEVEL++;
Radek Krejci39b7fc22021-02-26 23:29:18 +0100391 yprp_extension_instances(ctx, LY_STMT_WHEN, 0, when->exts, &inner_flag, 0);
FredGand944bdc2019-11-05 21:57:07 +0800392 ypr_description(ctx, when->dsc, when->exts, &inner_flag);
393 ypr_reference(ctx, when->ref, when->exts, &inner_flag);
394 LEVEL--;
395 ypr_close(ctx, "when", inner_flag);
396}
397
398static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100399yprp_enum(struct lys_ypr_ctx *ctx, const struct lysp_type_enum *items, LY_DATA_TYPE type, int8_t *flag)
FredGand944bdc2019-11-05 21:57:07 +0800400{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200401 LY_ARRAY_COUNT_TYPE u;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200402 int8_t inner_flag;
Michal Vasko69730152020-10-09 16:30:07 +0200403
FredGand944bdc2019-11-05 21:57:07 +0800404 (void)flag;
405
406 LY_ARRAY_FOR(items, u) {
407 if (type == LY_TYPE_BITS) {
Michal Vasko5233e962020-08-14 14:26:20 +0200408 ly_print_(ctx->out, "%*s<bit name=\"", INDENT);
FredGand944bdc2019-11-05 21:57:07 +0800409 lyxml_dump_text(ctx->out, items[u].name, 1);
Michal Vasko5233e962020-08-14 14:26:20 +0200410 ly_print_(ctx->out, "\"");
FredGand944bdc2019-11-05 21:57:07 +0800411 } else { /* LY_TYPE_ENUM */
Michal Vasko5233e962020-08-14 14:26:20 +0200412 ly_print_(ctx->out, "%*s<enum name=\"", INDENT);
FredGand944bdc2019-11-05 21:57:07 +0800413 lyxml_dump_text(ctx->out, items[u].name, 1);
Michal Vasko5233e962020-08-14 14:26:20 +0200414 ly_print_(ctx->out, "\"");
FredGand944bdc2019-11-05 21:57:07 +0800415 }
416 inner_flag = 0;
417 LEVEL++;
Radek Krejci39b7fc22021-02-26 23:29:18 +0100418 yprp_extension_instances(ctx, LY_STMT_ENUM, 0, items[u].exts, &inner_flag, 0);
FredGand944bdc2019-11-05 21:57:07 +0800419 yprp_iffeatures(ctx, items[u].iffeatures, items[u].exts, &inner_flag);
420 if (items[u].flags & LYS_SET_VALUE) {
421 if (type == LY_TYPE_BITS) {
422 ypr_close_parent(ctx, &inner_flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100423 ypr_unsigned(ctx, LY_STMT_POSITION, 0, items[u].exts, items[u].value);
FredGand944bdc2019-11-05 21:57:07 +0800424 } else { /* LY_TYPE_ENUM */
425 ypr_close_parent(ctx, &inner_flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100426 ypr_signed(ctx, LY_STMT_VALUE, 0, items[u].exts, items[u].value);
FredGand944bdc2019-11-05 21:57:07 +0800427 }
428 }
429 ypr_status(ctx, items[u].flags, items[u].exts, &inner_flag);
430 ypr_description(ctx, items[u].dsc, items[u].exts, &inner_flag);
431 ypr_reference(ctx, items[u].ref, items[u].exts, &inner_flag);
432 LEVEL--;
433 ypr_close(ctx, type == LY_TYPE_BITS ? "bit" : "enum", inner_flag);
434 }
435}
436
437static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100438yprp_type(struct lys_ypr_ctx *ctx, const struct lysp_type *type)
FredGand944bdc2019-11-05 21:57:07 +0800439{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200440 LY_ARRAY_COUNT_TYPE u;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200441 int8_t flag = 0;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200442
FredGand944bdc2019-11-05 21:57:07 +0800443 if (!ctx || !type) {
444 return;
445 }
446
FredGand944bdc2019-11-05 21:57:07 +0800447 ypr_open(ctx, "type", "name", type->name, flag);
448 LEVEL++;
449
Radek Krejci39b7fc22021-02-26 23:29:18 +0100450 yprp_extension_instances(ctx, LY_STMT_TYPE, 0, type->exts, &flag, 0);
FredGand944bdc2019-11-05 21:57:07 +0800451
452 if (type->range || type->length || type->patterns || type->bits || type->enums) {
453 ypr_close_parent(ctx, &flag);
454 }
Radek Krejci39b7fc22021-02-26 23:29:18 +0100455 yprp_restr(ctx, type->range, LY_STMT_RANGE, "value", &flag);
456 yprp_restr(ctx, type->length, LY_STMT_LENGTH, "value", &flag);
FredGand944bdc2019-11-05 21:57:07 +0800457 LY_ARRAY_FOR(type->patterns, u) {
Radek Krejci39b7fc22021-02-26 23:29:18 +0100458 yprp_restr(ctx, &type->patterns[u], LY_STMT_PATTERN, "value", &flag);
FredGand944bdc2019-11-05 21:57:07 +0800459 }
460 yprp_enum(ctx, type->bits, LY_TYPE_BITS, &flag);
461 yprp_enum(ctx, type->enums, LY_TYPE_ENUM, &flag);
462
463 if (type->path) {
464 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100465 ypr_substmt(ctx, LY_STMT_PATH, 0, type->path->expr, type->exts);
FredGand944bdc2019-11-05 21:57:07 +0800466 }
467 if (type->flags & LYS_SET_REQINST) {
468 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100469 ypr_substmt(ctx, LY_STMT_REQUIRE_INSTANCE, 0, type->require_instance ? "true" : "false", type->exts);
FredGand944bdc2019-11-05 21:57:07 +0800470 }
471 if (type->flags & LYS_SET_FRDIGITS) {
472 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100473 ypr_unsigned(ctx, LY_STMT_FRACTION_DIGITS, 0, type->exts, type->fraction_digits);
FredGand944bdc2019-11-05 21:57:07 +0800474 }
475 LY_ARRAY_FOR(type->bases, u) {
476 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100477 ypr_substmt(ctx, LY_STMT_BASE, u, type->bases[u], type->exts);
FredGand944bdc2019-11-05 21:57:07 +0800478 }
479 LY_ARRAY_FOR(type->types, u) {
480 ypr_close_parent(ctx, &flag);
481 yprp_type(ctx, &type->types[u]);
482 }
483
484 LEVEL--;
485 ypr_close(ctx, "type", flag);
486}
487
488static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100489yprp_typedef(struct lys_ypr_ctx *ctx, const struct lysp_tpdf *tpdf)
FredGand944bdc2019-11-05 21:57:07 +0800490{
FredGand944bdc2019-11-05 21:57:07 +0800491 ypr_open(ctx, "typedef", "name", tpdf->name, 1);
492 LEVEL++;
493
Radek Krejci39b7fc22021-02-26 23:29:18 +0100494 yprp_extension_instances(ctx, LY_STMT_TYPEDEF, 0, tpdf->exts, NULL, 0);
FredGand944bdc2019-11-05 21:57:07 +0800495
496 yprp_type(ctx, &tpdf->type);
497
498 if (tpdf->units) {
Radek Krejcifc596f92021-02-26 22:40:26 +0100499 ypr_substmt(ctx, LY_STMT_UNITS, 0, tpdf->units, tpdf->exts);
FredGand944bdc2019-11-05 21:57:07 +0800500 }
Michal Vasko7f45cf22020-10-01 12:49:44 +0200501 if (tpdf->dflt.str) {
Radek Krejcifc596f92021-02-26 22:40:26 +0100502 ypr_substmt(ctx, LY_STMT_DEFAULT, 0, tpdf->dflt.str, tpdf->exts);
FredGand944bdc2019-11-05 21:57:07 +0800503 }
504
505 ypr_status(ctx, tpdf->flags, tpdf->exts, NULL);
506 ypr_description(ctx, tpdf->dsc, tpdf->exts, NULL);
507 ypr_reference(ctx, tpdf->ref, tpdf->exts, NULL);
508
509 LEVEL--;
510 ypr_close(ctx, "typedef", 1);
511}
512
Radek Krejciadcf63d2021-02-09 10:21:18 +0100513static void yprp_node(struct lys_ypr_ctx *ctx, const struct lysp_node *node);
514static void yprp_action(struct lys_ypr_ctx *ctx, const struct lysp_node_action *action);
515static void yprp_notification(struct lys_ypr_ctx *ctx, const struct lysp_node_notif *notif);
FredGand944bdc2019-11-05 21:57:07 +0800516
517static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100518yprp_grouping(struct lys_ypr_ctx *ctx, const struct lysp_node_grp *grp)
FredGand944bdc2019-11-05 21:57:07 +0800519{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200520 LY_ARRAY_COUNT_TYPE u;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200521 int8_t flag = 0;
FredGand944bdc2019-11-05 21:57:07 +0800522 struct lysp_node *data;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100523 struct lysp_node_action *action;
524 struct lysp_node_notif *notif;
525 struct lysp_node_grp *subgrp;
FredGand944bdc2019-11-05 21:57:07 +0800526
FredGand944bdc2019-11-05 21:57:07 +0800527 ypr_open(ctx, "grouping", "name", grp->name, flag);
528 LEVEL++;
529
Radek Krejci39b7fc22021-02-26 23:29:18 +0100530 yprp_extension_instances(ctx, LY_STMT_GROUPING, 0, grp->exts, &flag, 0);
FredGand944bdc2019-11-05 21:57:07 +0800531 ypr_status(ctx, grp->flags, grp->exts, &flag);
532 ypr_description(ctx, grp->dsc, grp->exts, &flag);
533 ypr_reference(ctx, grp->ref, grp->exts, &flag);
534
535 LY_ARRAY_FOR(grp->typedefs, u) {
536 ypr_close_parent(ctx, &flag);
537 yprp_typedef(ctx, &grp->typedefs[u]);
538 }
539
Radek Krejci2a9fc652021-01-22 17:44:34 +0100540 LY_LIST_FOR(grp->groupings, subgrp) {
FredGand944bdc2019-11-05 21:57:07 +0800541 ypr_close_parent(ctx, &flag);
Radek Krejci2a9fc652021-01-22 17:44:34 +0100542 yprp_grouping(ctx, subgrp);
FredGand944bdc2019-11-05 21:57:07 +0800543 }
544
Radek Krejci01180ac2021-01-27 08:48:22 +0100545 LY_LIST_FOR(grp->child, data) {
FredGand944bdc2019-11-05 21:57:07 +0800546 ypr_close_parent(ctx, &flag);
547 yprp_node(ctx, data);
548 }
549
Radek Krejci2a9fc652021-01-22 17:44:34 +0100550 LY_LIST_FOR(grp->actions, action) {
FredGand944bdc2019-11-05 21:57:07 +0800551 ypr_close_parent(ctx, &flag);
Radek Krejci2a9fc652021-01-22 17:44:34 +0100552 yprp_action(ctx, action);
553 }
554
555 LY_LIST_FOR(grp->notifs, notif) {
556 ypr_close_parent(ctx, &flag);
557 yprp_notification(ctx, notif);
FredGand944bdc2019-11-05 21:57:07 +0800558 }
559
560 LEVEL--;
561 ypr_close(ctx, "grouping", flag);
562}
563
564static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100565yprp_inout(struct lys_ypr_ctx *ctx, const struct lysp_node_action_inout *inout, int8_t *flag)
FredGand944bdc2019-11-05 21:57:07 +0800566{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200567 LY_ARRAY_COUNT_TYPE u;
FredGand944bdc2019-11-05 21:57:07 +0800568 struct lysp_node *data;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100569 struct lysp_node_grp *grp;
FredGand944bdc2019-11-05 21:57:07 +0800570
Radek Krejci01180ac2021-01-27 08:48:22 +0100571 if (!inout->child) {
Michal Vasko7f45cf22020-10-01 12:49:44 +0200572 /* input/output is empty */
FredGand944bdc2019-11-05 21:57:07 +0800573 return;
574 }
575 ypr_close_parent(ctx, flag);
576
Michal Vasko544e58a2021-01-28 14:33:41 +0100577 ypr_open(ctx, inout->name, NULL, NULL, *flag);
FredGand944bdc2019-11-05 21:57:07 +0800578 LEVEL++;
579
Radek Krejci39b7fc22021-02-26 23:29:18 +0100580 yprp_extension_instances(ctx, lys_nodetype2stmt(inout->nodetype), 0, inout->exts, NULL, 0);
FredGand944bdc2019-11-05 21:57:07 +0800581 LY_ARRAY_FOR(inout->musts, u) {
Radek Krejci39b7fc22021-02-26 23:29:18 +0100582 yprp_restr(ctx, &inout->musts[u], LY_STMT_MUST, "condition", NULL);
FredGand944bdc2019-11-05 21:57:07 +0800583 }
584 LY_ARRAY_FOR(inout->typedefs, u) {
585 yprp_typedef(ctx, &inout->typedefs[u]);
586 }
Radek Krejci2a9fc652021-01-22 17:44:34 +0100587 LY_LIST_FOR(inout->groupings, grp) {
588 yprp_grouping(ctx, grp);
FredGand944bdc2019-11-05 21:57:07 +0800589 }
590
Radek Krejci01180ac2021-01-27 08:48:22 +0100591 LY_LIST_FOR(inout->child, data) {
FredGand944bdc2019-11-05 21:57:07 +0800592 yprp_node(ctx, data);
593 }
594
595 LEVEL--;
Michal Vasko544e58a2021-01-28 14:33:41 +0100596 ypr_close(ctx, inout->name, 1);
FredGand944bdc2019-11-05 21:57:07 +0800597}
598
599static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100600yprp_notification(struct lys_ypr_ctx *ctx, const struct lysp_node_notif *notif)
FredGand944bdc2019-11-05 21:57:07 +0800601{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200602 LY_ARRAY_COUNT_TYPE u;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200603 int8_t flag = 0;
FredGand944bdc2019-11-05 21:57:07 +0800604 struct lysp_node *data;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100605 struct lysp_node_grp *grp;
FredGand944bdc2019-11-05 21:57:07 +0800606
FredGand944bdc2019-11-05 21:57:07 +0800607 ypr_open(ctx, "notification", "name", notif->name, flag);
608
609 LEVEL++;
Radek Krejci39b7fc22021-02-26 23:29:18 +0100610 yprp_extension_instances(ctx, LY_STMT_NOTIFICATION, 0, notif->exts, &flag, 0);
FredGand944bdc2019-11-05 21:57:07 +0800611 yprp_iffeatures(ctx, notif->iffeatures, notif->exts, &flag);
612
613 LY_ARRAY_FOR(notif->musts, u) {
614 ypr_close_parent(ctx, &flag);
Radek Krejci39b7fc22021-02-26 23:29:18 +0100615 yprp_restr(ctx, &notif->musts[u], LY_STMT_MUST, "condition", &flag);
FredGand944bdc2019-11-05 21:57:07 +0800616 }
617 ypr_status(ctx, notif->flags, notif->exts, &flag);
618 ypr_description(ctx, notif->dsc, notif->exts, &flag);
619 ypr_reference(ctx, notif->ref, notif->exts, &flag);
620
621 LY_ARRAY_FOR(notif->typedefs, u) {
622 ypr_close_parent(ctx, &flag);
623 yprp_typedef(ctx, &notif->typedefs[u]);
624 }
625
Radek Krejci2a9fc652021-01-22 17:44:34 +0100626 LY_LIST_FOR(notif->groupings, grp) {
FredGand944bdc2019-11-05 21:57:07 +0800627 ypr_close_parent(ctx, &flag);
Radek Krejci2a9fc652021-01-22 17:44:34 +0100628 yprp_grouping(ctx, grp);
FredGand944bdc2019-11-05 21:57:07 +0800629 }
630
Radek Krejci01180ac2021-01-27 08:48:22 +0100631 LY_LIST_FOR(notif->child, data) {
FredGand944bdc2019-11-05 21:57:07 +0800632 ypr_close_parent(ctx, &flag);
633 yprp_node(ctx, data);
634 }
635
636 LEVEL--;
637 ypr_close(ctx, "notification", flag);
638}
639
640static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100641yprp_action(struct lys_ypr_ctx *ctx, const struct lysp_node_action *action)
FredGand944bdc2019-11-05 21:57:07 +0800642{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200643 LY_ARRAY_COUNT_TYPE u;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200644 int8_t flag = 0;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100645 struct lysp_node_grp *grp;
FredGand944bdc2019-11-05 21:57:07 +0800646
FredGand944bdc2019-11-05 21:57:07 +0800647 ypr_open(ctx, action->parent ? "action" : "rpc", "name", action->name, flag);
648
649 LEVEL++;
Radek Krejci39b7fc22021-02-26 23:29:18 +0100650 yprp_extension_instances(ctx, lys_nodetype2stmt(action->nodetype), 0, action->exts, &flag, 0);
FredGand944bdc2019-11-05 21:57:07 +0800651 yprp_iffeatures(ctx, action->iffeatures, action->exts, &flag);
652 ypr_status(ctx, action->flags, action->exts, &flag);
653 ypr_description(ctx, action->dsc, action->exts, &flag);
654 ypr_reference(ctx, action->ref, action->exts, &flag);
655
656 LY_ARRAY_FOR(action->typedefs, u) {
657 ypr_close_parent(ctx, &flag);
658 yprp_typedef(ctx, &action->typedefs[u]);
659 }
660
Radek Krejci2a9fc652021-01-22 17:44:34 +0100661 LY_LIST_FOR(action->groupings, grp) {
FredGand944bdc2019-11-05 21:57:07 +0800662 ypr_close_parent(ctx, &flag);
Radek Krejci2a9fc652021-01-22 17:44:34 +0100663 yprp_grouping(ctx, grp);
FredGand944bdc2019-11-05 21:57:07 +0800664 }
665
666 yprp_inout(ctx, &action->input, &flag);
667 yprp_inout(ctx, &action->output, &flag);
668
669 LEVEL--;
670 ypr_close(ctx, action->parent ? "action" : "rpc", flag);
671}
672
673static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100674yprp_node_common1(struct lys_ypr_ctx *ctx, const struct lysp_node *node, int8_t *flag)
FredGand944bdc2019-11-05 21:57:07 +0800675{
676 ypr_open(ctx, lys_nodetype2str(node->nodetype), "name", node->name, *flag);
677 LEVEL++;
678
Radek Krejci39b7fc22021-02-26 23:29:18 +0100679 yprp_extension_instances(ctx, lys_nodetype2stmt(node->nodetype), 0, node->exts, flag, 0);
Radek Krejci9a3823e2021-01-27 20:26:46 +0100680 yprp_when(ctx, lysp_node_when(node), flag);
FredGand944bdc2019-11-05 21:57:07 +0800681 yprp_iffeatures(ctx, node->iffeatures, node->exts, flag);
682}
683
684static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100685yprp_node_common2(struct lys_ypr_ctx *ctx, const struct lysp_node *node, int8_t *flag)
FredGand944bdc2019-11-05 21:57:07 +0800686{
687 ypr_config(ctx, node->flags, node->exts, flag);
688 if (node->nodetype & (LYS_CHOICE | LYS_LEAF | LYS_ANYDATA)) {
689 ypr_mandatory(ctx, node->flags, node->exts, flag);
690 }
691 ypr_status(ctx, node->flags, node->exts, flag);
692 ypr_description(ctx, node->dsc, node->exts, flag);
693 ypr_reference(ctx, node->ref, node->exts, flag);
694}
695
696static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100697yprp_container(struct lys_ypr_ctx *ctx, const struct lysp_node *node)
FredGand944bdc2019-11-05 21:57:07 +0800698{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200699 LY_ARRAY_COUNT_TYPE u;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200700 int8_t flag = 0;
FredGand944bdc2019-11-05 21:57:07 +0800701 struct lysp_node *child;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100702 struct lysp_node_action *action;
703 struct lysp_node_notif *notif;
704 struct lysp_node_grp *grp;
FredGand944bdc2019-11-05 21:57:07 +0800705 struct lysp_node_container *cont = (struct lysp_node_container *)node;
706
707 yprp_node_common1(ctx, node, &flag);
708
709 LY_ARRAY_FOR(cont->musts, u) {
710 ypr_close_parent(ctx, &flag);
Radek Krejci39b7fc22021-02-26 23:29:18 +0100711 yprp_restr(ctx, &cont->musts[u], LY_STMT_MUST, "condition", &flag);
FredGand944bdc2019-11-05 21:57:07 +0800712 }
713 if (cont->presence) {
714 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100715 ypr_substmt(ctx, LY_STMT_PRESENCE, 0, cont->presence, cont->exts);
FredGand944bdc2019-11-05 21:57:07 +0800716 }
717
718 yprp_node_common2(ctx, node, &flag);
719
720 LY_ARRAY_FOR(cont->typedefs, u) {
721 ypr_close_parent(ctx, &flag);
722 yprp_typedef(ctx, &cont->typedefs[u]);
723 }
724
Radek Krejci2a9fc652021-01-22 17:44:34 +0100725 LY_LIST_FOR(cont->groupings, grp) {
FredGand944bdc2019-11-05 21:57:07 +0800726 ypr_close_parent(ctx, &flag);
Radek Krejci2a9fc652021-01-22 17:44:34 +0100727 yprp_grouping(ctx, grp);
FredGand944bdc2019-11-05 21:57:07 +0800728 }
729
730 LY_LIST_FOR(cont->child, child) {
731 ypr_close_parent(ctx, &flag);
732 yprp_node(ctx, child);
733 }
734
Radek Krejci2a9fc652021-01-22 17:44:34 +0100735 LY_LIST_FOR(cont->actions, action) {
FredGand944bdc2019-11-05 21:57:07 +0800736 ypr_close_parent(ctx, &flag);
Radek Krejci2a9fc652021-01-22 17:44:34 +0100737 yprp_action(ctx, action);
FredGand944bdc2019-11-05 21:57:07 +0800738 }
739
Radek Krejci2a9fc652021-01-22 17:44:34 +0100740 LY_LIST_FOR(cont->notifs, notif) {
FredGand944bdc2019-11-05 21:57:07 +0800741 ypr_close_parent(ctx, &flag);
Radek Krejci2a9fc652021-01-22 17:44:34 +0100742 yprp_notification(ctx, notif);
FredGand944bdc2019-11-05 21:57:07 +0800743 }
744
745 LEVEL--;
746 ypr_close(ctx, "container", flag);
747}
748
749static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100750yprp_case(struct lys_ypr_ctx *ctx, const struct lysp_node *node)
FredGand944bdc2019-11-05 21:57:07 +0800751{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200752 int8_t flag = 0;
FredGand944bdc2019-11-05 21:57:07 +0800753 struct lysp_node *child;
754 struct lysp_node_case *cas = (struct lysp_node_case *)node;
755
756 yprp_node_common1(ctx, node, &flag);
757 yprp_node_common2(ctx, node, &flag);
758
759 LY_LIST_FOR(cas->child, child) {
760 ypr_close_parent(ctx, &flag);
761 yprp_node(ctx, child);
762 }
763
764 LEVEL--;
765 ypr_close(ctx, "case", flag);
766}
767
768static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100769yprp_choice(struct lys_ypr_ctx *ctx, const struct lysp_node *node)
FredGand944bdc2019-11-05 21:57:07 +0800770{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200771 int8_t flag = 0;
FredGand944bdc2019-11-05 21:57:07 +0800772 struct lysp_node *child;
773 struct lysp_node_choice *choice = (struct lysp_node_choice *)node;
774
775 yprp_node_common1(ctx, node, &flag);
776
Michal Vasko7f45cf22020-10-01 12:49:44 +0200777 if (choice->dflt.str) {
FredGand944bdc2019-11-05 21:57:07 +0800778 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100779 ypr_substmt(ctx, LY_STMT_DEFAULT, 0, choice->dflt.str, choice->exts);
FredGand944bdc2019-11-05 21:57:07 +0800780 }
781
782 yprp_node_common2(ctx, node, &flag);
783
784 LY_LIST_FOR(choice->child, child) {
785 ypr_close_parent(ctx, &flag);
786 yprp_node(ctx, child);
787 }
788
789 LEVEL--;
790 ypr_close(ctx, "choice", flag);
791}
792
793static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100794yprp_leaf(struct lys_ypr_ctx *ctx, const struct lysp_node *node)
FredGand944bdc2019-11-05 21:57:07 +0800795{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200796 LY_ARRAY_COUNT_TYPE u;
FredGand944bdc2019-11-05 21:57:07 +0800797 struct lysp_node_leaf *leaf = (struct lysp_node_leaf *)node;
798
Radek Krejci1deb5be2020-08-26 16:43:36 +0200799 int8_t flag = 1;
Michal Vasko69730152020-10-09 16:30:07 +0200800
FredGand944bdc2019-11-05 21:57:07 +0800801 yprp_node_common1(ctx, node, &flag);
802
803 yprp_type(ctx, &leaf->type);
Radek Krejcifc596f92021-02-26 22:40:26 +0100804 ypr_substmt(ctx, LY_STMT_UNITS, 0, leaf->units, leaf->exts);
FredGand944bdc2019-11-05 21:57:07 +0800805 LY_ARRAY_FOR(leaf->musts, u) {
Radek Krejci39b7fc22021-02-26 23:29:18 +0100806 yprp_restr(ctx, &leaf->musts[u], LY_STMT_MUST, "condition", &flag);
FredGand944bdc2019-11-05 21:57:07 +0800807 }
Radek Krejcifc596f92021-02-26 22:40:26 +0100808 ypr_substmt(ctx, LY_STMT_DEFAULT, 0, leaf->dflt.str, leaf->exts);
FredGand944bdc2019-11-05 21:57:07 +0800809
810 yprp_node_common2(ctx, node, &flag);
811
812 LEVEL--;
813 ypr_close(ctx, "leaf", flag);
814}
815
816static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100817yprp_leaflist(struct lys_ypr_ctx *ctx, const struct lysp_node *node)
FredGand944bdc2019-11-05 21:57:07 +0800818{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200819 LY_ARRAY_COUNT_TYPE u;
FredGand944bdc2019-11-05 21:57:07 +0800820 struct lysp_node_leaflist *llist = (struct lysp_node_leaflist *)node;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200821 int8_t flag = 1;
FredGand944bdc2019-11-05 21:57:07 +0800822
823 yprp_node_common1(ctx, node, &flag);
824
825 yprp_type(ctx, &llist->type);
Radek Krejcifc596f92021-02-26 22:40:26 +0100826 ypr_substmt(ctx, LY_STMT_UNITS, 0, llist->units, llist->exts);
FredGand944bdc2019-11-05 21:57:07 +0800827 LY_ARRAY_FOR(llist->musts, u) {
Radek Krejci39b7fc22021-02-26 23:29:18 +0100828 yprp_restr(ctx, &llist->musts[u], LY_STMT_MUST, "condition", NULL);
FredGand944bdc2019-11-05 21:57:07 +0800829 }
830 LY_ARRAY_FOR(llist->dflts, u) {
Radek Krejcifc596f92021-02-26 22:40:26 +0100831 ypr_substmt(ctx, LY_STMT_DEFAULT, u, llist->dflts[u].str, llist->exts);
FredGand944bdc2019-11-05 21:57:07 +0800832 }
833
834 ypr_config(ctx, node->flags, node->exts, NULL);
835
836 if (llist->flags & LYS_SET_MIN) {
Radek Krejcifc596f92021-02-26 22:40:26 +0100837 ypr_unsigned(ctx, LY_STMT_MIN_ELEMENTS, 0, llist->exts, llist->min);
FredGand944bdc2019-11-05 21:57:07 +0800838 }
839 if (llist->flags & LYS_SET_MAX) {
840 if (llist->max) {
Radek Krejcifc596f92021-02-26 22:40:26 +0100841 ypr_unsigned(ctx, LY_STMT_MAX_ELEMENTS, 0, llist->exts, llist->max);
FredGand944bdc2019-11-05 21:57:07 +0800842 } else {
Radek Krejcifc596f92021-02-26 22:40:26 +0100843 ypr_substmt(ctx, LY_STMT_MAX_ELEMENTS, 0, "unbounded", llist->exts);
FredGand944bdc2019-11-05 21:57:07 +0800844 }
845 }
846
847 if (llist->flags & LYS_ORDBY_MASK) {
Radek Krejcifc596f92021-02-26 22:40:26 +0100848 ypr_substmt(ctx, LY_STMT_ORDERED_BY, 0, (llist->flags & LYS_ORDBY_USER) ? "user" : "system", llist->exts);
FredGand944bdc2019-11-05 21:57:07 +0800849 }
850
851 ypr_status(ctx, node->flags, node->exts, &flag);
852 ypr_description(ctx, node->dsc, node->exts, &flag);
853 ypr_reference(ctx, node->ref, node->exts, &flag);
854
855 LEVEL--;
856 ypr_close(ctx, "leaf-list", flag);
857}
858
859static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100860yprp_list(struct lys_ypr_ctx *ctx, const struct lysp_node *node)
FredGand944bdc2019-11-05 21:57:07 +0800861{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200862 LY_ARRAY_COUNT_TYPE u;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200863 int8_t flag = 0;
FredGand944bdc2019-11-05 21:57:07 +0800864 struct lysp_node *child;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100865 struct lysp_node_action *action;
866 struct lysp_node_notif *notif;
867 struct lysp_node_grp *grp;
FredGand944bdc2019-11-05 21:57:07 +0800868 struct lysp_node_list *list = (struct lysp_node_list *)node;
869
870 yprp_node_common1(ctx, node, &flag);
871
872 LY_ARRAY_FOR(list->musts, u) {
873 ypr_close_parent(ctx, &flag);
Radek Krejci39b7fc22021-02-26 23:29:18 +0100874 yprp_restr(ctx, &list->musts[u], LY_STMT_MUST, "condition", &flag);
FredGand944bdc2019-11-05 21:57:07 +0800875 }
876 if (list->key) {
877 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100878 ypr_substmt(ctx, LY_STMT_KEY, 0, list->key, list->exts);
FredGand944bdc2019-11-05 21:57:07 +0800879 }
880 LY_ARRAY_FOR(list->uniques, u) {
881 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100882 ypr_substmt(ctx, LY_STMT_UNIQUE, u, list->uniques[u].str, list->exts);
FredGand944bdc2019-11-05 21:57:07 +0800883 }
884
885 ypr_config(ctx, node->flags, node->exts, NULL);
886
887 if (list->flags & LYS_SET_MIN) {
Radek Krejcifc596f92021-02-26 22:40:26 +0100888 ypr_unsigned(ctx, LY_STMT_MIN_ELEMENTS, 0, list->exts, list->min);
FredGand944bdc2019-11-05 21:57:07 +0800889 }
890 if (list->flags & LYS_SET_MAX) {
891 if (list->max) {
Radek Krejcifc596f92021-02-26 22:40:26 +0100892 ypr_unsigned(ctx, LY_STMT_MAX_ELEMENTS, 0, list->exts, list->max);
FredGand944bdc2019-11-05 21:57:07 +0800893 } else {
Radek Krejcifc596f92021-02-26 22:40:26 +0100894 ypr_substmt(ctx, LY_STMT_MAX_ELEMENTS, 0, "unbounded", list->exts);
FredGand944bdc2019-11-05 21:57:07 +0800895 }
896 }
897
898 if (list->flags & LYS_ORDBY_MASK) {
899 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100900 ypr_substmt(ctx, LY_STMT_ORDERED_BY, 0, (list->flags & LYS_ORDBY_USER) ? "user" : "system", list->exts);
FredGand944bdc2019-11-05 21:57:07 +0800901 }
902
903 ypr_status(ctx, node->flags, node->exts, &flag);
904 ypr_description(ctx, node->dsc, node->exts, &flag);
905 ypr_reference(ctx, node->ref, node->exts, &flag);
906
907 LY_ARRAY_FOR(list->typedefs, u) {
908 ypr_close_parent(ctx, &flag);
909 yprp_typedef(ctx, &list->typedefs[u]);
910 }
911
Radek Krejci2a9fc652021-01-22 17:44:34 +0100912 LY_LIST_FOR(list->groupings, grp) {
FredGand944bdc2019-11-05 21:57:07 +0800913 ypr_close_parent(ctx, &flag);
Radek Krejci2a9fc652021-01-22 17:44:34 +0100914 yprp_grouping(ctx, grp);
FredGand944bdc2019-11-05 21:57:07 +0800915 }
916
917 LY_LIST_FOR(list->child, child) {
918 ypr_close_parent(ctx, &flag);
919 yprp_node(ctx, child);
920 }
921
Radek Krejci2a9fc652021-01-22 17:44:34 +0100922 LY_LIST_FOR(list->actions, action) {
FredGand944bdc2019-11-05 21:57:07 +0800923 ypr_close_parent(ctx, &flag);
Radek Krejci2a9fc652021-01-22 17:44:34 +0100924 yprp_action(ctx, action);
FredGand944bdc2019-11-05 21:57:07 +0800925 }
926
Radek Krejci2a9fc652021-01-22 17:44:34 +0100927 LY_LIST_FOR(list->notifs, notif) {
FredGand944bdc2019-11-05 21:57:07 +0800928 ypr_close_parent(ctx, &flag);
Radek Krejci2a9fc652021-01-22 17:44:34 +0100929 yprp_notification(ctx, notif);
FredGand944bdc2019-11-05 21:57:07 +0800930 }
931
932 LEVEL--;
933 ypr_close(ctx, "list", flag);
934}
935
936static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100937yprp_refine(struct lys_ypr_ctx *ctx, struct lysp_refine *refine)
FredGand944bdc2019-11-05 21:57:07 +0800938{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200939 LY_ARRAY_COUNT_TYPE u;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200940 int8_t flag = 0;
FredGand944bdc2019-11-05 21:57:07 +0800941
942 ypr_open(ctx, "refine", "target-node", refine->nodeid, flag);
943 LEVEL++;
944
Radek Krejci39b7fc22021-02-26 23:29:18 +0100945 yprp_extension_instances(ctx, LY_STMT_REFINE, 0, refine->exts, &flag, 0);
FredGand944bdc2019-11-05 21:57:07 +0800946 yprp_iffeatures(ctx, refine->iffeatures, refine->exts, &flag);
947
948 LY_ARRAY_FOR(refine->musts, u) {
949 ypr_close_parent(ctx, &flag);
Radek Krejci39b7fc22021-02-26 23:29:18 +0100950 yprp_restr(ctx, &refine->musts[u], LY_STMT_MUST, "condition", &flag);
FredGand944bdc2019-11-05 21:57:07 +0800951 }
952
953 if (refine->presence) {
954 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100955 ypr_substmt(ctx, LY_STMT_PRESENCE, 0, refine->presence, refine->exts);
FredGand944bdc2019-11-05 21:57:07 +0800956 }
957
958 LY_ARRAY_FOR(refine->dflts, u) {
959 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100960 ypr_substmt(ctx, LY_STMT_DEFAULT, u, refine->dflts[u].str, refine->exts);
FredGand944bdc2019-11-05 21:57:07 +0800961 }
962
963 ypr_config(ctx, refine->flags, refine->exts, &flag);
964 ypr_mandatory(ctx, refine->flags, refine->exts, &flag);
965
966 if (refine->flags & LYS_SET_MIN) {
967 ypr_close_parent(ctx, &flag);
Radek Krejcifc596f92021-02-26 22:40:26 +0100968 ypr_unsigned(ctx, LY_STMT_MIN_ELEMENTS, 0, refine->exts, refine->min);
FredGand944bdc2019-11-05 21:57:07 +0800969 }
970 if (refine->flags & LYS_SET_MAX) {
971 ypr_close_parent(ctx, &flag);
972 if (refine->max) {
Radek Krejcifc596f92021-02-26 22:40:26 +0100973 ypr_unsigned(ctx, LY_STMT_MAX_ELEMENTS, 0, refine->exts, refine->max);
FredGand944bdc2019-11-05 21:57:07 +0800974 } else {
Radek Krejcifc596f92021-02-26 22:40:26 +0100975 ypr_substmt(ctx, LY_STMT_MAX_ELEMENTS, 0, "unbounded", refine->exts);
FredGand944bdc2019-11-05 21:57:07 +0800976 }
977 }
978
979 ypr_description(ctx, refine->dsc, refine->exts, &flag);
980 ypr_reference(ctx, refine->ref, refine->exts, &flag);
981
982 LEVEL--;
983 ypr_close(ctx, "refine", flag);
984}
985
986static void
Radek Krejciadcf63d2021-02-09 10:21:18 +0100987yprp_augment(struct lys_ypr_ctx *ctx, const struct lysp_node_augment *aug)
FredGand944bdc2019-11-05 21:57:07 +0800988{
FredGand944bdc2019-11-05 21:57:07 +0800989 struct lysp_node *child;
Radek Krejci2a9fc652021-01-22 17:44:34 +0100990 struct lysp_node_action *action;
991 struct lysp_node_notif *notif;
FredGand944bdc2019-11-05 21:57:07 +0800992
993 ypr_open(ctx, "augment", "target-node", aug->nodeid, 1);
994 LEVEL++;
995
Radek Krejci39b7fc22021-02-26 23:29:18 +0100996 yprp_extension_instances(ctx, LY_STMT_AUGMENT, 0, aug->exts, NULL, 0);
FredGand944bdc2019-11-05 21:57:07 +0800997 yprp_when(ctx, aug->when, NULL);
998 yprp_iffeatures(ctx, aug->iffeatures, aug->exts, NULL);
999 ypr_status(ctx, aug->flags, aug->exts, NULL);
1000 ypr_description(ctx, aug->dsc, aug->exts, NULL);
1001 ypr_reference(ctx, aug->ref, aug->exts, NULL);
1002
1003 LY_LIST_FOR(aug->child, child) {
1004 yprp_node(ctx, child);
1005 }
1006
Radek Krejci2a9fc652021-01-22 17:44:34 +01001007 LY_LIST_FOR(aug->actions, action) {
1008 yprp_action(ctx, action);
FredGand944bdc2019-11-05 21:57:07 +08001009 }
1010
Radek Krejci2a9fc652021-01-22 17:44:34 +01001011 LY_LIST_FOR(aug->notifs, notif) {
1012 yprp_notification(ctx, notif);
FredGand944bdc2019-11-05 21:57:07 +08001013 }
1014
1015 LEVEL--;
1016 ypr_close(ctx, "augment", 1);
1017}
1018
FredGand944bdc2019-11-05 21:57:07 +08001019static void
Radek Krejciadcf63d2021-02-09 10:21:18 +01001020yprp_uses(struct lys_ypr_ctx *ctx, const struct lysp_node *node)
FredGand944bdc2019-11-05 21:57:07 +08001021{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001022 LY_ARRAY_COUNT_TYPE u;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001023 int8_t flag = 0;
FredGand944bdc2019-11-05 21:57:07 +08001024 struct lysp_node_uses *uses = (struct lysp_node_uses *)node;
Radek Krejci2a9fc652021-01-22 17:44:34 +01001025 struct lysp_node_augment *aug;
FredGand944bdc2019-11-05 21:57:07 +08001026
1027 yprp_node_common1(ctx, node, &flag);
1028 yprp_node_common2(ctx, node, &flag);
1029
1030 LY_ARRAY_FOR(uses->refines, u) {
1031 ypr_close_parent(ctx, &flag);
1032 yprp_refine(ctx, &uses->refines[u]);
1033 }
1034
Radek Krejci2a9fc652021-01-22 17:44:34 +01001035 LY_LIST_FOR(uses->augments, aug) {
FredGand944bdc2019-11-05 21:57:07 +08001036 ypr_close_parent(ctx, &flag);
Radek Krejci2a9fc652021-01-22 17:44:34 +01001037 yprp_augment(ctx, aug);
FredGand944bdc2019-11-05 21:57:07 +08001038 }
1039
1040 LEVEL--;
1041 ypr_close(ctx, "uses", flag);
1042}
1043
1044static void
Radek Krejciadcf63d2021-02-09 10:21:18 +01001045yprp_anydata(struct lys_ypr_ctx *ctx, const struct lysp_node *node)
FredGand944bdc2019-11-05 21:57:07 +08001046{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001047 LY_ARRAY_COUNT_TYPE u;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001048 int8_t flag = 0;
FredGand944bdc2019-11-05 21:57:07 +08001049 struct lysp_node_anydata *any = (struct lysp_node_anydata *)node;
1050
1051 yprp_node_common1(ctx, node, &flag);
1052
1053 LY_ARRAY_FOR(any->musts, u) {
1054 ypr_close_parent(ctx, &flag);
Radek Krejci39b7fc22021-02-26 23:29:18 +01001055 yprp_restr(ctx, &any->musts[u], LY_STMT_MUST, "condition", &flag);
FredGand944bdc2019-11-05 21:57:07 +08001056 }
1057
1058 yprp_node_common2(ctx, node, &flag);
1059
1060 LEVEL--;
1061 ypr_close(ctx, lys_nodetype2str(node->nodetype), flag);
1062}
1063
1064static void
Radek Krejciadcf63d2021-02-09 10:21:18 +01001065yprp_node(struct lys_ypr_ctx *ctx, const struct lysp_node *node)
FredGand944bdc2019-11-05 21:57:07 +08001066{
FredGand944bdc2019-11-05 21:57:07 +08001067 switch (node->nodetype) {
1068 case LYS_CONTAINER:
1069 yprp_container(ctx, node);
1070 break;
1071 case LYS_CHOICE:
1072 yprp_choice(ctx, node);
1073 break;
1074 case LYS_LEAF:
1075 yprp_leaf(ctx, node);
1076 break;
1077 case LYS_LEAFLIST:
1078 yprp_leaflist(ctx, node);
1079 break;
1080 case LYS_LIST:
1081 yprp_list(ctx, node);
1082 break;
1083 case LYS_USES:
1084 yprp_uses(ctx, node);
1085 break;
1086 case LYS_ANYXML:
1087 case LYS_ANYDATA:
1088 yprp_anydata(ctx, node);
1089 break;
1090 case LYS_CASE:
1091 yprp_case(ctx, node);
1092 break;
1093 default:
1094 break;
1095 }
1096}
1097
1098static void
Radek Krejciadcf63d2021-02-09 10:21:18 +01001099yprp_deviation(struct lys_ypr_ctx *ctx, const struct lysp_deviation *deviation)
FredGand944bdc2019-11-05 21:57:07 +08001100{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001101 LY_ARRAY_COUNT_TYPE u;
FredGand944bdc2019-11-05 21:57:07 +08001102 struct lysp_deviate_add *add;
1103 struct lysp_deviate_rpl *rpl;
1104 struct lysp_deviate_del *del;
1105 struct lysp_deviate *elem;
1106
1107 ypr_open(ctx, "deviation", "target-node", deviation->nodeid, 1);
1108 LEVEL++;
1109
Radek Krejci39b7fc22021-02-26 23:29:18 +01001110 yprp_extension_instances(ctx, LY_STMT_DEVIATION, 0, deviation->exts, NULL, 0);
FredGand944bdc2019-11-05 21:57:07 +08001111 ypr_description(ctx, deviation->dsc, deviation->exts, NULL);
1112 ypr_reference(ctx, deviation->ref, deviation->exts, NULL);
1113
1114 LY_LIST_FOR(deviation->deviates, elem) {
Michal Vasko5233e962020-08-14 14:26:20 +02001115 ly_print_(ctx->out, "%*s<deviate value=\"", INDENT);
FredGand944bdc2019-11-05 21:57:07 +08001116 if (elem->mod == LYS_DEV_NOT_SUPPORTED) {
1117 if (elem->exts) {
Michal Vasko5233e962020-08-14 14:26:20 +02001118 ly_print_(ctx->out, "not-supported\"/>\n");
FredGand944bdc2019-11-05 21:57:07 +08001119 LEVEL++;
1120
Radek Krejci39b7fc22021-02-26 23:29:18 +01001121 yprp_extension_instances(ctx, LY_STMT_DEVIATE, 0, elem->exts, NULL, 0);
FredGand944bdc2019-11-05 21:57:07 +08001122 } else {
Michal Vasko5233e962020-08-14 14:26:20 +02001123 ly_print_(ctx->out, "not-supported\"/>\n");
FredGand944bdc2019-11-05 21:57:07 +08001124 continue;
1125 }
1126 } else if (elem->mod == LYS_DEV_ADD) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001127 add = (struct lysp_deviate_add *)elem;
Michal Vasko5233e962020-08-14 14:26:20 +02001128 ly_print_(ctx->out, "add\">\n");
FredGand944bdc2019-11-05 21:57:07 +08001129 LEVEL++;
1130
Radek Krejci39b7fc22021-02-26 23:29:18 +01001131 yprp_extension_instances(ctx, LY_STMT_DEVIATE, 0, add->exts, NULL, 0);
Radek Krejcifc596f92021-02-26 22:40:26 +01001132 ypr_substmt(ctx, LY_STMT_UNITS, 0, add->units, add->exts);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001133 LY_ARRAY_FOR(add->musts, u) {
Radek Krejci39b7fc22021-02-26 23:29:18 +01001134 yprp_restr(ctx, &add->musts[u], LY_STMT_MUST, "condition", NULL);
FredGand944bdc2019-11-05 21:57:07 +08001135 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001136 LY_ARRAY_FOR(add->uniques, u) {
Radek Krejcifc596f92021-02-26 22:40:26 +01001137 ypr_substmt(ctx, LY_STMT_UNIQUE, u, add->uniques[u].str, add->exts);
FredGand944bdc2019-11-05 21:57:07 +08001138 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001139 LY_ARRAY_FOR(add->dflts, u) {
Radek Krejcifc596f92021-02-26 22:40:26 +01001140 ypr_substmt(ctx, LY_STMT_DEFAULT, u, add->dflts[u].str, add->exts);
FredGand944bdc2019-11-05 21:57:07 +08001141 }
1142 ypr_config(ctx, add->flags, add->exts, NULL);
1143 ypr_mandatory(ctx, add->flags, add->exts, NULL);
1144 if (add->flags & LYS_SET_MIN) {
Radek Krejcifc596f92021-02-26 22:40:26 +01001145 ypr_unsigned(ctx, LY_STMT_MIN_ELEMENTS, 0, add->exts, add->min);
FredGand944bdc2019-11-05 21:57:07 +08001146 }
1147 if (add->flags & LYS_SET_MAX) {
1148 if (add->max) {
Radek Krejcifc596f92021-02-26 22:40:26 +01001149 ypr_unsigned(ctx, LY_STMT_MAX_ELEMENTS, 0, add->exts, add->max);
FredGand944bdc2019-11-05 21:57:07 +08001150 } else {
Radek Krejcifc596f92021-02-26 22:40:26 +01001151 ypr_substmt(ctx, LY_STMT_MAX_ELEMENTS, 0, "unbounded", add->exts);
FredGand944bdc2019-11-05 21:57:07 +08001152 }
1153 }
1154 } else if (elem->mod == LYS_DEV_REPLACE) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001155 rpl = (struct lysp_deviate_rpl *)elem;
Michal Vasko5233e962020-08-14 14:26:20 +02001156 ly_print_(ctx->out, "replace\">\n");
FredGand944bdc2019-11-05 21:57:07 +08001157 LEVEL++;
1158
Radek Krejci39b7fc22021-02-26 23:29:18 +01001159 yprp_extension_instances(ctx, LY_STMT_DEVIATE, 0, rpl->exts, NULL, 0);
FredGand944bdc2019-11-05 21:57:07 +08001160 if (rpl->type) {
1161 yprp_type(ctx, rpl->type);
1162 }
Radek Krejcifc596f92021-02-26 22:40:26 +01001163 ypr_substmt(ctx, LY_STMT_UNITS, 0, rpl->units, rpl->exts);
1164 ypr_substmt(ctx, LY_STMT_DEFAULT, 0, rpl->dflt.str, rpl->exts);
FredGand944bdc2019-11-05 21:57:07 +08001165 ypr_config(ctx, rpl->flags, rpl->exts, NULL);
1166 ypr_mandatory(ctx, rpl->flags, rpl->exts, NULL);
1167 if (rpl->flags & LYS_SET_MIN) {
Radek Krejcifc596f92021-02-26 22:40:26 +01001168 ypr_unsigned(ctx, LY_STMT_MIN_ELEMENTS, 0, rpl->exts, rpl->min);
FredGand944bdc2019-11-05 21:57:07 +08001169 }
1170 if (rpl->flags & LYS_SET_MAX) {
1171 if (rpl->max) {
Radek Krejcifc596f92021-02-26 22:40:26 +01001172 ypr_unsigned(ctx, LY_STMT_MAX_ELEMENTS, 0, rpl->exts, rpl->max);
FredGand944bdc2019-11-05 21:57:07 +08001173 } else {
Radek Krejcifc596f92021-02-26 22:40:26 +01001174 ypr_substmt(ctx, LY_STMT_MAX_ELEMENTS, 0, "unbounded", rpl->exts);
FredGand944bdc2019-11-05 21:57:07 +08001175 }
1176 }
1177 } else if (elem->mod == LYS_DEV_DELETE) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001178 del = (struct lysp_deviate_del *)elem;
Michal Vasko5233e962020-08-14 14:26:20 +02001179 ly_print_(ctx->out, "delete\">\n");
FredGand944bdc2019-11-05 21:57:07 +08001180 LEVEL++;
1181
Radek Krejci39b7fc22021-02-26 23:29:18 +01001182 yprp_extension_instances(ctx, LY_STMT_DEVIATE, 0, del->exts, NULL, 0);
Radek Krejcifc596f92021-02-26 22:40:26 +01001183 ypr_substmt(ctx, LY_STMT_UNITS, 0, del->units, del->exts);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001184 LY_ARRAY_FOR(del->musts, u) {
Radek Krejci39b7fc22021-02-26 23:29:18 +01001185 yprp_restr(ctx, &del->musts[u], LY_STMT_MUST, "condition", NULL);
FredGand944bdc2019-11-05 21:57:07 +08001186 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001187 LY_ARRAY_FOR(del->uniques, u) {
Radek Krejcifc596f92021-02-26 22:40:26 +01001188 ypr_substmt(ctx, LY_STMT_UNIQUE, u, del->uniques[u].str, del->exts);
FredGand944bdc2019-11-05 21:57:07 +08001189 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001190 LY_ARRAY_FOR(del->dflts, u) {
Radek Krejcifc596f92021-02-26 22:40:26 +01001191 ypr_substmt(ctx, LY_STMT_DEFAULT, u, del->dflts[u].str, del->exts);
FredGand944bdc2019-11-05 21:57:07 +08001192 }
1193 }
1194
1195 LEVEL--;
1196 ypr_close(ctx, "deviate", 1);
1197 }
1198
1199 LEVEL--;
1200 ypr_close(ctx, "deviation", 1);
1201}
1202
FredGand944bdc2019-11-05 21:57:07 +08001203static void
Radek Krejciadcf63d2021-02-09 10:21:18 +01001204ypr_xmlns(struct lys_ypr_ctx *ctx, const struct lys_module *module, uint16_t indent)
FredGand944bdc2019-11-05 21:57:07 +08001205{
Michal Vasko5233e962020-08-14 14:26:20 +02001206 ly_print_(ctx->out, "%*sxmlns=\"%s\"", indent + INDENT, YIN_NS_URI);
1207 ly_print_(ctx->out, "\n%*sxmlns:%s=\"%s\"", indent + INDENT, module->prefix, module->ns);
Michal Vasko7c8439f2020-08-05 13:25:19 +02001208}
FredGand944bdc2019-11-05 21:57:07 +08001209
Michal Vasko7c8439f2020-08-05 13:25:19 +02001210static void
Radek Krejciadcf63d2021-02-09 10:21:18 +01001211ypr_import_xmlns(struct lys_ypr_ctx *ctx, const struct lysp_module *modp, uint16_t indent)
Michal Vasko7c8439f2020-08-05 13:25:19 +02001212{
1213 LY_ARRAY_COUNT_TYPE u;
FredGand944bdc2019-11-05 21:57:07 +08001214
1215 LY_ARRAY_FOR(modp->imports, u){
Michal Vasko5233e962020-08-14 14:26:20 +02001216 ly_print_(ctx->out, "\n%*sxmlns:%s=\"%s\"", indent + INDENT, modp->imports[u].prefix, modp->imports[u].module->ns);
FredGand944bdc2019-11-05 21:57:07 +08001217 }
1218}
1219
FredGand944bdc2019-11-05 21:57:07 +08001220static void
Radek Krejciadcf63d2021-02-09 10:21:18 +01001221yprp_stmt(struct lys_ypr_ctx *ctx, struct lysp_stmt *stmt)
FredGand944bdc2019-11-05 21:57:07 +08001222{
1223 struct lysp_stmt *childstmt;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001224 int8_t flag = stmt->child ? 1 : -1;
FredGand944bdc2019-11-05 21:57:07 +08001225
1226 /* TODO:
1227 the extension instance substatements in extension instances (LY_STMT_EXTENSION_INSTANCE)
1228 cannot find the compiled information, so it is needed to be done,
1229 currently it is ignored */
Michal Vaskod989ba02020-08-24 10:59:24 +02001230 if (stmt_attr_info[stmt->kw].name) {
Radek Krejcieccf6602021-02-05 19:42:54 +01001231 if (stmt_attr_info[stmt->kw].flags & STMT_FLAG_YIN) {
FredGand944bdc2019-11-05 21:57:07 +08001232 ypr_open(ctx, stmt->stmt, NULL, NULL, flag);
1233 ypr_yin_arg(ctx, stmt_attr_info[stmt->kw].arg, stmt->arg);
Radek Krejci0f969882020-08-21 16:56:47 +02001234 } else {
FredGand944bdc2019-11-05 21:57:07 +08001235 ypr_open(ctx, stmt->stmt, stmt_attr_info[stmt->kw].arg, stmt->arg, flag);
1236 }
1237 }
1238
1239 if (stmt->child) {
1240 LEVEL++;
1241 LY_LIST_FOR(stmt->child, childstmt) {
1242 yprp_stmt(ctx, childstmt);
1243 }
1244 LEVEL--;
1245 ypr_close(ctx, stmt->stmt, flag);
1246 }
1247}
1248
1249/**
1250 * @param[in] count Number of extensions to print, 0 to print them all.
1251 */
1252static void
Radek Krejcifc596f92021-02-26 22:40:26 +01001253yprp_extension_instances(struct lys_ypr_ctx *ctx, enum ly_stmt substmt, uint8_t substmt_index,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001254 struct lysp_ext_instance *ext, int8_t *flag, LY_ARRAY_COUNT_TYPE count)
FredGand944bdc2019-11-05 21:57:07 +08001255{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001256 LY_ARRAY_COUNT_TYPE u;
FredGand944bdc2019-11-05 21:57:07 +08001257 struct lysp_stmt *stmt;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001258 int8_t inner_flag = 0;
FredGand944bdc2019-11-05 21:57:07 +08001259
1260 if (!count && ext) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001261 count = LY_ARRAY_COUNT(ext);
FredGand944bdc2019-11-05 21:57:07 +08001262 }
1263 LY_ARRAY_FOR(ext, u) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001264 struct lysp_ext *ext_def = NULL;
1265
FredGand944bdc2019-11-05 21:57:07 +08001266 if (!count) {
1267 break;
1268 }
1269
1270 count--;
Radek Krejciab430862021-03-02 20:13:40 +01001271 if ((ext->flags & LYS_INTERNAL) || (ext->parent_stmt != substmt) || (ext->parent_stmt_index != substmt_index)) {
FredGand944bdc2019-11-05 21:57:07 +08001272 continue;
1273 }
1274
Radek Krejci85ac8312021-03-03 20:21:33 +01001275 lysp_ext_find_definition(ctx->module->ctx, &ext[u], NULL, &ext_def);
1276 if (!ext_def) {
1277 continue;
FredGand944bdc2019-11-05 21:57:07 +08001278 }
1279
Radek Krejci85ac8312021-03-03 20:21:33 +01001280 ypr_close_parent(ctx, flag);
1281 inner_flag = 0;
1282
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001283 if (ext_def->argname) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001284 lysp_ext_instance_resolve_argument(ctx->module->ctx, &ext[u], ext_def);
1285 }
1286
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001287 ypr_open(ctx, ext[u].name, (ext_def->flags & LYS_YINELEM_TRUE) ? NULL : ext_def->argname, ext[u].argument, inner_flag);
FredGand944bdc2019-11-05 21:57:07 +08001288 LEVEL++;
Radek Krejci85ac8312021-03-03 20:21:33 +01001289 if (ext_def->flags & LYS_YINELEM_TRUE) {
1290 const char *prefix, *name, *id;
1291 size_t prefix_len, name_len;
1292
1293 ypr_close_parent(ctx, &inner_flag);
1294
1295 /* we need to use the same namespace as for the extension instance element */
1296 id = ext[u].name;
1297 ly_parse_nodeid(&id, &prefix, &prefix_len, &name, &name_len);
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001298 ly_print_(ctx->out, "%*s<%.*s:%s>", INDENT, (int)prefix_len, prefix, ext_def->argname);
Radek Krejci85ac8312021-03-03 20:21:33 +01001299 lyxml_dump_text(ctx->out, ext[u].argument, 0);
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001300 ly_print_(ctx->out, "</%.*s:%s>\n", (int)prefix_len, prefix, ext_def->argname);
Radek Krejci85ac8312021-03-03 20:21:33 +01001301 }
FredGand944bdc2019-11-05 21:57:07 +08001302 LY_LIST_FOR(ext[u].child, stmt) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001303 if (stmt->flags & (LYS_YIN_ATTR | LYS_YIN_ARGUMENT)) {
1304 continue;
1305 }
1306
FredGand944bdc2019-11-05 21:57:07 +08001307 ypr_close_parent(ctx, &inner_flag);
1308 yprp_stmt(ctx, stmt);
1309 }
1310 LEVEL--;
1311 ypr_close(ctx, ext[u].name, inner_flag);
1312 }
1313}
1314
Michal Vasko7c8439f2020-08-05 13:25:19 +02001315static void
Radek Krejciadcf63d2021-02-09 10:21:18 +01001316yin_print_parsed_linkage(struct lys_ypr_ctx *ctx, const struct lysp_module *modp)
FredGand944bdc2019-11-05 21:57:07 +08001317{
Michal Vasko7c8439f2020-08-05 13:25:19 +02001318 LY_ARRAY_COUNT_TYPE u;
FredGand944bdc2019-11-05 21:57:07 +08001319
FredGand944bdc2019-11-05 21:57:07 +08001320 LY_ARRAY_FOR(modp->imports, u) {
Michal Vasko3e9bc2f2020-11-04 17:13:56 +01001321 if (modp->imports[u].flags & LYS_INTERNAL) {
1322 continue;
1323 }
1324
Michal Vasko7c8439f2020-08-05 13:25:19 +02001325 ypr_open(ctx, "import", "module", modp->imports[u].name, 1);
FredGand944bdc2019-11-05 21:57:07 +08001326 LEVEL++;
Radek Krejci39b7fc22021-02-26 23:29:18 +01001327 yprp_extension_instances(ctx, LY_STMT_IMPORT, 0, modp->imports[u].exts, NULL, 0);
Radek Krejcifc596f92021-02-26 22:40:26 +01001328 ypr_substmt(ctx, LY_STMT_PREFIX, 0, modp->imports[u].prefix, modp->imports[u].exts);
FredGand944bdc2019-11-05 21:57:07 +08001329 if (modp->imports[u].rev[0]) {
Radek Krejcifc596f92021-02-26 22:40:26 +01001330 ypr_substmt(ctx, LY_STMT_REVISION_DATE, 0, modp->imports[u].rev, modp->imports[u].exts);
FredGand944bdc2019-11-05 21:57:07 +08001331 }
Radek Krejcifc596f92021-02-26 22:40:26 +01001332 ypr_substmt(ctx, LY_STMT_DESCRIPTION, 0, modp->imports[u].dsc, modp->imports[u].exts);
1333 ypr_substmt(ctx, LY_STMT_REFERENCE, 0, modp->imports[u].ref, modp->imports[u].exts);
FredGand944bdc2019-11-05 21:57:07 +08001334 LEVEL--;
1335 ypr_close(ctx, "import", 1);
1336 }
1337 LY_ARRAY_FOR(modp->includes, u) {
Radek Krejci771928a2021-01-19 13:42:36 +01001338 if (modp->includes[u].injected) {
1339 /* do not print the includes injected from submodules */
1340 continue;
1341 }
FredGand944bdc2019-11-05 21:57:07 +08001342 if (modp->includes[u].rev[0] || modp->includes[u].dsc || modp->includes[u].ref || modp->includes[u].exts) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02001343 ypr_open(ctx, "include", "module", modp->includes[u].name, 1);
FredGand944bdc2019-11-05 21:57:07 +08001344 LEVEL++;
Radek Krejci39b7fc22021-02-26 23:29:18 +01001345 yprp_extension_instances(ctx, LY_STMT_INCLUDE, 0, modp->includes[u].exts, NULL, 0);
FredGand944bdc2019-11-05 21:57:07 +08001346 if (modp->includes[u].rev[0]) {
Radek Krejcifc596f92021-02-26 22:40:26 +01001347 ypr_substmt(ctx, LY_STMT_REVISION_DATE, 0, modp->includes[u].rev, modp->includes[u].exts);
FredGand944bdc2019-11-05 21:57:07 +08001348 }
Radek Krejcifc596f92021-02-26 22:40:26 +01001349 ypr_substmt(ctx, LY_STMT_DESCRIPTION, 0, modp->includes[u].dsc, modp->includes[u].exts);
1350 ypr_substmt(ctx, LY_STMT_REFERENCE, 0, modp->includes[u].ref, modp->includes[u].exts);
FredGand944bdc2019-11-05 21:57:07 +08001351 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02001352 ly_print_(ctx->out, "%*s}\n", INDENT);
FredGand944bdc2019-11-05 21:57:07 +08001353 } else {
Michal Vasko7c8439f2020-08-05 13:25:19 +02001354 ypr_open(ctx, "include", "module", modp->includes[u].name, -1);
FredGand944bdc2019-11-05 21:57:07 +08001355 }
1356 }
Michal Vasko7c8439f2020-08-05 13:25:19 +02001357}
FredGand944bdc2019-11-05 21:57:07 +08001358
Michal Vasko7c8439f2020-08-05 13:25:19 +02001359static void
Radek Krejciadcf63d2021-02-09 10:21:18 +01001360yin_print_parsed_body(struct lys_ypr_ctx *ctx, const struct lysp_module *modp)
Michal Vasko7c8439f2020-08-05 13:25:19 +02001361{
1362 LY_ARRAY_COUNT_TYPE u;
1363 struct lysp_node *data;
Radek Krejci2a9fc652021-01-22 17:44:34 +01001364 struct lysp_node_action *action;
1365 struct lysp_node_notif *notif;
1366 struct lysp_node_grp *grp;
1367 struct lysp_node_augment *aug;
FredGand944bdc2019-11-05 21:57:07 +08001368
FredGand944bdc2019-11-05 21:57:07 +08001369 LY_ARRAY_FOR(modp->extensions, u) {
Michal Vasko5233e962020-08-14 14:26:20 +02001370 ly_print_(ctx->out, "\n");
FredGand944bdc2019-11-05 21:57:07 +08001371 yprp_extension(ctx, &modp->extensions[u]);
1372 }
1373 if (modp->exts) {
Michal Vasko5233e962020-08-14 14:26:20 +02001374 ly_print_(ctx->out, "\n");
Radek Krejci39b7fc22021-02-26 23:29:18 +01001375 yprp_extension_instances(ctx, LY_STMT_MODULE, 0, modp->exts, NULL, 0);
FredGand944bdc2019-11-05 21:57:07 +08001376 }
1377
1378 LY_ARRAY_FOR(modp->features, u) {
1379 yprp_feature(ctx, &modp->features[u]);
1380 }
1381
1382 LY_ARRAY_FOR(modp->identities, u) {
1383 yprp_identity(ctx, &modp->identities[u]);
1384 }
1385
1386 LY_ARRAY_FOR(modp->typedefs, u) {
1387 yprp_typedef(ctx, &modp->typedefs[u]);
1388 }
1389
Radek Krejci2a9fc652021-01-22 17:44:34 +01001390 LY_LIST_FOR(modp->groupings, grp) {
1391 yprp_grouping(ctx, grp);
FredGand944bdc2019-11-05 21:57:07 +08001392 }
1393
1394 LY_LIST_FOR(modp->data, data) {
1395 yprp_node(ctx, data);
1396 }
1397
Radek Krejci2a9fc652021-01-22 17:44:34 +01001398 LY_LIST_FOR(modp->augments, aug) {
1399 yprp_augment(ctx, aug);
FredGand944bdc2019-11-05 21:57:07 +08001400 }
1401
Radek Krejci2a9fc652021-01-22 17:44:34 +01001402 LY_LIST_FOR(modp->rpcs, action) {
1403 yprp_action(ctx, action);
FredGand944bdc2019-11-05 21:57:07 +08001404 }
1405
Radek Krejci2a9fc652021-01-22 17:44:34 +01001406 LY_LIST_FOR(modp->notifs, notif) {
1407 yprp_notification(ctx, notif);
FredGand944bdc2019-11-05 21:57:07 +08001408 }
1409
1410 LY_ARRAY_FOR(modp->deviations, u) {
1411 yprp_deviation(ctx, &modp->deviations[u]);
1412 }
Michal Vasko7c8439f2020-08-05 13:25:19 +02001413}
1414
1415LY_ERR
Michal Vasko7997d5a2021-02-22 10:55:56 +01001416yin_print_parsed_module(struct ly_out *out, const struct lysp_module *modp, uint32_t options)
Michal Vasko7c8439f2020-08-05 13:25:19 +02001417{
1418 LY_ARRAY_COUNT_TYPE u;
Michal Vasko7997d5a2021-02-22 10:55:56 +01001419 const struct lys_module *module = modp->mod;
Radek Krejciadcf63d2021-02-09 10:21:18 +01001420 struct lys_ypr_ctx ctx_ = {.out = out, .level = 0, .module = module, .options = options}, *ctx = &ctx_;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001421
Michal Vasko5233e962020-08-14 14:26:20 +02001422 ly_print_(ctx->out, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
1423 ly_print_(ctx->out, "%*s<module name=\"%s\"\n", INDENT, module->name);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001424 ypr_xmlns(ctx, module, XML_NS_INDENT);
1425 ypr_import_xmlns(ctx, modp, XML_NS_INDENT);
Michal Vasko5233e962020-08-14 14:26:20 +02001426 ly_print_(ctx->out, ">\n");
Michal Vasko7c8439f2020-08-05 13:25:19 +02001427
1428 LEVEL++;
1429
1430 /* module-header-stmts */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02001431 if (modp->version) {
Radek Krejcifc596f92021-02-26 22:40:26 +01001432 ypr_substmt(ctx, LY_STMT_YANG_VERSION, 0, modp->version == LYS_VERSION_1_1 ? "1.1" : "1", modp->exts);
Michal Vasko7c8439f2020-08-05 13:25:19 +02001433 }
Radek Krejcifc596f92021-02-26 22:40:26 +01001434 ypr_substmt(ctx, LY_STMT_NAMESPACE, 0, module->ns, modp->exts);
1435 ypr_substmt(ctx, LY_STMT_PREFIX, 0, module->prefix, modp->exts);
Michal Vasko7c8439f2020-08-05 13:25:19 +02001436
1437 /* linkage-stmts (import/include) */
1438 yin_print_parsed_linkage(ctx, modp);
1439
1440 /* meta-stmts */
1441 if (module->org || module->contact || module->dsc || module->ref) {
Michal Vasko5233e962020-08-14 14:26:20 +02001442 ly_print_(out, "\n");
Michal Vasko7c8439f2020-08-05 13:25:19 +02001443 }
Radek Krejcifc596f92021-02-26 22:40:26 +01001444 ypr_substmt(ctx, LY_STMT_ORGANIZATION, 0, module->org, modp->exts);
1445 ypr_substmt(ctx, LY_STMT_CONTACT, 0, module->contact, modp->exts);
1446 ypr_substmt(ctx, LY_STMT_DESCRIPTION, 0, module->dsc, modp->exts);
1447 ypr_substmt(ctx, LY_STMT_REFERENCE, 0, module->ref, modp->exts);
Michal Vasko7c8439f2020-08-05 13:25:19 +02001448
1449 /* revision-stmts */
1450 if (modp->revs) {
Michal Vasko5233e962020-08-14 14:26:20 +02001451 ly_print_(out, "\n");
Michal Vasko7c8439f2020-08-05 13:25:19 +02001452 }
1453 LY_ARRAY_FOR(modp->revs, u) {
1454 yprp_revision(ctx, &modp->revs[u]);
1455 }
1456
1457 /* body-stmts */
1458 yin_print_parsed_body(ctx, modp);
FredGand944bdc2019-11-05 21:57:07 +08001459
1460 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02001461 ly_print_(out, "%*s</module>\n", INDENT);
FredGand944bdc2019-11-05 21:57:07 +08001462 ly_print_flush(out);
1463
1464 return LY_SUCCESS;
1465}
1466
Michal Vasko7c8439f2020-08-05 13:25:19 +02001467static void
Radek Krejciadcf63d2021-02-09 10:21:18 +01001468yprp_belongsto(struct lys_ypr_ctx *ctx, const struct lysp_submodule *submodp)
Michal Vasko7c8439f2020-08-05 13:25:19 +02001469{
Michal Vaskoc3781c32020-10-06 14:04:08 +02001470 ypr_open(ctx, "belongs-to", "module", submodp->mod->name, 1);
Michal Vasko7c8439f2020-08-05 13:25:19 +02001471 LEVEL++;
Radek Krejcifc596f92021-02-26 22:40:26 +01001472 yprp_extension_instances(ctx, LY_STMT_BELONGS_TO, 0, submodp->exts, NULL, 0);
1473 ypr_substmt(ctx, LY_STMT_PREFIX, 0, submodp->prefix, submodp->exts);
Michal Vasko7c8439f2020-08-05 13:25:19 +02001474 LEVEL--;
1475 ypr_close(ctx, "belongs-to", 1);
1476}
1477
1478LY_ERR
Michal Vasko7997d5a2021-02-22 10:55:56 +01001479yin_print_parsed_submodule(struct ly_out *out, const struct lysp_submodule *submodp, uint32_t options)
Michal Vasko7c8439f2020-08-05 13:25:19 +02001480{
1481 LY_ARRAY_COUNT_TYPE u;
Radek Krejciadcf63d2021-02-09 10:21:18 +01001482 struct lys_ypr_ctx ctx_ = {.out = out, .level = 0, .module = submodp->mod, .options = options}, *ctx = &ctx_;
Michal Vasko7c8439f2020-08-05 13:25:19 +02001483
Michal Vasko5233e962020-08-14 14:26:20 +02001484 ly_print_(ctx->out, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
1485 ly_print_(ctx->out, "%*s<submodule name=\"%s\"\n", INDENT, submodp->name);
Michal Vasko7997d5a2021-02-22 10:55:56 +01001486 ypr_xmlns(ctx, submodp->mod, XML_NS_INDENT);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001487 ypr_import_xmlns(ctx, (struct lysp_module *)submodp, XML_NS_INDENT);
Michal Vasko5233e962020-08-14 14:26:20 +02001488 ly_print_(ctx->out, ">\n");
Michal Vasko7c8439f2020-08-05 13:25:19 +02001489
1490 LEVEL++;
1491
1492 /* submodule-header-stmts */
1493 if (submodp->version) {
Radek Krejcifc596f92021-02-26 22:40:26 +01001494 ypr_substmt(ctx, LY_STMT_YANG_VERSION, 0, submodp->version == LYS_VERSION_1_1 ? "1.1" : "1", submodp->exts);
Michal Vasko7c8439f2020-08-05 13:25:19 +02001495 }
1496 yprp_belongsto(ctx, submodp);
1497
1498 /* linkage-stmts (import/include) */
1499 yin_print_parsed_linkage(ctx, (struct lysp_module *)submodp);
1500
1501 /* meta-stmts */
1502 if (submodp->org || submodp->contact || submodp->dsc || submodp->ref) {
Michal Vasko5233e962020-08-14 14:26:20 +02001503 ly_print_(out, "\n");
Michal Vasko7c8439f2020-08-05 13:25:19 +02001504 }
Radek Krejcifc596f92021-02-26 22:40:26 +01001505 ypr_substmt(ctx, LY_STMT_ORGANIZATION, 0, submodp->org, submodp->exts);
1506 ypr_substmt(ctx, LY_STMT_CONTACT, 0, submodp->contact, submodp->exts);
1507 ypr_substmt(ctx, LY_STMT_DESCRIPTION, 0, submodp->dsc, submodp->exts);
1508 ypr_substmt(ctx, LY_STMT_REFERENCE, 0, submodp->ref, submodp->exts);
Michal Vasko7c8439f2020-08-05 13:25:19 +02001509
1510 /* revision-stmts */
1511 if (submodp->revs) {
Michal Vasko5233e962020-08-14 14:26:20 +02001512 ly_print_(out, "\n");
Michal Vasko7c8439f2020-08-05 13:25:19 +02001513 }
1514 LY_ARRAY_FOR(submodp->revs, u) {
1515 yprp_revision(ctx, &submodp->revs[u]);
1516 }
1517
1518 /* body-stmts */
1519 yin_print_parsed_body(ctx, (struct lysp_module *)submodp);
1520
1521 LEVEL--;
Michal Vasko5233e962020-08-14 14:26:20 +02001522 ly_print_(out, "%*s</submodule>\n", INDENT);
Michal Vasko7c8439f2020-08-05 13:25:19 +02001523 ly_print_flush(out);
1524
1525 return LY_SUCCESS;
1526}