blob: 0f5cf76131425b74c8ae76c5612f4490a10357d5 [file] [log] [blame]
Michal Vasko60ea6352020-06-29 13:39:39 +02001/**
2 * @file printer_lyb.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief LYB printer for libyang data structure
5 *
6 * Copyright (c) 2020 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
15#include "lyb.h"
16
17#include <assert.h>
18#include <stdio.h>
19#include <stdint.h>
20#include <stdlib.h>
21#include <string.h>
Radek Krejciad97c5f2020-06-30 09:19:28 +020022#include <sys/types.h>
Michal Vasko60ea6352020-06-29 13:39:39 +020023
24#include "common.h"
25#include "compat.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020026#include "context.h"
27#include "hash_table.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020028#include "log.h"
Radek Krejci7931b192020-06-25 17:05:03 +020029#include "parser_data.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020030#include "printer.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020031#include "printer_data.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020032#include "printer_internal.h"
Radek Krejciad97c5f2020-06-30 09:19:28 +020033#include "set.h"
34#include "tree.h"
Michal Vasko60ea6352020-06-29 13:39:39 +020035#include "tree_data_internal.h"
36#include "tree_schema.h"
37#include "tree_schema_internal.h"
38
39/**
40 * @brief Hash table equal callback for checking hash equality only.
41 */
Radek Krejci1deb5be2020-08-26 16:43:36 +020042static uint8_t
43lyb_hash_equal_cb(void *UNUSED(val1_p), void *UNUSED(val2_p), uint8_t UNUSED(mod), void *UNUSED(cb_data))
Michal Vasko60ea6352020-06-29 13:39:39 +020044{
45 /* for this purpose, if hash matches, the value does also, we do not want 2 values to have the same hash */
46 return 1;
47}
48
49/**
50 * @brief Hash table equal callback for checking value pointer equality only.
51 */
Radek Krejci1deb5be2020-08-26 16:43:36 +020052static uint8_t
53lyb_ptr_equal_cb(void *val1_p, void *val2_p, uint8_t UNUSED(mod), void *UNUSED(cb_data))
Michal Vasko60ea6352020-06-29 13:39:39 +020054{
55 struct lysc_node *val1 = *(struct lysc_node **)val1_p;
56 struct lysc_node *val2 = *(struct lysc_node **)val2_p;
57
58 if (val1 == val2) {
59 return 1;
60 }
61 return 0;
62}
63
64/**
65 * @brief Check that sibling collision hash is safe to insert into hash table.
66 *
67 * @param[in] ht Hash table.
68 * @param[in] sibling Hashed sibling.
69 * @param[in] ht_col_id Sibling hash collision ID.
70 * @param[in] compare_col_id Last collision ID to compare with.
71 * @return LY_SUCCESS when the whole hash sequence does not collide,
72 * @return LY_EEXIST when the whole hash sequence sollides.
73 */
74static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +020075lyb_hash_sequence_check(struct hash_table *ht, struct lysc_node *sibling, LYB_HASH ht_col_id, LYB_HASH compare_col_id)
Michal Vasko60ea6352020-06-29 13:39:39 +020076{
Michal Vasko60ea6352020-06-29 13:39:39 +020077 struct lysc_node **col_node;
78
79 /* get the first node inserted with last hash col ID ht_col_id */
80 if (lyht_find(ht, &sibling, lyb_hash(sibling, ht_col_id), (void **)&col_node)) {
81 /* there is none. valid situation */
82 return LY_SUCCESS;
83 }
84
85 lyht_set_cb(ht, lyb_ptr_equal_cb);
86 do {
Radek Krejci1deb5be2020-08-26 16:43:36 +020087 int64_t j;
88 for (j = (int64_t)compare_col_id; j > -1; --j) {
Michal Vasko60ea6352020-06-29 13:39:39 +020089 if (lyb_hash(sibling, j) != lyb_hash(*col_node, j)) {
90 /* one non-colliding hash */
91 break;
92 }
93 }
94 if (j == -1) {
95 /* all whole hash sequences of nodes inserted with last hash col ID compare_col_id collide */
96 lyht_set_cb(ht, lyb_hash_equal_cb);
97 return LY_EEXIST;
98 }
99
100 /* get next node inserted with last hash col ID ht_col_id */
101 } while (!lyht_find_next(ht, col_node, lyb_hash(*col_node, ht_col_id), (void **)&col_node));
102
103 lyht_set_cb(ht, lyb_hash_equal_cb);
104 return LY_SUCCESS;
105}
106
107/**
108 * @brief Hash all the siblings and add them also into a separate hash table.
109 *
110 * @param[in] sibling Any sibling in all the siblings on one level.
111 * @param[out] ht_p Created hash table.
112 * @return LY_ERR value.
113 */
114static LY_ERR
115lyb_hash_siblings(struct lysc_node *sibling, struct hash_table **ht_p)
116{
117 struct hash_table *ht;
118 const struct lysc_node *parent;
119 const struct lys_module *mod;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200120 LYB_HASH i;
Michal Vasko60ea6352020-06-29 13:39:39 +0200121
122 ht = lyht_new(1, sizeof(struct lysc_node *), lyb_hash_equal_cb, NULL, 1);
123 LY_CHECK_ERR_RET(!ht, LOGMEM(sibling->module->ctx), LY_EMEM);
124
125 parent = lysc_data_parent(sibling);
126 mod = sibling->module;
127
128 sibling = NULL;
129 /* ignore features so that their state does not affect hashes */
130 while ((sibling = (struct lysc_node *)lys_getnext(sibling, parent, mod->compiled, LYS_GETNEXT_NOSTATECHECK))) {
131 /* find the first non-colliding hash (or specifically non-colliding hash sequence) */
132 for (i = 0; i < LYB_HASH_BITS; ++i) {
133 /* check that we are not colliding with nodes inserted with a lower collision ID than ours */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200134 int64_t j;
135 for (j = (int64_t)i - 1; j > -1; --j) {
136 if (lyb_hash_sequence_check(ht, sibling, (LYB_HASH)j, i)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200137 break;
138 }
139 }
140 if (j > -1) {
141 /* some check failed, we must use a higher collision ID */
142 continue;
143 }
144
145 /* try to insert node with the current collision ID */
146 if (!lyht_insert_with_resize_cb(ht, &sibling, lyb_hash(sibling, i), lyb_ptr_equal_cb, NULL)) {
147 /* success, no collision */
148 break;
149 }
150
151 /* make sure we really cannot insert it with this hash col ID (meaning the whole hash sequence is colliding) */
152 if (i && !lyb_hash_sequence_check(ht, sibling, i, i)) {
153 /* it can be inserted after all, even though there is already a node with the same last collision ID */
154 lyht_set_cb(ht, lyb_ptr_equal_cb);
155 if (lyht_insert(ht, &sibling, lyb_hash(sibling, i), NULL)) {
156 LOGINT(sibling->module->ctx);
157 lyht_set_cb(ht, lyb_hash_equal_cb);
158 lyht_free(ht);
159 return LY_EINT;
160 }
161 lyht_set_cb(ht, lyb_hash_equal_cb);
162 break;
163 }
164 /* there is still another colliding schema node with the same hash sequence, try higher collision ID */
165 }
166
167 if (i == LYB_HASH_BITS) {
168 /* wow */
169 LOGINT(sibling->module->ctx);
170 lyht_free(ht);
171 return LY_EINT;
172 }
173 }
174
175 /* change val equal callback so that the HT is usable for finding value hashes */
176 lyht_set_cb(ht, lyb_ptr_equal_cb);
177
178 *ht_p = ht;
179 return LY_SUCCESS;
180}
181
182/**
183 * @brief Find node hash in a hash table.
184 *
185 * @param[in] ht Hash table to search in.
186 * @param[in] node Node to find.
187 * @param[out] hash_p First non-colliding hash found.
188 * @return LY_ERR value.
189 */
190static LY_ERR
191lyb_hash_find(struct hash_table *ht, struct lysc_node *node, LYB_HASH *hash_p)
192{
193 LYB_HASH hash;
194 uint32_t i;
195
196 for (i = 0; i < LYB_HASH_BITS; ++i) {
197 hash = lyb_hash(node, i);
198 if (!hash) {
199 LOGINT_RET(node->module->ctx);
200 }
201
202 if (!lyht_find(ht, &node, hash, NULL)) {
203 /* success, no collision */
204 break;
205 }
206 }
207 /* cannot happen, we already calculated the hash */
208 if (i == LYB_HASH_BITS) {
209 LOGINT_RET(node->module->ctx);
210 }
211
212 *hash_p = hash;
213 return LY_SUCCESS;
214}
215
216/**
217 * @brief Write LYB data fully handling the metadata.
218 *
219 * @param[in] out Out structure.
220 * @param[in] buf Source buffer.
221 * @param[in] count Number of bytes to write.
222 * @param[in] lybctx LYB context.
223 * @return LY_ERR value.
224 */
225static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200226lyb_write(struct ly_out *out, const uint8_t *buf, size_t count, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200227{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200228 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +0200229 struct lyd_lyb_subtree *full, *iter;
Michal Vasko5233e962020-08-14 14:26:20 +0200230 size_t to_write;
Michal Vasko60ea6352020-06-29 13:39:39 +0200231 uint8_t meta_buf[LYB_META_BYTES];
232
233 while (1) {
234 /* check for full data chunks */
235 to_write = count;
236 full = NULL;
237 LY_ARRAY_FOR(lybctx->subtrees, u) {
238 /* we want the innermost chunks resolved first, so replace previous full chunks */
239 if (lybctx->subtrees[u].written + to_write >= LYB_SIZE_MAX) {
240 /* full chunk, do not write more than allowed */
241 to_write = LYB_SIZE_MAX - lybctx->subtrees[u].written;
242 full = &lybctx->subtrees[u];
243 }
244 }
245
246 if (!full && !count) {
247 break;
248 }
249
250 /* we are actually writing some data, not just finishing another chunk */
251 if (to_write) {
Michal Vasko5233e962020-08-14 14:26:20 +0200252 LY_CHECK_RET(ly_write_(out, (char *)buf, to_write));
Michal Vasko60ea6352020-06-29 13:39:39 +0200253
254 LY_ARRAY_FOR(lybctx->subtrees, u) {
255 /* increase all written counters */
Michal Vasko5233e962020-08-14 14:26:20 +0200256 lybctx->subtrees[u].written += to_write;
Michal Vasko60ea6352020-06-29 13:39:39 +0200257 assert(lybctx->subtrees[u].written <= LYB_SIZE_MAX);
258 }
259 /* decrease count/buf */
Michal Vasko5233e962020-08-14 14:26:20 +0200260 count -= to_write;
261 buf += to_write;
Michal Vasko60ea6352020-06-29 13:39:39 +0200262 }
263
264 if (full) {
265 /* write the meta information (inner chunk count and chunk size) */
266 meta_buf[0] = full->written & 0xFF;
267 meta_buf[1] = full->inner_chunks & 0xFF;
Michal Vasko5233e962020-08-14 14:26:20 +0200268 LY_CHECK_RET(ly_write_skipped(out, full->position, (char *)meta_buf, LYB_META_BYTES));
Michal Vasko60ea6352020-06-29 13:39:39 +0200269
270 /* zero written and inner chunks */
271 full->written = 0;
272 full->inner_chunks = 0;
273
274 /* skip space for another chunk size */
Michal Vasko5233e962020-08-14 14:26:20 +0200275 LY_CHECK_RET(ly_write_skip(out, LYB_META_BYTES, &full->position));
Michal Vasko60ea6352020-06-29 13:39:39 +0200276
277 /* increase inner chunk count */
278 for (iter = &lybctx->subtrees[0]; iter != full; ++iter) {
279 if (iter->inner_chunks == LYB_INCHUNK_MAX) {
280 LOGINT(lybctx->ctx);
281 return LY_EINT;
282 }
283 ++iter->inner_chunks;
284 }
285 }
286 }
287
288 return LY_SUCCESS;
289}
290
291/**
292 * @brief Stop the current subtree - write its final metadata.
293 *
294 * @param[in] out Out structure.
295 * @param[in] lybctx LYB context.
296 * @return LY_ERR value.
297 */
298static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200299lyb_write_stop_subtree(struct ly_out *out, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200300{
Michal Vasko60ea6352020-06-29 13:39:39 +0200301 uint8_t meta_buf[LYB_META_BYTES];
302
303 /* write the meta chunk information */
304 meta_buf[0] = LYB_LAST_SUBTREE(lybctx).written & 0xFF;
305 meta_buf[1] = LYB_LAST_SUBTREE(lybctx).inner_chunks & 0xFF;
Michal Vasko5233e962020-08-14 14:26:20 +0200306 LY_CHECK_RET(ly_write_skipped(out, LYB_LAST_SUBTREE(lybctx).position, (char *)&meta_buf, LYB_META_BYTES));
Michal Vasko60ea6352020-06-29 13:39:39 +0200307
308 LY_ARRAY_DECREMENT(lybctx->subtrees);
309 return LY_SUCCESS;
310}
311
312/**
313 * @brief Start a new subtree - skip bytes for its metadata.
314 *
315 * @param[in] out Out structure.
316 * @param[in] lybctx LYB context.
317 * @return LY_ERR value.
318 */
319static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200320lyb_write_start_subtree(struct ly_out *out, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200321{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200322 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +0200323
324 if (!lybctx->subtrees) {
Radek Krejcif6d14cb2020-07-02 16:11:45 +0200325 assert(lybctx->subtree_size == 0);
Michal Vasko60ea6352020-06-29 13:39:39 +0200326 u = 0;
327 } else {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200328 u = LY_ARRAY_COUNT(lybctx->subtrees);
Michal Vasko60ea6352020-06-29 13:39:39 +0200329 }
330 if (u == lybctx->subtree_size) {
331 LY_ARRAY_CREATE_RET(lybctx->ctx, lybctx->subtrees, u + LYB_SUBTREE_STEP, LY_EMEM);
332 lybctx->subtree_size = u + LYB_SUBTREE_STEP;
333 }
334
335 LY_ARRAY_INCREMENT(lybctx->subtrees);
336 LYB_LAST_SUBTREE(lybctx).written = 0;
337 LYB_LAST_SUBTREE(lybctx).inner_chunks = 0;
338
339 /* another inner chunk */
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200340 for (u = 0; u < LY_ARRAY_COUNT(lybctx->subtrees) - 1; ++u) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200341 if (lybctx->subtrees[u].inner_chunks == LYB_INCHUNK_MAX) {
342 LOGINT(lybctx->ctx);
Michal Vasko5233e962020-08-14 14:26:20 +0200343 return LY_EINT;
Michal Vasko60ea6352020-06-29 13:39:39 +0200344 }
345 ++lybctx->subtrees[u].inner_chunks;
346 }
347
Michal Vasko5233e962020-08-14 14:26:20 +0200348 LY_CHECK_RET(ly_write_skip(out, LYB_META_BYTES, &LYB_LAST_SUBTREE(lybctx).position));
Michal Vasko60ea6352020-06-29 13:39:39 +0200349
350 return LY_SUCCESS;
351}
352
353/**
354 * @brief Write a number.
355 *
356 * @param[in] num Number to write.
357 * @param[in] bytes Actual accessible bytes of @p num.
358 * @param[in] out Out structure.
359 * @param[in] lybctx LYB context.
360 * @return LY_ERR value.
361 */
362static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200363lyb_write_number(uint64_t num, size_t bytes, struct ly_out *out, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200364{
365 /* correct byte order */
366 num = htole64(num);
367
368 return lyb_write(out, (uint8_t *)&num, bytes, lybctx);
369}
370
371/**
372 * @brief Write a string.
373 *
374 * @param[in] str String to write.
375 * @param[in] str_len Length of @p str.
376 * @param[in] with_length Whether to precede the string with its length.
377 * @param[in] out Out structure.
378 * @param[in] lybctx LYB context.
379 * @return LY_ERR value.
380 */
381static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200382lyb_write_string(const char *str, size_t str_len, uint8_t with_length, struct ly_out *out, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200383{
Michal Vasko60ea6352020-06-29 13:39:39 +0200384 if (!str) {
385 str = "";
Michal Vasko30667352020-08-13 09:06:14 +0200386 LY_CHECK_ERR_RET(str_len, LOGINT(lybctx->ctx), LY_EINT);
Michal Vasko60ea6352020-06-29 13:39:39 +0200387 }
388 if (!str_len) {
389 str_len = strlen(str);
390 }
391
392 if (with_length) {
393 /* print length on 2 bytes */
394 if (str_len > UINT16_MAX) {
395 LOGINT(lybctx->ctx);
396 return LY_EINT;
397 }
398 LY_CHECK_RET(lyb_write_number(str_len, 2, out, lybctx));
399 }
400
Michal Vasko63f3d842020-07-08 10:10:14 +0200401 LY_CHECK_RET(lyb_write(out, (const uint8_t *)str, str_len, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200402
403 return LY_SUCCESS;
404}
405
406/**
407 * @brief Print YANG module info.
408 *
409 * @param[in] out Out structure.
410 * @param[in] mod Module to print.
411 * @param[in] lybctx LYB context.
412 * @return LY_ERR value.
413 */
414static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200415lyb_print_model(struct ly_out *out, const struct lys_module *mod, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200416{
Michal Vasko60ea6352020-06-29 13:39:39 +0200417 uint16_t revision;
418
419 /* model name length and model name */
420 if (mod) {
421 LY_CHECK_RET(lyb_write_string(mod->name, 0, 1, out, lybctx));
422 } else {
423 LY_CHECK_RET(lyb_write_string("", 0, 1, out, lybctx));
424 }
425
426 /* model revision as XXXX XXXX XXXX XXXX (2B) (year is offset from 2000)
427 * YYYY YYYM MMMD DDDD */
428 revision = 0;
429 if (mod && mod->revision) {
Radek Krejci1deb5be2020-08-26 16:43:36 +0200430 int r = atoi(mod->revision);
Michal Vasko60ea6352020-06-29 13:39:39 +0200431 r -= 2000;
432 r <<= 9;
433
434 revision |= r;
435
436 r = atoi(mod->revision + 5);
437 r <<= 5;
438
439 revision |= r;
440
441 r = atoi(mod->revision + 8);
442
443 revision |= r;
444 }
445 LY_CHECK_RET(lyb_write_number(revision, sizeof revision, out, lybctx));
446
447 return LY_SUCCESS;
448}
449
450/**
451 * @brief Print all used YANG modules.
452 *
453 * @param[in] out Out structure.
454 * @param[in] root Data root.
455 * @param[in] lybctx LYB context.
456 * @return LY_ERR value.
457 */
458static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200459lyb_print_data_models(struct ly_out *out, const struct lyd_node *root, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200460{
461 struct ly_set *set;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200462 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +0200463 LY_ERR ret = LY_SUCCESS;
464 struct lys_module *mod;
465 const struct lyd_node *node;
466 uint32_t i;
467
Radek Krejciba03a5a2020-08-27 14:40:41 +0200468 LY_CHECK_RET(ly_set_new(&set));
Michal Vasko60ea6352020-06-29 13:39:39 +0200469
470 /* collect all data node modules */
471 LY_LIST_FOR(root, node) {
472 if (!node->schema) {
473 continue;
474 }
475
476 mod = node->schema->module;
Radek Krejciba03a5a2020-08-27 14:40:41 +0200477 ret = ly_set_add(set, mod, 0, NULL);
478 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200479
480 /* add also their modules deviating or augmenting them */
481 LY_ARRAY_FOR(mod->compiled->deviated_by, u) {
Radek Krejciba03a5a2020-08-27 14:40:41 +0200482 ret = ly_set_add(set, mod->compiled->deviated_by[u], 0, NULL);
483 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200484 }
485 LY_ARRAY_FOR(mod->compiled->augmented_by, u) {
Radek Krejciba03a5a2020-08-27 14:40:41 +0200486 ret = ly_set_add(set, mod->compiled->augmented_by[u], 0, NULL);
487 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200488 }
489 }
490
491 /* now write module count on 2 bytes */
492 LY_CHECK_GOTO(ret = lyb_write_number(set->count, 2, out, lybctx), cleanup);
493
494 /* and all the used models */
495 for (i = 0; i < set->count; ++i) {
496 LY_CHECK_GOTO(ret = lyb_print_model(out, set->objs[i], lybctx), cleanup);
497 }
498
499cleanup:
500 ly_set_free(set, NULL);
501 return ret;
502}
503
504/**
505 * @brief Print LYB magic number.
506 *
507 * @param[in] out Out structure.
Michal Vasko60ea6352020-06-29 13:39:39 +0200508 * @return LY_ERR value.
509 */
510static LY_ERR
Michal Vasko63f3d842020-07-08 10:10:14 +0200511lyb_print_magic_number(struct ly_out *out)
Michal Vasko60ea6352020-06-29 13:39:39 +0200512{
Michal Vasko60ea6352020-06-29 13:39:39 +0200513 uint32_t magic_number;
514
515 /* 'l', 'y', 'b' - 0x6c7962 */
516 ((char *)&magic_number)[0] = 'l';
517 ((char *)&magic_number)[1] = 'y';
518 ((char *)&magic_number)[2] = 'b';
519
Michal Vasko5233e962020-08-14 14:26:20 +0200520 LY_CHECK_RET(ly_write_(out, (char *)&magic_number, 3));
Michal Vasko60ea6352020-06-29 13:39:39 +0200521
522 return LY_SUCCESS;
523}
524
525/**
526 * @brief Print LYB header.
527 *
528 * @param[in] out Out structure.
Michal Vasko60ea6352020-06-29 13:39:39 +0200529 * @return LY_ERR value.
530 */
531static LY_ERR
Michal Vasko63f3d842020-07-08 10:10:14 +0200532lyb_print_header(struct ly_out *out)
Michal Vasko60ea6352020-06-29 13:39:39 +0200533{
Michal Vasko60ea6352020-06-29 13:39:39 +0200534 uint8_t byte = 0;
535
536 /* version, future flags */
537 byte |= LYB_VERSION_NUM;
538
Michal Vasko5233e962020-08-14 14:26:20 +0200539 LY_CHECK_RET(ly_write_(out, (char *)&byte, 1));
Michal Vasko60ea6352020-06-29 13:39:39 +0200540
541 return LY_SUCCESS;
542}
543
544/**
545 * @brief Print opaque prefixes.
546 *
547 * @param[in] out Out structure.
548 * @param[in] prefs Prefixes to print.
549 * @param[in] lybctx LYB context.
550 * @return LY_ERR value.
551 */
552static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200553lyb_print_opaq_prefixes(struct ly_out *out, const struct ly_prefix *prefs, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200554{
555 uint8_t count;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200556 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +0200557
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200558 if (prefs && (LY_ARRAY_COUNT(prefs) > UINT8_MAX)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200559 LOGERR(lybctx->ctx, LY_EINT, "Maximum supported number of prefixes is %u.", UINT8_MAX);
560 return LY_EINT;
561 }
562
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200563 count = prefs ? LY_ARRAY_COUNT(prefs) : 0;
Michal Vasko60ea6352020-06-29 13:39:39 +0200564
565 /* write number of prefixes on 1 byte */
566 LY_CHECK_RET(lyb_write(out, &count, 1, lybctx));
567
568 /* write all the prefixes */
569 LY_ARRAY_FOR(prefs, u) {
570 /* prefix */
Radek Krejci1798aae2020-07-14 13:26:06 +0200571 LY_CHECK_RET(lyb_write_string(prefs[u].id, 0, 1, out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200572
573 /* namespace */
Radek Krejci1798aae2020-07-14 13:26:06 +0200574 LY_CHECK_RET(lyb_write_string(prefs[u].module_name, 0, 1, out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200575 }
576
577 return LY_SUCCESS;
578}
579
580/**
581 * @brief Print opaque node.
582 *
583 * @param[in] opaq Node to print.
584 * @param[in] out Out structure.
585 * @param[in] lybctx LYB context.
586 * @return LY_ERR value.
587 */
588static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200589lyb_print_opaq(struct lyd_node_opaq *opaq, struct ly_out *out, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200590{
591 /* prefix */
Radek Krejci1798aae2020-07-14 13:26:06 +0200592 LY_CHECK_RET(lyb_write_string(opaq->prefix.id, 0, 1, out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200593
Radek Krejci1798aae2020-07-14 13:26:06 +0200594 /* module reference */
595 LY_CHECK_RET(lyb_write_string(opaq->prefix.module_name, 0, 1, out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200596
597 /* name */
598 LY_CHECK_RET(lyb_write_string(opaq->name, 0, 1, out, lybctx));
599
600 /* value prefixes */
601 LY_CHECK_RET(lyb_print_opaq_prefixes(out, opaq->val_prefs, lybctx));
602
603 /* format */
604 LY_CHECK_RET(lyb_write_number(opaq->format, 1, out, lybctx));
605
606 /* value */
607 LY_CHECK_RET(lyb_write_string(opaq->value, 0, 0, out, lybctx));
608
609 return LY_SUCCESS;
610}
611
612/**
613 * @brief Print anydata node.
614 *
615 * @param[in] anydata Node to print.
616 * @param[in] out Out structure.
617 * @param[in] lybctx LYB context.
618 * @return LY_ERR value.
619 */
620static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200621lyb_print_anydata(struct lyd_node_any *anydata, struct ly_out *out, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200622{
623 LY_ERR ret = LY_SUCCESS;
624 LYD_ANYDATA_VALUETYPE value_type;
625 int len;
626 char *buf = NULL;
627 const char *str;
628 struct ly_out *out2 = NULL;
629
630 if (anydata->value_type == LYD_ANYDATA_DATATREE) {
631 /* will be printed as a nested LYB data tree */
632 value_type = LYD_ANYDATA_LYB;
633 } else {
634 value_type = anydata->value_type;
635 }
636
637 /* first byte is type */
638 LY_CHECK_GOTO(ret = lyb_write(out, (uint8_t *)&value_type, sizeof value_type, lybctx), cleanup);
639
640 if (anydata->value_type == LYD_ANYDATA_DATATREE) {
641 /* print LYB data tree to memory */
642 LY_CHECK_GOTO(ret = ly_out_new_memory(&buf, 0, &out2), cleanup);
Radek Krejci7931b192020-06-25 17:05:03 +0200643 LY_CHECK_GOTO(ret = lyb_print_data(out2, anydata->value.tree, LYD_PRINT_WITHSIBLINGS), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200644
645 len = lyd_lyb_data_length(buf);
646 assert(len != -1);
647 str = buf;
648 } else if (anydata->value_type == LYD_ANYDATA_LYB) {
649 len = lyd_lyb_data_length(anydata->value.mem);
650 assert(len != -1);
651 str = anydata->value.mem;
652 } else {
653 len = strlen(anydata->value.str);
654 str = anydata->value.str;
655 }
656
657 /* followed by the content */
658 LY_CHECK_GOTO(ret = lyb_write_string(str, (size_t)len, 0, out, lybctx), cleanup);
659
660cleanup:
661 ly_out_free(out2, NULL, 1);
662 return ret;
663}
664
665/**
666 * @brief Print term node.
667 *
668 * @param[in] term Node to print.
669 * @param[in] out Out structure.
670 * @param[in] lybctx LYB context.
671 * @return LY_ERR value.
672 */
673static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200674lyb_print_term(struct lyd_node_term *term, struct ly_out *out, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200675{
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200676 /* print the value */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200677 return lyb_write_string(LYD_CANON_VALUE(term), 0, 0, out, lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200678}
679
680/**
681 * @brief Print YANG node metadata.
682 *
683 * @param[in] out Out structure.
684 * @param[in] node Data node whose metadata to print.
685 * @param[in] lybctx LYB context.
686 * @return LY_ERR value.
687 */
688static LY_ERR
689lyb_print_metadata(struct ly_out *out, const struct lyd_node *node, struct lyd_lyb_ctx *lybctx)
690{
Michal Vasko60ea6352020-06-29 13:39:39 +0200691 uint8_t count = 0;
692 const struct lys_module *wd_mod = NULL;
693 struct lyd_meta *iter;
Michal Vasko60ea6352020-06-29 13:39:39 +0200694
695 /* with-defaults */
696 if (node->schema->nodetype & LYD_NODE_TERM) {
Radek Krejci7931b192020-06-25 17:05:03 +0200697 if (((node->flags & LYD_DEFAULT) && (lybctx->print_options & (LYD_PRINT_WD_ALL_TAG | LYD_PRINT_WD_IMPL_TAG))) ||
698 ((lybctx->print_options & LYD_PRINT_WD_ALL_TAG) && ly_is_default(node))) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200699 /* we have implicit OR explicit default node, print attribute only if context include with-defaults schema */
700 wd_mod = ly_ctx_get_module_latest(node->schema->module->ctx, "ietf-netconf-with-defaults");
701 }
702 }
703
704 /* count metadata */
705 if (wd_mod) {
706 ++count;
707 }
708 for (iter = node->meta; iter; iter = iter->next) {
709 if (count == UINT8_MAX) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200710 LOGERR(lybctx->lybctx->ctx, LY_EINT, "Maximum supported number of data node metadata is %u.", UINT8_MAX);
Michal Vasko60ea6352020-06-29 13:39:39 +0200711 return LY_EINT;
712 }
713 ++count;
714 }
715
716 /* write number of metadata on 1 byte */
Radek Krejci1798aae2020-07-14 13:26:06 +0200717 LY_CHECK_RET(lyb_write(out, &count, 1, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200718
719 if (wd_mod) {
720 /* write the "default" metadata */
Radek Krejci1798aae2020-07-14 13:26:06 +0200721 LY_CHECK_RET(lyb_write_start_subtree(out, lybctx->lybctx));
722 LY_CHECK_RET(lyb_print_model(out, wd_mod, lybctx->lybctx));
723 LY_CHECK_RET(lyb_write_string("default", 0, 1, out, lybctx->lybctx));
724 LY_CHECK_RET(lyb_write_string("true", 0, 0, out, lybctx->lybctx));
725 LY_CHECK_RET(lyb_write_stop_subtree(out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200726 }
727
728 /* write all the node metadata */
729 LY_LIST_FOR(node->meta, iter) {
730 /* each metadata is a subtree */
Radek Krejci1798aae2020-07-14 13:26:06 +0200731 LY_CHECK_RET(lyb_write_start_subtree(out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200732
733 /* model */
Radek Krejci1798aae2020-07-14 13:26:06 +0200734 LY_CHECK_RET(lyb_print_model(out, iter->annotation->module, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200735
736 /* annotation name with length */
Radek Krejci1798aae2020-07-14 13:26:06 +0200737 LY_CHECK_RET(lyb_write_string(iter->name, 0, 1, out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200738
Michal Vasko60ea6352020-06-29 13:39:39 +0200739 /* metadata value */
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200740 LY_CHECK_RET(lyb_write_string(iter->value.canonical, 0, 0, out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200741
742 /* finish metadata subtree */
Radek Krejci1798aae2020-07-14 13:26:06 +0200743 LY_CHECK_RET(lyb_write_stop_subtree(out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200744 }
745
746 return LY_SUCCESS;
747}
748
749/**
750 * @brief Print opaque node attributes.
751 *
752 * @param[in] out Out structure.
753 * @param[in] node Opaque node whose attributes to print.
754 * @param[in] lybctx LYB context.
755 * @return LY_ERR value.
756 */
757static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200758lyb_print_attributes(struct ly_out *out, const struct lyd_node_opaq *node, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200759{
760 uint8_t count = 0;
Radek Krejci5536d282020-08-04 23:27:44 +0200761 struct lyd_attr *iter;
Michal Vasko60ea6352020-06-29 13:39:39 +0200762
763 for (iter = node->attr; iter; iter = iter->next) {
764 if (count == UINT8_MAX) {
765 LOGERR(lybctx->ctx, LY_EINT, "Maximum supported number of data node attributes is %u.", UINT8_MAX);
766 return LY_EINT;
767 }
768 ++count;
769 }
770
771 /* write number of attributes on 1 byte */
772 LY_CHECK_RET(lyb_write(out, &count, 1, lybctx));
773
774 /* write all the attributes */
775 LY_LIST_FOR(node->attr, iter) {
776 /* each attribute is a subtree */
777 LY_CHECK_RET(lyb_write_start_subtree(out, lybctx));
778
779 /* prefix */
Radek Krejci1798aae2020-07-14 13:26:06 +0200780 LY_CHECK_RET(lyb_write_string(iter->prefix.id, 0, 1, out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200781
782 /* namespace */
Radek Krejci1798aae2020-07-14 13:26:06 +0200783 LY_CHECK_RET(lyb_write_string(iter->prefix.module_name, 0, 1, out, lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200784
785 /* name */
786 LY_CHECK_RET(lyb_write_string(iter->name, 0, 1, out, lybctx));
787
788 /* value prefixes */
789 LY_CHECK_RET(lyb_print_opaq_prefixes(out, iter->val_prefs, lybctx));
790
791 /* format */
792 LY_CHECK_RET(lyb_write_number(iter->format, 1, out, lybctx));
793
794 /* value */
795 LY_CHECK_RET(lyb_write_string(iter->value, 0, 0, out, lybctx));
796
797 /* finish attribute subtree */
798 LY_CHECK_RET(lyb_write_stop_subtree(out, lybctx));
799 }
800
801 return LY_SUCCESS;
802}
803
804/**
805 * @brief Print schema node hash.
806 *
807 * @param[in] out Out structure.
808 * @param[in] schema Schema node whose hash to print.
809 * @param[in,out] sibling_ht Cached hash table for these siblings, created if NULL.
810 * @param[in] lybctx LYB context.
811 * @return LY_ERR value.
812 */
813static LY_ERR
Radek Krejci1798aae2020-07-14 13:26:06 +0200814lyb_print_schema_hash(struct ly_out *out, struct lysc_node *schema, struct hash_table **sibling_ht, struct lylyb_ctx *lybctx)
Michal Vasko60ea6352020-06-29 13:39:39 +0200815{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200816 LY_ARRAY_COUNT_TYPE u;
Michal Vasko60ea6352020-06-29 13:39:39 +0200817 uint32_t i;
818 LYB_HASH hash;
819 struct lyd_lyb_sib_ht *sib_ht;
820 struct lysc_node *first_sibling;
821
822 if (!schema) {
823 /* opaque node, write empty hash */
824 hash = 0;
825 LY_CHECK_RET(lyb_write(out, &hash, sizeof hash, lybctx));
826 return LY_SUCCESS;
827 }
828
829 /* create whole sibling HT if not already created and saved */
830 if (!*sibling_ht) {
831 /* get first schema data sibling (or input/output) */
832 first_sibling = (struct lysc_node *)lys_getnext(NULL, lysc_data_parent(schema), schema->module->compiled, 0);
833 LY_ARRAY_FOR(lybctx->sib_hts, u) {
834 if (lybctx->sib_hts[u].first_sibling == first_sibling) {
835 /* we have already created a hash table for these siblings */
836 *sibling_ht = lybctx->sib_hts[u].ht;
837 break;
838 }
839 }
840
841 if (!*sibling_ht) {
842 /* we must create sibling hash table */
843 LY_CHECK_RET(lyb_hash_siblings(first_sibling, sibling_ht));
844
845 /* and save it */
846 LY_ARRAY_NEW_RET(lybctx->ctx, lybctx->sib_hts, sib_ht, LY_EMEM);
847
848 sib_ht->first_sibling = first_sibling;
849 sib_ht->ht = *sibling_ht;
850 }
851 }
852
853 /* get our hash */
854 LY_CHECK_RET(lyb_hash_find(*sibling_ht, schema, &hash));
855
856 /* write the hash */
857 LY_CHECK_RET(lyb_write(out, &hash, sizeof hash, lybctx));
858
859 if (hash & LYB_HASH_COLLISION_ID) {
860 /* no collision for this hash, we are done */
861 return LY_SUCCESS;
862 }
863
864 /* written hash was a collision, write also all the preceding hashes */
Radek Krejci1e008d22020-08-17 11:37:37 +0200865 for (i = 0; !(hash & (LYB_HASH_COLLISION_ID >> i)); ++i) {}
Michal Vasko60ea6352020-06-29 13:39:39 +0200866
Michal Vaskod989ba02020-08-24 10:59:24 +0200867 for ( ; i; --i) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200868 hash = lyb_hash(schema, i - 1);
869 if (!hash) {
870 return LY_EINT;
871 }
872 assert(hash & (LYB_HASH_COLLISION_ID >> (i - 1)));
873
874 LY_CHECK_RET(lyb_write(out, &hash, sizeof hash, lybctx));
875 }
876
877 return LY_SUCCESS;
878}
879
880/**
881 * @brief Print data subtree.
882 *
883 * @param[in] out Out structure.
884 * @param[in] node Root node of the subtree to print.
885 * @param[in,out] sibling_ht Cached hash table for these data siblings, created if NULL.
886 * @param[in] lybctx LYB context.
887 * @return LY_ERR value.
888 */
889static LY_ERR
890lyb_print_subtree(struct ly_out *out, const struct lyd_node *node, struct hash_table **sibling_ht, struct lyd_lyb_ctx *lybctx)
891{
892 struct hash_table *child_ht = NULL;
893
894 /* register a new subtree */
Radek Krejci1798aae2020-07-14 13:26:06 +0200895 LY_CHECK_RET(lyb_write_start_subtree(out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200896
897 /* write model info first */
898 if (!node->schema && !((struct lyd_node_opaq *)node)->parent) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200899 LY_CHECK_RET(lyb_print_model(out, NULL, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200900 } else if (node->schema && !lysc_data_parent(node->schema)) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200901 LY_CHECK_RET(lyb_print_model(out, node->schema->module, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200902 }
903
904 /* write schema hash */
Radek Krejci1798aae2020-07-14 13:26:06 +0200905 LY_CHECK_RET(lyb_print_schema_hash(out, (struct lysc_node *)node->schema, sibling_ht, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200906
907 /* write any metadata/attributes */
908 if (node->schema) {
909 LY_CHECK_RET(lyb_print_metadata(out, node, lybctx));
910 } else {
Radek Krejci1798aae2020-07-14 13:26:06 +0200911 LY_CHECK_RET(lyb_print_attributes(out, (struct lyd_node_opaq *)node, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200912 }
913
914 /* write node content */
915 if (!node->schema) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200916 LY_CHECK_RET(lyb_print_opaq((struct lyd_node_opaq *)node, out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200917 } else if (node->schema->nodetype & LYD_NODE_INNER) {
918 /* nothing to write */
919 } else if (node->schema->nodetype & LYD_NODE_TERM) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200920 LY_CHECK_RET(lyb_print_term((struct lyd_node_term *)node, out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200921 } else if (node->schema->nodetype & LYD_NODE_ANY) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200922 LY_CHECK_RET(lyb_print_anydata((struct lyd_node_any *)node, out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200923 } else {
Radek Krejci1798aae2020-07-14 13:26:06 +0200924 LOGINT_RET(lybctx->lybctx->ctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200925 }
926
927 /* recursively write all the descendants */
928 LY_LIST_FOR(lyd_node_children(node, 0), node) {
929 LY_CHECK_RET(lyb_print_subtree(out, node, &child_ht, lybctx));
930 }
931
932 /* finish this subtree */
Radek Krejci1798aae2020-07-14 13:26:06 +0200933 LY_CHECK_RET(lyb_write_stop_subtree(out, lybctx->lybctx));
Michal Vasko60ea6352020-06-29 13:39:39 +0200934
935 return LY_SUCCESS;
936}
937
938LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200939lyb_print_data(struct ly_out *out, const struct lyd_node *root, uint32_t options)
Michal Vasko60ea6352020-06-29 13:39:39 +0200940{
941 LY_ERR ret = LY_SUCCESS;
942 uint8_t zero = 0;
Michal Vasko60ea6352020-06-29 13:39:39 +0200943 struct hash_table *top_sibling_ht = NULL;
944 const struct lys_module *prev_mod = NULL;
Radek Krejci1798aae2020-07-14 13:26:06 +0200945 struct lyd_lyb_ctx *lybctx;
Michal Vaskob7be7a82020-08-20 09:09:04 +0200946 const struct ly_ctx *ctx = root ? LYD_CTX(root) : NULL;
Michal Vasko60ea6352020-06-29 13:39:39 +0200947
Radek Krejci1798aae2020-07-14 13:26:06 +0200948 lybctx = calloc(1, sizeof *lybctx);
949 LY_CHECK_ERR_RET(!lybctx, LOGMEM(ctx), LY_EMEM);
950 lybctx->lybctx = calloc(1, sizeof *lybctx->lybctx);
951 LY_CHECK_ERR_RET(!lybctx, LOGMEM(ctx), LY_EMEM);
952
953 lybctx->print_options = options;
Michal Vasko60ea6352020-06-29 13:39:39 +0200954 if (root) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200955 lybctx->lybctx->ctx = ctx;
Michal Vasko60ea6352020-06-29 13:39:39 +0200956
957 if (root->schema && lysc_data_parent(root->schema)) {
Radek Krejci1798aae2020-07-14 13:26:06 +0200958 LOGERR(lybctx->lybctx->ctx, LY_EINVAL, "LYB printer supports only printing top-level nodes.");
Michal Vasko9acaf492020-08-13 09:05:58 +0200959 ret = LY_EINVAL;
960 goto cleanup;
Michal Vasko60ea6352020-06-29 13:39:39 +0200961 }
962 }
963
964 /* LYB magic number */
Michal Vasko63f3d842020-07-08 10:10:14 +0200965 LY_CHECK_GOTO(ret = lyb_print_magic_number(out), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200966
967 /* LYB header */
Michal Vasko63f3d842020-07-08 10:10:14 +0200968 LY_CHECK_GOTO(ret = lyb_print_header(out), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200969
970 /* all used models */
Radek Krejci1798aae2020-07-14 13:26:06 +0200971 LY_CHECK_GOTO(ret = lyb_print_data_models(out, root, lybctx->lybctx), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200972
973 LY_LIST_FOR(root, root) {
974 /* do not reuse sibling hash tables from different modules */
975 if (!root->schema || (root->schema->module != prev_mod)) {
976 top_sibling_ht = NULL;
977 prev_mod = root->schema ? root->schema->module : NULL;
978 }
979
Radek Krejci1798aae2020-07-14 13:26:06 +0200980 LY_CHECK_GOTO(ret = lyb_print_subtree(out, root, &top_sibling_ht, lybctx), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200981
Radek Krejci7931b192020-06-25 17:05:03 +0200982 if (!(options & LYD_PRINT_WITHSIBLINGS)) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200983 break;
984 }
985 }
986
987 /* ending zero byte */
Radek Krejci1798aae2020-07-14 13:26:06 +0200988 LY_CHECK_GOTO(ret = lyb_write(out, &zero, sizeof zero, lybctx->lybctx), cleanup);
Michal Vasko60ea6352020-06-29 13:39:39 +0200989
990cleanup:
Radek Krejci1798aae2020-07-14 13:26:06 +0200991 lyd_lyb_ctx_free((struct lyd_ctx *)lybctx);
Michal Vasko60ea6352020-06-29 13:39:39 +0200992 return ret;
993}