Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 1 | /** |
| 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 Krejci | ad97c5f | 2020-06-30 09:19:28 +0200 | [diff] [blame] | 22 | #include <sys/types.h> |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 23 | |
| 24 | #include "common.h" |
| 25 | #include "compat.h" |
Radek Krejci | ad97c5f | 2020-06-30 09:19:28 +0200 | [diff] [blame] | 26 | #include "context.h" |
| 27 | #include "hash_table.h" |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 28 | #include "log.h" |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 29 | #include "parser_data.h" |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 30 | #include "printer.h" |
Radek Krejci | ad97c5f | 2020-06-30 09:19:28 +0200 | [diff] [blame] | 31 | #include "printer_data.h" |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 32 | #include "printer_internal.h" |
Radek Krejci | ad97c5f | 2020-06-30 09:19:28 +0200 | [diff] [blame] | 33 | #include "set.h" |
| 34 | #include "tree.h" |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 35 | #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 Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 42 | static uint8_t |
| 43 | lyb_hash_equal_cb(void *UNUSED(val1_p), void *UNUSED(val2_p), uint8_t UNUSED(mod), void *UNUSED(cb_data)) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 44 | { |
| 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 Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 52 | static uint8_t |
| 53 | lyb_ptr_equal_cb(void *val1_p, void *val2_p, uint8_t UNUSED(mod), void *UNUSED(cb_data)) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 54 | { |
| 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 | */ |
| 74 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 75 | lyb_hash_sequence_check(struct hash_table *ht, struct lysc_node *sibling, LYB_HASH ht_col_id, LYB_HASH compare_col_id) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 76 | { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 77 | 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 Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 87 | int64_t j; |
| 88 | for (j = (int64_t)compare_col_id; j > -1; --j) { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 89 | 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 | */ |
| 114 | static LY_ERR |
| 115 | lyb_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 Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 120 | LYB_HASH i; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 121 | |
| 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 Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 134 | 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 Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 137 | 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 | */ |
| 190 | static LY_ERR |
| 191 | lyb_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 | */ |
| 225 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 226 | lyb_write(struct ly_out *out, const uint8_t *buf, size_t count, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 227 | { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 228 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 229 | struct lyd_lyb_subtree *full, *iter; |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 230 | size_t to_write; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 231 | 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 Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 252 | LY_CHECK_RET(ly_write_(out, (char *)buf, to_write)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 253 | |
| 254 | LY_ARRAY_FOR(lybctx->subtrees, u) { |
| 255 | /* increase all written counters */ |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 256 | lybctx->subtrees[u].written += to_write; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 257 | assert(lybctx->subtrees[u].written <= LYB_SIZE_MAX); |
| 258 | } |
| 259 | /* decrease count/buf */ |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 260 | count -= to_write; |
| 261 | buf += to_write; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 262 | } |
| 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 Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 268 | LY_CHECK_RET(ly_write_skipped(out, full->position, (char *)meta_buf, LYB_META_BYTES)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 269 | |
| 270 | /* zero written and inner chunks */ |
| 271 | full->written = 0; |
| 272 | full->inner_chunks = 0; |
| 273 | |
| 274 | /* skip space for another chunk size */ |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 275 | LY_CHECK_RET(ly_write_skip(out, LYB_META_BYTES, &full->position)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 276 | |
| 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 | */ |
| 298 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 299 | lyb_write_stop_subtree(struct ly_out *out, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 300 | { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 301 | 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 Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 306 | LY_CHECK_RET(ly_write_skipped(out, LYB_LAST_SUBTREE(lybctx).position, (char *)&meta_buf, LYB_META_BYTES)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 307 | |
| 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 | */ |
| 319 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 320 | lyb_write_start_subtree(struct ly_out *out, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 321 | { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 322 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 323 | |
| 324 | if (!lybctx->subtrees) { |
Radek Krejci | f6d14cb | 2020-07-02 16:11:45 +0200 | [diff] [blame] | 325 | assert(lybctx->subtree_size == 0); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 326 | u = 0; |
| 327 | } else { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 328 | u = LY_ARRAY_COUNT(lybctx->subtrees); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 329 | } |
| 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 Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 340 | for (u = 0; u < LY_ARRAY_COUNT(lybctx->subtrees) - 1; ++u) { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 341 | if (lybctx->subtrees[u].inner_chunks == LYB_INCHUNK_MAX) { |
| 342 | LOGINT(lybctx->ctx); |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 343 | return LY_EINT; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 344 | } |
| 345 | ++lybctx->subtrees[u].inner_chunks; |
| 346 | } |
| 347 | |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 348 | LY_CHECK_RET(ly_write_skip(out, LYB_META_BYTES, &LYB_LAST_SUBTREE(lybctx).position)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 349 | |
| 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 | */ |
| 362 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 363 | lyb_write_number(uint64_t num, size_t bytes, struct ly_out *out, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 364 | { |
| 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 | */ |
| 381 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 382 | lyb_write_string(const char *str, size_t str_len, uint8_t with_length, struct ly_out *out, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 383 | { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 384 | if (!str) { |
| 385 | str = ""; |
Michal Vasko | 3066735 | 2020-08-13 09:06:14 +0200 | [diff] [blame] | 386 | LY_CHECK_ERR_RET(str_len, LOGINT(lybctx->ctx), LY_EINT); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 387 | } |
| 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 Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 401 | LY_CHECK_RET(lyb_write(out, (const uint8_t *)str, str_len, lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 402 | |
| 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 | */ |
| 414 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 415 | lyb_print_model(struct ly_out *out, const struct lys_module *mod, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 416 | { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 417 | 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 Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 430 | int r = atoi(mod->revision); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 431 | 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 | */ |
| 458 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 459 | lyb_print_data_models(struct ly_out *out, const struct lyd_node *root, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 460 | { |
| 461 | struct ly_set *set; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 462 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 463 | LY_ERR ret = LY_SUCCESS; |
| 464 | struct lys_module *mod; |
| 465 | const struct lyd_node *node; |
| 466 | uint32_t i; |
| 467 | |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 468 | LY_CHECK_RET(ly_set_new(&set)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 469 | |
| 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 Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 477 | ret = ly_set_add(set, mod, 0, NULL); |
| 478 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 479 | |
| 480 | /* add also their modules deviating or augmenting them */ |
| 481 | LY_ARRAY_FOR(mod->compiled->deviated_by, u) { |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 482 | ret = ly_set_add(set, mod->compiled->deviated_by[u], 0, NULL); |
| 483 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 484 | } |
| 485 | LY_ARRAY_FOR(mod->compiled->augmented_by, u) { |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 486 | ret = ly_set_add(set, mod->compiled->augmented_by[u], 0, NULL); |
| 487 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 488 | } |
| 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 | |
| 499 | cleanup: |
| 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 Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 508 | * @return LY_ERR value. |
| 509 | */ |
| 510 | static LY_ERR |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 511 | lyb_print_magic_number(struct ly_out *out) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 512 | { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 513 | 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 Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 520 | LY_CHECK_RET(ly_write_(out, (char *)&magic_number, 3)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 521 | |
| 522 | return LY_SUCCESS; |
| 523 | } |
| 524 | |
| 525 | /** |
| 526 | * @brief Print LYB header. |
| 527 | * |
| 528 | * @param[in] out Out structure. |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 529 | * @return LY_ERR value. |
| 530 | */ |
| 531 | static LY_ERR |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 532 | lyb_print_header(struct ly_out *out) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 533 | { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 534 | uint8_t byte = 0; |
| 535 | |
| 536 | /* version, future flags */ |
| 537 | byte |= LYB_VERSION_NUM; |
| 538 | |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 539 | LY_CHECK_RET(ly_write_(out, (char *)&byte, 1)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 540 | |
| 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 | */ |
| 552 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 553 | lyb_print_opaq_prefixes(struct ly_out *out, const struct ly_prefix *prefs, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 554 | { |
| 555 | uint8_t count; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 556 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 557 | |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 558 | if (prefs && (LY_ARRAY_COUNT(prefs) > UINT8_MAX)) { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 559 | LOGERR(lybctx->ctx, LY_EINT, "Maximum supported number of prefixes is %u.", UINT8_MAX); |
| 560 | return LY_EINT; |
| 561 | } |
| 562 | |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 563 | count = prefs ? LY_ARRAY_COUNT(prefs) : 0; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 564 | |
| 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 Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 571 | LY_CHECK_RET(lyb_write_string(prefs[u].id, 0, 1, out, lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 572 | |
| 573 | /* namespace */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 574 | LY_CHECK_RET(lyb_write_string(prefs[u].module_name, 0, 1, out, lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 575 | } |
| 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 | */ |
| 588 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 589 | lyb_print_opaq(struct lyd_node_opaq *opaq, struct ly_out *out, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 590 | { |
| 591 | /* prefix */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 592 | LY_CHECK_RET(lyb_write_string(opaq->prefix.id, 0, 1, out, lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 593 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 594 | /* module reference */ |
| 595 | LY_CHECK_RET(lyb_write_string(opaq->prefix.module_name, 0, 1, out, lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 596 | |
| 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 | */ |
| 620 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 621 | lyb_print_anydata(struct lyd_node_any *anydata, struct ly_out *out, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 622 | { |
| 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 Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 643 | LY_CHECK_GOTO(ret = lyb_print_data(out2, anydata->value.tree, LYD_PRINT_WITHSIBLINGS), cleanup); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 644 | |
| 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 | |
| 660 | cleanup: |
| 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 | */ |
| 673 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 674 | lyb_print_term(struct lyd_node_term *term, struct ly_out *out, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 675 | { |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 676 | /* print the value */ |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 677 | return lyb_write_string(LYD_CANON_VALUE(term), 0, 0, out, lybctx); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 678 | } |
| 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 | */ |
| 688 | static LY_ERR |
| 689 | lyb_print_metadata(struct ly_out *out, const struct lyd_node *node, struct lyd_lyb_ctx *lybctx) |
| 690 | { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 691 | uint8_t count = 0; |
| 692 | const struct lys_module *wd_mod = NULL; |
| 693 | struct lyd_meta *iter; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 694 | |
| 695 | /* with-defaults */ |
| 696 | if (node->schema->nodetype & LYD_NODE_TERM) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 697 | 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 Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 699 | /* 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 Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 710 | LOGERR(lybctx->lybctx->ctx, LY_EINT, "Maximum supported number of data node metadata is %u.", UINT8_MAX); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 711 | return LY_EINT; |
| 712 | } |
| 713 | ++count; |
| 714 | } |
| 715 | |
| 716 | /* write number of metadata on 1 byte */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 717 | LY_CHECK_RET(lyb_write(out, &count, 1, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 718 | |
| 719 | if (wd_mod) { |
| 720 | /* write the "default" metadata */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 721 | 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 Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 726 | } |
| 727 | |
| 728 | /* write all the node metadata */ |
| 729 | LY_LIST_FOR(node->meta, iter) { |
| 730 | /* each metadata is a subtree */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 731 | LY_CHECK_RET(lyb_write_start_subtree(out, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 732 | |
| 733 | /* model */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 734 | LY_CHECK_RET(lyb_print_model(out, iter->annotation->module, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 735 | |
| 736 | /* annotation name with length */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 737 | LY_CHECK_RET(lyb_write_string(iter->name, 0, 1, out, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 738 | |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 739 | /* metadata value */ |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 740 | LY_CHECK_RET(lyb_write_string(iter->value.canonical, 0, 0, out, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 741 | |
| 742 | /* finish metadata subtree */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 743 | LY_CHECK_RET(lyb_write_stop_subtree(out, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 744 | } |
| 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 | */ |
| 757 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 758 | lyb_print_attributes(struct ly_out *out, const struct lyd_node_opaq *node, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 759 | { |
| 760 | uint8_t count = 0; |
Radek Krejci | 5536d28 | 2020-08-04 23:27:44 +0200 | [diff] [blame] | 761 | struct lyd_attr *iter; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 762 | |
| 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 Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 780 | LY_CHECK_RET(lyb_write_string(iter->prefix.id, 0, 1, out, lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 781 | |
| 782 | /* namespace */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 783 | LY_CHECK_RET(lyb_write_string(iter->prefix.module_name, 0, 1, out, lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 784 | |
| 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 | */ |
| 813 | static LY_ERR |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 814 | lyb_print_schema_hash(struct ly_out *out, struct lysc_node *schema, struct hash_table **sibling_ht, struct lylyb_ctx *lybctx) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 815 | { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 816 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 817 | 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 Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 865 | for (i = 0; !(hash & (LYB_HASH_COLLISION_ID >> i)); ++i) {} |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 866 | |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 867 | for ( ; i; --i) { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 868 | 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 | */ |
| 889 | static LY_ERR |
| 890 | lyb_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 Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 895 | LY_CHECK_RET(lyb_write_start_subtree(out, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 896 | |
| 897 | /* write model info first */ |
| 898 | if (!node->schema && !((struct lyd_node_opaq *)node)->parent) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 899 | LY_CHECK_RET(lyb_print_model(out, NULL, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 900 | } else if (node->schema && !lysc_data_parent(node->schema)) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 901 | LY_CHECK_RET(lyb_print_model(out, node->schema->module, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 902 | } |
| 903 | |
| 904 | /* write schema hash */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 905 | LY_CHECK_RET(lyb_print_schema_hash(out, (struct lysc_node *)node->schema, sibling_ht, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 906 | |
| 907 | /* write any metadata/attributes */ |
| 908 | if (node->schema) { |
| 909 | LY_CHECK_RET(lyb_print_metadata(out, node, lybctx)); |
| 910 | } else { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 911 | LY_CHECK_RET(lyb_print_attributes(out, (struct lyd_node_opaq *)node, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | /* write node content */ |
| 915 | if (!node->schema) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 916 | LY_CHECK_RET(lyb_print_opaq((struct lyd_node_opaq *)node, out, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 917 | } else if (node->schema->nodetype & LYD_NODE_INNER) { |
| 918 | /* nothing to write */ |
| 919 | } else if (node->schema->nodetype & LYD_NODE_TERM) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 920 | LY_CHECK_RET(lyb_print_term((struct lyd_node_term *)node, out, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 921 | } else if (node->schema->nodetype & LYD_NODE_ANY) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 922 | LY_CHECK_RET(lyb_print_anydata((struct lyd_node_any *)node, out, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 923 | } else { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 924 | LOGINT_RET(lybctx->lybctx->ctx); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 925 | } |
| 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 Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 933 | LY_CHECK_RET(lyb_write_stop_subtree(out, lybctx->lybctx)); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 934 | |
| 935 | return LY_SUCCESS; |
| 936 | } |
| 937 | |
| 938 | LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 939 | lyb_print_data(struct ly_out *out, const struct lyd_node *root, uint32_t options) |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 940 | { |
| 941 | LY_ERR ret = LY_SUCCESS; |
| 942 | uint8_t zero = 0; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 943 | struct hash_table *top_sibling_ht = NULL; |
| 944 | const struct lys_module *prev_mod = NULL; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 945 | struct lyd_lyb_ctx *lybctx; |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 946 | const struct ly_ctx *ctx = root ? LYD_CTX(root) : NULL; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 947 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 948 | 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 Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 954 | if (root) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 955 | lybctx->lybctx->ctx = ctx; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 956 | |
| 957 | if (root->schema && lysc_data_parent(root->schema)) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 958 | LOGERR(lybctx->lybctx->ctx, LY_EINVAL, "LYB printer supports only printing top-level nodes."); |
Michal Vasko | 9acaf49 | 2020-08-13 09:05:58 +0200 | [diff] [blame] | 959 | ret = LY_EINVAL; |
| 960 | goto cleanup; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 961 | } |
| 962 | } |
| 963 | |
| 964 | /* LYB magic number */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 965 | LY_CHECK_GOTO(ret = lyb_print_magic_number(out), cleanup); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 966 | |
| 967 | /* LYB header */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 968 | LY_CHECK_GOTO(ret = lyb_print_header(out), cleanup); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 969 | |
| 970 | /* all used models */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 971 | LY_CHECK_GOTO(ret = lyb_print_data_models(out, root, lybctx->lybctx), cleanup); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 972 | |
| 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 Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 980 | LY_CHECK_GOTO(ret = lyb_print_subtree(out, root, &top_sibling_ht, lybctx), cleanup); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 981 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 982 | if (!(options & LYD_PRINT_WITHSIBLINGS)) { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 983 | break; |
| 984 | } |
| 985 | } |
| 986 | |
| 987 | /* ending zero byte */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 988 | LY_CHECK_GOTO(ret = lyb_write(out, &zero, sizeof zero, lybctx->lybctx), cleanup); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 989 | |
| 990 | cleanup: |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 991 | lyd_lyb_ctx_free((struct lyd_ctx *)lybctx); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 992 | return ret; |
| 993 | } |