Radek Krejci | d7e8a62 | 2018-10-29 15:54:55 +0100 | [diff] [blame] | 1 | /** |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 2 | * @file plugins_exts.h |
Radek Krejci | d7e8a62 | 2018-10-29 15:54:55 +0100 | [diff] [blame] | 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief libyang support for YANG extensions implementation. |
| 5 | * |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 6 | * Copyright (c) 2015 - 2019 CESNET, z.s.p.o. |
Radek Krejci | d7e8a62 | 2018-10-29 15:54:55 +0100 | [diff] [blame] | 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 | |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 15 | #ifndef LY_PLUGINS_EXTS_H_ |
| 16 | #define LY_PLUGINS_EXTS_H_ |
Radek Krejci | d7e8a62 | 2018-10-29 15:54:55 +0100 | [diff] [blame] | 17 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 18 | #include "log.h" |
Radek Krejci | 3e6632f | 2021-03-22 22:08:21 +0100 | [diff] [blame] | 19 | #include "plugins.h" |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame] | 20 | #include "tree_edit.h" |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 21 | #include "tree_schema.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 22 | |
Radek Krejci | 5f9a367 | 2021-03-05 21:35:22 +0100 | [diff] [blame] | 23 | #include "plugins_exts_compile.h" |
Radek Krejci | f8d7f9a | 2021-03-10 14:32:36 +0100 | [diff] [blame] | 24 | #include "plugins_exts_print.h" |
Radek Krejci | 5f9a367 | 2021-03-05 21:35:22 +0100 | [diff] [blame] | 25 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 26 | struct ly_ctx; |
| 27 | struct lyd_node; |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 28 | struct lysc_ctx; |
| 29 | struct lyspr_ctx; |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 30 | |
Radek Krejci | d7e8a62 | 2018-10-29 15:54:55 +0100 | [diff] [blame] | 31 | #ifdef __cplusplus |
| 32 | extern "C" { |
| 33 | #endif |
| 34 | |
| 35 | /** |
| 36 | * @defgroup extensions YANG Extensions |
| 37 | * |
| 38 | * @{ |
| 39 | */ |
| 40 | |
| 41 | /** |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 42 | * @brief Extensions API version |
| 43 | */ |
Radek Krejci | a6f61e7 | 2021-03-24 21:00:19 +0100 | [diff] [blame] | 44 | #define LYPLG_EXT_API_VERSION 1 |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 45 | |
| 46 | /** |
Radek Krejci | a6f61e7 | 2021-03-24 21:00:19 +0100 | [diff] [blame] | 47 | * @brief Macro to define plugin information in external plugins |
| 48 | * |
| 49 | * Use as follows: |
| 50 | * LYPLG_EXTENSIONS = {{<filled information of ::lyplg_ext_record>}, ..., {0}}; |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 51 | */ |
Radek Krejci | a6f61e7 | 2021-03-24 21:00:19 +0100 | [diff] [blame] | 52 | #define LYPLG_EXTENSIONS \ |
| 53 | uint32_t plugins_extensions_apiver__ = LYPLG_EXT_API_VERSION; \ |
| 54 | const struct lyplg_ext_record plugins_extensions__[] |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 55 | |
| 56 | /** |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 57 | * @brief Free the extension instance's data compiled with ::lys_compile_extension_instance(). |
Radek Krejci | 1b2eef8 | 2021-02-17 11:17:27 +0100 | [diff] [blame] | 58 | * |
| 59 | * @param[in] libyang context |
| 60 | * @param[in] substmts The sized array of extension instance's substatements. The whole array is freed except the storage |
| 61 | * places which are expected to be covered by the extension plugin. |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 62 | */ |
Radek Krejci | 1b2eef8 | 2021-02-17 11:17:27 +0100 | [diff] [blame] | 63 | void lysc_extension_instance_substatements_free(struct ly_ctx *ctx, struct lysc_ext_substmt *substmts); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 64 | |
| 65 | /** |
Radek Krejci | 1b2eef8 | 2021-02-17 11:17:27 +0100 | [diff] [blame] | 66 | * @brief Get pointer to the storage of the specified substatement in the given extension instance. |
| 67 | * |
| 68 | * The function simplifies access into the ::lysc_ext_instance.substmts sized array. |
| 69 | * |
| 70 | * @param[in] ext Compiled extension instance to process. |
| 71 | * @param[in] substmt Extension substatement to search for. |
| 72 | * @param[out] instance_p Pointer where the storage of the @p substmt will be provided. The specific type returned depends |
| 73 | * on the @p substmt and can be found in the documentation of each ::ly_stmt value. Also note that some of the substatements |
| 74 | * (::lysc_node based or flags) can share the storage with other substatements. In case the pointer is NULL, still the return |
| 75 | * code can be used to at least know if the substatement is allowed for the extension. |
| 76 | * @param[out] cardinality_p Pointer to provide allowed cardinality of the substatements in the extension. Note that in some |
| 77 | * cases, the type of the storage depends also on the cardinality of the substatement. |
| 78 | * @return LY_SUCCESS if the @p substmt found. |
| 79 | * @return LY_ENOT in case the @p ext is not able to store (does not allow) the specified @p substmt. |
| 80 | */ |
| 81 | LY_ERR lysc_ext_substmt(const struct lysc_ext_instance *ext, enum ly_stmt substmt, |
| 82 | void **instance_p, enum ly_stmt_cardinality *cardinality_p); |
| 83 | |
| 84 | /** |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 85 | * @brief Callback to compile extension from the lysp_ext_instance to the lysc_ext_instance. The later structure is generally prepared |
| 86 | * and only the extension specific data are supposed to be added (if any). |
| 87 | * |
Radek Krejci | adcf63d | 2021-02-09 10:21:18 +0100 | [diff] [blame] | 88 | * The parsed generic statements can be processed by the callback on its own or the ::lys_compile_extension_instance |
| 89 | * function can be used to let the compilation to libyang following the standard rules for processing the YANG statements. |
| 90 | * |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 91 | * @param[in] cctx Current compile context. |
| 92 | * @param[in] p_ext Parsed extension instance data. |
| 93 | * @param[in,out] c_ext Prepared compiled extension instance structure where an addition, extension-specific, data are supposed to be placed |
| 94 | * for later use (data validation or use of external tool). |
| 95 | * @return LY_SUCCESS in case of success. |
| 96 | * @return LY_EVALID in case of non-conforming parsed data. |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 97 | * @return LY_ENOT in case the extension instance is not supported and should be removed. |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 98 | */ |
| 99 | typedef LY_ERR (*lyext_clb_compile)(struct lysc_ctx *cctx, const struct lysp_ext_instance *p_ext, struct lysc_ext_instance *c_ext); |
| 100 | |
| 101 | /** |
Radek Krejci | adcf63d | 2021-02-09 10:21:18 +0100 | [diff] [blame] | 102 | * @brief Callback to free the extension specific data created by the ::lyext_clb_compile callback of the same extension plugin. |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 103 | * |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 104 | * @param[in] ctx libyang context. |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 105 | * @param[in,out] ext Compiled extension structure where the data to free are placed. |
| 106 | */ |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 107 | typedef void (*lyext_clb_free)(struct ly_ctx *ctx, struct lysc_ext_instance *ext); |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 108 | |
| 109 | /** |
| 110 | * @brief Callback to decide if data instance is valid according to the schema. |
| 111 | * |
| 112 | * The callback is used only for the extension instances placed in the following parent statements |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 113 | * (which is specified as ::lysc_ext_instance.parent_type): |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 114 | * - LYEXT_PAR_NODE - @p node is instance of the schema node where the extension instance was specified. |
| 115 | * - LYEXT_PAR_TPDF - @p node is instance of the schema node with the value of the typedef's type where the extension instance was specified. |
| 116 | * - LYEXT_PAR_TYPE - @p node is instance of the schema node with the value of the type where the extension instance was specified. |
| 117 | * - LYEXT_PAR_TYPE_BIT - @p node is instance of the schema node with the value of the bit where the extension instance was specified. |
| 118 | * - LYEXT_PAR_TYPE_ENUM - @p node is instance of the schema node with the value of the enum where the extension instance was specified. |
| 119 | * |
| 120 | * @param[in] ext Extension instance to be checked. |
| 121 | * @param[in] node Data node, where the extension data are supposed to be placed. |
| 122 | * |
| 123 | * @return LY_SUCCESS on data validation success. |
| 124 | * @return LY_EVALID in case the validation fails. |
| 125 | */ |
| 126 | typedef LY_ERR (*lyext_clb_data_validation)(struct lysc_ext_instance *ext, struct lyd_node *node); |
| 127 | |
| 128 | /** |
Radek Krejci | adcf63d | 2021-02-09 10:21:18 +0100 | [diff] [blame] | 129 | * @brief Callback to print the compiled extension instance's private data in the INFO format. |
| 130 | * |
| 131 | * @param[in] ctx YANG printer context to provide output handler and other information for printing. |
| 132 | * @param[in] ext The compiled extension instance, mainly to access the extensions. |
| 133 | * @param[in, out] flag Flag to be shared with the caller regarding the opening brackets - 0 if the '{' not yet printed, |
| 134 | * 1 otherwise. |
| 135 | * |
| 136 | * @return LY_SUCCESS when everything was fine, other LY_ERR values in case of failure |
| 137 | */ |
Radek Krejci | f8d7f9a | 2021-03-10 14:32:36 +0100 | [diff] [blame] | 138 | typedef LY_ERR (*lyext_clb_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] | 139 | |
| 140 | /** |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 141 | * @brief Extension plugin implementing various aspects of a YANG extension |
| 142 | */ |
Radek Krejci | cc9e30f | 2021-03-29 12:45:08 +0200 | [diff] [blame] | 143 | struct lyplg_ext { |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 144 | const char *id; /**< Plugin identification (mainly for distinguish incompatible versions of the plugins for external tools) */ |
| 145 | lyext_clb_compile compile; /**< Callback to compile extension instance from the parsed data */ |
| 146 | lyext_clb_data_validation validate; /**< Callback to decide if data instance is valid according to the schema. */ |
Radek Krejci | adcf63d | 2021-02-09 10:21:18 +0100 | [diff] [blame] | 147 | lyext_clb_schema_printer sprinter; /**< Callback to print the compiled content (info format) of the extension instance */ |
| 148 | /* lyext_clb_data_printer dprinter; ? */ |
Radek Krejci | cc9e30f | 2021-03-29 12:45:08 +0200 | [diff] [blame] | 149 | lyext_clb_free free; /**< Free the extension instance specific data created by ::lyplg_ext.compile callback */ |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 150 | }; |
| 151 | |
Radek Krejci | 3e6632f | 2021-03-22 22:08:21 +0100 | [diff] [blame] | 152 | struct lyplg_ext_record { |
| 153 | /* plugin identification */ |
| 154 | const char *module; /**< name of the module where the extension is defined */ |
| 155 | const char *revision; /**< optional module revision - if not specified, the plugin applies to any revision, |
| 156 | which is not an optimal approach due to a possible future revisions of the module. |
| 157 | Instead, there should be defined multiple items in the plugins list, each with the |
| 158 | different revision, but all with the same pointer to the plugin functions. The |
| 159 | only valid use case for the NULL revision is the case the module has no revision. */ |
| 160 | const char *name; /**< name of the extension */ |
| 161 | |
| 162 | /* runtime data */ |
| 163 | struct lyplg_ext plugin; /**< data to utilize plugin implementation */ |
| 164 | }; |
| 165 | |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 166 | /** |
| 167 | * @brief Provide a log message from an extension plugin. |
| 168 | * |
| 169 | * @param[in] ext Compiled extension structure providing generic information about the extension/plugin causing the message. |
| 170 | * @param[in] level Log message level (error, warning, etc.) |
| 171 | * @param[in] err_no Error type code. |
| 172 | * @param[in] path Path relevant to the message. |
| 173 | * @param[in] format Format string to print. |
| 174 | */ |
| 175 | void lyext_log(const struct lysc_ext_instance *ext, LY_LOG_LEVEL level, LY_ERR err_no, const char *path, const char *format, ...); |
| 176 | |
Radek Krejci | 0e59c31 | 2019-08-15 15:34:15 +0200 | [diff] [blame] | 177 | /** @} extensions */ |
Radek Krejci | d7e8a62 | 2018-10-29 15:54:55 +0100 | [diff] [blame] | 178 | |
| 179 | #ifdef __cplusplus |
| 180 | } |
| 181 | #endif |
| 182 | |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 183 | #endif /* LY_PLUGINS_EXTS_H_ */ |