Renamed logf function to yaz_log. Removed VC++ project files.
[yaz-moved-to-github.git] / util / log.c
1 /*
2  * Copyright (c) 1995-1999, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: log.c,v $
7  * Revision 1.19  1999-08-27 09:40:32  adam
8  * Renamed logf function to yaz_log. Removed VC++ project files.
9  *
10  * Revision 1.18  1998/10/28 10:27:00  adam
11  * New functions log_init_file, log_init_level, log_init_prefix.
12  *
13  * Revision 1.17  1997/12/09 16:11:02  adam
14  * Assume strerror is defined on Unixes as well. It's standard ANSI.
15  *
16  * Revision 1.16  1997/10/06 08:55:07  adam
17  * Changed log_init so that previous (if any) is closed.
18  *
19  * Revision 1.15  1997/09/29 07:13:13  adam
20  * Minor changes.
21  *
22  * Revision 1.14  1997/09/18 08:48:09  adam
23  * Fixed minor bug that caused log_init to ignore filename.
24  *
25  * Revision 1.13  1997/09/01 08:54:13  adam
26  * New windows NT/95 port using MSV5.0. Made prefix query handling
27  * thread safe. The function options ignores empty arguments when met.
28  *
29  * Revision 1.12  1997/05/01 15:08:14  adam
30  * Added log_mask_str_x routine.
31  *
32  * Revision 1.11  1996/02/05 12:24:32  adam
33  * Implemented log_event_{start,end}-functions.
34  *
35  * Revision 1.10  1995/12/06  09:51:27  quinn
36  * Fixed the log-prefix buffer - it was too small and the setup code lacked
37  * a bounds-check.
38  *
39  * Revision 1.9  1995/09/29  17:12:34  quinn
40  * Smallish
41  *
42  * Revision 1.8  1995/09/27  15:03:02  quinn
43  * Modified function heads & prototypes.
44  *
45  * Revision 1.7  1995/06/19  12:40:18  quinn
46  * Added log_file()
47  *
48  * Revision 1.6  1995/06/15  15:45:03  quinn
49  * Added date info.
50  *
51  * Revision 1.5  1995/05/16  08:51:11  quinn
52  * License, documentation, and memory fixes
53  *
54  * Revision 1.4  1995/05/15  11:56:55  quinn
55  * Debuggng & adjustments.
56  *
57  * Revision 1.3  1995/04/10  10:23:51  quinn
58  * Fixes.
59  *
60  * Revision 1.2  1995/03/31  10:16:55  quinn
61  * Fixed logging.
62  *
63  * Revision 1.1  1995/03/30  10:26:53  quinn
64  * Logging system
65  *
66  * Revision 1.9  1994/12/12  12:09:02  quinn
67  * Changes
68  *
69  * Revision 1.8  1994/11/22  13:15:38  quinn
70  * Simple
71  *
72  * Revision 1.7  1994/10/05  10:16:11  quinn
73  * Added xrealloc. Fixed bug in log.
74  *
75  * Revision 1.6  1994/10/04  14:02:19  quinn
76  * Fixed log_init
77  *
78  * Revision 1.5  1994/09/28  13:07:41  adam
79  * Implemented log_mask_str.
80  *
81  * Revision 1.4  1994/09/27  20:04:13  quinn
82  * Added fflush.
83  *
84  * Revision 1.3  1994/08/18  08:18:48  quinn
85  * Added prefix to log_init.
86  *
87  * Revision 1.2  1994/08/17  14:27:53  quinn
88  * added LOG_ERRNO
89  *
90  * Revision 1.1  1994/08/17  13:23:15  quinn
91  * First version
92  * Added log.c
93  *
94  */
95
96 #include <stdio.h>
97 #include <stdlib.h>
98 #include <ctype.h>
99 #include <string.h>
100 #include <stdarg.h>
101 #include <errno.h>
102 #include <time.h>
103 #include <log.h>
104
105 #define HAS_STRERROR 1
106
107 #if HAS_STRERROR
108
109 #else
110 char *strerror(int n)
111 {
112         extern char *sys_errlist[];
113         return sys_errlist[n];
114 }
115
116 #endif
117
118 static int l_level = LOG_DEFAULT_LEVEL;
119 static FILE *l_file = NULL;
120 static char l_prefix[512] = "log";
121
122 static struct {
123     int mask;
124     char *name;
125 } mask_names[] =
126 {
127     { LOG_FATAL, "fatal"},
128     { LOG_DEBUG, "debug"},
129     { LOG_WARN,  "warn" },
130     { LOG_LOG,   "log"  },
131     { LOG_ERRNO, ""},
132     { LOG_ALL,   "all"  },
133     { 0,         "none" },
134     { 0, NULL }
135 };  
136
137 FILE *log_file(void)
138 {
139     if (!l_file)
140         l_file = stderr;
141     return l_file;
142 }
143
144 void log_init_file (const char *fname)
145 {
146     FILE *new_file;
147     if (!l_file)
148         l_file = stderr;
149     if (!fname || !*fname)
150         return;
151     if (!(new_file = fopen(fname, "a")))
152         return;
153     if (l_file != stderr)
154     {
155         fclose (l_file);
156     }
157     setvbuf(new_file, 0, _IONBF, 0);
158     l_file = new_file;
159 }
160
161 void log_init_level (int level)
162 {
163     l_level = level;
164 }
165
166 void log_init_prefix (const char *prefix)
167 {
168     if (prefix && *prefix)
169         sprintf(l_prefix, "%.512s", prefix);
170 }
171
172 void log_init(int level, const char *prefix, const char *fname)
173 {
174     log_init_level (level);
175     log_init_prefix (prefix);
176     log_init_file (fname);
177 }
178
179 static void (*start_hook_func)(int, const char *, void *) = NULL;
180 static void *start_hook_info;
181 static void (*end_hook_func)(int, const char *, void *) = NULL;
182 static void *end_hook_info;
183
184 void log_event_start (void (*func)(int, const char *, void *), void *info)
185 {
186     start_hook_func = func;
187     start_hook_info = info;
188 }
189
190 void log_event_end (void (*func)(int, const char *, void *), void *info)
191 {
192     end_hook_func = func;
193     end_hook_info = info;
194 }
195
196 void yaz_log(int level, const char *fmt, ...)
197 {
198     va_list ap;
199     char buf[4096], flags[1024];
200     int i;
201     time_t ti;
202     struct tm *tim;
203     char tbuf[50];
204     int o_level = level;
205
206     if (!(level & l_level))
207         return;
208     if (!l_file)
209         l_file = stderr;
210     *flags = '\0';
211     for (i = 0; level && mask_names[i].name; i++)
212         if (mask_names[i].mask & level)
213         {
214             if (*mask_names[i].name)
215                 sprintf(flags + strlen(flags), "[%s]", mask_names[i].name);
216             level -= mask_names[i].mask;
217         }
218     va_start(ap, fmt);
219     vsprintf(buf, fmt, ap);
220     if (o_level & LOG_ERRNO)
221         sprintf(buf + strlen(buf), " [%s]", strerror(errno));
222     if (start_hook_func)
223         (*start_hook_func)(o_level, buf, start_hook_info);
224     ti = time(0);
225     tim = localtime(&ti);
226     strftime(tbuf, 50, "%H:%M:%S-%d/%m", tim);
227     fprintf(l_file, "%s: %s: %s %s\n", tbuf, l_prefix, flags, buf);
228     fflush(l_file);
229     if (end_hook_func)
230         (*end_hook_func)(o_level, buf, end_hook_info);
231 }
232
233 int log_mask_str (const char *str)
234 {
235     return log_mask_str_x (str, LOG_DEFAULT_LEVEL);
236 }
237
238 int log_mask_str_x (const char *str, int level)
239 {
240     const char *p;
241     int i;
242
243     while (*str)
244     {
245         for (p = str; *p && *p != ','; p++)
246             ;
247         if (*str == '-' || isdigit(*str))
248             level = atoi (str);
249         else
250             for (i = 0; mask_names[i].name; i++)
251                 if (strlen (mask_names[i].name) == (size_t) (p-str) &&
252                     memcmp (mask_names[i].name, str, p-str) == 0)
253                 {
254                     if (mask_names[i].mask)
255                         level |= mask_names[i].mask;
256                     else
257                         level = 0;
258                 }
259         if (*p == ',')
260             p++;
261         str = p;
262     }
263     return level;
264 }