]> git.pond.sub.org Git - empserver/blob - src/lib/common/log.c
Indented with src/scripts/indent-emp.
[empserver] / src / lib / common / log.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  log.c: Log an Empire error to a file
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  */
33
34 #include "misc.h"
35 #include <errno.h>
36 #include <stdlib.h>
37 #if !defined(_WIN32)
38 #include <unistd.h>
39 #endif
40 #include <fcntl.h>
41 #include <stdarg.h>
42 #include <stdio.h>
43 #ifdef Rel4
44 #include <string.h>
45 #endif /* Rel4 */
46 #include <time.h>
47 #include "deity.h"
48 #include "player.h"
49 #include "common.h"
50
51 static s_char *logfile = 0;
52
53 s_char *
54 getlogfile()
55 {
56     return (s_char *)logfile;
57 }
58
59 /*
60  * Points logfile at datadir/"program".log
61  */
62 void
63 loginit(void)
64 {
65     extern s_char program[];
66     extern s_char *datadir;
67     s_char buf[1024];
68
69 #if !defined(_WIN32)
70     sprintf(buf, "%s/%s.log", datadir, program);
71 #else
72     sprintf(buf, "%s\\%s.log", datadir, program);
73 #endif
74     logfile = malloc(strlen(buf) + 1);
75     strcpy(logfile, buf);
76 }
77
78 /*VARARGS*/
79 void
80 logerror(s_char *format, ...)
81 {
82 #if !defined(Rel4) && !defined(__linux__) && !defined(__ppc__)
83     extern s_char *sys_errlist[];
84 #endif
85 #ifndef sgi
86     extern int errno;
87 #endif /* sgi */
88     va_list list;
89     time_t now;
90     s_char buf[512];
91     s_char cbuf[512];
92     s_char buf1[512];
93     int logf;
94 /*      s_char  *error; */
95     s_char *p;
96
97     if (logfile == 0)
98         loginit();
99     va_start(list, format);
100     vsprintf(buf, format, list);
101     if ((p = index(buf, '\n')) != 0)
102         *p = 0;
103     (void)time(&now);
104 /*      error = "log";
105         if (errno != 0)
106                 error = sys_errlist[errno];
107         (void) sprintf(buf1, "%s; (%s) %s", buf, error, ctime(&now));
108 */
109     strcpy(cbuf, ctime(&now));
110     if ((p = index(cbuf, '\n')) != 0)
111         *p = 0;
112     (void)sprintf(buf1, "%s %s\n", cbuf, buf);
113     if ((logf = open(logfile, O_WRONLY | O_CREAT | O_APPEND, 0666)) < 0)
114         return;
115     (void)write(logf, buf1, strlen(buf1));
116     (void)close(logf);
117     errno = 0;
118 #ifdef notdef
119     if (player) {
120         pr("A system error has occured; please notify the deity.\n");
121         pr(buf1);
122     }
123 #endif
124     va_end(list);
125 }
126
127 /*VARARGS*/
128 void
129 filelogerror(s_char *format, ...)
130 {
131 #if !defined(Rel4) && !defined(__linux__) && !defined(__ppc__)
132     extern s_char *sys_errlist[];
133 #endif /* Rel4 */
134 #ifndef sgi
135     extern int errno;
136 #endif /* sgi */
137     va_list list;
138     time_t now;
139     s_char buf[512];
140     s_char buf1[512];
141     int logf;
142     s_char *error;
143     s_char *p;
144
145     if (logfile == 0)
146         loginit();
147     va_start(list, format);
148     vsprintf(buf, format, list);
149     if ((p = index(buf, '\n')) != 0)
150         *p = 0;
151     (void)time(&now);
152     error = "log";
153     if (errno != 0)
154 #ifdef Rel4
155         error = strerror(errno);
156 #else
157         error = (s_char *)sys_errlist[errno];
158 #endif /* Rel4 */
159     (void)sprintf(buf1, "%s; (%s) %s", buf, error, ctime(&now));
160     if ((logf = open(logfile, O_WRONLY | O_CREAT | O_APPEND, 0666)) < 0)
161         return;
162     (void)write(logf, buf1, strlen(buf1));
163     (void)close(logf);
164     errno = 0;
165     va_end(list);
166 }