2 Copyright (c) 2003-2006 by Juliusz Chroboczek
4 Permission is hereby granted, free of charge, to any person obtaining a copy
5 of this software and associated documentation files (the "Software"), to deal
6 in the Software without restriction, including without limitation the rights
7 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 copies of the Software, and to permit persons to whom the Software is
9 furnished to do so, subject to the following conditions:
11 The above copyright notice and this permission notice shall be included in
12 all copies or substantial portions of the Software.
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #define L_FORBIDDEN 0x8
27 #define L_UNCACHEABLE 0x10
28 #define L_SUPERSEDED 0x20
31 #define D_SERVER_CONN 0x100
32 #define D_SERVER_REQ 0x200
33 #define D_CLIENT_CONN 0x400
34 #define D_CLIENT_REQ 0x800
35 #define D_ATOM_REFCOUNT 0x1000
36 #define D_REFCOUNT 0x2000
38 #define D_OBJECT 0x8000
39 #define D_OBJECT_DATA 0x10000
40 #define D_SERVER_OFFSET 0x20000
41 #define D_CLIENT_DATA 0x40000
43 #define D_CHILD 0x100000
46 #define LOGGING_DEFAULT (L_ERROR | L_WARN | L_INFO)
47 #define LOGGING_MAX 0xFF
51 void preinitLog(void);
55 int loggingToStderr(void);
57 void really_do_log(int type
, const char *f
, ...)
58 ATTRIBUTE ((format (printf
, 2, 3)));
59 void really_do_log_v(int type
, const char *f
, va_list args
)
60 ATTRIBUTE ((format (printf
, 2, 0)));
61 void really_do_log_n(int type
, const char *s
, int n
);
62 void really_do_log_error(int type
, int e
, const char *f
, ...)
63 ATTRIBUTE ((format (printf
, 3, 4)));
64 void really_do_log_error_v(int type
, int e
, const char *f
, va_list args
)
65 ATTRIBUTE ((format (printf
, 3, 0)));
66 const char *scrub(const char *message
);
70 #define DO_BACKTRACE() \
74 n = backtrace(buffer, 5); \
76 backtrace_symbols_fd(buffer, n, 2); \
79 #define DO_BACKTRACE() /* */
82 /* These are macros because it's important that they should be
85 #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
87 #define do_log(_type, ...) \
89 if((_type) & (LOGGING_MAX)) really_do_log((_type), __VA_ARGS__); \
91 #define do_log_error(_type, _e, ...) \
93 if((_type) & (LOGGING_MAX)) \
94 really_do_log_error((_type), (_e), __VA_ARGS__); \
97 #elif defined(__GNUC__)
99 #define do_log(_type, _args...) \
101 if((_type) & (LOGGING_MAX)) really_do_log((_type), _args); \
103 #define do_log_error(_type, _e, _args...) \
105 if((_type) & (LOGGING_MAX)) \
106 really_do_log_error((_type), (_e), _args); \
111 /* No variadic macros -- let's hope inline works. */
114 do_log(int type
, const char *f
, ...)
119 if((type
& (LOGGING_MAX
)) != 0)
120 really_do_log_v(type
, f
, args
);
125 do_log_error(int type
, int e
, const char *f
, ...)
130 if((type
& (LOGGING_MAX
)) != 0)
131 really_do_log_error_v(type
, e
, f
, args
);
137 #define do_log_n(_type, _s, _n) \
139 if((_type) & (LOGGING_MAX)) really_do_log_n((_type), (_s), (_n)); \