Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 1 | /** |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 2 | * @file messages_server.h |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @brief libnetconf2's functions and structures of server NETCONF messages. |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 5 | * |
Michal Vasko | 95ea9ff | 2021-11-09 12:29:14 +0100 | [diff] [blame] | 6 | * @copyright |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 7 | * Copyright (c) 2015-2021 CESNET, z.s.p.o. |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 8 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 9 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 10 | * You may not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
Michal Vasko | afd416b | 2016-02-25 14:51:46 +0100 | [diff] [blame] | 12 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 13 | * https://opensource.org/licenses/BSD-3-Clause |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #ifndef NC_MESSAGES_SERVER_H_ |
| 17 | #define NC_MESSAGES_SERVER_H_ |
| 18 | |
Michal Vasko | c09730e | 2019-01-17 10:07:26 +0100 | [diff] [blame] | 19 | #ifdef __cplusplus |
| 20 | extern "C" { |
| 21 | #endif |
| 22 | |
roman | 3f9b65c | 2023-06-05 14:26:58 +0200 | [diff] [blame] | 23 | #include <stdarg.h> |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 24 | #include <stdint.h> |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 25 | |
roman | 3f9b65c | 2023-06-05 14:26:58 +0200 | [diff] [blame] | 26 | #include <libyang/libyang.h> |
| 27 | |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 28 | #include "netconf.h" |
Radek Krejci | 93e8022 | 2016-10-03 13:34:25 +0200 | [diff] [blame] | 29 | #include "session.h" |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 30 | |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 31 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 32 | * @defgroup server_msg Server Messages |
| 33 | * @ingroup server |
| 34 | * |
| 35 | * @brief Functions to create NETCONF Event notifications and replies to the NETCONF RPCs (or actions). |
| 36 | * @{ |
| 37 | */ |
| 38 | |
| 39 | /** |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 40 | * @brief Enumeration of NETCONF errors |
| 41 | */ |
Michal Vasko | 495c946 | 2016-01-15 11:27:43 +0100 | [diff] [blame] | 42 | typedef enum NC_ERROR { |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 43 | NC_ERR_UNKNOWN = 0, /**< unknown error */ |
| 44 | NC_ERR_IN_USE, /**< in-use error */ |
| 45 | NC_ERR_INVALID_VALUE, /**< invalid-value error */ |
| 46 | NC_ERR_TOO_BIG, /**< too-big error */ |
| 47 | NC_ERR_MISSING_ATTR, /**< missing-attribute error */ |
| 48 | NC_ERR_BAD_ATTR, /**< bad-attribute error */ |
| 49 | NC_ERR_UNKNOWN_ATTR, /**< unknown-attribute error */ |
| 50 | NC_ERR_MISSING_ELEM, /**< missing-element error */ |
| 51 | NC_ERR_BAD_ELEM, /**< bad-element error */ |
| 52 | NC_ERR_UNKNOWN_ELEM, /**< unknown-element error */ |
| 53 | NC_ERR_UNKNOWN_NS, /**< unknown-namespace error */ |
| 54 | NC_ERR_ACCESS_DENIED, /**< access-denied error */ |
| 55 | NC_ERR_LOCK_DENIED, /**< lock-denied error */ |
| 56 | NC_ERR_RES_DENIED, /**< resource-denied error */ |
| 57 | NC_ERR_ROLLBACK_FAILED, /**< rollback-failed error */ |
| 58 | NC_ERR_DATA_EXISTS, /**< data-exists error */ |
| 59 | NC_ERR_DATA_MISSING, /**< data-missing error */ |
| 60 | NC_ERR_OP_NOT_SUPPORTED, /**< operation-not-supported error */ |
| 61 | NC_ERR_OP_FAILED, /**< operation-failed error */ |
| 62 | NC_ERR_MALFORMED_MSG /**< malformed-message error */ |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 63 | } NC_ERR; |
| 64 | |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 65 | /** |
| 66 | * @brief Enumeration of NETCONF error type (layer) |
| 67 | */ |
Michal Vasko | 495c946 | 2016-01-15 11:27:43 +0100 | [diff] [blame] | 68 | typedef enum NC_ERROR_TYPE { |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 69 | NC_ERR_TYPE_UNKNOWN = 0, /**< unknown layer */ |
| 70 | NC_ERR_TYPE_TRAN, /**< transport layer */ |
| 71 | NC_ERR_TYPE_RPC, /**< RPC layer */ |
| 72 | NC_ERR_TYPE_PROT, /**< protocol layer */ |
| 73 | NC_ERR_TYPE_APP /**< application layer */ |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 74 | } NC_ERR_TYPE; |
| 75 | |
| 76 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 77 | * @brief NETCONF server rpc-reply object |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 78 | */ |
| 79 | struct nc_server_reply; |
| 80 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 81 | /** |
Radek Krejci | 93e8022 | 2016-10-03 13:34:25 +0200 | [diff] [blame] | 82 | * @brief NETCONF server Event Notification object |
| 83 | */ |
| 84 | struct nc_server_notif; |
| 85 | |
| 86 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 87 | * @brief NETCONF server error structure |
| 88 | */ |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 89 | struct nc_server_error; |
| 90 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 91 | /** |
| 92 | * @brief Create an OK rpc-reply object. |
| 93 | * |
| 94 | * @return rpc-reply object, NULL on error. |
| 95 | */ |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 96 | struct nc_server_reply *nc_server_reply_ok(void); |
| 97 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 98 | /** |
| 99 | * @brief Create a DATA rpc-reply object. |
| 100 | * |
Michal Vasko | 3824fa7 | 2022-06-06 11:50:35 +0200 | [diff] [blame] | 101 | * @param[in] data Reply data tree pointing to the RPC/action itself. This tree must be valid according to |
Michal Vasko | b08743b | 2016-04-13 14:23:49 +0200 | [diff] [blame] | 102 | * the RPC output of the RPC this is a reply to. |
Radek Krejci | 36dfdb3 | 2016-09-01 16:56:35 +0200 | [diff] [blame] | 103 | * @param[in] wd with-default mode if applicable |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 104 | * @param[in] paramtype Determines how the @p data parameter is treated. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 105 | * @return rpc-reply object, NULL on error. |
| 106 | */ |
Radek Krejci | 36dfdb3 | 2016-09-01 16:56:35 +0200 | [diff] [blame] | 107 | struct nc_server_reply *nc_server_reply_data(struct lyd_node *data, NC_WD_MODE wd, NC_PARAMTYPE paramtype); |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 108 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 109 | /** |
| 110 | * @brief Create an ERROR rpc-reply object. |
| 111 | * |
roman | 0f5fa42 | 2023-08-07 09:03:24 +0200 | [diff] [blame] | 112 | * @param[in] err Errors created by nc_err(). It will be freed with the returned object. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 113 | * @return rpc-reply object, NULL on error. |
| 114 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 115 | struct nc_server_reply *nc_server_reply_err(struct lyd_node *err); |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 116 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 117 | /** |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 118 | * @brief Add another error opaque data node tree to an ERROR rpc-reply object. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 119 | * |
| 120 | * @param[in] reply ERROR reply to add to. |
roman | 0f5fa42 | 2023-08-07 09:03:24 +0200 | [diff] [blame] | 121 | * @param[in] err Error created by nc_err(). It will be freed with the returned object. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 122 | * @return 0 on success, -1 on errror. |
| 123 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 124 | int nc_server_reply_add_err(struct nc_server_reply *reply, struct lyd_node *err); |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 125 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 126 | /** |
Michal Vasko | f1c26c2 | 2021-04-12 16:34:33 +0200 | [diff] [blame] | 127 | * @brief Get last error from an ERROR rpc-reply object. |
Michal Vasko | aa2e5a7 | 2017-03-16 09:48:44 +0100 | [diff] [blame] | 128 | * |
| 129 | * @param[in] reply ERROR reply to read from. |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 130 | * @return Last error opaque data tree, NULL on failure. |
Michal Vasko | aa2e5a7 | 2017-03-16 09:48:44 +0100 | [diff] [blame] | 131 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 132 | const struct lyd_node *nc_server_reply_get_last_err(const struct nc_server_reply *reply); |
Michal Vasko | aa2e5a7 | 2017-03-16 09:48:44 +0100 | [diff] [blame] | 133 | |
| 134 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 135 | * @brief Create a server error structure. Its \<error-message\> is filled with |
| 136 | * a general description of the specific error. |
| 137 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 138 | * @param[in] ctx libyang context to use. |
Radek Krejci | 127f895 | 2016-10-12 14:57:16 +0200 | [diff] [blame] | 139 | * @param[in] tag \<error-tag\> of the server error specified as #NC_ERR value. According to the tag, the |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 140 | * specific additional parameters are required: |
| 141 | * - #NC_ERR_IN_USE |
| 142 | * - #NC_ERR_INVALID_VALUE |
| 143 | * - #NC_ERR_ACCESS_DENIED |
| 144 | * - #NC_ERR_ROLLBACK_FAILED |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 145 | * - #NC_ERR_OP_NOT_SUPPORTED |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 146 | * - #NC_ERR_TOO_BIG |
| 147 | * - #NC_ERR_RES_DENIED |
| 148 | * - #NC_ERR_OP_FAILED |
| 149 | * - `NC_ERR_TYPE type;` - type (layer) of the error. |
| 150 | * - #NC_ERR_MISSING_ATTR |
| 151 | * - #NC_ERR_BAD_ATTR |
| 152 | * - #NC_ERR_UNKNOWN_ATTR |
| 153 | * - `NC_ERR_TYPE type;` - type (layer) of the error. |
| 154 | * - `const char *attr_name;` - error \<bad-attribute\> value. |
| 155 | * - `const char *elem_name;` - error \<bad-element\> value. |
| 156 | * - #NC_ERR_MISSING_ELEM |
| 157 | * - #NC_ERR_BAD_ELEM |
| 158 | * - #NC_ERR_UNKNOWN_ELEM |
| 159 | * - `NC_ERR_TYPE type;` - type (layer) of the error. |
| 160 | * - `const char *elem_name;` - error \<bad-element\> value. |
| 161 | * - #NC_ERR_UNKNOWN_NS |
| 162 | * - `NC_ERR_TYPE type;` - type (layer) of the error. |
| 163 | * - `const char *elem_name;` - error \<bad-element\> value. |
| 164 | * - `const char *nc_name;` - error \<bad-namespace\> value. |
| 165 | * - #NC_ERR_LOCK_DENIED |
| 166 | * - `uint32_t session_id;` - error \<session-id\> value. |
| 167 | * - #NC_ERR_DATA_EXISTS |
| 168 | * - #NC_ERR_DATA_MISSING |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 169 | * - #NC_ERR_MALFORMED_MSG |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 170 | * - no additional arguments |
Michal Vasko | 3824fa7 | 2022-06-06 11:50:35 +0200 | [diff] [blame] | 171 | * @param[in] ... Additional arguments depending on the @p tag used. |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 172 | * @return Opaque data node tree representing the error. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 173 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 174 | struct lyd_node *nc_err(const struct ly_ctx *ctx, NC_ERR tag, ...); |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 175 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 176 | /** |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 177 | * @brief Get the \<error-type\> of a server error. |
| 178 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 179 | * @param[in] err Error opaque data node tree to read from. |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 180 | * @return Server error type, 0 on error. |
| 181 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 182 | NC_ERR_TYPE nc_err_get_type(const struct lyd_node *err); |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 183 | |
| 184 | /** |
| 185 | * @brief Get the \<error-tag\> of a server error. |
| 186 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 187 | * @param[in] err Error opaque data node tree to read from. |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 188 | * @return Server error tag, 0 on error. |
| 189 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 190 | NC_ERR nc_err_get_tag(const struct lyd_node *err); |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 191 | |
| 192 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 193 | * @brief Set the \<error-app-tag\> element of an error. Any previous value will be overwritten. |
| 194 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 195 | * @param[in] err Error opaque data node tree to modify. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 196 | * @param[in] error_app_tag New value of \<error-app-tag\>. |
| 197 | * @return 0 on success, -1 on error. |
| 198 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 199 | int nc_err_set_app_tag(struct lyd_node *err, const char *error_app_tag); |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 200 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 201 | /** |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 202 | * @brief Get the \<error-app-tag\> of a server error. |
| 203 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 204 | * @param[in] err Error opaque data node tree to read from. |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 205 | * @return Server error app tag, NULL on error. |
| 206 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 207 | const char *nc_err_get_app_tag(const struct lyd_node *err); |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 208 | |
| 209 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 210 | * @brief Set the \<error-path\> element of an error. Any previous value will be overwritten. |
| 211 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 212 | * @param[in] err Error opaque data node tree to modify. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 213 | * @param[in] error_path New value of \<error-path\>. |
| 214 | * @return 0 on success, -1 on error. |
| 215 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 216 | int nc_err_set_path(struct lyd_node *err, const char *error_path); |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 217 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 218 | /** |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 219 | * @brief Get the \<error-path\> of a server error. |
| 220 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 221 | * @param[in] err Error opaque data node tree to read from. |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 222 | * @return Server error path, NULL on error. |
| 223 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 224 | const char *nc_err_get_path(const struct lyd_node *err); |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 225 | |
| 226 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 227 | * @brief Set the \<error-message\> element of an error. Any previous value will be overwritten. |
| 228 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 229 | * @param[in] err Error opaque data node tree to modify. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 230 | * @param[in] error_message New value of \<error-message\>. |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 231 | * @param[in] lang Optional language of @p error_message. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 232 | * @return 0 on success, -1 on error. |
| 233 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 234 | int nc_err_set_msg(struct lyd_node *err, const char *error_message, const char *lang); |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 235 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 236 | /** |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 237 | * @brief Get the \<error-message\> of a server error. |
| 238 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 239 | * @param[in] err Error opaque data node tree to read from. |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 240 | * @return Server error message, NULL on error. |
| 241 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 242 | const char *nc_err_get_msg(const struct lyd_node *err); |
Michal Vasko | 8f3198f | 2016-05-04 10:45:28 +0200 | [diff] [blame] | 243 | |
| 244 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 245 | * @brief Set the \<session-id\> element of an error. Any previous value will be overwritten. |
| 246 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 247 | * @param[in] err Error opaque data node tree to modify. |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 248 | * @param[in] session_id New value of \<session-id\>. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 249 | * @return 0 on success, -1 on error. |
| 250 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 251 | int nc_err_set_sid(struct lyd_node *err, uint32_t session_id); |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 252 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 253 | /** |
| 254 | * @brief Add a \<bad-attribute\> element to an error. |
| 255 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 256 | * @param[in] err Error opaque data node tree to modify. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 257 | * @param[in] attr_name Value of the new \<bad-attribute\> element. |
| 258 | * @return 0 on success, -1 on error. |
| 259 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 260 | int nc_err_add_bad_attr(struct lyd_node *err, const char *attr_name); |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 261 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 262 | /** |
| 263 | * @brief Add a \<bad-element\> element to an error. |
| 264 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 265 | * @param[in] err Error opaque data node tree to modify. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 266 | * @param[in] elem_name Value of the new \<bad-element\> element. |
| 267 | * @return 0 on success, -1 on error. |
| 268 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 269 | int nc_err_add_bad_elem(struct lyd_node *err, const char *elem_name); |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 270 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 271 | /** |
| 272 | * @brief Add a \<bad-namespace\> element to an error. |
| 273 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 274 | * @param[in] err Error opaque data node tree to modify. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 275 | * @param[in] ns_name Value of the new \<bad-namespace\> element. |
| 276 | * @return 0 on success, -1 on error. |
| 277 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 278 | int nc_err_add_bad_ns(struct lyd_node *err, const char *ns_name); |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 279 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 280 | /** |
| 281 | * @brief Add an additional custom element to an error. |
| 282 | * |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 283 | * @param[in] err Error opaque data node tree to modify. |
| 284 | * @param[in] other Other error opaque data node tree. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 285 | * @return 0 on success, -1 on error. |
| 286 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 287 | int nc_err_add_info_other(struct lyd_node *err, struct lyd_node *other); |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 288 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 289 | /** |
| 290 | * @brief Free a server rpc-reply object. |
| 291 | * |
| 292 | * @param[in] reply Server rpc-reply object to free. |
| 293 | */ |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 294 | void nc_server_reply_free(struct nc_server_reply *reply); |
| 295 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 296 | /** |
Radek Krejci | 93e8022 | 2016-10-03 13:34:25 +0200 | [diff] [blame] | 297 | * @brief Create Event Notification object to be sent to the subscribed client(s). |
| 298 | * |
| 299 | * @param[in] event Notification data tree (valid as LYD_OPT_NOTIF) from libyang. The tree is directly used in created |
| 300 | * object, so the caller is supposed to not free the tree on its own, but only via freeng the created object. |
| 301 | * @param[in] eventtime YANG dateTime format value of the time when the event was generated by the event source. |
Michal Vasko | 49eb3f4 | 2021-05-19 10:20:57 +0200 | [diff] [blame] | 302 | * Caller can use nc_timespec2datetime() to create the value from a timespec value. |
Michal Vasko | fc9dbdd | 2017-03-17 09:27:57 +0100 | [diff] [blame] | 303 | * @param[in] paramtype How to further manage data parameters. |
Radek Krejci | 93e8022 | 2016-10-03 13:34:25 +0200 | [diff] [blame] | 304 | * @return Newly created structure of the Event Notification object to be sent to the clients via nc_server_send_notif() |
| 305 | * and freed using nc_server_notif_free(). |
| 306 | */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 307 | struct nc_server_notif *nc_server_notif_new(struct lyd_node *event, char *eventtime, NC_PARAMTYPE paramtype); |
Radek Krejci | 93e8022 | 2016-10-03 13:34:25 +0200 | [diff] [blame] | 308 | |
| 309 | /** |
| 310 | * @brief Send NETCONF Event Notification via the session. |
| 311 | * |
| 312 | * @param[in] session NETCONF session where the Event Notification will be written. |
| 313 | * @param[in] notif NETCOFN Notification object to send via specified session. Object can be created by |
| 314 | * nc_notif_new() function. |
| 315 | * @param[in] timeout Timeout for writing in milliseconds. Use negative value for infinite |
| 316 | * waiting and 0 for return if data cannot be sent immediately. |
| 317 | * @return #NC_MSG_NOTIF on success, |
| 318 | * #NC_MSG_WOULDBLOCK in case of a busy session, and |
| 319 | * #NC_MSG_ERROR on error. |
| 320 | */ |
| 321 | NC_MSG_TYPE nc_server_notif_send(struct nc_session *session, struct nc_server_notif *notif, int timeout); |
| 322 | |
| 323 | /** |
| 324 | * @brief Free a server Event Notification object. |
| 325 | * |
| 326 | * @param[in] notif Server Event Notification object to free. |
| 327 | */ |
| 328 | void nc_server_notif_free(struct nc_server_notif *notif); |
| 329 | |
Michal Vasko | 9a2e4d2 | 2017-03-17 09:44:49 +0100 | [diff] [blame] | 330 | /** |
| 331 | * @brief Get the notification timestamp. |
| 332 | * |
| 333 | * @param[in] notif Server notification to read from. |
| 334 | * @return Datetime timestamp of the notification, NULL on error. |
| 335 | */ |
| 336 | const char *nc_server_notif_get_time(const struct nc_server_notif *notif); |
| 337 | |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 338 | /** @} Client Messages */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 339 | |
Michal Vasko | c09730e | 2019-01-17 10:07:26 +0100 | [diff] [blame] | 340 | #ifdef __cplusplus |
| 341 | } |
| 342 | #endif |
| 343 | |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 344 | #endif /* NC_MESSAGES_SERVER_H_ */ |