fixed logging and more
[retroray] / src / logger.c
1 /*
2 RetroRay - integrated standalone vintage modeller/renderer
3 Copyright (C) 2023  John Tsiombikas <nuclear@mutantstargoat.com>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <https://www.gnu.org/licenses/>.
17 */
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <stdarg.h>
21 #include "logger.h"
22
23 #if defined(__MSDOS__) || defined(MSDOS)
24 static int setup_serial(int sdev);
25
26 void ser_putchar(int c);
27 void ser_puts(const char *s);
28 void ser_printf(const char *fmt, ...);
29 #else
30 #define USE_STD
31 #endif
32
33 enum { LOG_FILE, LOG_STREAM, LOG_CON, LOG_CB };
34 enum { LOG_DBG, LOG_INFO, LOG_WARN, LOG_ERR };
35
36 struct log_callback {
37         void (*func)(const char*, void*);
38         void *cls;
39 };
40
41 struct log_output {
42         int type, level;
43         union {
44                 FILE *fp;
45                 int con;
46                 struct log_callback cb;
47         } out;
48 };
49
50 #define MAX_OUTPUTS     8
51 static struct log_output outputs[MAX_OUTPUTS];
52 static int num_outputs;
53
54 void init_logger(void)
55 {
56         num_outputs = 0;
57 }
58
59 void cleanup_logger(void)
60 {
61         int i;
62
63         for(i=0; i<num_outputs; i++) {
64                 if(outputs[i].type == LOG_FILE) {
65                         fclose(outputs[i].out.fp);
66                 }
67         }
68         num_outputs = 0;
69 }
70
71 int add_log_file(const char *fname)
72 {
73         FILE *fp;
74         int idx;
75
76         if(num_outputs >= MAX_OUTPUTS) {
77                 return -1;
78         }
79         if(!(fp = fopen(fname, "w"))) {
80                 return -1;
81         }
82         idx = num_outputs++;
83
84         outputs[idx].type = LOG_FILE;
85         outputs[idx].out.fp = fp;
86         return 0;
87 }
88
89 int add_log_stream(FILE *fp)
90 {
91         int idx;
92
93         if(num_outputs >= MAX_OUTPUTS) {
94                 return -1;
95         }
96         idx = num_outputs++;
97
98         outputs[idx].type = LOG_STREAM;
99         outputs[idx].out.fp = fp;
100         return 0;
101 }
102
103 int add_log_console(const char *devname)
104 {
105 #if defined(MSDOS) || defined(__MSDOS__)
106         int i, comport;
107         if(sscanf(devname, "COM%d", &comport) != 1 || comport < 1 || comport > 2) {
108                 return -1;
109         }
110         comport--;
111
112         if(num_outputs >= MAX_OUTPUTS) {
113                 return -1;
114         }
115         for(i=0; i<num_outputs; i++) {
116                 if(outputs[i].type == LOG_CON && outputs[i].out.con == comport) {
117                         return -1;
118                 }
119         }
120         if(setup_serial(comport) == -1) {
121                 return -1;
122         }
123
124         i = num_outputs++;
125         outputs[i].type = LOG_CON;
126         outputs[i].out.con = comport;
127         return 0;
128
129 #elif defined(unix) || defined(__unix__)
130         /* TODO? */
131         return -1;
132 #endif
133 }
134
135 int add_log_callback(void (*cbfunc)(const char*, void*), void *cls)
136 {
137         int idx;
138
139         if(num_outputs >= MAX_OUTPUTS) {
140                 return -1;
141         }
142         idx = num_outputs++;
143
144         outputs[idx].type = LOG_CB;
145         outputs[idx].out.cb.func = cbfunc;
146         outputs[idx].out.cb.cls = cls;
147         return 0;
148 }
149
150 #if defined(__WATCOMC__)
151 #ifndef vsnprintf
152 #define vsnprintf _vsnprintf
153 #endif
154 #endif
155
156 static void logmsg(int type, const char *fmt, va_list ap)
157 {
158         static char buf[2048];
159         int i;
160
161         vsnprintf(buf, sizeof buf, fmt, ap);
162
163         for(i=0; i<num_outputs; i++) {
164                 switch(outputs[i].type) {
165                 case LOG_FILE:
166                 case LOG_STREAM:
167                         fputs(buf, outputs[i].out.fp);
168                         fflush(outputs[i].out.fp);
169                         break;
170
171 #if defined(MSDOS) || defined(__MSDOS__)
172                 case LOG_CON:
173                         ser_puts(buf);
174                         break;
175 #endif
176                 case LOG_CB:
177                         outputs[i].out.cb.func(buf, outputs[i].out.cb.cls);
178                         break;
179
180                 default:
181                         break;
182                 }
183         }
184 }
185
186 void errormsg(const char *fmt, ...)
187 {
188         va_list ap;
189         va_start(ap, fmt);
190         logmsg(LOG_ERR, fmt, ap);
191         va_end(ap);
192 }
193
194 void warnmsg(const char *fmt, ...)
195 {
196         va_list ap;
197         va_start(ap, fmt);
198         logmsg(LOG_WARN, fmt, ap);
199         va_end(ap);
200 }
201
202 void infomsg(const char *fmt, ...)
203 {
204         va_list ap;
205         va_start(ap, fmt);
206         logmsg(LOG_INFO, fmt, ap);
207         va_end(ap);
208 }
209
210 void dbgmsg(const char *fmt, ...)
211 {
212         va_list ap;
213         va_start(ap, fmt);
214         logmsg(LOG_DBG, fmt, ap);
215         va_end(ap);
216 }
217
218 void verrormsg(const char *fmt, va_list ap)
219 {
220         logmsg(LOG_ERR, fmt, ap);
221 }
222
223 void vwarnmsg(const char *fmt, va_list ap)
224 {
225         logmsg(LOG_ERR, fmt, ap);
226 }
227
228 void vinfomsg(const char *fmt, va_list ap)
229 {
230         logmsg(LOG_ERR, fmt, ap);
231 }
232
233 void vdbgmsg(const char *fmt, va_list ap)
234 {
235         logmsg(LOG_ERR, fmt, ap);
236 }
237
238
239 #if defined(MSDOS) || defined(__MSDOS__)
240 #include <conio.h>
241
242 #define UART1_BASE      0x3f8
243 #define UART2_BASE      0x2f8
244
245 #define UART_DATA       0
246 #define UART_DIVLO      0
247 #define UART_DIVHI      1
248 #define UART_FIFO       2
249 #define UART_LCTL       3
250 #define UART_MCTL       4
251 #define UART_LSTAT      5
252
253 #define DIV_9600                        (115200 / 9600)
254 #define DIV_38400                       (115200 / 38400)
255 #define LCTL_8N1                        0x03
256 #define LCTL_DLAB                       0x80
257 #define FIFO_ENABLE_CLEAR       0x07
258 #define MCTL_DTR_RTS_OUT2       0x0b
259 #define LST_TRIG_EMPTY          0x20
260
261 static unsigned int iobase;
262
263 static int setup_serial(int sdev)
264 {
265         if(sdev < 0 || sdev > 1) {
266                 return -1;
267         }
268         iobase = sdev == 0 ? UART1_BASE : UART2_BASE;
269
270         /* set clock divisor */
271         outp(iobase | UART_LCTL, LCTL_DLAB);
272         outp(iobase | UART_DIVLO, DIV_9600 & 0xff);
273         outp(iobase | UART_DIVHI, DIV_9600 >> 8);
274         /* set format 8n1 */
275         outp(iobase | UART_LCTL, LCTL_8N1);
276         /* assert RTS and DTR */
277         outp(iobase | UART_MCTL, MCTL_DTR_RTS_OUT2);
278         return 0;
279 }
280
281 void ser_putchar(int c)
282 {
283         if(c == '\n') {
284                 ser_putchar('\r');
285         }
286
287         while((inp(iobase | UART_LSTAT) & LST_TRIG_EMPTY) == 0);
288         outp(iobase | UART_DATA, c);
289 }
290
291 void ser_puts(const char *s)
292 {
293         while(*s) {
294                 ser_putchar(*s++);
295         }
296 }
297
298 void ser_printf(const char *fmt, ...)
299 {
300         va_list ap;
301         char buf[512];
302
303         va_start(ap, fmt);
304         vsprintf(buf, fmt, ap);
305         va_end(ap);
306
307         ser_puts(buf);
308 }
309 #endif