Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file log.h |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief Logger manipulation routines and error definitions. |
| 5 | * |
| 6 | * Copyright (c) 2015 - 2018 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 | |
| 15 | #ifndef LY_LOG_H_ |
| 16 | #define LY_LOG_H_ |
| 17 | |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 18 | #include <stdint.h> |
| 19 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 20 | #ifdef __cplusplus |
| 21 | extern "C" { |
| 22 | #endif |
| 23 | |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 24 | /* dummy context structure */ |
| 25 | struct ly_ctx; |
| 26 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 27 | /** |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 28 | * @brief Type to indicate boolean value. |
| 29 | * |
| 30 | * Do not test for actual value. Instead, handle it as true/false value in condition. |
| 31 | */ |
| 32 | typedef uint8_t ly_bool; |
| 33 | |
| 34 | /** |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 35 | * @page howtoLogger Information Logging |
| 36 | * |
| 37 | * The libyang logger is supposed to process all the messages (and some other accompanied information) generated by the performed |
| 38 | * functions. According to the logger settings, the information can be printed, stored or further processed by a callback |
| 39 | * functions. |
| 40 | * |
| 41 | * The logger is tightly connected with [errors handling](@ref howtoErrors), because when an error appears, the logger (according |
| 42 | * to [logger options](@ref logopts)) generates error records available via libyang context. |
| 43 | * |
| 44 | * There are 4 verbosity levels defined as ::LY_LOG_LEVEL. The level can be changed by the ::ly_log_level() function. |
| 45 | * By default, the verbosity level is set to #LY_LLERR value, so only the errors are processed. |
| 46 | * |
| 47 | * By default, all libyang messages are printed to `stderr`. However, the callers are able to set their own logging callback |
| 48 | * function (::ly_log_clb). In that case, instead of printing messages, libyang passes error level, message and path (if any) to |
| 49 | * the caller's callback function set via ::ly_set_log_clb(). In case of error level, the error information is still |
| 50 | * automatically stored and available via the [error handling functions](@ref howtoErrors). |
| 51 | * |
| 52 | * With [logging options](@ref logopts) set via ::ly_log_options(), the caller can modify what is done with all the messages. |
| 53 | * Default flags are ::LY_LOLOG and ::LY_LOSTORE_LAST so that messages are logged and the last one is stored. If you set the flag |
| 54 | * ::LY_LOSTORE, all the messages will be stored. Be careful because unless you regularly clean them, the error list in context |
| 55 | * will grow indefinitely. |
| 56 | * |
| 57 | * As a separate group, there are @ref dbggroup to select group of debugging messages to print. The options can be set via |
| 58 | * ::ly_log_dbg_groups() function, but note that the options take effect only in case the libyang is compiled in |
Radek Krejci | 7132fc5 | 2020-10-26 14:34:06 +0100 | [diff] [blame] | 59 | * [Debug build mode](@ref build). |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 60 | * |
| 61 | * \note API for this group of functions is described in the [logger module](@ref log). |
| 62 | * |
| 63 | * Functions List |
| 64 | * -------------- |
| 65 | * - ::ly_log_level() |
| 66 | * - ::ly_log_dbg_groups() |
| 67 | * - ::ly_log_options() |
| 68 | * - ::ly_set_log_clb() |
| 69 | * - ::ly_get_log_clb() |
| 70 | * |
| 71 | */ |
| 72 | |
| 73 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 74 | * @defgroup log Logger |
| 75 | * @{ |
| 76 | * |
| 77 | * Publicly visible functions and values of the libyang logger. For more |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 78 | * information, see \ref howtoLogger. |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 79 | */ |
| 80 | |
| 81 | /** |
| 82 | * @typedef LY_LOG_LEVEL |
| 83 | * @brief Verbosity levels of the libyang logger. |
| 84 | */ |
| 85 | typedef enum |
| 86 | { |
| 87 | LY_LLERR = 0, /**< Print only error messages, default value. */ |
| 88 | LY_LLWRN = 1, /**< Print error and warning messages. */ |
| 89 | LY_LLVRB = 2, /**< Besides errors and warnings, print some other verbose messages. */ |
| 90 | LY_LLDBG = 3 /**< Print all messages including some development debug messages (be careful, |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 91 | without subsequently calling ::ly_log_dbg_groups() no debug messages will be printed!). */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 92 | } LY_LOG_LEVEL; |
| 93 | |
| 94 | /** |
| 95 | * @brief Set logger verbosity level. |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 96 | * |
aPiecek | b0445f2 | 2021-06-24 11:34:07 +0200 | [diff] [blame] | 97 | * To get the current value, the function must be called twice resetting the level by the received value. |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 98 | * |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 99 | * @param[in] level Verbosity level. |
| 100 | * @return Previous verbosity level. |
| 101 | */ |
Radek Krejci | 52b6d51 | 2020-10-12 12:33:17 +0200 | [diff] [blame] | 102 | LY_LOG_LEVEL ly_log_level(LY_LOG_LEVEL level); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 103 | |
| 104 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 105 | * @ingroup logger |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 106 | * @defgroup logopts Logging options |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 107 | * |
| 108 | * Logging option bits of libyang. |
| 109 | * |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 110 | * Can be set via ::ly_log_options(). |
| 111 | * |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 112 | * @{ |
| 113 | */ |
| 114 | #define LY_LOLOG 0x01 /**< Log messages normally, using callback if set. If not set, messages will |
| 115 | not be printed by libyang. */ |
| 116 | #define LY_LOSTORE 0x02 /**< Store any generated errors or warnings, never verbose or debug messages. |
| 117 | Note that if #LY_LOLOG is not set then verbose and debug messages are always lost. */ |
| 118 | #define LY_LOSTORE_LAST 0x06 /**< Store any generated errors or warnings but only the last message, always overwrite |
| 119 | the previous one. */ |
| 120 | |
| 121 | /** |
| 122 | * @} |
| 123 | */ |
| 124 | |
| 125 | /** |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 126 | * @brief Set logger options. Default is #LY_LOLOG | #LY_LOSTORE_LAST. |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 127 | * |
aPiecek | b0445f2 | 2021-06-24 11:34:07 +0200 | [diff] [blame] | 128 | * To get the current value, the function must be called twice resetting the level by the received value. |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 129 | * |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 130 | * @param[in] opts Bitfield of @ref logopts. |
| 131 | * @return Previous logger options. |
| 132 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 133 | uint32_t ly_log_options(uint32_t opts); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 134 | |
| 135 | #ifndef NDEBUG |
| 136 | |
| 137 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 138 | * @ingroup log |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 139 | * @defgroup dbggroup Debug messages groups |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 140 | * |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 141 | * Categories of the debug messages. |
| 142 | * |
| 143 | * Allows to show only the selected group(s) of the debug messages. |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 144 | * |
| 145 | * @{ |
| 146 | */ |
| 147 | |
Michal Vasko | e558f79 | 2021-07-28 08:20:15 +0200 | [diff] [blame] | 148 | #define LY_LDGDICT 0x01 /**< Dictionary additions and deletions. */ |
| 149 | #define LY_LDGXPATH 0x02 /**< XPath parsing end evaluation. */ |
| 150 | #define LY_LDGDEPSETS 0x04 /**< Dependency module sets for schema compilation. */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 151 | |
| 152 | /** |
| 153 | * @} |
| 154 | */ |
| 155 | |
| 156 | /** |
| 157 | * @brief Enable specific debugging messages (independent of log level). |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 158 | * |
aPiecek | b0445f2 | 2021-06-24 11:34:07 +0200 | [diff] [blame] | 159 | * To get the current value, the function must be called twice resetting the level by the received value. |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 160 | * |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 161 | * @param[in] dbg_groups Bitfield of enabled debug message groups (see @ref dbggroup). |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 162 | * @return Previous options bitfield. |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 163 | */ |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 164 | uint32_t ly_log_dbg_groups(uint32_t dbg_groups); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 165 | |
| 166 | #endif |
| 167 | |
| 168 | /** |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 169 | * @brief Logger callback. |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 170 | * |
| 171 | * !IMPORTANT! If an error has a specific error-app-tag defined in the model, it will NOT be set |
| 172 | * at the time of calling this callback. It will be set right after, so to retrieve it |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 173 | * it must be checked afterwards with ::ly_errapptag(). |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 174 | * |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 175 | * @param[in] level Log level of the message. |
| 176 | * @param[in] msg Message. |
| 177 | * @param[in] path Optional path of the concerned node. |
| 178 | */ |
| 179 | typedef void (*ly_log_clb)(LY_LOG_LEVEL level, const char *msg, const char *path); |
| 180 | |
| 181 | /** |
| 182 | * @brief Set logger callback. |
| 183 | * |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 184 | * @param[in] clb Logging callback. |
| 185 | * @param[in] path flag to resolve and provide path as the third parameter of the callback function. In case of |
| 186 | * validation and some other errors, it can be useful to get the path to the problematic element. Note, |
| 187 | * that according to the tree type and the specific situation, the path can slightly differs (keys |
| 188 | * presence) or it can be NULL, so consider it as an optional parameter. If the flag is 0, libyang will |
| 189 | * not bother with resolving the path. |
| 190 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 191 | void ly_set_log_clb(ly_log_clb clb, ly_bool path); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 192 | |
| 193 | /** |
| 194 | * @brief Get logger callback. |
| 195 | * @return Logger callback (can be NULL). |
| 196 | */ |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 197 | ly_log_clb ly_get_log_clb(void); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 198 | |
| 199 | /** @} log */ |
| 200 | |
| 201 | /** |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 202 | * @page howtoErrors Errors Handling |
| 203 | * |
| 204 | * The most of the API functions directly returns error code in the form of ::LY_ERR value. In addition, if the ::LY_EVALID error |
| 205 | * arises, additional [validation error code](@ref ::LY_VECODE) is provided to categorize validation failures into several groups. |
| 206 | * |
| 207 | * All the errors arisen in connection with manipulation with the [context](@ref howtoContext), [YANG modules](@ref howtoSchema) |
| 208 | * or [YANG data](@ref howtoData), are recorded into the context and can be examined for the more detailed information. These |
| 209 | * records are stored as ::ly_err_item structures and they are not only context-specific, but also thread-specific. |
| 210 | * |
| 211 | * Storing error information is tightly connected with |
| 212 | * [logging](@ref howtoLogger). So the @ref logopts control if and which errors are stored in the context. By default, only the |
| 213 | * last error is recorded, so a new error replaces the previous one. This can be changed with ::LY_LOSTORE option set via |
| 214 | * ::ly_log_options(). Then, the errors are stored as a list preserving the previous error records. The stored records can be |
| 215 | * accessed using ::ly_err_last() or ::ly_err_first() functions. The ::ly_err_clean() is used to remove error records from the |
| 216 | * context. |
| 217 | * |
| 218 | * To print a specific error information via libyang logger, there is ::ly_err_print(). |
| 219 | * |
| 220 | * To simplify access to the last error record in the context, there is a set of functions returning important error information. |
| 221 | * - ::ly_errapptag() |
| 222 | * - ::ly_errcode() |
| 223 | * - ::ly_vecode() |
| 224 | * - ::ly_errmsg() |
| 225 | * - ::ly_errpath() |
| 226 | * |
| 227 | * \note API for this group of functions is described in the [error information module](@ref errors). |
| 228 | */ |
| 229 | |
| 230 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 231 | * @defgroup errors Error information |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 232 | * |
| 233 | * Structures and functions to allow error information processing. |
| 234 | * |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 235 | * @{ |
| 236 | */ |
| 237 | |
| 238 | /** |
| 239 | * @typedef LY_ERR |
| 240 | * @brief libyang's error codes returned by the libyang functions. |
| 241 | */ |
| 242 | typedef enum |
| 243 | { |
| 244 | LY_SUCCESS = 0, /**< no error, not set by functions, included just to complete #LY_ERR enumeration */ |
| 245 | LY_EMEM, /**< Memory allocation failure */ |
Radek Krejci | dc1c7e7 | 2018-09-07 14:58:20 +0200 | [diff] [blame] | 246 | LY_ESYS, /**< System call failure */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 247 | LY_EINVAL, /**< Invalid value */ |
| 248 | LY_EEXIST, /**< Item already exists */ |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 249 | LY_ENOTFOUND, /**< Item does not exists */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 250 | LY_EINT, /**< Internal error */ |
| 251 | LY_EVALID, /**< Validation failure */ |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 252 | LY_EDENIED, /**< Operation is not allowed */ |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 253 | LY_EINCOMPLETE, /**< The operation did not fail, but for some reason it was not possible to finish it completely. |
Radek Krejci | e553e6d | 2019-06-07 15:33:18 +0200 | [diff] [blame] | 254 | According to the specific use case, the caller is usually supposed to perform the operation again. */ |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 255 | LY_ERECOMPILE, /**< The operation did not fail, but requires context recompilation before it can be completed. |
| 256 | According to the specific use case, the caller should react appropriately. */ |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 257 | LY_ENOT, /**< Negative result */ |
Radek Krejci | a4614e6 | 2020-05-15 14:19:28 +0200 | [diff] [blame] | 258 | LY_EOTHER, /**< Unknown error */ |
| 259 | |
| 260 | LY_EPLUGIN = 128/**< Error reported by a plugin - the highest bit in the first byte is set. |
| 261 | This value is used ORed with one of the other LY_ERR value and can be simply masked. */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 262 | } LY_ERR; |
| 263 | |
| 264 | /** |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 265 | * @ingroup logger |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 266 | * @typedef LY_VECODE |
| 267 | * @brief libyang's codes of validation error. Whenever ly_errno is set to LY_EVALID, the ly_vecode is also set |
| 268 | * to the appropriate LY_VECODE value. |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 269 | */ |
| 270 | typedef enum { |
| 271 | LYVE_SUCCESS = 0, /**< no error */ |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 272 | LYVE_SYNTAX, /**< generic syntax error */ |
| 273 | LYVE_SYNTAX_YANG, /**< YANG-related syntax error */ |
David Sedlák | 0a875b4 | 2019-03-07 22:24:05 +0100 | [diff] [blame] | 274 | LYVE_SYNTAX_YIN, /**< YIN-related syntax error */ |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 275 | LYVE_REFERENCE, /**< invalid referencing or using an item */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 276 | LYVE_XPATH, /**< invalid XPath expression */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 277 | LYVE_SEMANTICS, /**< generic semantic error */ |
| 278 | LYVE_SYNTAX_XML, /**< XML-related syntax error */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 279 | LYVE_SYNTAX_JSON, /**< JSON-related syntax error */ |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 280 | LYVE_DATA, /**< YANG data does not reflect some of the module restrictions */ |
Radek Krejci | a4614e6 | 2020-05-15 14:19:28 +0200 | [diff] [blame] | 281 | |
| 282 | LYVE_OTHER /**< Unknown error */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 283 | } LY_VECODE; |
| 284 | |
| 285 | /** |
| 286 | * @brief Libyang full error structure. |
| 287 | */ |
| 288 | struct ly_err_item { |
| 289 | LY_LOG_LEVEL level; |
| 290 | LY_ERR no; |
| 291 | LY_VECODE vecode; |
| 292 | char *msg; |
| 293 | char *path; |
| 294 | char *apptag; |
| 295 | struct ly_err_item *next; |
| 296 | struct ly_err_item *prev; /* first item's prev points to the last item */ |
| 297 | }; |
| 298 | |
| 299 | /** |
| 300 | * @brief Get the last (thread, context-specific) validation error code. |
| 301 | * |
| 302 | * This value is set only if ly_errno is #LY_EVALID. |
| 303 | * |
| 304 | * @param[in] ctx Relative context. |
| 305 | * @return Validation error code. |
| 306 | */ |
| 307 | LY_VECODE ly_vecode(const struct ly_ctx *ctx); |
| 308 | |
| 309 | /** |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 310 | * @brief Get the last (thread, context-specific) error code. |
| 311 | * |
| 312 | * @param[in] ctx Relative context. |
| 313 | * @return LY_ERR value of the last error code. |
| 314 | */ |
| 315 | LY_ERR ly_errcode(const struct ly_ctx *ctx); |
| 316 | |
| 317 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 318 | * @brief Get the last (thread, context-specific) error message. If the coresponding module defined |
| 319 | * a specific error message, it will be used instead the default one. |
| 320 | * |
| 321 | * Sometimes, the error message is extended with path of the element where the problem is. |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 322 | * The path is available via ::ly_errpath(). |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 323 | * |
| 324 | * @param[in] ctx Relative context. |
| 325 | * @return Text of the last error message, empty string if there is no error. |
| 326 | */ |
| 327 | const char *ly_errmsg(const struct ly_ctx *ctx); |
| 328 | |
| 329 | /** |
| 330 | * @brief Get the last (thread, context-specific) path of the element where was an error. |
| 331 | * |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 332 | * The path always corresponds to the error message available via ::ly_errmsg(), so |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 333 | * whenever a subsequent error message is printed, the path is erased or rewritten. |
| 334 | * The path reflects the type of the processed tree - data path for data tree functions |
| 335 | * and schema path in case of schema tree functions. In case of processing YIN schema |
| 336 | * or XML data, the path can be just XML path. In such a case, the corresponding |
| 337 | * ly_vecode (value 1-3) is set. |
| 338 | * |
| 339 | * @param[in] ctx Relative context. |
| 340 | * @return Path of the error element, empty string if error path does not apply to the last error. |
| 341 | */ |
| 342 | const char *ly_errpath(const struct ly_ctx *ctx); |
| 343 | |
| 344 | /** |
| 345 | * @brief Get the last (thread, context-specific) error-app-tag if there was a specific one defined |
| 346 | * in the module for the last error. |
| 347 | * |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 348 | * The app-tag always corresponds to the error message available via ::ly_errmsg(), so |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 349 | * whenever a subsequent error message is printed, the app-tag is erased or rewritten. |
| 350 | * |
| 351 | * @param[in] ctx Relative context. |
| 352 | * @return Error-app-tag of the last error, empty string if the error-app-tag does not apply to the last error. |
| 353 | */ |
| 354 | const char *ly_errapptag(const struct ly_ctx *ctx); |
| 355 | |
| 356 | /** |
| 357 | * @brief Get the first (thread, context-specific) generated error structure. |
| 358 | * |
| 359 | * @param[in] ctx Relative context. |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 360 | * @return The first error structure (can be NULL), do not modify! |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 361 | */ |
| 362 | struct ly_err_item *ly_err_first(const struct ly_ctx *ctx); |
| 363 | |
| 364 | /** |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 365 | * @brief Get the latest (thread, context-specific) generated error structure. |
| 366 | * |
| 367 | * @param[in] ctx Relative context. |
| 368 | * @return The last error structure (can be NULL), do not modify! |
| 369 | */ |
| 370 | struct ly_err_item *ly_err_last(const struct ly_ctx *ctx); |
| 371 | |
| 372 | /** |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 373 | * @brief Print the error structure as if just generated. |
| 374 | * |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 375 | * @param[in] ctx Optional context to store the message in. |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 376 | * @param[in] eitem Error item structure to print. |
| 377 | */ |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 378 | void ly_err_print(const struct ly_ctx *ctx, struct ly_err_item *eitem); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 379 | |
| 380 | /** |
| 381 | * @brief Free error structures from a context. |
| 382 | * |
| 383 | * If \p eitem is not set, free all the error structures. |
| 384 | * |
| 385 | * @param[in] ctx Relative context. |
| 386 | * @param[in] eitem Oldest error structure to remove, optional. |
| 387 | */ |
| 388 | void ly_err_clean(struct ly_ctx *ctx, struct ly_err_item *eitem); |
| 389 | |
| 390 | /** @} errors */ |
| 391 | |
| 392 | #ifdef __cplusplus |
| 393 | } |
| 394 | #endif |
| 395 | |
| 396 | #endif /* LY_LOG_H_ */ |