1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
/*-
* Copyright (c) 2009-2010 The FreeBSD Foundation
* Copyright (c) 2011 Pawel Jakub Dawidek <pjd@FreeBSD.org>
* All rights reserved.
*
* This software was developed by Pawel Jakub Dawidek under sponsorship from
* the FreeBSD Foundation.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $FreeBSD$
*/
#ifndef _PJDLOG_H_
#define _PJDLOG_H_
#include <sys/cdefs.h>
#include <errno.h>
#include <stdarg.h>
#include <sysexits.h>
#include <syslog.h>
#define PJDLOG_MODE_STD 0
#define PJDLOG_MODE_SYSLOG 1
#define PJDLOG_MODE_SOCK 2
void pjdlog_init(int mode);
void pjdlog_fini(void);
void pjdlog_mode_set(int mode);
int pjdlog_mode_get(void);
#ifdef notyet
void pjdlog_sock_set(int sock);
int pjdlog_sock_get(void);
#endif
void pjdlog_debug_set(int level);
int pjdlog_debug_get(void);
void pjdlog_prefix_set(const char *fmt, ...) __printflike(1, 2);
void pjdlogv_prefix_set(const char *fmt, va_list ap) __printflike(1, 0);
const char *pjdlog_prefix_get(void);
void pjdlog_prefix_push(const char *fmt, ...) __printflike(1, 2);
void pjdlogv_prefix_push(const char *fmt, va_list ap) __printflike(1, 0);
void pjdlog_prefix_pop(void);
void _pjdlogv_common(const char *func, const char *file, int line, int loglevel,
int debuglevel, int error, const char *fmt, va_list ap) __printflike(7, 0);
void _pjdlog_common(const char *func, const char *file, int line, int loglevel,
int debuglevel, int error, const char *fmt, ...) __printflike(7, 8);
void _pjdlogv_exit(const char *func, const char *file, int line, int exitcode,
int error, const char *fmt, va_list ap) __printflike(6, 0) __dead2;
void _pjdlog_exit(const char *func, const char *file, int line, int exitcode,
int error, const char *fmt, ...) __printflike(6, 7) __dead2;
void _pjdlog_abort(const char *func, const char *file, int line, int error,
const char *failedexpr, const char *fmt, ...) __printflike(6, 7) __dead2;
#ifdef notyet
int pjdlog_receive(int sock);
#endif
#define pjdlogv_common(loglevel, debuglevel, error, fmt, ap) \
_pjdlogv_common(__func__, __FILE__, __LINE__, (loglevel), \
(debuglevel), (error), (fmt), (ap))
#define pjdlog_common(loglevel, debuglevel, error, ...) \
_pjdlog_common(__func__, __FILE__, __LINE__, (loglevel), \
(debuglevel), (error), __VA_ARGS__)
#define pjdlogv(loglevel, fmt, ap) \
pjdlogv_common((loglevel), 0, -1, (fmt), (ap))
#define pjdlog(loglevel, ...) \
pjdlog_common((loglevel), 0, -1, __VA_ARGS__)
#define pjdlogv_emergency(fmt, ap) pjdlogv(LOG_EMERG, (fmt), (ap))
#define pjdlog_emergency(...) pjdlog(LOG_EMERG, __VA_ARGS__)
#define pjdlogv_alert(fmt, ap) pjdlogv(LOG_ALERT, (fmt), (ap))
#define pjdlog_alert(...) pjdlog(LOG_ALERT, __VA_ARGS__)
#define pjdlogv_critical(fmt, ap) pjdlogv(LOG_CRIT, (fmt), (ap))
#define pjdlog_critical(...) pjdlog(LOG_CRIT, __VA_ARGS__)
#define pjdlogv_error(fmt, ap) pjdlogv(LOG_ERR, (fmt), (ap))
#define pjdlog_error(...) pjdlog(LOG_ERR, __VA_ARGS__)
#define pjdlogv_warning(fmt, ap) pjdlogv(LOG_WARNING, (fmt), (ap))
#define pjdlog_warning(...) pjdlog(LOG_WARNING, __VA_ARGS__)
#define pjdlogv_notice(fmt, ap) pjdlogv(LOG_NOTICE, (fmt), (ap))
#define pjdlog_notice(...) pjdlog(LOG_NOTICE, __VA_ARGS__)
#define pjdlogv_info(fmt, ap) pjdlogv(LOG_INFO, (fmt), (ap))
#define pjdlog_info(...) pjdlog(LOG_INFO, __VA_ARGS__)
#define pjdlog_debug(debuglevel, ...) \
pjdlog_common(LOG_DEBUG, (debuglevel), -1, __VA_ARGS__)
#define pjdlogv_debug(debuglevel, fmt, ap) \
pjdlogv_common(LOG_DEBUG, (debuglevel), -1, (fmt), (ap))
#define pjdlog_errno(loglevel, ...) \
pjdlog_common((loglevel), 0, (errno), __VA_ARGS__)
#define pjdlogv_errno(loglevel, fmt, ap) \
pjdlogv_common((loglevel), 0, (errno), (fmt), (ap))
#define pjdlogv_exit(exitcode, fmt, ap) \
_pjdlogv_exit(__func__, __FILE__, __LINE__, (exitcode), \
(errno), (fmt), (ap))
#define pjdlog_exit(exitcode, ...) \
_pjdlog_exit(__func__, __FILE__, __LINE__, (exitcode), (errno), \
__VA_ARGS__)
#define pjdlogv_exitx(exitcode, fmt, ap) \
_pjdlogv_exit(__func__, __FILE__, __LINE__, (exitcode), -1, \
(fmt), (ap))
#define pjdlog_exitx(exitcode, ...) \
_pjdlog_exit(__func__, __FILE__, __LINE__, (exitcode), -1, \
__VA_ARGS__)
#define PJDLOG_VERIFY(expr) do { \
if (!(expr)) { \
_pjdlog_abort(__func__, __FILE__, __LINE__, -1, #expr, \
__func__); \
} \
} while (0)
#define PJDLOG_RVERIFY(expr, ...) do { \
if (!(expr)) { \
_pjdlog_abort(__func__, __FILE__, __LINE__, -1, #expr, \
__VA_ARGS__); \
} \
} while (0)
#define PJDLOG_EVERIFY(expr) do { \
if (!(expr)) { \
_pjdlog_abort(__func__, __FILE__, __LINE__, errno, \
#expr, __func__); \
} \
} while (0)
#define PJDLOG_ABORT(...) _pjdlog_abort(__func__, __FILE__, \
__LINE__, -1, NULL, __VA_ARGS__)
#ifdef NDEBUG
#define PJDLOG_ASSERT(expr) do { } while (0)
#define PJDLOG_RASSERT(...) do { } while (0)
#else
#define PJDLOG_ASSERT(expr) do { \
if (!(expr)) { \
_pjdlog_abort(__func__, __FILE__, __LINE__, -1, #expr, \
__func__); \
} \
} while (0)
#define PJDLOG_RASSERT(expr, ...) do { \
if (!(expr)) { \
_pjdlog_abort(__func__, __FILE__, __LINE__, -1, #expr, \
__VA_ARGS__); \
} \
} while (0)
#endif
#endif /* !_PJDLOG_H_ */
|