Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 1 | /** |
| 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 Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 15 | #include "common.h" |
| 16 | |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 17 | #include <errno.h> |
Radek Krejci | 7ada9a0 | 2018-09-07 15:34:05 +0200 | [diff] [blame] | 18 | #include <limits.h> |
| 19 | #include <stdlib.h> |
| 20 | #include <string.h> |
Radek Krejci | 0e21240 | 2018-09-20 11:29:38 +0200 | [diff] [blame] | 21 | #include <sys/stat.h> |
| 22 | #include <sys/types.h> |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 23 | #include <unistd.h> |
| 24 | |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 25 | #include "context.h" |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 26 | #include "tree_schema_internal.h" |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 27 | #include "libyang.h" |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 28 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 29 | #define LY_INTERNAL_MODS_COUNT 6 |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 30 | |
Radek Krejci | f3f4784 | 2018-11-15 11:22:15 +0100 | [diff] [blame] | 31 | #include "../models/ietf-yang-metadata@2016-08-05.h" |
| 32 | #include "../models/yang@2017-02-20.h" |
| 33 | #include "../models/ietf-inet-types@2013-07-15.h" |
| 34 | #include "../models/ietf-yang-types@2013-07-15.h" |
| 35 | #include "../models/ietf-datastores@2017-08-17.h" |
| 36 | #include "../models/ietf-yang-library@2018-01-17.h" |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 37 | #define IETF_YANG_LIB_REV "2018-01-17" |
| 38 | |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 39 | static struct internal_modules_s { |
| 40 | const char *name; |
| 41 | const char *revision; |
| 42 | const char *data; |
| 43 | uint8_t implemented; |
| 44 | LYS_INFORMAT format; |
| 45 | } internal_modules[LY_INTERNAL_MODS_COUNT] = { |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 46 | {"ietf-yang-metadata", "2016-08-05", (const char*)ietf_yang_metadata_2016_08_05_yang, 0, LYS_IN_YANG}, |
| 47 | {"yang", "2017-02-20", (const char*)yang_2017_02_20_yang, 1, LYS_IN_YANG}, |
| 48 | {"ietf-inet-types", "2013-07-15", (const char*)ietf_inet_types_2013_07_15_yang, 0, LYS_IN_YANG}, |
| 49 | {"ietf-yang-types", "2013-07-15", (const char*)ietf_yang_types_2013_07_15_yang, 0, LYS_IN_YANG}, |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 50 | /* ietf-datastores and ietf-yang-library must be right here at the end of the list! */ |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 51 | {"ietf-datastores", "2017-08-17", (const char*)ietf_datastores_2017_08_17_yang, 0, LYS_IN_YANG}, |
| 52 | {"ietf-yang-library", IETF_YANG_LIB_REV, (const char*)ietf_yang_library_2018_01_17_yang, 1, LYS_IN_YANG} |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | API LY_ERR |
| 56 | ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir) |
| 57 | { |
Radek Krejci | 0e21240 | 2018-09-20 11:29:38 +0200 | [diff] [blame] | 58 | struct stat st; |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 59 | char *new_dir = NULL; |
Radek Krejci | 0e21240 | 2018-09-20 11:29:38 +0200 | [diff] [blame] | 60 | unsigned int u; |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 61 | |
| 62 | LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL); |
| 63 | |
| 64 | if (search_dir) { |
Radek Krejci | 0e21240 | 2018-09-20 11:29:38 +0200 | [diff] [blame] | 65 | LY_CHECK_ERR_RET(access(search_dir, R_OK | X_OK), |
| 66 | LOGERR(ctx, LY_ESYS, "Unable to use search directory \"%s\" (%s)", search_dir, strerror(errno)), |
| 67 | LY_EINVAL); |
| 68 | LY_CHECK_ERR_RET(stat(search_dir, &st), |
| 69 | LOGERR(ctx, LY_ESYS, "stat() failed for \"%s\" (%s)", search_dir, strerror(errno)), |
| 70 | LY_ESYS); |
| 71 | LY_CHECK_ERR_RET(!S_ISDIR(st.st_mode), |
| 72 | LOGERR(ctx, LY_ESYS, "Given search directory \"%s\" is not a directory.", search_dir), |
| 73 | LY_EINVAL); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 74 | new_dir = realpath(search_dir, NULL); |
Radek Krejci | a77e0e1 | 2018-09-20 12:39:15 +0200 | [diff] [blame] | 75 | LY_CHECK_ERR_RET(!new_dir, |
| 76 | LOGERR(ctx, LY_ESYS, "realpath() call failed for \"%s\" (%s).", search_dir, strerror(errno)), |
| 77 | LY_ESYS); |
Radek Krejci | 0e21240 | 2018-09-20 11:29:38 +0200 | [diff] [blame] | 78 | /* avoid path duplication */ |
| 79 | for (u = 0; u < ctx->search_paths.count; ++u) { |
Radek Krejci | 14946ab | 2018-09-20 13:42:06 +0200 | [diff] [blame] | 80 | if (!strcmp(new_dir, ctx->search_paths.objs[u])) { |
Radek Krejci | 0e21240 | 2018-09-20 11:29:38 +0200 | [diff] [blame] | 81 | free(new_dir); |
Radek Krejci | 14946ab | 2018-09-20 13:42:06 +0200 | [diff] [blame] | 82 | return LY_EEXIST; |
Radek Krejci | 0e21240 | 2018-09-20 11:29:38 +0200 | [diff] [blame] | 83 | } |
| 84 | } |
| 85 | if (ly_set_add(&ctx->search_paths, new_dir, LY_SET_OPT_USEASLIST) == -1) { |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 86 | free(new_dir); |
| 87 | return LY_EMEM; |
| 88 | } |
| 89 | |
Radek Krejci | e9e987e | 2018-10-31 12:50:27 +0100 | [diff] [blame] | 90 | /* new searchdir - possibly more latest revision available */ |
| 91 | ly_ctx_reset_latests(ctx); |
| 92 | |
Radek Krejci | 0e21240 | 2018-09-20 11:29:38 +0200 | [diff] [blame] | 93 | return LY_SUCCESS; |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 94 | } else { |
| 95 | /* consider that no change is not actually an error */ |
| 96 | return LY_SUCCESS; |
| 97 | } |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | API const char * const * |
| 101 | ly_ctx_get_searchdirs(const struct ly_ctx *ctx) |
| 102 | { |
Radek Krejci | 0502643 | 2018-09-20 12:13:43 +0200 | [diff] [blame] | 103 | void **new; |
| 104 | |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 105 | LY_CHECK_ARG_RET(ctx, ctx, NULL); |
Radek Krejci | 0502643 | 2018-09-20 12:13:43 +0200 | [diff] [blame] | 106 | |
| 107 | if (ctx->search_paths.count == ctx->search_paths.size) { |
| 108 | /* not enough space for terminating NULL byte */ |
| 109 | new = realloc(((struct ly_ctx *)ctx)->search_paths.objs, (ctx->search_paths.size + 8) * sizeof *ctx->search_paths.objs); |
| 110 | LY_CHECK_ERR_RET(!new, LOGMEM(NULL), NULL); |
| 111 | ((struct ly_ctx *)ctx)->search_paths.size += 8; |
| 112 | ((struct ly_ctx *)ctx)->search_paths.objs = new; |
| 113 | } |
| 114 | /* set terminating NULL byte to the strings list */ |
| 115 | ctx->search_paths.objs[ctx->search_paths.count] = NULL; |
| 116 | |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 117 | return (const char * const *)ctx->search_paths.objs; |
| 118 | } |
| 119 | |
| 120 | API LY_ERR |
Radek Krejci | 0759b79 | 2018-09-20 13:53:15 +0200 | [diff] [blame] | 121 | ly_ctx_unset_searchdirs(struct ly_ctx *ctx, const char *value) |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 122 | { |
Radek Krejci | 0759b79 | 2018-09-20 13:53:15 +0200 | [diff] [blame] | 123 | unsigned int index; |
| 124 | |
Radek Krejci | cd64907 | 2018-09-20 12:14:45 +0200 | [diff] [blame] | 125 | LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL); |
Radek Krejci | cd64907 | 2018-09-20 12:14:45 +0200 | [diff] [blame] | 126 | |
Michal Vasko | b34480a | 2018-09-17 10:34:45 +0200 | [diff] [blame] | 127 | if (!ctx->search_paths.count) { |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 128 | return LY_SUCCESS; |
| 129 | } |
| 130 | |
Radek Krejci | 0759b79 | 2018-09-20 13:53:15 +0200 | [diff] [blame] | 131 | if (value) { |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 132 | /* remove specific search directory */ |
Radek Krejci | 0759b79 | 2018-09-20 13:53:15 +0200 | [diff] [blame] | 133 | for (index = 0; index < ctx->search_paths.count; ++index) { |
| 134 | if (!strcmp(value, ctx->search_paths.objs[index])) { |
| 135 | break; |
| 136 | } |
| 137 | } |
| 138 | if (index == ctx->search_paths.count) { |
| 139 | LOGARG(ctx, value); |
| 140 | return LY_EINVAL; |
| 141 | } else { |
| 142 | return ly_set_rm_index(&ctx->search_paths, index, free); |
| 143 | } |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 144 | } else { |
| 145 | /* remove them all */ |
Radek Krejci | a40f21b | 2018-09-18 10:42:08 +0200 | [diff] [blame] | 146 | ly_set_erase(&ctx->search_paths, free); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 147 | memset(&ctx->search_paths, 0, sizeof ctx->search_paths); |
| 148 | } |
| 149 | |
| 150 | return LY_SUCCESS; |
| 151 | } |
| 152 | |
| 153 | API LY_ERR |
| 154 | ly_ctx_new(const char *search_dir, int options, struct ly_ctx **new_ctx) |
| 155 | { |
| 156 | struct ly_ctx *ctx = NULL; |
| 157 | struct lys_module *module; |
| 158 | char *search_dir_list; |
| 159 | char *sep, *dir; |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 160 | int i; |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 161 | LY_ERR rc = LY_SUCCESS; |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 162 | |
| 163 | ctx = calloc(1, sizeof *ctx); |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 164 | LY_CHECK_ERR_RET(!ctx, LOGMEM(NULL), LY_EMEM); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 165 | |
| 166 | /* dictionary */ |
| 167 | lydict_init(&ctx->dict); |
| 168 | |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 169 | #if 0 /* TODO when plugins implemented */ |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 170 | /* plugins */ |
| 171 | ly_load_plugins(); |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 172 | #endif |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 173 | |
| 174 | /* initialize thread-specific key */ |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 175 | while ((pthread_key_create(&ctx->errlist_key, ly_err_free)) == EAGAIN); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 176 | |
| 177 | /* models list */ |
| 178 | ctx->flags = options; |
| 179 | if (search_dir) { |
| 180 | search_dir_list = strdup(search_dir); |
| 181 | LY_CHECK_ERR_GOTO(!search_dir_list, LOGMEM(NULL); rc = LY_EMEM, error); |
| 182 | |
| 183 | for (dir = search_dir_list; (sep = strchr(dir, ':')) != NULL && rc == LY_SUCCESS; dir = sep + 1) { |
| 184 | *sep = 0; |
| 185 | rc = ly_ctx_set_searchdir(ctx, dir); |
Radek Krejci | 14946ab | 2018-09-20 13:42:06 +0200 | [diff] [blame] | 186 | if (rc == LY_EEXIST) { |
| 187 | /* ignore duplication */ |
| 188 | rc = LY_SUCCESS; |
| 189 | } |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 190 | } |
| 191 | if (*dir && rc == LY_SUCCESS) { |
| 192 | rc = ly_ctx_set_searchdir(ctx, dir); |
Radek Krejci | 14946ab | 2018-09-20 13:42:06 +0200 | [diff] [blame] | 193 | if (rc == LY_EEXIST) { |
| 194 | /* ignore duplication */ |
| 195 | rc = LY_SUCCESS; |
| 196 | } |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 197 | } |
| 198 | free(search_dir_list); |
| 199 | |
| 200 | /* If ly_ctx_set_searchdir() failed, the error is already logged. Just exit */ |
| 201 | if (rc != LY_SUCCESS) { |
| 202 | goto error; |
| 203 | } |
| 204 | } |
| 205 | ctx->module_set_id = 1; |
| 206 | |
| 207 | /* load internal modules */ |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 208 | for (i = 0; i < ((options & LY_CTX_NOYANGLIBRARY) ? (LY_INTERNAL_MODS_COUNT - 2) : LY_INTERNAL_MODS_COUNT); i++) { |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 209 | module = (struct lys_module *)lys_parse_mem(ctx, internal_modules[i].data, internal_modules[i].format); |
Radek Krejci | 0e75e6f | 2018-11-08 09:40:02 +0100 | [diff] [blame] | 210 | LY_CHECK_ERR_GOTO(!module, rc = ly_errcode(ctx), error); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 211 | module->implemented = internal_modules[i].implemented; |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | *new_ctx = ctx; |
| 215 | return rc; |
| 216 | |
| 217 | error: |
| 218 | ly_ctx_destroy(ctx, NULL); |
| 219 | return rc; |
| 220 | } |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 221 | API int |
Radek Krejci | 3fbe89a | 2018-09-20 13:54:46 +0200 | [diff] [blame] | 222 | ly_ctx_get_options(const struct ly_ctx *ctx) |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 223 | { |
Radek Krejci | 3fbe89a | 2018-09-20 13:54:46 +0200 | [diff] [blame] | 224 | LY_CHECK_ARG_RET(ctx, ctx, 0); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 225 | return ctx->flags; |
| 226 | } |
| 227 | |
Radek Krejci | ca828d9 | 2018-09-20 14:19:43 +0200 | [diff] [blame] | 228 | API LY_ERR |
| 229 | ly_ctx_set_option(struct ly_ctx *ctx, int option) |
| 230 | { |
| 231 | LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL); |
| 232 | LY_CHECK_ERR_RET(option & LY_CTX_NOYANGLIBRARY, LOGARG(ctx, option), LY_EINVAL); |
| 233 | |
| 234 | /* set the option(s) */ |
| 235 | ctx->flags |= option; |
| 236 | |
| 237 | return LY_SUCCESS; |
| 238 | } |
| 239 | |
| 240 | API LY_ERR |
| 241 | ly_ctx_unset_option(struct ly_ctx *ctx, int option) |
| 242 | { |
| 243 | LY_CHECK_ARG_RET(ctx, ctx, LY_EINVAL); |
| 244 | LY_CHECK_ERR_RET(option & LY_CTX_NOYANGLIBRARY, LOGARG(ctx, option), LY_EINVAL); |
| 245 | |
| 246 | /* unset the option(s) */ |
| 247 | ctx->flags &= ~option; |
| 248 | |
| 249 | return LY_SUCCESS; |
| 250 | } |
| 251 | |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 252 | API uint16_t |
| 253 | ly_ctx_get_module_set_id(const struct ly_ctx *ctx) |
| 254 | { |
Radek Krejci | 3fbe89a | 2018-09-20 13:54:46 +0200 | [diff] [blame] | 255 | LY_CHECK_ARG_RET(ctx, ctx, 0); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 256 | return ctx->module_set_id; |
| 257 | } |
| 258 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 259 | API void |
| 260 | ly_ctx_set_module_imp_clb(struct ly_ctx *ctx, ly_module_imp_clb clb, void *user_data) |
| 261 | { |
| 262 | LY_CHECK_ARG_RET(ctx, ctx,); |
| 263 | |
| 264 | ctx->imp_clb = clb; |
| 265 | ctx->imp_clb_data = user_data; |
| 266 | } |
| 267 | |
| 268 | API ly_module_imp_clb |
| 269 | ly_ctx_get_module_imp_clb(const struct ly_ctx *ctx, void **user_data) |
| 270 | { |
| 271 | LY_CHECK_ARG_RET(ctx, ctx, NULL); |
| 272 | |
| 273 | if (user_data) { |
| 274 | *user_data = ctx->imp_clb_data; |
| 275 | } |
| 276 | return ctx->imp_clb; |
| 277 | } |
| 278 | |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 279 | /** |
| 280 | * @brief Iterate over the modules in the given context. Returned modules must match the given key at the offset of |
| 281 | * lysp_module and lysc_module structures (they are supposed to be placed at the same offset in both structures). |
| 282 | * |
| 283 | * @param[in] ctx Context where to iterate. |
| 284 | * @param[in] key Key value to search for. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 285 | * @param[in] key_offset Key's offset in struct lys_module to get value from the context's modules to match with the key. |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 286 | * @param[in,out] Iterator to pass between the function calls. On the first call, the variable is supposed to be |
| 287 | * initiated to 0. After each call returning a module, the value is greater by 1 than the index of the returned |
| 288 | * module in the context. |
| 289 | * @return Module matching the given key, NULL if no such module found. |
| 290 | */ |
| 291 | static const struct lys_module * |
| 292 | ly_ctx_get_module_by_iter(const struct ly_ctx *ctx, const char *key, size_t key_offset, unsigned int *index) |
| 293 | { |
| 294 | const struct lys_module *mod; |
| 295 | const char *value; |
| 296 | |
| 297 | for (; *index < ctx->list.count; ++(*index)) { |
| 298 | mod = ctx->list.objs[*index]; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 299 | value = *(const char**)(((int8_t*)(mod)) + key_offset); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 300 | if (!strcmp(key, value)) { |
| 301 | /* increment index for the next run */ |
| 302 | ++(*index); |
| 303 | return mod; |
| 304 | } |
| 305 | } |
| 306 | /* done */ |
| 307 | return NULL; |
| 308 | } |
| 309 | |
| 310 | /** |
| 311 | * @brief Unifying function for ly_ctx_get_module() and ly_ctx_get_module_ns() |
| 312 | * @param[in] ctx Context where to search. |
| 313 | * @param[in] key Name or Namespace as a search key. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 314 | * @param[in] key_offset Key's offset in struct lys_module to get value from the context's modules to match with the key. |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 315 | * @param[in] revision Revision date to match. If NULL, the matching module must have no revision. To search for the latest |
| 316 | * revision module, use ly_ctx_get_module_latest_by(). |
| 317 | * @return Matching module if any. |
| 318 | */ |
| 319 | static const struct lys_module * |
| 320 | ly_ctx_get_module_by(const struct ly_ctx *ctx, const char *key, size_t key_offset, const char *revision) |
| 321 | { |
| 322 | const struct lys_module *mod; |
| 323 | unsigned int index = 0; |
| 324 | |
| 325 | while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_offset, &index))) { |
| 326 | if (!revision) { |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 327 | if ((mod->compiled && !mod->compiled->revision) || (!mod->compiled && !mod->parsed->revs)) { |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 328 | /* found requested module without revision */ |
| 329 | return mod; |
| 330 | } |
| 331 | } else { |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 332 | if ((mod->compiled && mod->compiled->revision && !strcmp(mod->compiled->revision, revision)) || |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 333 | (!mod->compiled && mod->parsed->revs && !strcmp(mod->parsed->revs[0].date, revision))) { |
| 334 | /* found requested module of the specific revision */ |
| 335 | return mod; |
| 336 | } |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | return NULL; |
| 341 | } |
| 342 | |
| 343 | API const struct lys_module * |
| 344 | ly_ctx_get_module_ns(const struct ly_ctx *ctx, const char *ns, const char *revision) |
| 345 | { |
| 346 | LY_CHECK_ARG_RET(ctx, ctx, ns, NULL); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 347 | return ly_ctx_get_module_by(ctx, ns, offsetof(struct lys_module, ns), revision); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | API const struct lys_module * |
| 351 | ly_ctx_get_module(const struct ly_ctx *ctx, const char *name, const char *revision) |
| 352 | { |
| 353 | LY_CHECK_ARG_RET(ctx, ctx, name, NULL); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 354 | return ly_ctx_get_module_by(ctx, name, offsetof(struct lys_module, name), revision); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | /** |
| 358 | * @brief Unifying function for ly_ctx_get_module_latest() and ly_ctx_get_module_latest_ns() |
| 359 | * @param[in] ctx Context where to search. |
| 360 | * @param[in] key Name or Namespace as a search key. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 361 | * @param[in] key_offset Key's offset in struct lys_module to get value from the context's modules to match with the key. |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 362 | * @return Matching module if any. |
| 363 | */ |
| 364 | static const struct lys_module * |
| 365 | ly_ctx_get_module_latest_by(const struct ly_ctx *ctx, const char *key, size_t key_offset) |
| 366 | { |
Radek Krejci | 9f5e6fb | 2018-10-25 09:26:12 +0200 | [diff] [blame] | 367 | const struct lys_module *mod; |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 368 | unsigned int index = 0; |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 369 | |
| 370 | while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_offset, &index))) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 371 | if (mod->latest_revision) { |
Radek Krejci | 9f5e6fb | 2018-10-25 09:26:12 +0200 | [diff] [blame] | 372 | return mod; |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 373 | } |
| 374 | } |
| 375 | |
Radek Krejci | 9f5e6fb | 2018-10-25 09:26:12 +0200 | [diff] [blame] | 376 | return NULL; |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | API const struct lys_module * |
| 380 | ly_ctx_get_module_latest(const struct ly_ctx *ctx, const char *name) |
| 381 | { |
| 382 | LY_CHECK_ARG_RET(ctx, ctx, name, NULL); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 383 | return ly_ctx_get_module_latest_by(ctx, name, offsetof(struct lys_module, name)); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | const struct lys_module * |
| 387 | ly_ctx_get_module_latest_ns(const struct ly_ctx *ctx, const char *ns) |
| 388 | { |
| 389 | LY_CHECK_ARG_RET(ctx, ctx, ns, NULL); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 390 | return ly_ctx_get_module_latest_by(ctx, ns, offsetof(struct lys_module, ns)); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 391 | } |
| 392 | |
| 393 | /** |
| 394 | * @brief Unifying function for ly_ctx_get_module_implemented() and ly_ctx_get_module_implemented_ns() |
| 395 | * @param[in] ctx Context where to search. |
| 396 | * @param[in] key Name or Namespace as a search key. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 397 | * @param[in] key_offset Key's offset in struct lys_module to get value from the context's modules to match with the key. |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 398 | * @return Matching module if any. |
| 399 | */ |
| 400 | static const struct lys_module * |
| 401 | ly_ctx_get_module_implemented_by(const struct ly_ctx *ctx, const char *key, size_t key_offset) |
| 402 | { |
| 403 | const struct lys_module *mod; |
| 404 | unsigned int index = 0; |
| 405 | |
| 406 | while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_offset, &index))) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 407 | if (mod->implemented) { |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 408 | return mod; |
| 409 | } |
| 410 | } |
| 411 | |
| 412 | return NULL; |
| 413 | } |
| 414 | |
| 415 | API const struct lys_module * |
| 416 | ly_ctx_get_module_implemented(const struct ly_ctx *ctx, const char *name) |
| 417 | { |
| 418 | LY_CHECK_ARG_RET(ctx, ctx, name, NULL); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 419 | return ly_ctx_get_module_implemented_by(ctx, name, offsetof(struct lys_module, name)); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | API const struct lys_module * |
| 423 | ly_ctx_get_module_implemented_ns(const struct ly_ctx *ctx, const char *ns) |
| 424 | { |
| 425 | LY_CHECK_ARG_RET(ctx, ctx, ns, NULL); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 426 | return ly_ctx_get_module_implemented_by(ctx, ns, offsetof(struct lys_module, ns)); |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 427 | } |
| 428 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 429 | struct lysp_submodule * |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 430 | ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *module, const char *submodule, const char *revision) |
| 431 | { |
| 432 | const struct lys_module *mod; |
| 433 | struct lysp_include *inc; |
Radek Krejci | faa1eac | 2018-10-30 14:34:55 +0100 | [diff] [blame] | 434 | unsigned int v, u; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 435 | |
Radek Krejci | faa1eac | 2018-10-30 14:34:55 +0100 | [diff] [blame] | 436 | assert(submodule); |
| 437 | |
| 438 | for (v = 0; v < ctx->list.count; ++v) { |
| 439 | mod = ctx->list.objs[v]; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 440 | if (!mod->parsed) { |
| 441 | continue; |
| 442 | } |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 443 | if (module && strcmp(module, mod->name)) { |
Radek Krejci | faa1eac | 2018-10-30 14:34:55 +0100 | [diff] [blame] | 444 | continue; |
| 445 | } |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 446 | |
| 447 | LY_ARRAY_FOR(mod->parsed->includes, u) { |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 448 | if (mod->parsed->includes[u].submodule && !strcmp(submodule, mod->parsed->includes[u].submodule->name)) { |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 449 | inc = &mod->parsed->includes[u]; |
| 450 | if (!revision) { |
| 451 | if (inc->submodule->latest_revision) { |
| 452 | return inc->submodule; |
| 453 | } |
| 454 | } else if (inc->submodule->revs && !strcmp(revision, inc->submodule->revs[0].date)) { |
| 455 | return inc->submodule; |
| 456 | } |
| 457 | } |
| 458 | } |
| 459 | } |
| 460 | |
| 461 | return NULL; |
| 462 | } |
| 463 | |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 464 | API void |
Radek Krejci | e9e987e | 2018-10-31 12:50:27 +0100 | [diff] [blame] | 465 | ly_ctx_reset_latests(struct ly_ctx *ctx) |
| 466 | { |
| 467 | unsigned int u,v ; |
| 468 | struct lys_module *mod; |
| 469 | |
| 470 | for (u = 0; u < ctx->list.count; ++u) { |
| 471 | mod = ctx->list.objs[u]; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 472 | if (mod->latest_revision == 2) { |
| 473 | mod->latest_revision = 1; |
Radek Krejci | e9e987e | 2018-10-31 12:50:27 +0100 | [diff] [blame] | 474 | } |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame^] | 475 | if (mod->parsed && mod->parsed->includes) { |
| 476 | for (v = 0; v < LY_ARRAY_SIZE(mod->parsed->includes); ++v) { |
| 477 | if (mod->parsed->includes[v].submodule->latest_revision == 2) { |
| 478 | mod->parsed->includes[v].submodule->latest_revision = 1; |
Radek Krejci | e9e987e | 2018-10-31 12:50:27 +0100 | [diff] [blame] | 479 | } |
| 480 | } |
| 481 | } |
| 482 | } |
| 483 | } |
| 484 | |
| 485 | API void |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 486 | ly_ctx_destroy(struct ly_ctx *ctx, void (*private_destructor)(const struct lysc_node *node, void *priv)) |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 487 | { |
Radek Krejci | 418823a | 2018-09-20 16:42:13 +0200 | [diff] [blame] | 488 | if (!ctx) { |
| 489 | return; |
| 490 | } |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 491 | |
| 492 | /* models list */ |
Michal Vasko | b34480a | 2018-09-17 10:34:45 +0200 | [diff] [blame] | 493 | for (; ctx->list.count; ctx->list.count--) { |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 494 | /* remove the module */ |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 495 | lys_module_free(ctx->list.objs[ctx->list.count - 1], private_destructor); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 496 | } |
| 497 | free(ctx->list.objs); |
| 498 | |
| 499 | /* search paths list */ |
Radek Krejci | a40f21b | 2018-09-18 10:42:08 +0200 | [diff] [blame] | 500 | ly_set_erase(&ctx->search_paths, free); |
Radek Krejci | 0af5f5d | 2018-09-07 15:00:30 +0200 | [diff] [blame] | 501 | |
| 502 | /* clean the error list */ |
| 503 | ly_err_clean(ctx, 0); |
| 504 | pthread_key_delete(ctx->errlist_key); |
| 505 | |
| 506 | /* dictionary */ |
| 507 | lydict_clean(&ctx->dict); |
| 508 | |
| 509 | #if 0 /* TODO when plugins implemented */ |
| 510 | /* plugins - will be removed only if this is the last context */ |
| 511 | ly_clean_plugins(); |
| 512 | #endif |
| 513 | |
| 514 | free(ctx); |
| 515 | } |