blob: 1cac20468fd4185b65e58790f7e7690f89dd9970 [file] [log] [blame]
Radek Krejci0935f412019-08-20 16:15:18 +02001/**
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 Krejci0935f412019-08-20 16:15:18 +020014
15#include "plugins_exts.h"
Radek Krejci77114102021-03-10 15:21:57 +010016#include "plugins_exts_compile.h"
17#include "plugins_exts_print.h"
Radek Krejci0935f412019-08-20 16:15:18 +020018
Radek Krejci47fab892020-11-05 17:02:41 +010019#include <stdint.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020020#include <string.h>
21
Radek Krejcicc9e30f2021-03-29 12:45:08 +020022extern struct lyplg_ext metadata_plugin; /* plugins_exts_metadata.c */
23extern struct lyplg_ext nacm_plugin; /* plugins_exts_nacm.c */
24extern struct lyplg_ext yangdata_plugin; /* plugins_exts_yangdata.c */
Radek Krejci0935f412019-08-20 16:15:18 +020025
Radek Krejci5f9a3672021-03-05 21:35:22 +010026/* internal libyang headers - do not make them accessible to the extension plugins in plugins_exts_*.c */
27#include "common.h"
Radek Krejci3e6632f2021-03-22 22:08:21 +010028#include "plugins_internal.h"
Radek Krejcif8d7f9a2021-03-10 14:32:36 +010029#include "printer_internal.h"
Radek Krejci5f9a3672021-03-05 21:35:22 +010030#include "schema_compile.h"
31
Radek Krejci5f9a3672021-03-05 21:35:22 +010032API struct ly_ctx *
33lysc_ctx_get_ctx(const struct lysc_ctx *ctx)
34{
35 return ctx->ctx;
36}
37
38API uint32_t *
39lysc_ctx_get_options(const struct lysc_ctx *ctx)
40{
41 return &((struct lysc_ctx *)ctx)->options;
42}
43
44API const char *
45lysc_ctx_get_path(const struct lysc_ctx *ctx)
46{
47 return ctx->path;
48}
Radek Krejcif8d7f9a2021-03-10 14:32:36 +010049
50API struct ly_out **
51lys_ypr_ctx_get_out(const struct lyspr_ctx *ctx)
52{
53 return &((struct lyspr_ctx *)ctx)->out;
54}
55
56API uint32_t *
57lys_ypr_ctx_get_options(const struct lyspr_ctx *ctx)
58{
59 return &((struct lyspr_ctx *)ctx)->options;
60}
61
62API uint16_t *
63lys_ypr_ctx_get_level(const struct lyspr_ctx *ctx)
64{
65 return &((struct lyspr_ctx *)ctx)->level;
66}