Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file lyb.h |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @brief Header for LYB format printer & parser |
| 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 | #ifndef LY_LYB_H_ |
| 16 | #define LY_LYB_H_ |
| 17 | |
| 18 | #include <stddef.h> |
| 19 | #include <stdint.h> |
| 20 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 21 | #include "parser_internal.h" |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 22 | |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 23 | struct ly_ctx; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 24 | struct lysc_node; |
| 25 | |
aPiecek | 3cd6abe | 2021-09-30 13:31:54 +0200 | [diff] [blame] | 26 | /* |
| 27 | * LYB format |
| 28 | * |
| 29 | * Unlike XML or JSON, it is binary format so most data are represented in similar way but in binary. |
| 30 | * Some notable differences: |
| 31 | * |
| 32 | * - schema nodes are identified based on their hash instead of their string name. In case of collisions |
| 33 | * an array of hashes is created with each next hash one bit shorter until a unique sequence of all these |
| 34 | * hashes is found and then all of them are stored. |
| 35 | * |
| 36 | * - tree structure is represented as individual strictly bounded "siblings". Each "siblings" begins |
| 37 | * with its metadata, which consist of 1) the whole "sibling" length in bytes and 2) number |
| 38 | * of included metadata chunks of nested "siblings". |
| 39 | * |
| 40 | * - since length of a "sibling" is not known before it is printed, holes are first written and |
| 41 | * after the "sibling" is printed, they are filled with actual valid metadata. As a consequence, |
| 42 | * LYB data cannot be directly printed into streams! |
| 43 | * |
| 44 | * - data are preceded with information about all the used modules. It is needed because of |
| 45 | * possible augments and deviations which must be known beforehand, otherwise schema hashes |
| 46 | * could be matched to the wrong nodes. |
| 47 | * |
| 48 | * This is a short summary of the format: |
| 49 | * @verbatim |
| 50 | |
| 51 | sb = siblings_start |
| 52 | se = siblings_end |
| 53 | siblings = zero-LYB_SIZE_BYTES | (sb instance+ se) |
| 54 | instance = model hash node |
| 55 | model = 16bit_zero | (model_name_length model_name revision) |
| 56 | node = opaq | leaflist | list | any | inner | leaf |
| 57 | opaq = opaq_data siblings |
| 58 | leaflist = sb leaf+ se |
| 59 | list = sb (node_header siblings)+ se |
| 60 | any = node_header anydata_data |
| 61 | inner = node_header siblings |
| 62 | leaf = node_header term_value |
| 63 | node_header = metadata node_flags |
| 64 | |
| 65 | @endverbatim |
| 66 | */ |
| 67 | |
Michal Vasko | 03fbaed | 2021-07-15 09:18:32 +0200 | [diff] [blame] | 68 | /** |
| 69 | * @brief LYB format parser context |
| 70 | */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 71 | struct lylyb_ctx { |
| 72 | const struct ly_ctx *ctx; |
| 73 | uint64_t line; /* current line */ |
| 74 | struct ly_in *in; /* input structure */ |
| 75 | |
| 76 | const struct lys_module **models; |
| 77 | |
aPiecek | 570d7ed | 2021-09-10 07:15:35 +0200 | [diff] [blame] | 78 | struct lyd_lyb_sibling { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 79 | size_t written; |
| 80 | size_t position; |
aPiecek | 6828a31 | 2021-09-17 15:53:18 +0200 | [diff] [blame] | 81 | uint16_t inner_chunks; |
aPiecek | 570d7ed | 2021-09-10 07:15:35 +0200 | [diff] [blame] | 82 | } *siblings; |
| 83 | LY_ARRAY_COUNT_TYPE sibling_size; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 84 | |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 85 | /* LYB printer only */ |
| 86 | struct lyd_lyb_sib_ht { |
| 87 | struct lysc_node *first_sibling; |
| 88 | struct hash_table *ht; |
| 89 | } *sib_hts; |
| 90 | }; |
| 91 | |
| 92 | /** |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 93 | * @brief Destructor for the lylyb_ctx structure |
| 94 | */ |
| 95 | void lyd_lyb_ctx_free(struct lyd_ctx *lydctx); |
| 96 | |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 97 | /* just a shortcut */ |
aPiecek | 570d7ed | 2021-09-10 07:15:35 +0200 | [diff] [blame] | 98 | #define LYB_LAST_SIBLING(lybctx) lybctx->siblings[LY_ARRAY_COUNT(lybctx->siblings) - 1] |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 99 | |
aPiecek | 570d7ed | 2021-09-10 07:15:35 +0200 | [diff] [blame] | 100 | /* struct lyd_lyb_sibling allocation step */ |
| 101 | #define LYB_SIBLING_STEP 4 |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 102 | |
| 103 | /* current LYB format version */ |
aPiecek | 0181b54 | 2021-09-30 13:23:33 +0200 | [diff] [blame] | 104 | #define LYB_VERSION_NUM 0x03 |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 105 | |
| 106 | /* LYB format version mask of the header byte */ |
aPiecek | 20127bf | 2021-09-10 11:24:58 +0200 | [diff] [blame] | 107 | #define LYB_VERSION_MASK 0x0F |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 108 | |
| 109 | /** |
| 110 | * LYB schema hash constants |
| 111 | * |
| 112 | * Hash is divided to collision ID and hash itself. |
| 113 | * |
Michal Vasko | 11f76c8 | 2021-04-15 14:36:14 +0200 | [diff] [blame] | 114 | * @anchor collisionid |
| 115 | * |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 116 | * First bits are collision ID until 1 is found. The rest is truncated 32b hash. |
| 117 | * 1xxx xxxx - collision ID 0 (no collisions) |
| 118 | * 01xx xxxx - collision ID 1 (collision ID 0 hash collided) |
| 119 | * 001x xxxx - collision ID 2 ... |
Michal Vasko | 11f76c8 | 2021-04-15 14:36:14 +0200 | [diff] [blame] | 120 | * |
| 121 | * When finding a match for a unique schema (siblings) hash (sequence of hashes with increasing collision ID), the highest |
| 122 | * collision ID can be read from the last hash (LYB parser). |
| 123 | * |
| 124 | * To learn what is the highest collision ID of a hash that must be included in a unique schema (siblings) hash, |
| 125 | * collisions with all the preceding sibling schema hashes must be checked (LYB printer). |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 126 | */ |
| 127 | |
| 128 | /* Number of bits the whole hash will take (including hash collision ID) */ |
| 129 | #define LYB_HASH_BITS 8 |
| 130 | |
| 131 | /* Masking 32b hash (collision ID 0) */ |
| 132 | #define LYB_HASH_MASK 0x7f |
| 133 | |
| 134 | /* Type for storing the whole hash (used only internally, publicly defined directly) */ |
| 135 | #define LYB_HASH uint8_t |
| 136 | |
| 137 | /* Need to move this first >> collision number (from 0) to get collision ID hash part */ |
| 138 | #define LYB_HASH_COLLISION_ID 0x80 |
| 139 | |
| 140 | /* How many bytes are reserved for one data chunk SIZE (8B is maximum) */ |
aPiecek | 6828a31 | 2021-09-17 15:53:18 +0200 | [diff] [blame] | 141 | #define LYB_SIZE_BYTES 2 |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 142 | |
| 143 | /* Maximum size that will be written into LYB_SIZE_BYTES (must be large enough) */ |
aPiecek | 6828a31 | 2021-09-17 15:53:18 +0200 | [diff] [blame] | 144 | #define LYB_SIZE_MAX UINT16_MAX |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 145 | |
| 146 | /* How many bytes are reserved for one data chunk inner chunk count */ |
aPiecek | 6828a31 | 2021-09-17 15:53:18 +0200 | [diff] [blame] | 147 | #define LYB_INCHUNK_BYTES 2 |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 148 | |
| 149 | /* Maximum size that will be written into LYB_INCHUNK_BYTES (must be large enough) */ |
aPiecek | 6828a31 | 2021-09-17 15:53:18 +0200 | [diff] [blame] | 150 | #define LYB_INCHUNK_MAX UINT16_MAX |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 151 | |
| 152 | /* Just a helper macro */ |
| 153 | #define LYB_META_BYTES (LYB_INCHUNK_BYTES + LYB_SIZE_BYTES) |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 154 | |
| 155 | /* model revision as XXXX XXXX XXXX XXXX (2B) (year is offset from 2000) |
| 156 | * YYYY YYYM MMMD DDDD */ |
| 157 | #define LYB_REV_YEAR_OFFSET 2000 |
| 158 | #define LYB_REV_YEAR_MASK 0xfe00U |
| 159 | #define LYB_REV_YEAR_SHIFT 9 |
| 160 | #define LYB_REV_MONTH_MASK 0x01E0U |
| 161 | #define LYB_REV_MONTH_SHIFT 5 |
| 162 | #define LYB_REV_DAY_MASK 0x001fU |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 163 | |
Michal Vasko | 11f76c8 | 2021-04-15 14:36:14 +0200 | [diff] [blame] | 164 | /** |
| 165 | * @brief Get single hash for a schema node to be used for LYB data. Read from cache, if possible. |
| 166 | * |
| 167 | * @param[in] node Node to hash. |
| 168 | * @param[in] collision_id Collision ID of the hash to generate, see @ref collisionid. |
| 169 | * @return Generated hash. |
| 170 | */ |
| 171 | LYB_HASH lyb_get_hash(const struct lysc_node *node, uint8_t collision_id); |
| 172 | |
| 173 | /** |
| 174 | * @brief Fill the hash cache of all the schema nodes of a module. |
| 175 | * |
| 176 | * @param[in] mod Module to process. |
| 177 | */ |
| 178 | void lyb_cache_module_hash(const struct lys_module *mod); |
| 179 | |
| 180 | /** |
| 181 | * @brief Check whether a node's module is in a module array. |
| 182 | * |
| 183 | * @param[in] node Node to check. |
| 184 | * @param[in] models Modules in a sized array. |
| 185 | * @return Boolean value whether @p node's module was found in the given @p models array. |
| 186 | */ |
| 187 | ly_bool lyb_has_schema_model(const struct lysc_node *node, const struct lys_module **models); |
| 188 | |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 189 | #endif /* LY_LYB_H_ */ |