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 | */ |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 14 | |
| 15 | #include <stdlib.h> |
| 16 | |
| 17 | #include "plugins_exts.h" |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 18 | #include "plugins_exts_metadata.h" |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 19 | #include "schema_compile.h" |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame^] | 20 | #include "tree_edit.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 | 1b2eef8 | 2021-02-17 11:17:27 +0100 | [diff] [blame] | 29 | /** |
| 30 | * @brief Representation of the compiled metadata substatements - simplify storage for the items available via |
| 31 | * ::lysc_ext_substmt. |
| 32 | */ |
| 33 | struct lyext_metadata { |
| 34 | struct lysc_type *type; /**< type of the metadata (mandatory) */ |
| 35 | const char *units; /**< units of the leaf's type */ |
| 36 | struct lysc_iffeature *iffeatures; /**< list of if-feature expressions ([sized array](@ref sizedarrays)) */ |
| 37 | const char *dsc; /**< description */ |
| 38 | const char *ref; /**< reference */ |
| 39 | uint16_t flags; /**< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values are allowed */ |
| 40 | }; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 41 | |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 42 | /** |
| 43 | * @brief Compile annotation extension instances. |
| 44 | * |
| 45 | * Implementation of lyext_clb_compile callback set as lyext_plugin::compile. |
| 46 | */ |
| 47 | LY_ERR |
| 48 | annotation_compile(struct lysc_ctx *cctx, const struct lysp_ext_instance *p_ext, struct lysc_ext_instance *c_ext) |
| 49 | { |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame^] | 50 | LY_ERR ret; |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 51 | struct lyext_metadata *annotation; |
| 52 | struct lysc_module *mod_c; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 53 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 54 | |
| 55 | /* annotations can appear only at the top level of a YANG module or submodule */ |
Radek Krejci | ab43086 | 2021-03-02 20:13:40 +0100 | [diff] [blame] | 56 | if ((c_ext->parent_stmt != LY_STMT_MODULE) && (c_ext->parent_stmt != LY_STMT_SUBMODULE)) { |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 57 | 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.", |
Radek Krejci | ab43086 | 2021-03-02 20:13:40 +0100 | [diff] [blame] | 58 | p_ext->name, ly_stmt2str(c_ext->parent_stmt)); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 59 | return LY_EVALID; |
| 60 | } |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 61 | /* check mandatory argument */ |
| 62 | if (!c_ext->argument) { |
| 63 | 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] | 64 | p_ext->name); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 65 | return LY_EVALID; |
| 66 | } |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 67 | |
| 68 | mod_c = (struct lysc_module *)c_ext->parent; |
| 69 | |
| 70 | /* check for duplication */ |
| 71 | LY_ARRAY_FOR(mod_c->exts, u) { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 72 | 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] | 73 | /* duplication of the same annotation extension in a single module */ |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 74 | lyext_log(c_ext, LY_LLERR, LY_EVALID, cctx->path, "Extension %s is instantiated multiple times.", p_ext->name); |
| 75 | return LY_EVALID; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | /* compile annotation substatements */ |
| 80 | c_ext->data = annotation = calloc(1, sizeof *annotation); |
Radek Krejci | 1b2eef8 | 2021-02-17 11:17:27 +0100 | [diff] [blame] | 81 | if (!annotation) { |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame^] | 82 | goto emem; |
Radek Krejci | 1b2eef8 | 2021-02-17 11:17:27 +0100 | [diff] [blame] | 83 | } |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame^] | 84 | LY_ARRAY_CREATE_GOTO(cctx->ctx, c_ext->substmts, 6, ret, emem); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 85 | |
Radek Krejci | 1b2eef8 | 2021-02-17 11:17:27 +0100 | [diff] [blame] | 86 | LY_ARRAY_INCREMENT(c_ext->substmts); |
| 87 | c_ext->substmts[ANNOTATION_SUBSTMT_IFF].stmt = LY_STMT_IF_FEATURE; |
| 88 | c_ext->substmts[ANNOTATION_SUBSTMT_IFF].cardinality = LY_STMT_CARD_ANY; |
| 89 | c_ext->substmts[ANNOTATION_SUBSTMT_IFF].storage = &annotation->iffeatures; |
| 90 | |
| 91 | LY_ARRAY_INCREMENT(c_ext->substmts); |
| 92 | c_ext->substmts[ANNOTATION_SUBSTMT_UNITS].stmt = LY_STMT_UNITS; |
| 93 | c_ext->substmts[ANNOTATION_SUBSTMT_UNITS].cardinality = LY_STMT_CARD_OPT; |
| 94 | c_ext->substmts[ANNOTATION_SUBSTMT_UNITS].storage = &annotation->units; |
| 95 | |
| 96 | LY_ARRAY_INCREMENT(c_ext->substmts); |
| 97 | c_ext->substmts[ANNOTATION_SUBSTMT_STATUS].stmt = LY_STMT_STATUS; |
| 98 | c_ext->substmts[ANNOTATION_SUBSTMT_STATUS].cardinality = LY_STMT_CARD_OPT; |
| 99 | c_ext->substmts[ANNOTATION_SUBSTMT_STATUS].storage = &annotation->flags; |
| 100 | |
| 101 | LY_ARRAY_INCREMENT(c_ext->substmts); |
| 102 | c_ext->substmts[ANNOTATION_SUBSTMT_TYPE].stmt = LY_STMT_TYPE; |
| 103 | c_ext->substmts[ANNOTATION_SUBSTMT_TYPE].cardinality = LY_STMT_CARD_MAND; |
| 104 | c_ext->substmts[ANNOTATION_SUBSTMT_TYPE].storage = &annotation->type; |
| 105 | |
| 106 | LY_ARRAY_INCREMENT(c_ext->substmts); |
| 107 | c_ext->substmts[ANNOTATION_SUBSTMT_DSC].stmt = LY_STMT_DESCRIPTION; |
| 108 | c_ext->substmts[ANNOTATION_SUBSTMT_DSC].cardinality = LY_STMT_CARD_OPT; |
| 109 | c_ext->substmts[ANNOTATION_SUBSTMT_DSC].storage = &annotation->dsc; |
| 110 | |
| 111 | LY_ARRAY_INCREMENT(c_ext->substmts); |
| 112 | c_ext->substmts[ANNOTATION_SUBSTMT_REF].stmt = LY_STMT_REFERENCE; |
| 113 | c_ext->substmts[ANNOTATION_SUBSTMT_REF].cardinality = LY_STMT_CARD_OPT; |
| 114 | c_ext->substmts[ANNOTATION_SUBSTMT_REF].storage = &annotation->ref; |
| 115 | |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame^] | 116 | ret = lys_compile_extension_instance(cctx, p_ext, c_ext); |
| 117 | return ret; |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 118 | |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame^] | 119 | emem: |
| 120 | lyext_log(c_ext, LY_LLERR, LY_EMEM, cctx->path, "Memory allocation failed (%s()).", __func__); |
| 121 | return LY_EMEM; |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 122 | } |
| 123 | |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 124 | /** |
Radek Krejci | adcf63d | 2021-02-09 10:21:18 +0100 | [diff] [blame] | 125 | * @brief INFO printer |
| 126 | * |
| 127 | * Implementation of lyext_clb_schema_printer set as ::lyext_plugin::sprinter |
| 128 | */ |
| 129 | LY_ERR |
| 130 | annotation_schema_printer(struct lys_ypr_ctx *ctx, struct lysc_ext_instance *ext, ly_bool *flag) |
| 131 | { |
| 132 | lysc_print_extension_instance(ctx, ext, flag); |
| 133 | |
| 134 | return LY_SUCCESS; |
| 135 | } |
| 136 | |
| 137 | /** |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 138 | * @brief Free annotation extension instances' data. |
| 139 | * |
Radek Krejci | adcf63d | 2021-02-09 10:21:18 +0100 | [diff] [blame] | 140 | * Implementation of lyext_clb_free callback set as ::lyext_plugin::free. |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 141 | */ |
| 142 | void |
| 143 | annotation_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext) |
| 144 | { |
Radek Krejci | 1b2eef8 | 2021-02-17 11:17:27 +0100 | [diff] [blame] | 145 | if (!ext->substmts) { |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 146 | return; |
| 147 | } |
| 148 | |
Radek Krejci | 1b2eef8 | 2021-02-17 11:17:27 +0100 | [diff] [blame] | 149 | lysc_extension_instance_substatements_free(ctx, ext->substmts); |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 150 | free(ext->data); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 151 | } |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 152 | |
| 153 | /** |
| 154 | * @brief Plugin for the Metadata's annotation extension |
| 155 | */ |
| 156 | struct lyext_plugin metadata_plugin = { |
| 157 | .id = "libyang 2 - metadata, version 1", |
| 158 | .compile = &annotation_compile, |
| 159 | .validate = NULL, |
Radek Krejci | adcf63d | 2021-02-09 10:21:18 +0100 | [diff] [blame] | 160 | .sprinter = &annotation_schema_printer, |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 161 | .free = annotation_free |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 162 | }; |