blob: c25e4e163823f2ea8c44cc21afdae5081a9c8f63 [file] [log] [blame]
Radek Krejcid6b76452019-09-03 17:03:03 +02001/**
2 * @file plugins_exts_nacm.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief libyang extension plugin - Metadata (RFC 7952)
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 */
14#include "common.h"
15
16#include <stdlib.h>
17
18#include "plugins_exts.h"
Radek Krejcid6b76452019-09-03 17:03:03 +020019#include "plugins_exts_metadata.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020020#include "schema_compile.h"
Michal Vasko69730152020-10-09 16:30:07 +020021#include "tree_schema.h"
Radek Krejcid6b76452019-09-03 17:03:03 +020022
23/**
24 * @brief Storage for ID used to check plugin API version compatibility.
25 * Ignored here in the internal plugin.
26LYEXT_VERSION_CHECK
27 */
28
Radek Krejcif13b87b2020-12-01 22:02:17 +010029#define ANNOTATION_SUBSTMT_IFF 0
30#define ANNOTATION_SUBSTMT_UNITS 1
31#define ANNOTATION_SUBSTMT_STATUS 2
32#define ANNOTATION_SUBSTMT_TYPE 3
33#define ANNOTATION_SUBSTMT_DSC 4
34#define ANNOTATION_SUBSTMT_REF 5
35
Radek Krejci5a443cf2021-01-21 12:55:45 +010036#define INIT_ANNOTATION_SUBSTMT { \
37 {LY_STMT_IF_FEATURE, LY_STMT_CARD_ANY, NULL}, \
38 {LY_STMT_UNITS, LY_STMT_CARD_OPT, NULL}, \
39 {LY_STMT_STATUS, LY_STMT_CARD_OPT, NULL}, \
40 {LY_STMT_TYPE, LY_STMT_CARD_MAND, NULL}, \
41 {LY_STMT_DESCRIPTION, LY_STMT_CARD_OPT, NULL}, \
42 {LY_STMT_REFERENCE, LY_STMT_CARD_OPT, NULL}, \
43 {0, 0, 0} /* terminating item */ \
44} \
Radek Krejci38d85362019-09-05 16:26:38 +020045
Radek Krejcid6b76452019-09-03 17:03:03 +020046/**
47 * @brief Compile annotation extension instances.
48 *
49 * Implementation of lyext_clb_compile callback set as lyext_plugin::compile.
50 */
51LY_ERR
52annotation_compile(struct lysc_ctx *cctx, const struct lysp_ext_instance *p_ext, struct lysc_ext_instance *c_ext)
53{
54 struct lyext_metadata *annotation;
55 struct lysc_module *mod_c;
Michal Vaskofd69e1d2020-07-03 11:57:17 +020056 LY_ARRAY_COUNT_TYPE u;
Radek Krejci5a443cf2021-01-21 12:55:45 +010057 struct lysc_ext_substmt annotation_substmt[] = INIT_ANNOTATION_SUBSTMT;
Radek Krejcid6b76452019-09-03 17:03:03 +020058
59 /* annotations can appear only at the top level of a YANG module or submodule */
60 if (c_ext->parent_type != LYEXT_PAR_MODULE) {
61 lyext_log(c_ext, LY_LLERR, LY_EVALID, cctx->path, "Extension %s is allowed only at the top level of a YANG module or submodule, but it is placed in \"%s\" statement.",
Michal Vasko69730152020-10-09 16:30:07 +020062 p_ext->name, lyext_parent2str(c_ext->parent_type));
Radek Krejcid6b76452019-09-03 17:03:03 +020063 return LY_EVALID;
64 }
Radek Krejci335332a2019-09-05 13:03:35 +020065 /* check mandatory argument */
66 if (!c_ext->argument) {
67 lyext_log(c_ext, LY_LLERR, LY_EVALID, cctx->path, "Extension %s is instantiated without mandatory argument representing metadata name.",
Michal Vasko69730152020-10-09 16:30:07 +020068 p_ext->name);
Radek Krejci335332a2019-09-05 13:03:35 +020069 return LY_EVALID;
70 }
Radek Krejcid6b76452019-09-03 17:03:03 +020071
72 mod_c = (struct lysc_module *)c_ext->parent;
73
74 /* check for duplication */
75 LY_ARRAY_FOR(mod_c->exts, u) {
Michal Vasko69730152020-10-09 16:30:07 +020076 if ((&mod_c->exts[u] != c_ext) && (mod_c->exts[u].def == c_ext->def) && !strcmp(mod_c->exts[u].argument, c_ext->argument)) {
Radek Krejci335332a2019-09-05 13:03:35 +020077 /* duplication of the same annotation extension in a single module */
Radek Krejcid6b76452019-09-03 17:03:03 +020078 lyext_log(c_ext, LY_LLERR, LY_EVALID, cctx->path, "Extension %s is instantiated multiple times.", p_ext->name);
79 return LY_EVALID;
80 }
81 }
82
83 /* compile annotation substatements */
84 c_ext->data = annotation = calloc(1, sizeof *annotation);
Radek Krejci335332a2019-09-05 13:03:35 +020085 LY_CHECK_ERR_RET(!annotation, LOGMEM(cctx->ctx), LY_EMEM);
Radek Krejcif13b87b2020-12-01 22:02:17 +010086 annotation_substmt[ANNOTATION_SUBSTMT_IFF].storage = &annotation->iffeatures;
87 annotation_substmt[ANNOTATION_SUBSTMT_UNITS].storage = &annotation->units;
88 annotation_substmt[ANNOTATION_SUBSTMT_STATUS].storage = &annotation->flags;
89 annotation_substmt[ANNOTATION_SUBSTMT_TYPE].storage = &annotation->type;
Radek Krejcid6b76452019-09-03 17:03:03 +020090 /* description and reference are allowed, but not compiled */
91
92 LY_CHECK_RET(lys_compile_extension_instance(cctx, p_ext, annotation_substmt));
93
94 return LY_SUCCESS;
95}
96
Radek Krejci38d85362019-09-05 16:26:38 +020097/**
98 * @brief Free annotation extension instances' data.
99 *
100 * Implementation of lyext_clb_free callback set as lyext_plugin::free.
101 */
102void
103annotation_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext)
104{
Radek Krejci5a443cf2021-01-21 12:55:45 +0100105 struct lysc_ext_substmt annotation_substmt[] = INIT_ANNOTATION_SUBSTMT;
106
Radek Krejciad5963b2019-09-06 16:03:05 +0200107 if (!ext->data) {
108 return;
109 }
110
Michal Vasko22df3f02020-08-24 13:29:22 +0200111 struct lyext_metadata *annotation = (struct lyext_metadata *)ext->data;
Michal Vasko69730152020-10-09 16:30:07 +0200112
Radek Krejcif13b87b2020-12-01 22:02:17 +0100113 annotation_substmt[ANNOTATION_SUBSTMT_IFF].storage = &annotation->iffeatures;
114 annotation_substmt[ANNOTATION_SUBSTMT_UNITS].storage = &annotation->units;
115 annotation_substmt[ANNOTATION_SUBSTMT_STATUS].storage = &annotation->flags;
116 annotation_substmt[ANNOTATION_SUBSTMT_TYPE].storage = &annotation->type;
Radek Krejci38d85362019-09-05 16:26:38 +0200117
Radek Krejci0f969882020-08-21 16:56:47 +0200118 lysc_extension_instance_free(ctx, annotation_substmt);
119 free(ext->data);
Radek Krejci38d85362019-09-05 16:26:38 +0200120}
Radek Krejcid6b76452019-09-03 17:03:03 +0200121
122/**
123 * @brief Plugin for the Metadata's annotation extension
124 */
125struct lyext_plugin metadata_plugin = {
126 .id = "libyang 2 - metadata, version 1",
127 .compile = &annotation_compile,
128 .validate = NULL,
Radek Krejci38d85362019-09-05 16:26:38 +0200129 .free = annotation_free
Radek Krejcid6b76452019-09-03 17:03:03 +0200130};