Update copyright year. Fix a typo in logging.
[umurmur.git] / src / log.c
1 /* Copyright (C) 2010, Martin Johansson <martin@fatbob.nu>
2    Copyright (C) 2005-2010, Thorvald Natvig <thorvald@natvig.com>
3
4    All rights reserved.
5
6    Redistribution and use in source and binary forms, with or without
7    modification, are permitted provided that the following conditions
8    are met:
9
10    - Redistributions of source code must retain the above copyright notice,
11      this list of conditions and the following disclaimer.
12    - Redistributions in binary form must reproduce the above copyright notice,
13      this list of conditions and the following disclaimer in the documentation
14      and/or other materials provided with the distribution.
15    - Neither the name of the Developers nor the names of its contributors may
16      be used to endorse or promote products derived from this software without
17      specific prior written permission.
18
19    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
23    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 #include <stdarg.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <syslog.h>
36 #include <string.h>
37
38 #include "log.h"
39
40 #define BUFSIZE 254
41
42 static bool_t termprint;
43
44 void Log_init(bool_t terminal)
45 {
46         termprint = terminal;
47         if (!termprint)
48                 openlog("uMurmurd", LOG_PID, LOG_DAEMON);
49 }
50
51 void Log_free()
52 {
53         if (!termprint)
54                 closelog();
55 }
56                 
57
58 void logthis(const char *logstring, ...)
59 {
60         va_list argp;
61         char buf[BUFSIZE + 2];
62         
63         va_start(argp, logstring);
64         vsnprintf(&buf[0], BUFSIZE, logstring, argp);
65         va_end(argp);
66         strcat(buf, "\n");
67         if (termprint)
68                 fprintf(stderr, "%s", buf); /* XXX - other targets for logging */
69         else
70                 syslog(LOG_INFO, buf);
71 }
72
73 void Log_warn(const char *logstring, ...)
74 {
75         va_list argp;
76         char buf[BUFSIZE + 2];
77         int offset = 0;
78         
79         va_start(argp, logstring);
80         offset = sprintf(buf, "WARN: ");
81         vsnprintf(&buf[offset], BUFSIZE - offset, logstring, argp);
82         va_end(argp);
83         strcat(buf, "\n");
84         if (termprint)
85                 fprintf(stderr, "%s", buf); /* XXX - other targets for logging */
86         else
87                 syslog(LOG_WARNING, buf);
88 }
89
90 void Log_info(const char *logstring, ...)
91 {
92         va_list argp;
93         char buf[BUFSIZE + 2];
94         int offset = 0;
95         
96         va_start(argp, logstring);
97         offset = sprintf(buf, "INFO: ");
98         vsnprintf(&buf[offset], BUFSIZE - offset, logstring, argp);
99         va_end(argp);
100         strcat(buf, "\n");
101         if (termprint)
102                 fprintf(stderr, "%s", buf); /* XXX - other targets for logging */
103         else
104                 syslog(LOG_INFO, buf);
105 }
106
107 #ifdef DEBUG
108 void Log_debug(const char *logstring, ...)
109 {
110         va_list argp;
111         char buf[BUFSIZE + 2];
112         int offset = 0;
113         
114         va_start(argp, logstring);
115         offset = sprintf(buf, "DEBUG: ");
116         vsnprintf(&buf[offset], BUFSIZE - offset, logstring, argp);
117         va_end(argp);
118         strcat(buf, "\n");
119         if (termprint)
120                 fprintf(stderr, "%s", buf); /* XXX - other targets for logging */
121         else
122                 syslog(LOG_DEBUG, buf);
123 }
124 #endif
125
126 void Log_fatal(const char *logstring, ...)
127 {
128         va_list argp;
129         char buf[BUFSIZE + 2];
130         int offset = 0;
131         va_start(argp, logstring);
132         offset = sprintf(buf, "FATAL: ");
133         vsnprintf(&buf[offset], BUFSIZE - offset, logstring, argp);
134         va_end(argp);
135         strcat(buf, "\n");
136         if (termprint)
137                 fprintf(stderr, "%s", buf); /* XXX - other targets for logging */
138         else
139                 syslog(LOG_CRIT, buf);
140         exit(1);
141 }