blob: 55a891c321fa00d2b4e4d4ccf2d8ab400701fa15 [file] [log] [blame]
Radek Krejci5fe60cc2015-09-01 17:14:39 +02001/**
Michal Vaskoc446a382021-06-18 08:54:05 +02002 * @file log.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief libnetconf2 logger
Radek Krejci5fe60cc2015-09-01 17:14:39 +02005 *
Michal Vasko4848ac82021-11-09 12:29:14 +01006 * @copyright
Michal Vaskoc446a382021-06-18 08:54:05 +02007 * Copyright (c) 2015 - 2021 CESNET, z.s.p.o.
Radek Krejci5fe60cc2015-09-01 17:14:39 +02008 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +01009 * 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 Vaskoafd416b2016-02-25 14:51:46 +010012 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +010013 * https://opensource.org/licenses/BSD-3-Clause
Radek Krejci5fe60cc2015-09-01 17:14:39 +020014 */
15
16#ifndef NC_LOG_PRIVATE_H_
17#define NC_LOG_PRIVATE_H_
18
Radek Krejcia3528022015-09-02 13:46:38 +020019#include <stdint.h>
20
21#include "log.h"
22
Radek Krejci5fe60cc2015-09-01 17:14:39 +020023/*
24 * libnetconf's message printing
25 */
26
27/**
Michal Vasko05532772021-06-03 12:12:38 +020028 * @brief Internal printing function
29 *
30 * @param[in] session Optional NETCONF session that generated the message
Radek Krejci5fe60cc2015-09-01 17:14:39 +020031 * @param[in] level Verbose level
32 * @param[in] format Formatting string
33 */
Michal Vasko05532772021-06-03 12:12:38 +020034void prv_printf(const struct nc_session *session, NC_VERB_LEVEL level, const char *format, ...);
Radek Krejci5fe60cc2015-09-01 17:14:39 +020035
36/**
37 * @brief Verbose level variable
38 */
39extern volatile uint8_t verbose_level;
40
41/*
42 * Verbose printing macros
43 */
Michal Vasko05532772021-06-03 12:12:38 +020044#define ERR(session, format, args ...) prv_printf(session,NC_VERB_ERROR,format,##args)
45#define WRN(session, format, args ...) if(verbose_level>=NC_VERB_WARNING){prv_printf(session,NC_VERB_WARNING,format,##args);}
46#define VRB(session, format, args ...) if(verbose_level>=NC_VERB_VERBOSE){prv_printf(session,NC_VERB_VERBOSE,format,##args);}
47#define DBG(session, format, args ...) if(verbose_level>=NC_VERB_DEBUG){prv_printf(session,NC_VERB_DEBUG,format,##args);}
48#define DBL(session, format, args ...) if(verbose_level>=NC_VERB_DEBUG_LOWLVL){prv_printf(session,NC_VERB_DEBUG_LOWLVL,format,##args);}
Radek Krejci5fe60cc2015-09-01 17:14:39 +020049
Michal Vasko05532772021-06-03 12:12:38 +020050#define ERRMEM ERR(NULL, "%s: memory reallocation failed (%s:%d).", __func__, __FILE__, __LINE__)
51#define ERRARG(arg) ERR(NULL, "%s: invalid argument (%s).", __func__, arg)
52#define ERRINIT ERR(NULL, "%s: libnetconf2 not initialized.", __func__)
53#define ERRINT ERR(NULL, "%s: internal error (%s:%d).", __func__, __FILE__, __LINE__)
Radek Krejci52b37022015-10-06 16:11:48 +020054
Radek Krejci5fe60cc2015-09-01 17:14:39 +020055#endif /* NC_LOG_PRIVATE_H_ */