blob: 58be352629dbb2a0dd2b41420bcea52057295fef [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.
83 * @param[out] mod Parsed module structure.
84 * @return LY_ERR value.
85 */
86LY_ERR lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, int implement, struct lys_module **mod);
87
88/**
Radek Krejcid33273d2018-10-25 14:55:52 +020089 * @brief Parse included submodule into the simply parsed YANG module.
90 *
Radek Krejci086c7132018-10-26 15:29:04 +020091 * @param[in] ctx libyang context
Radek Krejcid33273d2018-10-25 14:55:52 +020092 * @param[in] mod Module including a submodule.
Radek Krejcid33273d2018-10-25 14:55:52 +020093 * @param[in,out] inc Include structure holding all available information about the include statement, the parsed
94 * submodule is stored into this structure.
95 * @return LY_ERR value.
96 */
Radek Krejci086c7132018-10-26 15:29:04 +020097LY_ERR lysp_load_submodule(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc);
Radek Krejcid33273d2018-10-25 14:55:52 +020098
99/**
Radek Krejci151a5b72018-10-19 14:21:44 +0200100 * @brief Find the module referenced by prefix in the provided mod.
101 *
102 * @param[in] mod Schema module where the prefix was used.
103 * @param[in] prefix Prefix used to reference a module.
104 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
105 * @return Pointer to the module or NULL if the module is not found.
106 */
107struct lysc_module *lysc_module_find_prefix(struct lysc_module *mod, const char *prefix, size_t len);
108
109/**
Radek Krejcid33273d2018-10-25 14:55:52 +0200110 * @brief Parse YANG module and submodule from a string.
111 *
112 * In contrast to public lys_parse_mem(), also submodules can be parsed here. However,
113 * while the modules are added into the context, submodules not. The latest_revision
114 * flag is updated in both cases.
115 *
116 * @param[in] ctx libyang context where to process the data model.
117 * @param[in] data The string containing the dumped data model in the specified
118 * format.
119 * @param[in] format Format of the input data (YANG or YIN).
120 * @param[in] revision If a specific revision is required, it is checked before the parsed
121 * schema is accepted.
122 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
123 * @return Pointer to the data model structure or NULL on error.
124 */
125struct lys_module *lys_parse_mem_(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, const char *revision, int implement);
126
127/**
128 * @brief Parse YANG module and submodule from a file descriptor.
129 *
130 * In contrast to public lys_parse_mem(), also submodules can be parsed here. However,
131 * while the modules are added into the context, submodules not. The latest_revision
132 * flag is updated in both cases.
133 *
134 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
135 *
136 * @param[in] ctx libyang context where to process the data model.
137 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
138 * in the specified format.
139 * @param[in] format Format of the input data (YANG or YIN).
140 * @param[in] revision If a specific revision is required, it is checked before the parsed
141 * schema is accepted.
142 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
143 * @return Pointer to the data model structure or NULL on error.
144 */
145struct lys_module *lys_parse_fd_(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, const char *revision, int implement);
146
147/**
148 * @brief Parse YANG module and submodule from a file descriptor.
149 *
150 * In contrast to public lys_parse_mem(), also submodules can be parsed here. However,
151 * while the modules are added into the context, submodules not. The latest_revision
152 * flag is updated in both cases.
153 *
154 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
155 *
156 * @brief REad a schema into the specified context from a file.
157 *
158 * @param[in] ctx libyang context where to process the data model.
159 * @param[in] path Path to the file with the model in the specified format.
160 * @param[in] format Format of the input data (YANG or YIN).
161 * @param[in] revision If a specific revision is required, it is checked before the parsed
162 * schema is accepted.
163 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
164 * @return Pointer to the data model structure or NULL on error.
165 */
166struct lys_module *lys_parse_path_(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, const char *revision, int implement);
167
168/**
169 * @brief Load the (sub)module into the context.
170 *
171 * This function does not check the presence of the (sub)module in context, it should be done before calling this function.
172 *
173 * module_name and submodule_name are alternatives - only one of the
174 *
175 * @param[in] ctx libyang context where to work.
176 * @param[in] name Name of the (sub)module to load.
177 * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded.
178 * @param[in] implement Flag if the (sub)module is supposed to be marked as implemented.
179 * @param[out] result Parsed YANG schema tree of the requested module. If it is a module, it is already in the context!
180 * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided.
181 */
182LY_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 +0200183
184/**
185 * @brief Make the module implemented.
186 * Does not check for collision in context, it must be done before calling the function, this is a simple switch.
187 * @param[in] mod Module to make implemented.
188 */
189void lys_module_implement(struct lys_module *mod);
190
Radek Krejcid33273d2018-10-25 14:55:52 +0200191/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200192 * @brief Free the schema structure. It just frees, it does not remove the schema from its context.
193 * @param[in,out] module Schema module structure to free.
194 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
195 */
196void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
197
198/**
199 * @brief
200 */
201LY_ERR yang_parse(struct ly_ctx *ctx, const char *data, struct lysp_module **mod_p);
202
Radek Krejci70853c52018-10-15 14:46:16 +0200203#endif /* LY_TREE_SCHEMA_INTERNAL_H_ */