blob: c0eca67547f38de86766479eee5cdc4ea6497965 [file] [log] [blame]
Radek Krejci0af5f5d2018-09-07 15:00:30 +02001/**
2 * @file context.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Context implementations
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
Radek Krejcib7db73a2018-10-24 14:18:40 +020015#include "common.h"
16
Radek Krejci7ada9a02018-09-07 15:34:05 +020017#define _BSD_SOURCE
Radek Krejci0af5f5d2018-09-07 15:00:30 +020018#include <errno.h>
Radek Krejci7ada9a02018-09-07 15:34:05 +020019#include <limits.h>
20#include <stdlib.h>
21#include <string.h>
Radek Krejci0e212402018-09-20 11:29:38 +020022#include <sys/stat.h>
23#include <sys/types.h>
Radek Krejci0af5f5d2018-09-07 15:00:30 +020024#include <unistd.h>
25
Radek Krejci0af5f5d2018-09-07 15:00:30 +020026#include "context.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020027#include "tree_schema_internal.h"
Radek Krejciad573502018-09-07 15:26:55 +020028#include "libyang.h"
Radek Krejci0af5f5d2018-09-07 15:00:30 +020029
Radek Krejci86d106e2018-10-18 09:53:19 +020030#define LY_INTERNAL_MODS_COUNT 6
Radek Krejci0af5f5d2018-09-07 15:00:30 +020031
32#define IETF_YANG_METADATA_PATH "../models/ietf-yang-metadata@2016-08-05.h"
33#define YANG_PATH "../models/yang@2017-02-20.h"
34#define IETF_INET_TYPES_PATH "../models/ietf-inet-types@2013-07-15.h"
35#define IETF_YANG_TYPES_PATH "../models/ietf-yang-types@2013-07-15.h"
36#define IETF_DATASTORES "../models/ietf-datastores@2017-08-17.h"
37#define IETF_YANG_LIB_PATH "../models/ietf-yang-library@2018-01-17.h"
38#define IETF_YANG_LIB_REV "2018-01-17"
39
Radek Krejci0af5f5d2018-09-07 15:00:30 +020040#include IETF_YANG_METADATA_PATH
41#include YANG_PATH
42#include IETF_INET_TYPES_PATH
43#include IETF_YANG_TYPES_PATH
44#include IETF_DATASTORES
45#include IETF_YANG_LIB_PATH
Radek Krejci0af5f5d2018-09-07 15:00:30 +020046
47static struct internal_modules_s {
48 const char *name;
49 const char *revision;
50 const char *data;
51 uint8_t implemented;
52 LYS_INFORMAT format;
53} internal_modules[LY_INTERNAL_MODS_COUNT] = {
Radek Krejci86d106e2018-10-18 09:53:19 +020054 {"ietf-yang-metadata", "2016-08-05", (const char*)ietf_yang_metadata_2016_08_05_yang, 0, LYS_IN_YANG},
55 {"yang", "2017-02-20", (const char*)yang_2017_02_20_yang, 1, LYS_IN_YANG},
56 {"ietf-inet-types", "2013-07-15", (const char*)ietf_inet_types_2013_07_15_yang, 0, LYS_IN_YANG},
57 {"ietf-yang-types", "2013-07-15", (const char*)ietf_yang_types_2013_07_15_yang, 0, LYS_IN_YANG},
Radek Krejci0af5f5d2018-09-07 15:00:30 +020058 /* ietf-datastores and ietf-yang-library must be right here at the end of the list! */
Radek Krejci86d106e2018-10-18 09:53:19 +020059 {"ietf-datastores", "2017-08-17", (const char*)ietf_datastores_2017_08_17_yang, 0, LYS_IN_YANG},
60 {"ietf-yang-library", IETF_YANG_LIB_REV, (const char*)ietf_yang_library_2018_01_17_yang, 1, LYS_IN_YANG}
Radek Krejci0af5f5d2018-09-07 15:00:30 +020061};
62
63API LY_ERR
64ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir)
65{
Radek Krejci0e212402018-09-20 11:29:38 +020066 struct stat st;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020067 char *new_dir = NULL;
Radek Krejci0e212402018-09-20 11:29:38 +020068 unsigned int u;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020069
70 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
71
72 if (search_dir) {
Radek Krejci0e212402018-09-20 11:29:38 +020073 LY_CHECK_ERR_RET(access(search_dir, R_OK | X_OK),
74 LOGERR(ctx, LY_ESYS, "Unable to use search directory \"%s\" (%s)", search_dir, strerror(errno)),
75 LY_EINVAL);
76 LY_CHECK_ERR_RET(stat(search_dir, &st),
77 LOGERR(ctx, LY_ESYS, "stat() failed for \"%s\" (%s)", search_dir, strerror(errno)),
78 LY_ESYS);
79 LY_CHECK_ERR_RET(!S_ISDIR(st.st_mode),
80 LOGERR(ctx, LY_ESYS, "Given search directory \"%s\" is not a directory.", search_dir),
81 LY_EINVAL);
Radek Krejci0af5f5d2018-09-07 15:00:30 +020082 new_dir = realpath(search_dir, NULL);
Radek Krejcia77e0e12018-09-20 12:39:15 +020083 LY_CHECK_ERR_RET(!new_dir,
84 LOGERR(ctx, LY_ESYS, "realpath() call failed for \"%s\" (%s).", search_dir, strerror(errno)),
85 LY_ESYS);
Radek Krejci0e212402018-09-20 11:29:38 +020086 /* avoid path duplication */
87 for (u = 0; u < ctx->search_paths.count; ++u) {
Radek Krejci14946ab2018-09-20 13:42:06 +020088 if (!strcmp(new_dir, ctx->search_paths.objs[u])) {
Radek Krejci0e212402018-09-20 11:29:38 +020089 free(new_dir);
Radek Krejci14946ab2018-09-20 13:42:06 +020090 return LY_EEXIST;
Radek Krejci0e212402018-09-20 11:29:38 +020091 }
92 }
93 if (ly_set_add(&ctx->search_paths, new_dir, LY_SET_OPT_USEASLIST) == -1) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +020094 free(new_dir);
95 return LY_EMEM;
96 }
97
Radek Krejci0e212402018-09-20 11:29:38 +020098 return LY_SUCCESS;
Radek Krejci0af5f5d2018-09-07 15:00:30 +020099 } else {
100 /* consider that no change is not actually an error */
101 return LY_SUCCESS;
102 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200103}
104
105API const char * const *
106ly_ctx_get_searchdirs(const struct ly_ctx *ctx)
107{
Radek Krejci05026432018-09-20 12:13:43 +0200108 void **new;
109
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200110 LY_CHECK_ARG_RET(ctx, ctx, NULL);
Radek Krejci05026432018-09-20 12:13:43 +0200111
112 if (ctx->search_paths.count == ctx->search_paths.size) {
113 /* not enough space for terminating NULL byte */
114 new = realloc(((struct ly_ctx *)ctx)->search_paths.objs, (ctx->search_paths.size + 8) * sizeof *ctx->search_paths.objs);
115 LY_CHECK_ERR_RET(!new, LOGMEM(NULL), NULL);
116 ((struct ly_ctx *)ctx)->search_paths.size += 8;
117 ((struct ly_ctx *)ctx)->search_paths.objs = new;
118 }
119 /* set terminating NULL byte to the strings list */
120 ctx->search_paths.objs[ctx->search_paths.count] = NULL;
121
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200122 return (const char * const *)ctx->search_paths.objs;
123}
124
125API LY_ERR
Radek Krejci0759b792018-09-20 13:53:15 +0200126ly_ctx_unset_searchdirs(struct ly_ctx *ctx, const char *value)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200127{
Radek Krejci0759b792018-09-20 13:53:15 +0200128 unsigned int index;
129
Radek Krejcicd649072018-09-20 12:14:45 +0200130 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
Radek Krejcicd649072018-09-20 12:14:45 +0200131
Michal Vaskob34480a2018-09-17 10:34:45 +0200132 if (!ctx->search_paths.count) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200133 return LY_SUCCESS;
134 }
135
Radek Krejci0759b792018-09-20 13:53:15 +0200136 if (value) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200137 /* remove specific search directory */
Radek Krejci0759b792018-09-20 13:53:15 +0200138 for (index = 0; index < ctx->search_paths.count; ++index) {
139 if (!strcmp(value, ctx->search_paths.objs[index])) {
140 break;
141 }
142 }
143 if (index == ctx->search_paths.count) {
144 LOGARG(ctx, value);
145 return LY_EINVAL;
146 } else {
147 return ly_set_rm_index(&ctx->search_paths, index, free);
148 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200149 } else {
150 /* remove them all */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200151 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200152 memset(&ctx->search_paths, 0, sizeof ctx->search_paths);
153 }
154
155 return LY_SUCCESS;
156}
157
158API LY_ERR
159ly_ctx_new(const char *search_dir, int options, struct ly_ctx **new_ctx)
160{
161 struct ly_ctx *ctx = NULL;
162 struct lys_module *module;
163 char *search_dir_list;
164 char *sep, *dir;
Radek Krejci86d106e2018-10-18 09:53:19 +0200165 int i;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200166 LY_ERR rc = LY_SUCCESS;
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200167
168 ctx = calloc(1, sizeof *ctx);
Radek Krejciad573502018-09-07 15:26:55 +0200169 LY_CHECK_ERR_RET(!ctx, LOGMEM(NULL), LY_EMEM);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200170
171 /* dictionary */
172 lydict_init(&ctx->dict);
173
Radek Krejciad573502018-09-07 15:26:55 +0200174#if 0 /* TODO when plugins implemented */
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200175 /* plugins */
176 ly_load_plugins();
Radek Krejciad573502018-09-07 15:26:55 +0200177#endif
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200178
179 /* initialize thread-specific key */
Radek Krejciad573502018-09-07 15:26:55 +0200180 while ((pthread_key_create(&ctx->errlist_key, ly_err_free)) == EAGAIN);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200181
182 /* models list */
183 ctx->flags = options;
184 if (search_dir) {
185 search_dir_list = strdup(search_dir);
186 LY_CHECK_ERR_GOTO(!search_dir_list, LOGMEM(NULL); rc = LY_EMEM, error);
187
188 for (dir = search_dir_list; (sep = strchr(dir, ':')) != NULL && rc == LY_SUCCESS; dir = sep + 1) {
189 *sep = 0;
190 rc = ly_ctx_set_searchdir(ctx, dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200191 if (rc == LY_EEXIST) {
192 /* ignore duplication */
193 rc = LY_SUCCESS;
194 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200195 }
196 if (*dir && rc == LY_SUCCESS) {
197 rc = ly_ctx_set_searchdir(ctx, dir);
Radek Krejci14946ab2018-09-20 13:42:06 +0200198 if (rc == LY_EEXIST) {
199 /* ignore duplication */
200 rc = LY_SUCCESS;
201 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200202 }
203 free(search_dir_list);
204
205 /* If ly_ctx_set_searchdir() failed, the error is already logged. Just exit */
206 if (rc != LY_SUCCESS) {
207 goto error;
208 }
209 }
210 ctx->module_set_id = 1;
211
212 /* load internal modules */
Radek Krejci86d106e2018-10-18 09:53:19 +0200213 for (i = 0; i < ((options & LY_CTX_NOYANGLIBRARY) ? (LY_INTERNAL_MODS_COUNT - 2) : LY_INTERNAL_MODS_COUNT); i++) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200214 module = (struct lys_module *)lys_parse_mem(ctx, internal_modules[i].data, internal_modules[i].format);
215 LY_CHECK_GOTO(!module, error);
216 module->parsed->implemented = internal_modules[i].implemented;
217 }
218
219 *new_ctx = ctx;
220 return rc;
221
222error:
223 ly_ctx_destroy(ctx, NULL);
224 return rc;
225}
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200226API int
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200227ly_ctx_get_options(const struct ly_ctx *ctx)
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200228{
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200229 LY_CHECK_ARG_RET(ctx, ctx, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200230 return ctx->flags;
231}
232
Radek Krejcica828d92018-09-20 14:19:43 +0200233API LY_ERR
234ly_ctx_set_option(struct ly_ctx *ctx, int option)
235{
236 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
237 LY_CHECK_ERR_RET(option & LY_CTX_NOYANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
238
239 /* set the option(s) */
240 ctx->flags |= option;
241
242 return LY_SUCCESS;
243}
244
245API LY_ERR
246ly_ctx_unset_option(struct ly_ctx *ctx, int option)
247{
248 LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL);
249 LY_CHECK_ERR_RET(option & LY_CTX_NOYANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
250
251 /* unset the option(s) */
252 ctx->flags &= ~option;
253
254 return LY_SUCCESS;
255}
256
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200257API uint16_t
258ly_ctx_get_module_set_id(const struct ly_ctx *ctx)
259{
Radek Krejci3fbe89a2018-09-20 13:54:46 +0200260 LY_CHECK_ARG_RET(ctx, ctx, 0);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200261 return ctx->module_set_id;
262}
263
Radek Krejcid33273d2018-10-25 14:55:52 +0200264API void
265ly_ctx_set_module_imp_clb(struct ly_ctx *ctx, ly_module_imp_clb clb, void *user_data)
266{
267 LY_CHECK_ARG_RET(ctx, ctx,);
268
269 ctx->imp_clb = clb;
270 ctx->imp_clb_data = user_data;
271}
272
273API ly_module_imp_clb
274ly_ctx_get_module_imp_clb(const struct ly_ctx *ctx, void **user_data)
275{
276 LY_CHECK_ARG_RET(ctx, ctx, NULL);
277
278 if (user_data) {
279 *user_data = ctx->imp_clb_data;
280 }
281 return ctx->imp_clb;
282}
283
Radek Krejcib7db73a2018-10-24 14:18:40 +0200284/**
285 * @brief Iterate over the modules in the given context. Returned modules must match the given key at the offset of
286 * lysp_module and lysc_module structures (they are supposed to be placed at the same offset in both structures).
287 *
288 * @param[in] ctx Context where to iterate.
289 * @param[in] key Key value to search for.
290 * @param[in] key_offset Key's offset in struct lysp_module and struct lysc_module to get value from the context's
291 * modules to match with the key.
292 * @param[in,out] Iterator to pass between the function calls. On the first call, the variable is supposed to be
293 * initiated to 0. After each call returning a module, the value is greater by 1 than the index of the returned
294 * module in the context.
295 * @return Module matching the given key, NULL if no such module found.
296 */
297static const struct lys_module *
298ly_ctx_get_module_by_iter(const struct ly_ctx *ctx, const char *key, size_t key_offset, unsigned int *index)
299{
300 const struct lys_module *mod;
301 const char *value;
302
303 for (; *index < ctx->list.count; ++(*index)) {
304 mod = ctx->list.objs[*index];
305 if (mod->compiled) {
306 value = *(const char**)(((int8_t*)(mod->compiled)) + key_offset);
307 } else {
308 value = *(const char**)(((int8_t*)(mod->parsed)) + key_offset);
309 }
310 if (!strcmp(key, value)) {
311 /* increment index for the next run */
312 ++(*index);
313 return mod;
314 }
315 }
316 /* done */
317 return NULL;
318}
319
320/**
321 * @brief Unifying function for ly_ctx_get_module() and ly_ctx_get_module_ns()
322 * @param[in] ctx Context where to search.
323 * @param[in] key Name or Namespace as a search key.
324 * @param[in] key_offset Key's offset in struct lysp_module to get value from the context's modules to match with the key.
325 * @param[in] revision Revision date to match. If NULL, the matching module must have no revision. To search for the latest
326 * revision module, use ly_ctx_get_module_latest_by().
327 * @return Matching module if any.
328 */
329static const struct lys_module *
330ly_ctx_get_module_by(const struct ly_ctx *ctx, const char *key, size_t key_offset, const char *revision)
331{
332 const struct lys_module *mod;
333 unsigned int index = 0;
334
335 while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_offset, &index))) {
336 if (!revision) {
337 if ((mod->compiled && !mod->compiled->revs) || (!mod->compiled && !mod->parsed->revs)) {
338 /* found requested module without revision */
339 return mod;
340 }
341 } else {
342 if ((mod->compiled && mod->compiled->revs && !strcmp(mod->compiled->revs[0].date, revision)) ||
343 (!mod->compiled && mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, revision))) {
344 /* found requested module of the specific revision */
345 return mod;
346 }
347 }
348 }
349
350 return NULL;
351}
352
353API const struct lys_module *
354ly_ctx_get_module_ns(const struct ly_ctx *ctx, const char *ns, const char *revision)
355{
356 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
357 return ly_ctx_get_module_by(ctx, ns, offsetof(struct lysp_module, ns), revision);
358}
359
360API const struct lys_module *
361ly_ctx_get_module(const struct ly_ctx *ctx, const char *name, const char *revision)
362{
363 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
364 return ly_ctx_get_module_by(ctx, name, offsetof(struct lysp_module, name), revision);
365}
366
367/**
368 * @brief Unifying function for ly_ctx_get_module_latest() and ly_ctx_get_module_latest_ns()
369 * @param[in] ctx Context where to search.
370 * @param[in] key Name or Namespace as a search key.
371 * @param[in] key_offset Key's offset in struct lysp_module to get value from the context's modules to match with the key.
372 * @return Matching module if any.
373 */
374static const struct lys_module *
375ly_ctx_get_module_latest_by(const struct ly_ctx *ctx, const char *key, size_t key_offset)
376{
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200377 const struct lys_module *mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200378 unsigned int index = 0;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200379
380 while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_offset, &index))) {
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200381 if ((mod->compiled && mod->compiled->latest_revision) || (!mod->compiled && mod->parsed->latest_revision)) {
382 return mod;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200383 }
384 }
385
Radek Krejci9f5e6fb2018-10-25 09:26:12 +0200386 return NULL;
Radek Krejcib7db73a2018-10-24 14:18:40 +0200387}
388
389API const struct lys_module *
390ly_ctx_get_module_latest(const struct ly_ctx *ctx, const char *name)
391{
392 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
393 return ly_ctx_get_module_latest_by(ctx, name, offsetof(struct lysp_module, name));
394}
395
396const struct lys_module *
397ly_ctx_get_module_latest_ns(const struct ly_ctx *ctx, const char *ns)
398{
399 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
400 return ly_ctx_get_module_latest_by(ctx, ns, offsetof(struct lysp_module, ns));
401}
402
403/**
404 * @brief Unifying function for ly_ctx_get_module_implemented() and ly_ctx_get_module_implemented_ns()
405 * @param[in] ctx Context where to search.
406 * @param[in] key Name or Namespace as a search key.
407 * @param[in] key_offset Key's offset in struct lysp_module to get value from the context's modules to match with the key.
408 * @return Matching module if any.
409 */
410static const struct lys_module *
411ly_ctx_get_module_implemented_by(const struct ly_ctx *ctx, const char *key, size_t key_offset)
412{
413 const struct lys_module *mod;
414 unsigned int index = 0;
415
416 while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_offset, &index))) {
417 if ((mod->compiled && mod->compiled->implemented) || (!mod->compiled && mod->parsed->implemented)) {
418 return mod;
419 }
420 }
421
422 return NULL;
423}
424
425API const struct lys_module *
426ly_ctx_get_module_implemented(const struct ly_ctx *ctx, const char *name)
427{
428 LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
429 return ly_ctx_get_module_implemented_by(ctx, name, offsetof(struct lysp_module, name));
430}
431
432API const struct lys_module *
433ly_ctx_get_module_implemented_ns(const struct ly_ctx *ctx, const char *ns)
434{
435 LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
436 return ly_ctx_get_module_implemented_by(ctx, ns, offsetof(struct lysp_module, ns));
437}
438
Radek Krejcid33273d2018-10-25 14:55:52 +0200439struct lysp_module *
440ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *module, const char *submodule, const char *revision)
441{
442 const struct lys_module *mod;
443 struct lysp_include *inc;
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100444 unsigned int v, u;
Radek Krejcid33273d2018-10-25 14:55:52 +0200445
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100446 assert(submodule);
447
448 for (v = 0; v < ctx->list.count; ++v) {
449 mod = ctx->list.objs[v];
Radek Krejcid33273d2018-10-25 14:55:52 +0200450 if (!mod->parsed) {
451 continue;
452 }
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100453 if (module && strcmp(module, mod->parsed->name)) {
454 continue;
455 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200456
457 LY_ARRAY_FOR(mod->parsed->includes, u) {
Radek Krejci086c7132018-10-26 15:29:04 +0200458 if (mod->parsed->includes[u].submodule && !strcmp(submodule, mod->parsed->includes[u].submodule->name)) {
Radek Krejcid33273d2018-10-25 14:55:52 +0200459 inc = &mod->parsed->includes[u];
460 if (!revision) {
461 if (inc->submodule->latest_revision) {
462 return inc->submodule;
463 }
464 } else if (inc->submodule->revs && !strcmp(revision, inc->submodule->revs[0].date)) {
465 return inc->submodule;
466 }
467 }
468 }
469 }
470
471 return NULL;
472}
473
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200474API void
Radek Krejciad573502018-09-07 15:26:55 +0200475ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lysc_node *node, void *priv))
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200476{
Radek Krejci418823a2018-09-20 16:42:13 +0200477 if (!ctx) {
478 return;
479 }
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200480
481 /* models list */
Michal Vaskob34480a2018-09-17 10:34:45 +0200482 for (; ctx->list.count; ctx->list.count--) {
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200483 /* remove the module */
Radek Krejci86d106e2018-10-18 09:53:19 +0200484 lys_module_free(ctx->list.objs[ctx->list.count - 1], private_destructor);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200485 }
486 free(ctx->list.objs);
487
488 /* search paths list */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200489 ly_set_erase(&ctx->search_paths, free);
Radek Krejci0af5f5d2018-09-07 15:00:30 +0200490
491 /* clean the error list */
492 ly_err_clean(ctx, 0);
493 pthread_key_delete(ctx->errlist_key);
494
495 /* dictionary */
496 lydict_clean(&ctx->dict);
497
498#if 0 /* TODO when plugins implemented */
499 /* plugins - will be removed only if this is the last context */
500 ly_clean_plugins();
501#endif
502
503 free(ctx);
504}