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 | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 29 | struct lysc_ext_substmt annotation_substmt[7] = { |
| 30 | {LY_STMT_IF_FEATURE, LY_STMT_CARD_ANY, NULL}, |
| 31 | {LY_STMT_UNITS, LY_STMT_CARD_OPT, NULL}, |
| 32 | {LY_STMT_STATUS, LY_STMT_CARD_OPT, NULL}, |
| 33 | {LY_STMT_TYPE, LY_STMT_CARD_MAND, NULL}, |
| 34 | {LY_STMT_DESCRIPTION, LY_STMT_CARD_OPT, NULL}, |
| 35 | {LY_STMT_REFERENCE, LY_STMT_CARD_OPT, NULL}, |
| 36 | {0, 0, 0} /* terminating item */ |
| 37 | }; |
| 38 | |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 39 | /** |
| 40 | * @brief Compile annotation extension instances. |
| 41 | * |
| 42 | * Implementation of lyext_clb_compile callback set as lyext_plugin::compile. |
| 43 | */ |
| 44 | LY_ERR |
| 45 | annotation_compile(struct lysc_ctx *cctx, const struct lysp_ext_instance *p_ext, struct lysc_ext_instance *c_ext) |
| 46 | { |
| 47 | struct lyext_metadata *annotation; |
| 48 | struct lysc_module *mod_c; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 49 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 50 | |
| 51 | /* annotations can appear only at the top level of a YANG module or submodule */ |
| 52 | if (c_ext->parent_type != LYEXT_PAR_MODULE) { |
| 53 | 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] | 54 | p_ext->name, lyext_parent2str(c_ext->parent_type)); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 55 | return LY_EVALID; |
| 56 | } |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 57 | /* check mandatory argument */ |
| 58 | if (!c_ext->argument) { |
| 59 | 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] | 60 | p_ext->name); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 61 | return LY_EVALID; |
| 62 | } |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 63 | |
| 64 | mod_c = (struct lysc_module *)c_ext->parent; |
| 65 | |
| 66 | /* check for duplication */ |
| 67 | LY_ARRAY_FOR(mod_c->exts, u) { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 68 | 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] | 69 | /* duplication of the same annotation extension in a single module */ |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 70 | lyext_log(c_ext, LY_LLERR, LY_EVALID, cctx->path, "Extension %s is instantiated multiple times.", p_ext->name); |
| 71 | return LY_EVALID; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | /* compile annotation substatements */ |
| 76 | c_ext->data = annotation = calloc(1, sizeof *annotation); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 77 | LY_CHECK_ERR_RET(!annotation, LOGMEM(cctx->ctx), LY_EMEM); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 78 | annotation_substmt[0].storage = &annotation->iffeatures; |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 79 | annotation_substmt[1].storage = &annotation->units; |
| 80 | annotation_substmt[2].storage = &annotation->flags; |
| 81 | annotation_substmt[3].storage = &annotation->type; |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 82 | /* description and reference are allowed, but not compiled */ |
| 83 | |
| 84 | LY_CHECK_RET(lys_compile_extension_instance(cctx, p_ext, annotation_substmt)); |
| 85 | |
| 86 | return LY_SUCCESS; |
| 87 | } |
| 88 | |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 89 | /** |
| 90 | * @brief Free annotation extension instances' data. |
| 91 | * |
| 92 | * Implementation of lyext_clb_free callback set as lyext_plugin::free. |
| 93 | */ |
| 94 | void |
| 95 | annotation_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext) |
| 96 | { |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 97 | if (!ext->data) { |
| 98 | return; |
| 99 | } |
| 100 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 101 | struct lyext_metadata *annotation = (struct lyext_metadata *)ext->data; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 102 | |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 103 | annotation_substmt[0].storage = &annotation->iffeatures; |
| 104 | annotation_substmt[1].storage = &annotation->units; |
| 105 | annotation_substmt[2].storage = &annotation->flags; |
| 106 | annotation_substmt[3].storage = &annotation->type; |
| 107 | |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 108 | lysc_extension_instance_free(ctx, annotation_substmt); |
| 109 | free(ext->data); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 110 | } |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 111 | |
| 112 | /** |
| 113 | * @brief Plugin for the Metadata's annotation extension |
| 114 | */ |
| 115 | struct lyext_plugin metadata_plugin = { |
| 116 | .id = "libyang 2 - metadata, version 1", |
| 117 | .compile = &annotation_compile, |
| 118 | .validate = NULL, |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 119 | .free = annotation_free |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 120 | }; |