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