blob: 0bc2443a4226e084e2985e27e8dfdd37e9318f2a [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 Krejci70853c52018-10-15 14:46:16 +020020/**
Radek Krejcie3846472018-10-15 15:24:51 +020021 * @brief List of YANG statement groups - the (sub)module's substatements
22 */
23enum yang_module_stmt {
24 Y_MOD_MODULE_HEADER,
25 Y_MOD_LINKAGE,
26 Y_MOD_META,
27 Y_MOD_REVISION,
28 Y_MOD_BODY
29};
30
31/**
32 * @brief Types of arguments of YANG statements
33 */
34enum yang_arg {
35 Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */
36 Y_PREF_IDENTIF_ARG, /**< YANG "identifier-ref-arg-str" rule */
37 Y_STR_ARG, /**< YANG "string" rule */
38 Y_MAYBE_STR_ARG /**< optional YANG "string" rule */
39};
40
41/**
Radek Krejci70853c52018-10-15 14:46:16 +020042 * @brief internal context for schema parsers
43 */
44struct ly_parser_ctx {
45 struct ly_ctx *ctx;
Radek Krejcifaa1eac2018-10-30 14:34:55 +010046 struct lysp_module *mod;
Radek Krejci70853c52018-10-15 14:46:16 +020047 uint64_t line; /* line number */
48 uint64_t indent; /* current position on the line for YANG indentation */
49};
50
51/**
52 * @brief Check the currently present prefixes in the module for collision with the new one.
53 *
54 * @param[in] ctx yang parser context.
55 * @param[in] module Schema tree to check.
56 * @param[in] value Newly added prefix value (including its location to distinguish collision with itself).
57 * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise
58 */
59LY_ERR lysp_check_prefix(struct ly_parser_ctx *ctx, struct lysp_module *module, const char **value);
60
Radek Krejci86d106e2018-10-18 09:53:19 +020061/**
62 * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT)
63 *
64 * @param[in] ctx Context to store log message.
65 * @param[in] date Date string to check (non-necessarily terminated by \0)
66 * @param[in] date_len Length of the date string, 10 expected.
67 * @param[in] stmt Statement name for error message.
68 * @return LY_ERR value.
69 */
70LY_ERR lysp_check_date(struct ly_ctx *ctx, const char *date, int date_len, const char *stmt);
71
72/**
73 * @brief Just move the newest revision into the first position, does not sort the rest
74 * @param[in] revs Sized-array of the revisions in a printable schema tree.
75 */
76void lysp_sort_revisions(struct lysp_revision *revs);
77
78/**
Radek Krejci086c7132018-10-26 15:29:04 +020079 * @brief Find and parse module of the given name.
80 *
81 * @param[in] ctx libyang context.
82 * @param[in] name Name of the module to load.
83 * @param[in] revison Optional revision of the module to load. If NULL, the newest revision is loaded.
Radek Krejci6d6e4e42018-10-29 13:28:19 +010084 * @param[in] implement Flag if the loaded module is supposed to be marked as implemented.
85 * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context,
86 * but only the compiled structure is available.
Radek Krejci086c7132018-10-26 15:29:04 +020087 * @param[out] mod Parsed module structure.
88 * @return LY_ERR value.
89 */
Radek Krejci6d6e4e42018-10-29 13:28:19 +010090LY_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 +020091
92/**
Radek Krejcid33273d2018-10-25 14:55:52 +020093 * @brief Parse included submodule into the simply parsed YANG module.
94 *
Radek Krejci086c7132018-10-26 15:29:04 +020095 * @param[in] ctx libyang context
Radek Krejcid33273d2018-10-25 14:55:52 +020096 * @param[in] mod Module including a submodule.
Radek Krejcid33273d2018-10-25 14:55:52 +020097 * @param[in,out] inc Include structure holding all available information about the include statement, the parsed
98 * submodule is stored into this structure.
99 * @return LY_ERR value.
100 */
Radek Krejci086c7132018-10-26 15:29:04 +0200101LY_ERR lysp_load_submodule(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc);
Radek Krejcid33273d2018-10-25 14:55:52 +0200102
103/**
Radek Krejcice8c1592018-10-29 15:35:51 +0100104 * @brief Find the module referenced by prefix in the provided parsed mod.
105 *
106 * @param[in] mod Schema module where the prefix was used.
107 * @param[in] prefix Prefix used to reference a module.
108 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
109 * @return Pointer to the module or NULL if the module is not found.
110 */
111struct lys_module *lysp_module_find_prefix(struct lysp_module *mod, const char *prefix, size_t len);
112
113/**
114 * @brief Find the module referenced by prefix in the provided compiled mod.
115 *
116 * @param[in] mod Schema module where the prefix was used.
117 * @param[in] prefix Prefix used to reference a module.
118 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
119 * @return Pointer to the module or NULL if the module is not found.
120 */
121struct lys_module *lysc_module_find_prefix(struct lysc_module *mod, const char *prefix, size_t len);
122
123/**
Radek Krejci151a5b72018-10-19 14:21:44 +0200124 * @brief Find the module referenced by prefix in the provided mod.
125 *
126 * @param[in] mod Schema module where the prefix was used.
127 * @param[in] prefix Prefix used to reference a module.
128 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
129 * @return Pointer to the module or NULL if the module is not found.
130 */
Radek Krejcice8c1592018-10-29 15:35:51 +0100131struct lys_module *lys_module_find_prefix(struct lys_module *mod, const char *prefix, size_t len);
Radek Krejci151a5b72018-10-19 14:21:44 +0200132
133/**
Radek Krejcid33273d2018-10-25 14:55:52 +0200134 * @brief Parse YANG module and submodule from a string.
135 *
136 * In contrast to public lys_parse_mem(), also submodules can be parsed here. However,
137 * while the modules are added into the context, submodules not. The latest_revision
138 * flag is updated in both cases.
139 *
140 * @param[in] ctx libyang context where to process the data model.
141 * @param[in] data The string containing the dumped data model in the specified
142 * format.
143 * @param[in] format Format of the input data (YANG or YIN).
144 * @param[in] revision If a specific revision is required, it is checked before the parsed
145 * schema is accepted.
146 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
147 * @return Pointer to the data model structure or NULL on error.
148 */
149struct lys_module *lys_parse_mem_(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, const char *revision, int implement);
150
151/**
152 * @brief Parse YANG module and submodule from a file descriptor.
153 *
154 * In contrast to public lys_parse_mem(), also submodules can be parsed here. However,
155 * while the modules are added into the context, submodules not. The latest_revision
156 * flag is updated in both cases.
157 *
158 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
159 *
160 * @param[in] ctx libyang context where to process the data model.
161 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
162 * in the specified format.
163 * @param[in] format Format of the input data (YANG or YIN).
164 * @param[in] revision If a specific revision is required, it is checked before the parsed
165 * schema is accepted.
166 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
167 * @return Pointer to the data model structure or NULL on error.
168 */
169struct lys_module *lys_parse_fd_(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, const char *revision, int implement);
170
171/**
172 * @brief Parse YANG module and submodule from a file descriptor.
173 *
174 * In contrast to public lys_parse_mem(), also submodules can be parsed here. However,
175 * while the modules are added into the context, submodules not. The latest_revision
176 * flag is updated in both cases.
177 *
178 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
179 *
180 * @brief REad a schema into the specified context from a file.
181 *
182 * @param[in] ctx libyang context where to process the data model.
183 * @param[in] path Path to the file with the model in the specified format.
184 * @param[in] format Format of the input data (YANG or YIN).
185 * @param[in] revision If a specific revision is required, it is checked before the parsed
186 * schema is accepted.
187 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
188 * @return Pointer to the data model structure or NULL on error.
189 */
190struct lys_module *lys_parse_path_(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, const char *revision, int implement);
191
192/**
193 * @brief Load the (sub)module into the context.
194 *
195 * This function does not check the presence of the (sub)module in context, it should be done before calling this function.
196 *
197 * module_name and submodule_name are alternatives - only one of the
198 *
199 * @param[in] ctx libyang context where to work.
200 * @param[in] name Name of the (sub)module to load.
201 * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded.
202 * @param[in] implement Flag if the (sub)module is supposed to be marked as implemented.
203 * @param[out] result Parsed YANG schema tree of the requested module. If it is a module, it is already in the context!
204 * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided.
205 */
206LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement, struct lys_module **result);
Radek Krejci086c7132018-10-26 15:29:04 +0200207
208/**
209 * @brief Make the module implemented.
210 * Does not check for collision in context, it must be done before calling the function, this is a simple switch.
211 * @param[in] mod Module to make implemented.
212 */
213void lys_module_implement(struct lys_module *mod);
214
Radek Krejcid33273d2018-10-25 14:55:52 +0200215/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200216 * @brief Free the schema structure. It just frees, it does not remove the schema from its context.
217 * @param[in,out] module Schema module structure to free.
218 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
219 */
220void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
221
222/**
223 * @brief
224 */
225LY_ERR yang_parse(struct ly_ctx *ctx, const char *data, struct lysp_module **mod_p);
226
Radek Krejci70853c52018-10-15 14:46:16 +0200227#endif /* LY_TREE_SCHEMA_INTERNAL_H_ */