blob: 219a2c7fb32ace96ccbe753f73b5f9a2a5ecdc38 [file] [log] [blame]
Radek Krejci70853c52018-10-15 14:46:16 +02001/**
2 * @file tree_schema_internal.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief internal functions for YANG schema trees.
5 *
6 * Copyright (c) 2015 - 2018 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_TREE_SCHEMA_INTERNAL_H_
16#define LY_TREE_SCHEMA_INTERNAL_H_
17
Radek Krejcid33273d2018-10-25 14:55:52 +020018#define LOGVAL_YANG(CTX, ...) LOGVAL((CTX)->ctx, LY_VLOG_LINE, &(CTX)->line, __VA_ARGS__)
19
Radek Krejcia9026eb2018-12-12 16:04:47 +010020/* These 2 macros checks YANG's identifier grammar rule */
21#define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_')
22#define is_yangidentchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || \
23 c == '_' || c == '-' || c == '.')
24
Radek Krejci70853c52018-10-15 14:46:16 +020025/**
Radek Krejcie3846472018-10-15 15:24:51 +020026 * @brief List of YANG statement groups - the (sub)module's substatements
27 */
28enum yang_module_stmt {
29 Y_MOD_MODULE_HEADER,
30 Y_MOD_LINKAGE,
31 Y_MOD_META,
32 Y_MOD_REVISION,
33 Y_MOD_BODY
34};
35
36/**
37 * @brief Types of arguments of YANG statements
38 */
39enum yang_arg {
40 Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */
Radek Krejcia9026eb2018-12-12 16:04:47 +010041 Y_PREF_IDENTIF_ARG, /**< YANG "identifier-ref-arg-str" or node-identifier rule */
Radek Krejcie3846472018-10-15 15:24:51 +020042 Y_STR_ARG, /**< YANG "string" rule */
43 Y_MAYBE_STR_ARG /**< optional YANG "string" rule */
44};
45
46/**
Radek Krejci70853c52018-10-15 14:46:16 +020047 * @brief internal context for schema parsers
48 */
49struct ly_parser_ctx {
50 struct ly_ctx *ctx;
Radek Krejcifaa1eac2018-10-30 14:34:55 +010051 struct lysp_module *mod;
Radek Krejcibbe09a92018-11-08 09:36:54 +010052 struct ly_set tpdfs_nodes;
53 struct ly_set grps_nodes;
54 uint64_t line; /**< line number */
55 uint64_t indent; /**< current position on the line for YANG indentation */
Radek Krejci70853c52018-10-15 14:46:16 +020056};
57
58/**
Radek Krejci4f28eda2018-11-12 11:46:16 +010059 * @brief internal context for compilation
60 */
61struct lysc_ctx {
62 struct ly_ctx *ctx;
63 struct lys_module *mod;
Radek Krejcie86bf772018-12-14 11:39:53 +010064 struct lys_module *mod_def; /* context module for the definitions of the nodes being currently
65 processed - groupings are supposed to be evaluated in place where
66 defined, but its content instances are supposed to be placed into
67 the target module (mod) */
68 struct ly_set groupings; /* stack for groupings circular check */
Radek Krejcia3045382018-11-22 14:30:31 +010069 struct ly_set unres; /* to validate leafref's target and xpath of when/must */
Radek Krejci4f28eda2018-11-12 11:46:16 +010070 uint16_t path_len;
71#define LYSC_CTX_BUFSIZE 4078
72 char path[LYSC_CTX_BUFSIZE];
73};
74
75/**
Radek Krejci70853c52018-10-15 14:46:16 +020076 * @brief Check the currently present prefixes in the module for collision with the new one.
77 *
Radek Krejcibbe09a92018-11-08 09:36:54 +010078 * @param[in] ctx Context for logging.
Radek Krejci70853c52018-10-15 14:46:16 +020079 * @param[in] module Schema tree to check.
80 * @param[in] value Newly added prefix value (including its location to distinguish collision with itself).
81 * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise
82 */
83LY_ERR lysp_check_prefix(struct ly_parser_ctx *ctx, struct lysp_module *module, const char **value);
84
Radek Krejci86d106e2018-10-18 09:53:19 +020085/**
86 * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT)
87 *
Radek Krejcibbe09a92018-11-08 09:36:54 +010088 * @param[in] ctx Optional context for logging.
Radek Krejci86d106e2018-10-18 09:53:19 +020089 * @param[in] date Date string to check (non-necessarily terminated by \0)
90 * @param[in] date_len Length of the date string, 10 expected.
91 * @param[in] stmt Statement name for error message.
92 * @return LY_ERR value.
93 */
Radek Krejcibbe09a92018-11-08 09:36:54 +010094LY_ERR lysp_check_date(struct ly_parser_ctx *ctx, const char *date, int date_len, const char *stmt);
95
96/**
97 * @brief Check names of typedefs in the parsed module to detect collisions.
98 *
99 * @param[in] ctx Parser context, module where the type is being defined is taken from here.
100 * @return LY_ERR value.
101 */
102LY_ERR lysp_check_typedefs(struct ly_parser_ctx *ctx);
Radek Krejci86d106e2018-10-18 09:53:19 +0200103
104/**
105 * @brief Just move the newest revision into the first position, does not sort the rest
106 * @param[in] revs Sized-array of the revisions in a printable schema tree.
107 */
108void lysp_sort_revisions(struct lysp_revision *revs);
109
110/**
Radek Krejcibbe09a92018-11-08 09:36:54 +0100111 * @brief Find type specified type definition
112 *
113 * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module.
114 * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents.
115 * @param[in] start_module Module where the type is being instantiated for search for typedefs.
Radek Krejci4f28eda2018-11-12 11:46:16 +0100116 * @param[out] type Built-in type identifier of the id. If #LY_TYPE_UNKNOWN, tpdf is expected to contain found YANG schema typedef statement.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100117 * @param[out] tpdf Found type definition.
118 * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef.
119 * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types.
120 */
121LY_ERR lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module,
Radek Krejci4f28eda2018-11-12 11:46:16 +0100122 LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100123
124/**
Radek Krejci086c7132018-10-26 15:29:04 +0200125 * @brief Find and parse module of the given name.
126 *
127 * @param[in] ctx libyang context.
128 * @param[in] name Name of the module to load.
129 * @param[in] revison Optional revision of the module to load. If NULL, the newest revision is loaded.
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100130 * @param[in] implement Flag if the loaded module is supposed to be marked as implemented.
131 * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context,
132 * but only the compiled structure is available.
Radek Krejci086c7132018-10-26 15:29:04 +0200133 * @param[out] mod Parsed module structure.
134 * @return LY_ERR value.
135 */
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100136LY_ERR lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, int implement, int require_parsed, struct lys_module **mod);
Radek Krejci086c7132018-10-26 15:29:04 +0200137
138/**
Radek Krejcid33273d2018-10-25 14:55:52 +0200139 * @brief Parse included submodule into the simply parsed YANG module.
140 *
Radek Krejci3b1f9292018-11-08 10:58:35 +0100141 * @param[in] ctx parser context
Radek Krejcid33273d2018-10-25 14:55:52 +0200142 * @param[in] mod Module including a submodule.
Radek Krejcid33273d2018-10-25 14:55:52 +0200143 * @param[in,out] inc Include structure holding all available information about the include statement, the parsed
144 * submodule is stored into this structure.
145 * @return LY_ERR value.
146 */
Radek Krejci3b1f9292018-11-08 10:58:35 +0100147LY_ERR lysp_load_submodule(struct ly_parser_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc);
Radek Krejcid33273d2018-10-25 14:55:52 +0200148
149/**
Radek Krejcibbe09a92018-11-08 09:36:54 +0100150 * @brief Get address of a node's actions list if any.
151 *
152 * Decides the node's type and in case it has an actions list, returns its address.
153 * @param[in] node Node to check.
154 * @return Address of the node's actions member if any, NULL otherwise.
155 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100156struct lysp_action **lysp_node_actions_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100157
158/**
159 * @brief Get address of a node's notifications list if any.
160 *
161 * Decides the node's type and in case it has a notifications list, returns its address.
162 * @param[in] node Node to check.
163 * @return Address of the node's notifs member if any, NULL otherwise.
164 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100165struct lysp_notif **lysp_node_notifs_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100166
167/**
168 * @brief Get address of a node's child pointer if any.
169 *
170 * Decides the node's type and in case it has a children list, returns its address.
171 * @param[in] node Node to check.
172 * @return Address of the node's child member if any, NULL otherwise.
173 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100174struct lysp_node **lysp_node_children_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100175
176/**
177 * @brief Get address of a node's child pointer if any.
178 *
179 * Decides the node's type and in case it has a children list, returns its address.
180 * @param[in] node Node to check.
181 * @return Address of the node's child member if any, NULL otherwise.
182 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100183struct lysc_node **lysc_node_children_p(const struct lysc_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100184
185/**
Radek Krejci96a0bfd2018-11-22 15:25:06 +0100186 * @brief Get the covering schema module structure for the given parsed module structure.
187 * @param[in] ctx libyang context to search.
188 * @param[in] mod Parsed schema structure.
189 * @return Corresponding lys_module structure for the given parsed schema structure.
190 */
191struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod);
192
193/**
Radek Krejcice8c1592018-10-29 15:35:51 +0100194 * @brief Find the module referenced by prefix in the provided parsed mod.
195 *
196 * @param[in] mod Schema module where the prefix was used.
197 * @param[in] prefix Prefix used to reference a module.
198 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
199 * @return Pointer to the module or NULL if the module is not found.
200 */
Radek Krejcia3045382018-11-22 14:30:31 +0100201struct lysp_module *lysp_module_find_prefix(const struct lysp_module *mod, const char *prefix, size_t len);
Radek Krejcice8c1592018-10-29 15:35:51 +0100202
203/**
204 * @brief Find the module referenced by prefix in the provided compiled mod.
205 *
206 * @param[in] mod Schema module where the prefix was used.
207 * @param[in] prefix Prefix used to reference a module.
208 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
209 * @return Pointer to the module or NULL if the module is not found.
210 */
Radek Krejcia3045382018-11-22 14:30:31 +0100211struct lysc_module *lysc_module_find_prefix(const struct lysc_module *mod, const char *prefix, size_t len);
Radek Krejcice8c1592018-10-29 15:35:51 +0100212
213/**
Radek Krejci4f28eda2018-11-12 11:46:16 +0100214 * @brief Check statement's status for invalid combination.
215 *
216 * The modX parameters are used just to determine if both flags are in the same module,
217 * so any of the schema module structure can be used, but both modules must be provided
218 * in the same type.
219 *
220 * @param[in] ctx Compile context for logging.
221 * @param[in] flags1 Flags of the referencing node.
222 * @param[in] mod1 Module of the referencing node,
223 * @param[in] name1 Schema node name of the referencing node.
224 * @param[in] flags2 Flags of the referenced node.
225 * @param[in] mod2 Module of the referenced node,
226 * @param[in] name2 Schema node name of the referenced node.
227 * @return LY_ERR value
228 */
229LY_ERR lysc_check_status(struct lysc_ctx *ctx,
230 uint16_t flags1, void *mod1, const char *name1,
231 uint16_t flags2, void *mod2, const char *name2);
232
233/**
Radek Krejcia3045382018-11-22 14:30:31 +0100234 * @brief Parse a node-identifier.
235 *
236 * node-identifier = [prefix ":"] identifier
237 *
238 * @param[in, out] id Identifier to parse. When returned, it points to the first character which is not part of the identifier.
239 * @param[out] prefix Node's prefix, NULL if there is not any.
240 * @param[out] prefix_len Length of the node's prefix, 0 if there is not any.
241 * @param[out] name Node's name.
242 * @param[out] nam_len Length of the node's name.
243 * @return LY_ERR value: LY_SUCCESS or LY_EINVAL in case of invalid character in the id.
244 */
245LY_ERR lys_parse_nodeid(const char **id, const char **prefix, size_t *prefix_len, const char **name, size_t *name_len);
246
247/**
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100248 * @brief Find the node according to the given descendant schema node id.
249 * Used in unique, refine and uses's augment statements
250 *
251 * @param[in] ctx Compile context
252 * @param[in] nodeid Descendant-schema-nodeid (according to the YANG grammar)
253 * @param[in] nodeid_len Length of the given nodeid, if it is not NULL-terminated string.
254 * @param[in] context_node Node where the nodeid is specified to correctly resolve prefixes and to start searching.
255 * @param[in] nodetype Optional (can be 0) restriction for target's nodetype. If target exists, but does not match
256 * the given nodetype, LY_EDENIED is returned, but no error message is printed. The value can be even an ORed value to allow
257 * multiple nodetypes.
258 * @param[out] target Found target node if any.
259 * @return LY_ERR values - LY_ENOTFOUND, LY_EVALID, LY_EDENIED or LY_SUCCESS.
260 */
261LY_ERR lys_resolve_descendant_schema_nodeid(struct lysc_ctx *ctx, const char *nodeid, size_t nodeid_len, const struct lysc_node *context_node,
262 int nodetype, const struct lysc_node **target);
263
264/**
Radek Krejci151a5b72018-10-19 14:21:44 +0200265 * @brief Find the module referenced by prefix in the provided mod.
266 *
267 * @param[in] mod Schema module where the prefix was used.
268 * @param[in] prefix Prefix used to reference a module.
269 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
270 * @return Pointer to the module or NULL if the module is not found.
271 */
Radek Krejcia3045382018-11-22 14:30:31 +0100272struct lys_module *lys_module_find_prefix(const struct lys_module *mod, const char *prefix, size_t len);
273
274/**
275 * @brief Stringify schema nodetype.
276 * @param[in] nodetype Nodetype to stringify.
277 * @return Constant string with the name of the node's type.
278 */
279const char *lys_nodetype2str(uint16_t nodetype);
Radek Krejci151a5b72018-10-19 14:21:44 +0200280
281/**
Radek Krejcid33273d2018-10-25 14:55:52 +0200282 * @brief Parse YANG module and submodule from a string.
283 *
284 * In contrast to public lys_parse_mem(), also submodules can be parsed here. However,
285 * while the modules are added into the context, submodules not. The latest_revision
286 * flag is updated in both cases.
287 *
288 * @param[in] ctx libyang context where to process the data model.
289 * @param[in] data The string containing the dumped data model in the specified
290 * format.
291 * @param[in] format Format of the input data (YANG or YIN).
Radek Krejcid33273d2018-10-25 14:55:52 +0200292 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
Radek Krejci3b1f9292018-11-08 10:58:35 +0100293 * @param[in] main_ctx Parser context of the main module in case of parsing submodule.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100294 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
295 * @param[in] check_data Caller's data to pass to the custom_check callback.
Radek Krejcid33273d2018-10-25 14:55:52 +0200296 * @return Pointer to the data model structure or NULL on error.
297 */
Radek Krejci3b1f9292018-11-08 10:58:35 +0100298struct lys_module *lys_parse_mem_(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, int implement, struct ly_parser_ctx *main_ctx,
Radek Krejci9ed7a192018-10-31 16:23:51 +0100299 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, void *data), void *check_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200300
301/**
302 * @brief Parse YANG module and submodule from a file descriptor.
303 *
304 * In contrast to public lys_parse_mem(), also submodules can be parsed here. However,
305 * while the modules are added into the context, submodules not. The latest_revision
306 * flag is updated in both cases.
307 *
308 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
309 *
310 * @param[in] ctx libyang context where to process the data model.
311 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
312 * in the specified format.
313 * @param[in] format Format of the input data (YANG or YIN).
Radek Krejcid33273d2018-10-25 14:55:52 +0200314 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
Radek Krejci3b1f9292018-11-08 10:58:35 +0100315 * @param[in] main_ctx Parser context of the main module in case of parsing submodule.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100316 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
317 * @param[in] check_data Caller's data to pass to the custom_check callback.
Radek Krejcid33273d2018-10-25 14:55:52 +0200318 * @return Pointer to the data model structure or NULL on error.
319 */
Radek Krejci3b1f9292018-11-08 10:58:35 +0100320struct lys_module *lys_parse_fd_(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement, struct ly_parser_ctx *main_ctx,
Radek Krejci9ed7a192018-10-31 16:23:51 +0100321 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, void *data), void *check_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200322
323/**
324 * @brief Parse YANG module and submodule from a file descriptor.
325 *
326 * In contrast to public lys_parse_mem(), also submodules can be parsed here. However,
327 * while the modules are added into the context, submodules not. The latest_revision
328 * flag is updated in both cases.
329 *
330 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
331 *
332 * @brief REad a schema into the specified context from a file.
333 *
334 * @param[in] ctx libyang context where to process the data model.
335 * @param[in] path Path to the file with the model in the specified format.
336 * @param[in] format Format of the input data (YANG or YIN).
Radek Krejcid33273d2018-10-25 14:55:52 +0200337 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
Radek Krejci3b1f9292018-11-08 10:58:35 +0100338 * @param[in] main_ctx Parser context of the main module in case of parsing submodule.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100339 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
340 * @param[in] check_data Caller's data to pass to the custom_check callback.
Radek Krejcid33273d2018-10-25 14:55:52 +0200341 * @return Pointer to the data model structure or NULL on error.
342 */
Radek Krejci3b1f9292018-11-08 10:58:35 +0100343struct lys_module *lys_parse_path_(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, int implement, struct ly_parser_ctx *main_ctx,
Radek Krejci9ed7a192018-10-31 16:23:51 +0100344 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, void *data), void *check_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200345
346/**
347 * @brief Load the (sub)module into the context.
348 *
349 * This function does not check the presence of the (sub)module in context, it should be done before calling this function.
350 *
351 * module_name and submodule_name are alternatives - only one of the
352 *
353 * @param[in] ctx libyang context where to work.
354 * @param[in] name Name of the (sub)module to load.
355 * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded.
356 * @param[in] implement Flag if the (sub)module is supposed to be marked as implemented.
Radek Krejci3b1f9292018-11-08 10:58:35 +0100357 * @param[in] main_ctx Parser context of the main module in case of loading submodule.
Radek Krejcid33273d2018-10-25 14:55:52 +0200358 * @param[out] result Parsed YANG schema tree of the requested module. If it is a module, it is already in the context!
359 * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided.
360 */
Radek Krejci3b1f9292018-11-08 10:58:35 +0100361LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement, struct ly_parser_ctx *main_ctx,
362 struct lys_module **result);
Radek Krejci086c7132018-10-26 15:29:04 +0200363
364/**
365 * @brief Make the module implemented.
366 * Does not check for collision in context, it must be done before calling the function, this is a simple switch.
367 * @param[in] mod Module to make implemented.
368 */
369void lys_module_implement(struct lys_module *mod);
370
Radek Krejcid33273d2018-10-25 14:55:52 +0200371/**
Radek Krejcicdfecd92018-11-26 11:27:32 +0100372 * @brief Free the compiled type structure.
373 * @param[in] ctx libyang context where the string data resides in a dictionary.
374 * @param[in,out] type Compiled type structure to be freed. The structure has refcount, so it is freed only in case the value is decreased to 0.
375 */
376void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type);
377
378/**
Radek Krejci19a96102018-11-15 13:38:09 +0100379 * @brief Free the compiled node structure.
380 * @param[in] ctx libyang context where the string data resides in a dictionary.
381 * @param[in,out] node Compiled node structure to be freed.
382 */
383void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node);
384
385/**
386 * @brief Free the compiled schema structure.
387 * @param[in,out] module Compiled schema module structure to free.
388 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
389 */
390void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
391
392/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200393 * @brief Free the schema structure. It just frees, it does not remove the schema from its context.
394 * @param[in,out] module Schema module structure to free.
395 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
396 */
397void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
398
399/**
400 * @brief
401 */
Radek Krejcibbe09a92018-11-08 09:36:54 +0100402LY_ERR yang_parse(struct ly_parser_ctx *ctx, const char *data, struct lysp_module **mod_p);
Radek Krejci86d106e2018-10-18 09:53:19 +0200403
Radek Krejci70853c52018-10-15 14:46:16 +0200404#endif /* LY_TREE_SCHEMA_INTERNAL_H_ */