blob: f99d6f6437124dc4420dfe7f96ad49779e833dac [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;
46 uint64_t line; /* line number */
47 uint64_t indent; /* current position on the line for YANG indentation */
48};
49
50/**
51 * @brief Check the currently present prefixes in the module for collision with the new one.
52 *
53 * @param[in] ctx yang parser context.
54 * @param[in] module Schema tree to check.
55 * @param[in] value Newly added prefix value (including its location to distinguish collision with itself).
56 * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise
57 */
58LY_ERR lysp_check_prefix(struct ly_parser_ctx *ctx, struct lysp_module *module, const char **value);
59
Radek Krejci86d106e2018-10-18 09:53:19 +020060/**
61 * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT)
62 *
63 * @param[in] ctx Context to store log message.
64 * @param[in] date Date string to check (non-necessarily terminated by \0)
65 * @param[in] date_len Length of the date string, 10 expected.
66 * @param[in] stmt Statement name for error message.
67 * @return LY_ERR value.
68 */
69LY_ERR lysp_check_date(struct ly_ctx *ctx, const char *date, int date_len, const char *stmt);
70
71/**
72 * @brief Just move the newest revision into the first position, does not sort the rest
73 * @param[in] revs Sized-array of the revisions in a printable schema tree.
74 */
75void lysp_sort_revisions(struct lysp_revision *revs);
76
77/**
Radek Krejci086c7132018-10-26 15:29:04 +020078 * @brief Find and parse module of the given name.
79 *
80 * @param[in] ctx libyang context.
81 * @param[in] name Name of the module to load.
82 * @param[in] revison Optional revision of the module to load. If NULL, the newest revision is loaded.
Radek Krejci6d6e4e42018-10-29 13:28:19 +010083 * @param[in] implement Flag if the loaded module is supposed to be marked as implemented.
84 * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context,
85 * but only the compiled structure is available.
Radek Krejci086c7132018-10-26 15:29:04 +020086 * @param[out] mod Parsed module structure.
87 * @return LY_ERR value.
88 */
Radek Krejci6d6e4e42018-10-29 13:28:19 +010089LY_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 +020090
91/**
Radek Krejcid33273d2018-10-25 14:55:52 +020092 * @brief Parse included submodule into the simply parsed YANG module.
93 *
Radek Krejci086c7132018-10-26 15:29:04 +020094 * @param[in] ctx libyang context
Radek Krejcid33273d2018-10-25 14:55:52 +020095 * @param[in] mod Module including a submodule.
Radek Krejcid33273d2018-10-25 14:55:52 +020096 * @param[in,out] inc Include structure holding all available information about the include statement, the parsed
97 * submodule is stored into this structure.
98 * @return LY_ERR value.
99 */
Radek Krejci086c7132018-10-26 15:29:04 +0200100LY_ERR lysp_load_submodule(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc);
Radek Krejcid33273d2018-10-25 14:55:52 +0200101
102/**
Radek Krejci151a5b72018-10-19 14:21:44 +0200103 * @brief Find the module referenced by prefix in the provided mod.
104 *
105 * @param[in] mod Schema module where the prefix was used.
106 * @param[in] prefix Prefix used to reference a module.
107 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
108 * @return Pointer to the module or NULL if the module is not found.
109 */
110struct lysc_module *lysc_module_find_prefix(struct lysc_module *mod, const char *prefix, size_t len);
111
112/**
Radek Krejcid33273d2018-10-25 14:55:52 +0200113 * @brief Parse YANG module and submodule from a string.
114 *
115 * In contrast to public lys_parse_mem(), also submodules can be parsed here. However,
116 * while the modules are added into the context, submodules not. The latest_revision
117 * flag is updated in both cases.
118 *
119 * @param[in] ctx libyang context where to process the data model.
120 * @param[in] data The string containing the dumped data model in the specified
121 * format.
122 * @param[in] format Format of the input data (YANG or YIN).
123 * @param[in] revision If a specific revision is required, it is checked before the parsed
124 * schema is accepted.
125 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
126 * @return Pointer to the data model structure or NULL on error.
127 */
128struct lys_module *lys_parse_mem_(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, const char *revision, int implement);
129
130/**
131 * @brief Parse YANG module and submodule from a file descriptor.
132 *
133 * In contrast to public lys_parse_mem(), also submodules can be parsed here. However,
134 * while the modules are added into the context, submodules not. The latest_revision
135 * flag is updated in both cases.
136 *
137 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
138 *
139 * @param[in] ctx libyang context where to process the data model.
140 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
141 * in the specified format.
142 * @param[in] format Format of the input data (YANG or YIN).
143 * @param[in] revision If a specific revision is required, it is checked before the parsed
144 * schema is accepted.
145 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
146 * @return Pointer to the data model structure or NULL on error.
147 */
148struct lys_module *lys_parse_fd_(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, const char *revision, int implement);
149
150/**
151 * @brief Parse YANG module and submodule from a file descriptor.
152 *
153 * In contrast to public lys_parse_mem(), also submodules can be parsed here. However,
154 * while the modules are added into the context, submodules not. The latest_revision
155 * flag is updated in both cases.
156 *
157 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
158 *
159 * @brief REad a schema into the specified context from a file.
160 *
161 * @param[in] ctx libyang context where to process the data model.
162 * @param[in] path Path to the file with the model 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_path_(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, const char *revision, int implement);
170
171/**
172 * @brief Load the (sub)module into the context.
173 *
174 * This function does not check the presence of the (sub)module in context, it should be done before calling this function.
175 *
176 * module_name and submodule_name are alternatives - only one of the
177 *
178 * @param[in] ctx libyang context where to work.
179 * @param[in] name Name of the (sub)module to load.
180 * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded.
181 * @param[in] implement Flag if the (sub)module is supposed to be marked as implemented.
182 * @param[out] result Parsed YANG schema tree of the requested module. If it is a module, it is already in the context!
183 * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided.
184 */
185LY_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 +0200186
187/**
188 * @brief Make the module implemented.
189 * Does not check for collision in context, it must be done before calling the function, this is a simple switch.
190 * @param[in] mod Module to make implemented.
191 */
192void lys_module_implement(struct lys_module *mod);
193
Radek Krejcid33273d2018-10-25 14:55:52 +0200194/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200195 * @brief Free the schema structure. It just frees, it does not remove the schema from its context.
196 * @param[in,out] module Schema module structure to free.
197 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
198 */
199void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
200
201/**
202 * @brief
203 */
204LY_ERR yang_parse(struct ly_ctx *ctx, const char *data, struct lysp_module **mod_p);
205
Radek Krejci70853c52018-10-15 14:46:16 +0200206#endif /* LY_TREE_SCHEMA_INTERNAL_H_ */