blob: 49262c7eb14ec819536675b4bc0b3ed88df2158b [file] [log] [blame]
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001/**
2 * @file log.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vasko193dacd2022-10-13 08:43:05 +02004 * @author Michal Vasko <mvasko@cesnet.cz>
Radek Krejci5aeea3a2018-09-05 13:29:36 +02005 * @brief Logger manipulation routines and error definitions.
6 *
Michal Vasko193dacd2022-10-13 08:43:05 +02007 * Copyright (c) 2015 - 2022 CESNET, z.s.p.o.
Radek Krejci5aeea3a2018-09-05 13:29:36 +02008 *
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
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
15
16#ifndef LY_LOG_H_
17#define LY_LOG_H_
18
Radek Krejci1deb5be2020-08-26 16:43:36 +020019#include <stdint.h>
20
Michal Vasko8f702ee2024-02-20 15:44:24 +010021#include "ly_config.h"
Jan Kundrátc53a7ec2021-12-09 16:01:19 +010022
Radek Krejci5aeea3a2018-09-05 13:29:36 +020023#ifdef __cplusplus
24extern "C" {
25#endif
26
Radek Krejciad573502018-09-07 15:26:55 +020027/* dummy context structure */
28struct ly_ctx;
29
Radek Krejci5aeea3a2018-09-05 13:29:36 +020030/**
Radek Krejci857189e2020-09-01 13:26:36 +020031 * @brief Type to indicate boolean value.
32 *
33 * Do not test for actual value. Instead, handle it as true/false value in condition.
34 */
35typedef uint8_t ly_bool;
36
37/**
Radek Krejci8678fa42020-08-18 16:07:28 +020038 * @page howtoLogger Information Logging
39 *
40 * The libyang logger is supposed to process all the messages (and some other accompanied information) generated by the performed
41 * functions. According to the logger settings, the information can be printed, stored or further processed by a callback
42 * functions.
43 *
44 * The logger is tightly connected with [errors handling](@ref howtoErrors), because when an error appears, the logger (according
45 * to [logger options](@ref logopts)) generates error records available via libyang context.
46 *
47 * There are 4 verbosity levels defined as ::LY_LOG_LEVEL. The level can be changed by the ::ly_log_level() function.
48 * By default, the verbosity level is set to #LY_LLERR value, so only the errors are processed.
49 *
50 * By default, all libyang messages are printed to `stderr`. However, the callers are able to set their own logging callback
51 * function (::ly_log_clb). In that case, instead of printing messages, libyang passes error level, message and path (if any) to
52 * the caller's callback function set via ::ly_set_log_clb(). In case of error level, the error information is still
53 * automatically stored and available via the [error handling functions](@ref howtoErrors).
54 *
55 * With [logging options](@ref logopts) set via ::ly_log_options(), the caller can modify what is done with all the messages.
56 * 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
57 * ::LY_LOSTORE, all the messages will be stored. Be careful because unless you regularly clean them, the error list in context
58 * will grow indefinitely.
59 *
60 * As a separate group, there are @ref dbggroup to select group of debugging messages to print. The options can be set via
61 * ::ly_log_dbg_groups() function, but note that the options take effect only in case the libyang is compiled in
Radek Krejci7132fc52020-10-26 14:34:06 +010062 * [Debug build mode](@ref build).
Radek Krejci8678fa42020-08-18 16:07:28 +020063 *
64 * \note API for this group of functions is described in the [logger module](@ref log).
65 *
66 * Functions List
67 * --------------
68 * - ::ly_log_level()
69 * - ::ly_log_dbg_groups()
70 * - ::ly_log_options()
71 * - ::ly_set_log_clb()
72 * - ::ly_get_log_clb()
73 *
74 */
75
76/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +020077 * @defgroup log Logger
78 * @{
79 *
80 * Publicly visible functions and values of the libyang logger. For more
Michal Vasko8906ac12021-11-25 11:14:59 +010081 * information, see @ref howtoLogger.
Radek Krejci5aeea3a2018-09-05 13:29:36 +020082 */
83
84/**
85 * @typedef LY_LOG_LEVEL
86 * @brief Verbosity levels of the libyang logger.
87 */
Michal Vasko26bbb272022-08-02 14:54:33 +020088typedef enum {
Michal Vasko8906ac12021-11-25 11:14:59 +010089 LY_LLERR = 0, /**< Print only error messages. */
90 LY_LLWRN = 1, /**< Print error and warning messages, default value. */
Radek Krejci5aeea3a2018-09-05 13:29:36 +020091 LY_LLVRB = 2, /**< Besides errors and warnings, print some other verbose messages. */
Michal Vasko8906ac12021-11-25 11:14:59 +010092 LY_LLDBG = 3 /**< Print all messages including some development debug messages (be careful,
93 without subsequently calling ::ly_log_dbg_groups() no debug messages will be printed!). */
Radek Krejci5aeea3a2018-09-05 13:29:36 +020094} LY_LOG_LEVEL;
95
96/**
97 * @brief Set logger verbosity level.
Radek Krejciebdaed02020-11-09 13:05:06 +010098 *
aPiecekb0445f22021-06-24 11:34:07 +020099 * To get the current value, the function must be called twice resetting the level by the received value.
Radek Krejciebdaed02020-11-09 13:05:06 +0100100 *
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200101 * @param[in] level Verbosity level.
102 * @return Previous verbosity level.
103 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100104LIBYANG_API_DECL LY_LOG_LEVEL ly_log_level(LY_LOG_LEVEL level);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200105
106/**
Michal Vasko2c1f66d2024-01-22 14:36:13 +0100107 * @ingroup log
Radek Krejci8678fa42020-08-18 16:07:28 +0200108 * @defgroup logopts Logging options
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200109 *
110 * Logging option bits of libyang.
111 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200112 * Can be set via ::ly_log_options().
113 *
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200114 * @{
115 */
116#define LY_LOLOG 0x01 /**< Log messages normally, using callback if set. If not set, messages will
117 not be printed by libyang. */
118#define LY_LOSTORE 0x02 /**< Store any generated errors or warnings, never verbose or debug messages.
119 Note that if #LY_LOLOG is not set then verbose and debug messages are always lost. */
120#define LY_LOSTORE_LAST 0x06 /**< Store any generated errors or warnings but only the last message, always overwrite
121 the previous one. */
122
123/**
124 * @}
125 */
126
127/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200128 * @brief Set logger options. Default is #LY_LOLOG | #LY_LOSTORE_LAST.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200129 *
aPiecekb0445f22021-06-24 11:34:07 +0200130 * To get the current value, the function must be called twice resetting the level by the received value.
Radek Krejciebdaed02020-11-09 13:05:06 +0100131 *
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200132 * @param[in] opts Bitfield of @ref logopts.
133 * @return Previous logger options.
134 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100135LIBYANG_API_DECL uint32_t ly_log_options(uint32_t opts);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200136
Michal Vaskod4a6d042022-12-08 08:34:29 +0100137/**
138 * @brief Set temporary thread-safe logger options overwriting those set by ::ly_log_options().
139 *
140 * @param[in] opts Pointer to the temporary @ref logopts. If NULL, restores the effect of global logger options.
Michal Vasko52da51d2024-01-30 16:09:19 +0100141 * @return Previous temporary options.
Michal Vaskod4a6d042022-12-08 08:34:29 +0100142 */
Michal Vasko52da51d2024-01-30 16:09:19 +0100143LIBYANG_API_DECL uint32_t *ly_temp_log_options(uint32_t *opts);
Michal Vaskod4a6d042022-12-08 08:34:29 +0100144
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200145/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200146 * @ingroup log
Radek Krejci8678fa42020-08-18 16:07:28 +0200147 * @defgroup dbggroup Debug messages groups
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200148 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200149 * Categories of the debug messages.
150 *
151 * Allows to show only the selected group(s) of the debug messages.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200152 *
153 * @{
154 */
155
Michal Vaskoe558f792021-07-28 08:20:15 +0200156#define LY_LDGDICT 0x01 /**< Dictionary additions and deletions. */
157#define LY_LDGXPATH 0x02 /**< XPath parsing end evaluation. */
158#define LY_LDGDEPSETS 0x04 /**< Dependency module sets for schema compilation. */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200159
160/**
161 * @}
162 */
163
164/**
165 * @brief Enable specific debugging messages (independent of log level).
Radek Krejciebdaed02020-11-09 13:05:06 +0100166 *
aPiecekb0445f22021-06-24 11:34:07 +0200167 * To get the current value, the function must be called twice resetting the level by the received value.
Thomas Egererdc0c7202023-10-23 15:47:15 +0200168 * Note: does not have any effect on non-debug (Release) builds
Radek Krejciebdaed02020-11-09 13:05:06 +0100169 *
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200170 * @param[in] dbg_groups Bitfield of enabled debug message groups (see @ref dbggroup).
Radek Krejciebdaed02020-11-09 13:05:06 +0100171 * @return Previous options bitfield.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200172 */
aPiecek3af0d452023-05-30 11:40:35 +0200173LIBYANG_API_DECL uint32_t ly_log_dbg_groups(uint32_t dbg_groups);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200174
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200175/**
Michal Vaskod8085612020-08-21 12:55:23 +0200176 * @brief Logger callback.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200177 *
178 * !IMPORTANT! If an error has a specific error-app-tag defined in the model, it will NOT be set
179 * at the time of calling this callback. It will be set right after, so to retrieve it
Radek Krejci8678fa42020-08-18 16:07:28 +0200180 * it must be checked afterwards with ::ly_errapptag().
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200181 *
Michal Vaskod8085612020-08-21 12:55:23 +0200182 * @param[in] level Log level of the message.
183 * @param[in] msg Message.
Michal Vasko7a266772024-01-23 11:02:38 +0100184 * @param[in] data_path Optional data path of the related node.
185 * @param[in] schema_path Optional schema path of the related node.
186 * @param[in] line Optional related input line.
Michal Vaskod8085612020-08-21 12:55:23 +0200187 */
Michal Vasko7a266772024-01-23 11:02:38 +0100188typedef void (*ly_log_clb)(LY_LOG_LEVEL level, const char *msg, const char *data_path, const char *schema_path,
189 uint64_t line);
Michal Vaskod8085612020-08-21 12:55:23 +0200190
191/**
192 * @brief Set logger callback.
193 *
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200194 * @param[in] clb Logging callback.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200195 */
Michal Vasko7a266772024-01-23 11:02:38 +0100196LIBYANG_API_DECL void ly_set_log_clb(ly_log_clb clb);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200197
198/**
199 * @brief Get logger callback.
Michal Vasko7a266772024-01-23 11:02:38 +0100200 *
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200201 * @return Logger callback (can be NULL).
202 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100203LIBYANG_API_DECL ly_log_clb ly_get_log_clb(void);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200204
205/** @} log */
206
207/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200208 * @page howtoErrors Errors Handling
209 *
210 * The most of the API functions directly returns error code in the form of ::LY_ERR value. In addition, if the ::LY_EVALID error
211 * arises, additional [validation error code](@ref ::LY_VECODE) is provided to categorize validation failures into several groups.
212 *
213 * All the errors arisen in connection with manipulation with the [context](@ref howtoContext), [YANG modules](@ref howtoSchema)
214 * or [YANG data](@ref howtoData), are recorded into the context and can be examined for the more detailed information. These
215 * records are stored as ::ly_err_item structures and they are not only context-specific, but also thread-specific.
216 *
217 * Storing error information is tightly connected with
218 * [logging](@ref howtoLogger). So the @ref logopts control if and which errors are stored in the context. By default, only the
219 * last error is recorded, so a new error replaces the previous one. This can be changed with ::LY_LOSTORE option set via
220 * ::ly_log_options(). Then, the errors are stored as a list preserving the previous error records. The stored records can be
221 * accessed using ::ly_err_last() or ::ly_err_first() functions. The ::ly_err_clean() is used to remove error records from the
222 * context.
223 *
224 * To print a specific error information via libyang logger, there is ::ly_err_print().
225 *
226 * To simplify access to the last error record in the context, there is a set of functions returning important error information.
227 * - ::ly_errapptag()
228 * - ::ly_errcode()
229 * - ::ly_vecode()
230 * - ::ly_errmsg()
231 * - ::ly_errpath()
232 *
233 * \note API for this group of functions is described in the [error information module](@ref errors).
234 */
235
236/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200237 * @defgroup errors Error information
Radek Krejci8678fa42020-08-18 16:07:28 +0200238 *
239 * Structures and functions to allow error information processing.
240 *
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200241 * @{
242 */
243
244/**
245 * @typedef LY_ERR
246 * @brief libyang's error codes returned by the libyang functions.
247 */
Michal Vaskoddd76592022-01-17 13:34:48 +0100248typedef enum {
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200249 LY_SUCCESS = 0, /**< no error, not set by functions, included just to complete #LY_ERR enumeration */
250 LY_EMEM, /**< Memory allocation failure */
Radek Krejcidc1c7e72018-09-07 14:58:20 +0200251 LY_ESYS, /**< System call failure */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200252 LY_EINVAL, /**< Invalid value */
253 LY_EEXIST, /**< Item already exists */
Radek Krejcid33273d2018-10-25 14:55:52 +0200254 LY_ENOTFOUND, /**< Item does not exists */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200255 LY_EINT, /**< Internal error */
256 LY_EVALID, /**< Validation failure */
Radek Krejcid3ca0632019-04-16 16:54:54 +0200257 LY_EDENIED, /**< Operation is not allowed */
Michal Vasko1ccbf542021-04-19 11:35:00 +0200258 LY_EINCOMPLETE, /**< The operation did not fail, but for some reason it was not possible to finish it completely.
Radek Krejcie553e6d2019-06-07 15:33:18 +0200259 According to the specific use case, the caller is usually supposed to perform the operation again. */
Michal Vasko1ccbf542021-04-19 11:35:00 +0200260 LY_ERECOMPILE, /**< The operation did not fail, but requires context recompilation before it can be completed.
261 According to the specific use case, the caller should react appropriately. */
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200262 LY_ENOT, /**< Negative result */
Radek Krejcia4614e62020-05-15 14:19:28 +0200263 LY_EOTHER, /**< Unknown error */
264
265 LY_EPLUGIN = 128/**< Error reported by a plugin - the highest bit in the first byte is set.
266 This value is used ORed with one of the other LY_ERR value and can be simply masked. */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200267} LY_ERR;
268
269/**
Michal Vasko2c1f66d2024-01-22 14:36:13 +0100270 * @ingroup log
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200271 * @typedef LY_VECODE
272 * @brief libyang's codes of validation error. Whenever ly_errno is set to LY_EVALID, the ly_vecode is also set
273 * to the appropriate LY_VECODE value.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200274 */
275typedef enum {
276 LYVE_SUCCESS = 0, /**< no error */
Radek Krejci94aa9942018-09-07 17:12:17 +0200277 LYVE_SYNTAX, /**< generic syntax error */
278 LYVE_SYNTAX_YANG, /**< YANG-related syntax error */
David Sedlák0a875b42019-03-07 22:24:05 +0100279 LYVE_SYNTAX_YIN, /**< YIN-related syntax error */
Radek Krejci70853c52018-10-15 14:46:16 +0200280 LYVE_REFERENCE, /**< invalid referencing or using an item */
Radek Krejcib1646a92018-11-02 16:08:26 +0100281 LYVE_XPATH, /**< invalid XPath expression */
Radek Krejcie7b95092019-05-15 11:03:07 +0200282 LYVE_SEMANTICS, /**< generic semantic error */
283 LYVE_SYNTAX_XML, /**< XML-related syntax error */
Radek Krejci1798aae2020-07-14 13:26:06 +0200284 LYVE_SYNTAX_JSON, /**< JSON-related syntax error */
Michal Vaskoecd62de2019-11-13 12:35:11 +0100285 LYVE_DATA, /**< YANG data does not reflect some of the module restrictions */
Radek Krejcia4614e62020-05-15 14:19:28 +0200286
287 LYVE_OTHER /**< Unknown error */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200288} LY_VECODE;
289
290/**
291 * @brief Libyang full error structure.
292 */
293struct ly_err_item {
Michal Vaskodab9cc92023-07-10 10:35:42 +0200294 LY_LOG_LEVEL level; /**< error (message) log level */
Michal Vasko7a266772024-01-23 11:02:38 +0100295 LY_ERR err; /**< error code number */
Michal Vaskodab9cc92023-07-10 10:35:42 +0200296 LY_VECODE vecode; /**< validation error code, if any */
297 char *msg; /**< error message */
Michal Vasko7a266772024-01-23 11:02:38 +0100298 char *data_path; /**< error data path related to the error, if any */
299 char *schema_path; /**< error schema path related to the error, if any */
300 uint64_t line; /**< input line the error occured on, if available */
Michal Vaskodab9cc92023-07-10 10:35:42 +0200301 char *apptag; /**< error-app-tag, if any */
302 struct ly_err_item *next; /**< next error item */
303 struct ly_err_item *prev; /**< previous error item, points to the last item for the ifrst item */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200304};
305
306/**
Michal Vaskob5b883c2023-07-10 10:36:18 +0200307 * @brief Get human-readable error message for an error code.
308 *
309 * @param[in] err Error code.
Michal Vaskoe4207652023-07-10 14:57:32 +0200310 * @return String error message.
Michal Vaskob5b883c2023-07-10 10:36:18 +0200311 */
Michal Vasko7a266772024-01-23 11:02:38 +0100312LIBYANG_API_DECL const char *ly_strerr(LY_ERR err);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200313
314/**
Michal Vaskob5b883c2023-07-10 10:36:18 +0200315 * @brief Get human-readable error message for a validation error code.
Radek Krejcid33273d2018-10-25 14:55:52 +0200316 *
Michal Vaskob5b883c2023-07-10 10:36:18 +0200317 * @param[in] vecode Validation error code.
Michal Vaskoe4207652023-07-10 14:57:32 +0200318 * @return String error message.
Radek Krejcid33273d2018-10-25 14:55:52 +0200319 */
Michal Vaskob5b883c2023-07-10 10:36:18 +0200320LIBYANG_API_DECL const char *ly_strvecode(LY_VECODE vecode);
Radek Krejcid33273d2018-10-25 14:55:52 +0200321
322/**
Michal Vasko7a266772024-01-23 11:02:38 +0100323 * @brief Get the last (thread-specific) full logged error message.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200324 *
Michal Vasko7a266772024-01-23 11:02:38 +0100325 * This function is useful for getting errors from functions that do not have any context accessible and includes
326 * any additional information such as the path or line where the error occurred.
Michal Vaskob5b883c2023-07-10 10:36:18 +0200327 *
328 * @return Last generated error message.
329 */
Michal Vasko7a266772024-01-23 11:02:38 +0100330LIBYANG_API_DECL const char *ly_last_logmsg(void);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200331
332/**
333 * @brief Get the first (thread, context-specific) generated error structure.
334 *
335 * @param[in] ctx Relative context.
Michal Vasko7a266772024-01-23 11:02:38 +0100336 * @return First error structure, NULL if none available.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200337 */
Michal Vasko7a266772024-01-23 11:02:38 +0100338LIBYANG_API_DECL const struct ly_err_item *ly_err_first(const struct ly_ctx *ctx);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200339
340/**
Radek Krejci572ee602020-09-16 14:35:08 +0200341 * @brief Get the latest (thread, context-specific) generated error structure.
342 *
343 * @param[in] ctx Relative context.
Michal Vasko7a266772024-01-23 11:02:38 +0100344 * @return Last error structure, NULL if none available.
Radek Krejci572ee602020-09-16 14:35:08 +0200345 */
Michal Vasko7a266772024-01-23 11:02:38 +0100346LIBYANG_API_DECL const struct ly_err_item *ly_err_last(const struct ly_ctx *ctx);
Radek Krejci572ee602020-09-16 14:35:08 +0200347
348/**
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200349 * @brief Print the error structure as if just generated.
350 *
Michal Vasko177d0ed2020-11-23 16:43:03 +0100351 * @param[in] ctx Optional context to store the message in.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200352 * @param[in] eitem Error item structure to print.
353 */
Michal Vasko7a266772024-01-23 11:02:38 +0100354LIBYANG_API_DECL void ly_err_print(const struct ly_ctx *ctx, const struct ly_err_item *eitem);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200355
356/**
357 * @brief Free error structures from a context.
358 *
Michal Vasko7a266772024-01-23 11:02:38 +0100359 * If @p eitem is not set, free all the error structures.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200360 *
361 * @param[in] ctx Relative context.
362 * @param[in] eitem Oldest error structure to remove, optional.
363 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100364LIBYANG_API_DECL void ly_err_clean(struct ly_ctx *ctx, struct ly_err_item *eitem);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200365
366/** @} errors */
367
368#ifdef __cplusplus
369}
370#endif
371
372#endif /* LY_LOG_H_ */