Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sbin/hastd/pjdlog.h
39475 views
1
/*-
2
* SPDX-License-Identifier: BSD-2-Clause
3
*
4
* Copyright (c) 2009-2010 The FreeBSD Foundation
5
* Copyright (c) 2011 Pawel Jakub Dawidek <[email protected]>
6
* All rights reserved.
7
*
8
* This software was developed by Pawel Jakub Dawidek under sponsorship from
9
* the FreeBSD Foundation.
10
*
11
* Redistribution and use in source and binary forms, with or without
12
* modification, are permitted provided that the following conditions
13
* are met:
14
* 1. Redistributions of source code must retain the above copyright
15
* notice, this list of conditions and the following disclaimer.
16
* 2. Redistributions in binary form must reproduce the above copyright
17
* notice, this list of conditions and the following disclaimer in the
18
* documentation and/or other materials provided with the distribution.
19
*
20
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
21
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
24
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30
* SUCH DAMAGE.
31
*/
32
33
#ifndef _PJDLOG_H_
34
#define _PJDLOG_H_
35
36
#include <sys/cdefs.h>
37
38
#include <stdarg.h>
39
#include <sysexits.h>
40
#include <syslog.h>
41
42
#define PJDLOG_MODE_STD 0
43
#define PJDLOG_MODE_SYSLOG 1
44
45
void pjdlog_init(int mode);
46
void pjdlog_fini(void);
47
48
void pjdlog_mode_set(int mode);
49
int pjdlog_mode_get(void);
50
51
void pjdlog_debug_set(int level);
52
int pjdlog_debug_get(void);
53
54
void pjdlog_prefix_set(const char *fmt, ...) __printflike(1, 2);
55
void pjdlogv_prefix_set(const char *fmt, va_list ap) __printflike(1, 0);
56
57
void pjdlog_common(int loglevel, int debuglevel, int error, const char *fmt,
58
...) __printflike(4, 5);
59
void pjdlogv_common(int loglevel, int debuglevel, int error, const char *fmt,
60
va_list ap) __printflike(4, 0);
61
62
void pjdlog(int loglevel, const char *fmt, ...) __printflike(2, 3);
63
void pjdlogv(int loglevel, const char *fmt, va_list ap) __printflike(2, 0);
64
65
#define pjdlogv_emergency(fmt, ap) pjdlogv(LOG_EMERG, (fmt), (ap))
66
#define pjdlog_emergency(...) pjdlog(LOG_EMERG, __VA_ARGS__)
67
#define pjdlogv_alert(fmt, ap) pjdlogv(LOG_ALERT, (fmt), (ap))
68
#define pjdlog_alert(...) pjdlog(LOG_ALERT, __VA_ARGS__)
69
#define pjdlogv_critical(fmt, ap) pjdlogv(LOG_CRIT, (fmt), (ap))
70
#define pjdlog_critical(...) pjdlog(LOG_CRIT, __VA_ARGS__)
71
#define pjdlogv_error(fmt, ap) pjdlogv(LOG_ERR, (fmt), (ap))
72
#define pjdlog_error(...) pjdlog(LOG_ERR, __VA_ARGS__)
73
#define pjdlogv_warning(fmt, ap) pjdlogv(LOG_WARNING, (fmt), (ap))
74
#define pjdlog_warning(...) pjdlog(LOG_WARNING, __VA_ARGS__)
75
#define pjdlogv_notice(fmt, ap) pjdlogv(LOG_NOTICE, (fmt), (ap))
76
#define pjdlog_notice(...) pjdlog(LOG_NOTICE, __VA_ARGS__)
77
#define pjdlogv_info(fmt, ap) pjdlogv(LOG_INFO, (fmt), (ap))
78
#define pjdlog_info(...) pjdlog(LOG_INFO, __VA_ARGS__)
79
80
void pjdlog_debug(int debuglevel, const char *fmt, ...) __printflike(2, 3);
81
void pjdlogv_debug(int debuglevel, const char *fmt, va_list ap) __printflike(2, 0);
82
83
void pjdlog_errno(int loglevel, const char *fmt, ...) __printflike(2, 3);
84
void pjdlogv_errno(int loglevel, const char *fmt, va_list ap) __printflike(2, 0);
85
86
void pjdlog_exit(int exitcode, const char *fmt, ...) __printflike(2, 3) __dead2;
87
void pjdlogv_exit(int exitcode, const char *fmt, va_list ap) __printflike(2, 0) __dead2;
88
89
void pjdlog_exitx(int exitcode, const char *fmt, ...) __printflike(2, 3) __dead2;
90
void pjdlogv_exitx(int exitcode, const char *fmt, va_list ap) __printflike(2, 0) __dead2;
91
92
void pjdlog_abort(const char *func, const char *file, int line,
93
const char *failedexpr, const char *fmt, ...) __printflike(5, 6) __dead2;
94
95
#define PJDLOG_VERIFY(expr) do { \
96
if (!(expr)) { \
97
pjdlog_abort(__func__, __FILE__, __LINE__, #expr, \
98
__func__); \
99
} \
100
} while (0)
101
#define PJDLOG_RVERIFY(expr, ...) do { \
102
if (!(expr)) { \
103
pjdlog_abort(__func__, __FILE__, __LINE__, #expr, \
104
__VA_ARGS__); \
105
} \
106
} while (0)
107
#define PJDLOG_ABORT(...) pjdlog_abort(__func__, __FILE__, \
108
__LINE__, NULL, __VA_ARGS__)
109
#ifdef NDEBUG
110
#define PJDLOG_ASSERT(expr) do { } while (0)
111
#define PJDLOG_RASSERT(...) do { } while (0)
112
#else
113
#define PJDLOG_ASSERT(expr) PJDLOG_VERIFY(expr)
114
#define PJDLOG_RASSERT(...) PJDLOG_RVERIFY(__VA_ARGS__)
115
#endif
116
117
#endif /* !_PJDLOG_H_ */
118
119