]> mj.ucw.cz Git - libucw.git/blob - ucw/log.h
Logging: Introduced struct log_msg.
[libucw.git] / ucw / log.h
1 /*
2  *      UCW Library -- Logging
3  *
4  *      (c) 1997--2009 Martin Mares <mj@ucw.cz>
5  *      (c) 2008 Tomas Gavenciak <gavento@ucw.cz>
6  *
7  *      This software may be freely distributed and used according to the terms
8  *      of the GNU Lesser General Public License.
9  */
10
11 #ifndef _UCW_LOG_H_
12 #define _UCW_LOG_H_
13
14 #include "ucw/clists.h"
15
16 /* user de/allocated program/process name for use in the logsystem */
17 extern char *ls_title;
18
19 struct log_msg
20 {
21   char *m;                              // The formatted message itself, ending with \n\0
22   int m_len;                            // Length without the \0
23   struct tm *tm;
24   uns flags;
25   char *raw_msg;                        // Unformatted parts
26   char *stime;
27   char *sutime;
28 };
29
30 struct log_stream
31 {
32   /* optional name, 0-term, de/allocated by constr./destr. or user */
33   char *name;
34   /* number for use with msg parameter (from LS_SET_STRNUM()), -1 for closed log_stream */
35   int regnum;
36   /* arbitrary data for filter/handler */
37   int idata;
38   void *pdata;
39   uns udata;
40   /* severity levels to accept - bitmask of (1<<LEVEL) */
41   int levels;
42   /* if filter returns nonzero, discard the message */
43   int (*filter)(struct log_stream* ls, struct log_msg *m);
44   /* pass the message to these streams (simple-list of pointers) */
45   struct clist substreams;
46   /* what kind of string to format to pass to the handler (bitmask of LSFMT_xxx ) */
47   int msgfmt;
48   /* what to do to commit the message (ret 0 on success, nonzero on error) */
49   int (*handler)(struct log_stream *ls, struct log_msg *m);
50   /* close the log_stream file/connection */
51   void (*close)(struct log_stream* ls);
52 };
53
54 /* the default logger */
55 extern const struct log_stream log_stream_default;
56
57 /* A message is processed as follows:
58  *  1. Discard if message level not in levels
59  *  2. Run filter (if any), discard if ret. nonzero
60  *  3. Pass the message to all log_streams in substreams
61  *  4. Format the message informaion acc. to msgfmt
62  *  5. Run the handler
63  */
64
65 /* log header verbosity specifying message passed to handler */
66 enum ls_fmt
67 {
68   LSFMT_LEVEL=1,       /* log severity level (one letter) */
69   LSFMT_TIME=2,        /* log time (date-seconds) */
70   LSFMT_USEC=4,        /* log also micro-seconds */
71   LSFMT_TITLE=8,       /* log program title (global string) */
72   LSFMT_PID=16,        /* log program PID */
73   LSFMT_LOGNAME=32,    /* log log_stream name */
74   LSFMT_NONE=0,
75   LSFMT_FULL=LSFMT_LEVEL+LSFMT_TIME+LSFMT_USEC+LSFMT_TITLE+LSFMT_PID+LSFMT_LOGNAME,
76   LSFMT_DEFAULT=LSFMT_LEVEL+LSFMT_TIME
77 };
78
79 /* Mask of containing all existing levels. */
80 #define LS_ALL_LEVELS 0xfff
81
82 // return the letter associated with the severity level
83 #define LS_LEVEL_LETTER(level) ("DIiWwEe!###"[( level )])
84
85 ///// Macros for extracting parts of the flags parameter
86 // The division of the flags parameter is decided only here
87 // The current division is (for 32 bit flags):
88 // MSB <5 bits: any internal log flags> <8 bits: "user" flags> <10 bits: stream number>
89 //     <8 bits: severity level> LSB
90
91 // Bits per section
92 enum ls_flagbits {
93   LS_LEVEL_BITS    = 8,
94   LS_STRNUM_BITS   = 16,
95   LS_FLAGS_BITS    = 5,
96   LS_INTERNAL_BITS = 4,
97 };
98
99 // Section shifts
100 enum ls_flagpos {
101   LS_LEVEL_POS     = 0,
102   LS_STRNUM_POS    = LS_LEVEL_POS + LS_LEVEL_BITS,
103   LS_FLAGS_POS     = LS_STRNUM_POS + LS_STRNUM_BITS,
104   LS_INTERNAL_POS  = LS_FLAGS_POS + LS_FLAGS_BITS,
105 };
106
107 // Bitmasks
108 enum ls_flagmasks {
109   LS_LEVEL_MASK    = (( 1 << LS_LEVEL_BITS ) - 1 ) << LS_LEVEL_POS,
110   LS_STRNUM_MASK   = (( 1 << LS_STRNUM_BITS ) - 1 ) << LS_STRNUM_POS,
111   LS_FLAGS_MASK    = (( 1 << LS_FLAGS_BITS ) - 1 ) << LS_FLAGS_POS,
112   LS_INTERNAL_MASK = (( 1 << LS_INTERNAL_BITS ) - 1 ) << LS_INTERNAL_POS,
113 };
114
115 // "Get" macros (break flags to parts)
116 #define LS_GET_LEVEL(flags)     ((( flags ) & LS_LEVEL_MASK ) >> LS_LEVEL_POS )
117 #define LS_GET_STRNUM(flags)    ((( flags ) & LS_STRNUM_MASK ) >> LS_STRNUM_POS )
118 #define LS_GET_FLAGS(flags)     ((( flags ) & LS_FLAGS_MASK ) >> LS_FLAGS_POS )
119 #define LS_GET_INTERNAL(flags)  ((( flags ) & LS_INTERNAL_MASK ) >> LS_INTERNAL_POS )
120
121 // "Set" macros (parts to flags)
122 #define LS_SET_LEVEL(level)     (( level ) << LS_LEVEL_POS )
123 #define LS_SET_STRNUM(strnum)   (( strnum ) << LS_STRNUM_POS )
124 #define LS_SET_FLAGS(flags)     (( flags ) << LS_FLAGS_POS )
125 #define LS_SET_INTERNAL(intern) (( intern ) << LS_INTERNAL_POS )
126
127 // Internal flags of the logsystem
128 // Avoid operations that are unsafe in signal handlers
129 #define LSFLAG_SIGHANDLER LS_SET_INTERNAL(0x001)
130
131 // The module is initialized when a first stream is created.
132 // Before that only the default stream exists.
133
134 /* Return pointer a new (xmalloc()-ated) stream with no handler and an empty substream list. */
135 struct log_stream *log_new_stream(void);
136
137 /* Close and xfree() given log_stream */
138 /* Does not affect substreams */
139 void log_close_stream(struct log_stream *ls);
140
141 /* close all open streams, un-initialize the module, free all memory,
142  * use only ls_default_log */
143 void log_close_all(void);
144
145 /* add a new substream, xmalloc()-ate a new simp_node */
146 void log_add_substream(struct log_stream *where, struct log_stream *what);
147
148 /* remove all occurences of a substream, free() the simp_node */
149 /* return number of deleted entries */
150 int log_rm_substream(struct log_stream *where, struct log_stream *what);
151
152 /* get a stream by its number (regnum) */
153 /* returns NULL for free numbers */
154 /* defaults to ls_default_stream for 0 when stream number 0 not set */
155 struct log_stream *log_stream_by_flags(uns flags);
156
157 /* process a message (string) (INTERNAL) */
158 /* depth prevents undetected looping */
159 /* returns 1 in case of loop detection or other fatal error
160  *         0 otherwise */
161 int log_pass_msg(int depth, struct log_stream *ls, struct log_msg *m);
162
163 /* Define an array (growing buffer) for pointers to log_streams. */
164 #define GBUF_TYPE struct log_stream*
165 #define GBUF_PREFIX(x) lsbuf_##x
166 #include "ucw/gbuf.h"
167
168 extern struct lsbuf_t log_streams;
169 extern int log_streams_after;
170
171 /********* Individual handler types (constructors, handlers, destructors) */
172
173 /**** standard (filedes) files */
174
175 // NOTE:
176 // under unix, for ordinary files open in append mode, the writes
177 // are atomic (unless you meet the quota or other bad things happen),
178 // so using a single log_stream is thread-safe and the file can be shared
179 // among multiple processes
180
181 /* assign log to a file descriptor */
182 /* initialize with the default formatting, does NOT close the descriptor */
183 struct log_stream *log_new_fd(int fd);
184
185 /* open() a file (append mode) */
186 /* initialize with the default formatting */
187 struct log_stream *log_new_file(const char *path);
188
189
190 /**** syslog */
191
192 // NOTE:
193 // The syslog uses a bit different severity levels, for details, see
194 // ls_syslog_convert_level().
195 // syslog also prepends it's own time and severity info, so the default
196 // messaging passes only clean message
197
198 /* assign log to a syslog facility */
199 /* initialize with no formatting (syslog adds these inforamtion) */
200 /* name is optional prefix (NULL for none) */
201 struct log_stream *log_new_syslog(int facility, const char *name);
202
203 #endif