]> git.pond.sub.org Git - empserver/blob - src/lib/common/log.c
<string.h> is ISO C, no need to #if it.
[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 #include <string.h>
44 #include <time.h>
45 #include "deity.h"
46 #include "player.h"
47 #include "common.h"
48 #include "optlist.h"
49
50 static s_char *logfile = 0;
51
52 s_char *
53 getlogfile(void)
54 {
55     return (s_char *)logfile;
56 }
57
58 /*
59  * Points logfile at datadir/"program".log
60  */
61 void
62 loginit(void)
63 {
64     extern s_char program[];
65     s_char buf[1024];
66
67 #if !defined(_WIN32)
68     sprintf(buf, "%s/%s.log", datadir, program);
69 #else
70     sprintf(buf, "%s\\%s.log", datadir, program);
71 #endif
72     logfile = malloc(strlen(buf) + 1);
73     strcpy(logfile, buf);
74 }
75
76 /*VARARGS*/
77 void
78 logerror(s_char *format, ...)
79 {
80     va_list list;
81     time_t now;
82     s_char buf[512];
83     s_char cbuf[512];
84     s_char buf1[512];
85     int logf;
86     s_char *p;
87
88     if (logfile == 0)
89         loginit();
90     va_start(list, format);
91     vsprintf(buf, format, list);
92     if ((p = strchr(buf, '\n')) != 0)
93         *p = 0;
94     (void)time(&now);
95     strcpy(cbuf, ctime(&now));
96     if ((p = strchr(cbuf, '\n')) != 0)
97         *p = 0;
98     (void)sprintf(buf1, "%s %s\n", cbuf, buf);
99     if ((logf = open(logfile, O_WRONLY | O_CREAT | O_APPEND, 0666)) < 0)
100         return;
101     (void)write(logf, buf1, strlen(buf1));
102     (void)close(logf);
103     errno = 0;
104 #ifdef notdef
105     if (player) {
106         pr("A system error has occured; please notify the deity.\n");
107         pr(buf1);
108     }
109 #endif
110     va_end(list);
111 }