Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file plugins_exts.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief Internally implemented YANG extensions. |
| 5 | * |
| 6 | * Copyright (c) 2019 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 | */ |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 14 | |
| 15 | #include "plugins_exts.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 16 | #include "plugins_exts_compile.h" |
| 17 | #include "plugins_exts_print.h" |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 18 | |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 19 | #include <stdint.h> |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 20 | |
Radek Krejci | 5f9a367 | 2021-03-05 21:35:22 +0100 | [diff] [blame] | 21 | #include "common.h" |
Radek Krejci | f8d7f9a | 2021-03-10 14:32:36 +0100 | [diff] [blame] | 22 | #include "printer_internal.h" |
Radek Krejci | 5f9a367 | 2021-03-05 21:35:22 +0100 | [diff] [blame] | 23 | #include "schema_compile.h" |
| 24 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 25 | LIBYANG_API_DEF struct ly_ctx * |
Radek Krejci | 5f9a367 | 2021-03-05 21:35:22 +0100 | [diff] [blame] | 26 | lysc_ctx_get_ctx(const struct lysc_ctx *ctx) |
| 27 | { |
| 28 | return ctx->ctx; |
| 29 | } |
| 30 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 31 | LIBYANG_API_DEF uint32_t * |
Radek Krejci | 5f9a367 | 2021-03-05 21:35:22 +0100 | [diff] [blame] | 32 | lysc_ctx_get_options(const struct lysc_ctx *ctx) |
| 33 | { |
Michal Vasko | 7c56592 | 2021-06-10 14:58:27 +0200 | [diff] [blame] | 34 | return &((struct lysc_ctx *)ctx)->compile_opts; |
Radek Krejci | 5f9a367 | 2021-03-05 21:35:22 +0100 | [diff] [blame] | 35 | } |
| 36 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 37 | LIBYANG_API_DEF const char * |
Radek Krejci | 5f9a367 | 2021-03-05 21:35:22 +0100 | [diff] [blame] | 38 | lysc_ctx_get_path(const struct lysc_ctx *ctx) |
| 39 | { |
| 40 | return ctx->path; |
| 41 | } |
Radek Krejci | f8d7f9a | 2021-03-10 14:32:36 +0100 | [diff] [blame] | 42 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 43 | LIBYANG_API_DEF struct ly_out ** |
Radek Krejci | f8d7f9a | 2021-03-10 14:32:36 +0100 | [diff] [blame] | 44 | lys_ypr_ctx_get_out(const struct lyspr_ctx *ctx) |
| 45 | { |
| 46 | return &((struct lyspr_ctx *)ctx)->out; |
| 47 | } |
| 48 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 49 | LIBYANG_API_DEF uint32_t * |
Radek Krejci | f8d7f9a | 2021-03-10 14:32:36 +0100 | [diff] [blame] | 50 | lys_ypr_ctx_get_options(const struct lyspr_ctx *ctx) |
| 51 | { |
| 52 | return &((struct lyspr_ctx *)ctx)->options; |
| 53 | } |
| 54 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 55 | LIBYANG_API_DEF uint16_t * |
Radek Krejci | f8d7f9a | 2021-03-10 14:32:36 +0100 | [diff] [blame] | 56 | lys_ypr_ctx_get_level(const struct lyspr_ctx *ctx) |
| 57 | { |
| 58 | return &((struct lyspr_ctx *)ctx)->level; |
| 59 | } |
tadeas-vintrlik | 2aa36b4 | 2021-11-03 13:07:34 +0100 | [diff] [blame^] | 60 | |
| 61 | API const struct lys_module * |
| 62 | lysc_ctx_get_cur_mod(const struct lysc_ctx *ctx) |
| 63 | { |
| 64 | return ctx->cur_mod; |
| 65 | } |
| 66 | |
| 67 | API struct lysp_module * |
| 68 | lysc_ctx_get_pmod(const struct lysc_ctx *ctx) |
| 69 | { |
| 70 | return ctx->pmod; |
| 71 | } |