Fix indexing inconsistency in manual.
[polipo.git] / log.h
blob3ff155ba3ae5f455f7c8865565eba2a8aaffe514
1 /*
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
20 THE SOFTWARE.
23 #define L_ERROR 0x1
24 #define L_WARN 0x2
25 #define L_FORBIDDEN 0x4
26 #define L_UNCACHEABLE 0x8
27 #define L_SUPERSEDED 0x10
28 #define L_VARY 0x20
30 #define D_SERVER_CONN 0x100
31 #define D_SERVER_REQ 0x200
32 #define D_CLIENT_CONN 0x400
33 #define D_CLIENT_REQ 0x800
34 #define D_ATOM_REFCOUNT 0x1000
35 #define D_REFCOUNT 0x2000
36 #define D_LOCK 0x4000
37 #define D_OBJECT 0x8000
38 #define D_OBJECT_DATA 0x10000
39 #define D_SERVER_OFFSET 0x20000
40 #define D_CLIENT_DATA 0x40000
41 #define D_DNS 0x80000
42 #define D_CHILD 0x100000
43 #define D_IO 0x200000
44 #define D_TRANSCODE 0x400000
46 #define LOGGING_DEFAULT (L_ERROR | L_WARN | L_UNCACHEABLE)
47 #define LOGGING_MAX 0xFF
49 extern AtomPtr logFile;
50 extern FILE *logF;
52 void preinitLog(void);
53 void initLog(void);
54 void reopenLog(void);
56 void really_do_log(int type, const char *f, ...)
57 ATTRIBUTE ((format (printf, 2, 3)));
58 void really_do_log_v(int type, const char *f, va_list args);
59 void really_do_log_n(int type, const char *s, int n);
60 void really_do_log_error(int type, int e, const char *f, ...)
61 ATTRIBUTE((format (printf, 3, 4)));
62 void really_do_log_error_v(int type, int e, const char *f, va_list args);
64 #ifdef __GNUC__
65 #define DO_BACKTRACE() \
66 do { \
67 int n; \
68 void *buffer[10]; \
69 n = backtrace(buffer, 5); \
70 fflush(stderr); \
71 backtrace_symbols_fd(buffer, n, 2); \
72 } while(0)
73 #else
74 #define DO_BACKTRACE() /* */
75 #endif
77 /* These are macros because it's important that they should be
78 optimised away. */
80 #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
82 #define do_log(_type, ...) \
83 do { \
84 if((_type) & (LOGGING_MAX)) really_do_log((_type), __VA_ARGS__); \
85 } while(0)
86 #define do_log_error(_type, _e, ...) \
87 do { \
88 if((_type) & (LOGGING_MAX)) \
89 really_do_log_error((_type), (_e), __VA_ARGS__); \
90 } while(0)
92 #elif defined(__GNUC__)
94 #define do_log(_type, _args...) \
95 do { \
96 if((_type) & (LOGGING_MAX)) really_do_log((_type), _args); \
97 } while(0)
98 #define do_log_error(_type, _e, _args...) \
99 do { \
100 if((_type) & (LOGGING_MAX)) \
101 really_do_log_error((_type), (_e), _args); \
102 } while(0)
104 #else
106 /* No variadic macros -- let's hope inline works. */
108 static inline void
109 do_log(int type, const char *f, ...)
111 va_list args;
113 va_start(args, f);
114 if((type & (LOGGING_MAX)) != 0)
115 really_do_log_v(type, f, args);
116 va_end(args);
119 static inline void
120 do_log_error(int type, int e, const char *f, ...)
122 va_list args;
124 va_start(args, f);
125 if((type & (LOGGING_MAX)) != 0)
126 really_do_log_error_v(type, e, f, args);
127 va_end(args);
130 #endif
132 #define do_log_n(_type, _s, _n) \
133 do { \
134 if((_type) & (LOGGING_MAX)) really_do_log_n((_type), (_s), (_n)); \
135 } while(0)