Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1 | /** |
| 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 Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 19 | #include "plugins_exts_metadata.h" |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 20 | #include "schema_compile.h" |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 21 | #include "tree_schema.h" |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 22 | |
| 23 | /** |
| 24 | * @brief Storage for ID used to check plugin API version compatibility. |
| 25 | * Ignored here in the internal plugin. |
| 26 | LYEXT_VERSION_CHECK |
| 27 | */ |
| 28 | |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 29 | #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 | |
| 36 | struct lysc_ext_substmt annotation_substmt[] = { |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 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 | }; |
| 45 | |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 46 | /** |
| 47 | * @brief Compile annotation extension instances. |
| 48 | * |
| 49 | * Implementation of lyext_clb_compile callback set as lyext_plugin::compile. |
| 50 | */ |
| 51 | LY_ERR |
| 52 | annotation_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 Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 56 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 57 | |
| 58 | /* annotations can appear only at the top level of a YANG module or submodule */ |
| 59 | if (c_ext->parent_type != LYEXT_PAR_MODULE) { |
| 60 | 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 Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 61 | p_ext->name, lyext_parent2str(c_ext->parent_type)); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 62 | return LY_EVALID; |
| 63 | } |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 64 | /* check mandatory argument */ |
| 65 | if (!c_ext->argument) { |
| 66 | lyext_log(c_ext, LY_LLERR, LY_EVALID, cctx->path, "Extension %s is instantiated without mandatory argument representing metadata name.", |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 67 | p_ext->name); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 68 | return LY_EVALID; |
| 69 | } |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 70 | |
| 71 | mod_c = (struct lysc_module *)c_ext->parent; |
| 72 | |
| 73 | /* check for duplication */ |
| 74 | LY_ARRAY_FOR(mod_c->exts, u) { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 75 | 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 Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 76 | /* duplication of the same annotation extension in a single module */ |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 77 | lyext_log(c_ext, LY_LLERR, LY_EVALID, cctx->path, "Extension %s is instantiated multiple times.", p_ext->name); |
| 78 | return LY_EVALID; |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | /* compile annotation substatements */ |
| 83 | c_ext->data = annotation = calloc(1, sizeof *annotation); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 84 | LY_CHECK_ERR_RET(!annotation, LOGMEM(cctx->ctx), LY_EMEM); |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 85 | annotation_substmt[ANNOTATION_SUBSTMT_IFF].storage = &annotation->iffeatures; |
| 86 | annotation_substmt[ANNOTATION_SUBSTMT_UNITS].storage = &annotation->units; |
| 87 | annotation_substmt[ANNOTATION_SUBSTMT_STATUS].storage = &annotation->flags; |
| 88 | annotation_substmt[ANNOTATION_SUBSTMT_TYPE].storage = &annotation->type; |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 89 | /* description and reference are allowed, but not compiled */ |
| 90 | |
| 91 | LY_CHECK_RET(lys_compile_extension_instance(cctx, p_ext, annotation_substmt)); |
| 92 | |
| 93 | return LY_SUCCESS; |
| 94 | } |
| 95 | |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 96 | /** |
| 97 | * @brief Free annotation extension instances' data. |
| 98 | * |
| 99 | * Implementation of lyext_clb_free callback set as lyext_plugin::free. |
| 100 | */ |
| 101 | void |
| 102 | annotation_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext) |
| 103 | { |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 104 | if (!ext->data) { |
| 105 | return; |
| 106 | } |
| 107 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 108 | struct lyext_metadata *annotation = (struct lyext_metadata *)ext->data; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 109 | |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 110 | annotation_substmt[ANNOTATION_SUBSTMT_IFF].storage = &annotation->iffeatures; |
| 111 | annotation_substmt[ANNOTATION_SUBSTMT_UNITS].storage = &annotation->units; |
| 112 | annotation_substmt[ANNOTATION_SUBSTMT_STATUS].storage = &annotation->flags; |
| 113 | annotation_substmt[ANNOTATION_SUBSTMT_TYPE].storage = &annotation->type; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 114 | |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 115 | lysc_extension_instance_free(ctx, annotation_substmt); |
| 116 | free(ext->data); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 117 | } |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 118 | |
| 119 | /** |
| 120 | * @brief Plugin for the Metadata's annotation extension |
| 121 | */ |
| 122 | struct lyext_plugin metadata_plugin = { |
| 123 | .id = "libyang 2 - metadata, version 1", |
| 124 | .compile = &annotation_compile, |
| 125 | .validate = NULL, |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 126 | .free = annotation_free |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 127 | }; |