]> git.xonotic.org Git - xonotic/gmqcc.git/blob - conout.c
Test cases for -fcorrect-logic
[xonotic/gmqcc.git] / conout.c
1 /*
2  * Copyright (C) 2012
3  *     Dale Weiler
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #include "gmqcc.h"
24
25 /*
26  * isatty/STDERR_FILENO/STDOUT_FILNO
27  * + some other things likewise.
28  */
29 #ifndef _WIN32
30 #   include <unistd.h>
31 #else
32 #   include <io.h>
33     /*
34      * Windows and it's posix underscore bullshit.  We simply fix this
35      * with yay, another macro :P
36      */
37 #   define isatty _isatty
38 #endif
39
40 #define GMQCC_IS_STDOUT(X) ((FILE*)((void*)X) == stdout)
41 #define GMQCC_IS_STDERR(X) ((FILE*)((void*)X) == stderr)
42 #define GMQCC_IS_DEFINE(X) (GMQCC_IS_STDERR(X) || GMQCC_IS_STDOUT(X))
43
44 typedef struct {
45     FILE *handle_err;
46     FILE *handle_out;
47
48     int   color_err;
49     int   color_out;
50 } con_t;
51
52 /*
53  * Doing colored output on windows is fucking stupid.  The linux way is
54  * the real way. So we emulate it on windows :)
55  */
56 #ifdef _MSC_VER
57 #define WIN32_LEAN_AND_MEAN
58 #include <windows.h>
59
60 /*
61  * Windows doesn't have constants for FILENO, sadly but the docs tell
62  * use the constant values.
63  */
64 #undef  STDERR_FILENO
65 #undef  STDOUT_FILENO
66 #define STDERR_FILENO 2
67 #define STDOUT_FILENO 1
68
69 enum {
70     RESET = 0,
71     BOLD  = 1,
72     BLACK = 30,
73     RED,
74     GREEN,
75     YELLOW,
76     BLUE,
77     MAGENTA,
78     CYAN,
79     GRAY,
80     WHITE = GRAY
81 };
82
83 enum {
84     WBLACK,
85     WBLUE,
86     WGREEN   = 2,
87     WRED     = 4,
88     WINTENSE = 8,
89     WCYAN    = WBLUE  | WGREEN,
90     WMAGENTA = WBLUE  | WRED,
91     WYELLOW  = WGREEN | WRED,
92     WWHITE   = WBLUE  | WGREEN | WRED
93 };
94
95 static const int ansi2win[] = {
96     WBLACK,
97     WRED,
98     WGREEN,
99     WYELLOW,
100     WBLUE,
101     WMAGENTA,
102     WCYAN,
103     WWHITE
104 };
105
106 static int win_fputs(const char *str, FILE *h) {
107     /* state for translate */
108     int acolor;
109     int wcolor;
110     int icolor;
111
112     int state;
113
114     /* attributes */
115     int intense  =  -1;
116     int colors[] = {-1, -1 };
117     int colorpos = 1;
118     int length   = 0;
119     CONSOLE_SCREEN_BUFFER_INFO cinfo;
120     GetConsoleScreenBufferInfo (
121         (GMQCC_IS_STDOUT(h)) ?
122             GetStdHandle(STD_OUTPUT_HANDLE) :
123             GetStdHandle(STD_ERROR_HANDLE), &cinfo
124     );
125     icolor = cinfo.wAttributes;
126
127     while (*str) {
128         if (*str == '\x1B')
129             state = '\x1B';
130         else if (state == '\x1B' && *str == '[')
131             state = '[';
132         else if (state == '[') {
133             if (*str != 'm') {
134                 colors[colorpos] = *str;
135                 colorpos--;
136             } else {
137                 int find;
138                 int mult;
139                 for (find = colorpos + 1, acolor = 0, mult = 1; find < 2; find++) {
140                     acolor += (colors[find] - 48) * mult;
141                     mult   *= 10;
142                 }
143
144                 /* convert to windows color */
145                 if (acolor == BOLD)
146                     intense = WINTENSE;
147                 else if (acolor == RESET) {
148                     intense = WBLACK;
149                     wcolor  = icolor;
150                 }
151                 else if (BLACK <= acolor && acolor <= WHITE)
152                     wcolor = ansi2win[acolor - 30];
153                 else if (acolor == 90) {
154                     /* special gray really white man */
155                     wcolor  = WWHITE;
156                     intense = WBLACK;
157                 }
158
159                 SetConsoleTextAttribute (
160                     (GMQCC_IS_STDOUT(h)) ?
161                     GetStdHandle(STD_OUTPUT_HANDLE) :
162                     GetStdHandle(STD_ERROR_HANDLE),
163
164                     wcolor | intense | (icolor & 0xF0)
165                 );
166                 colorpos =  1;
167                 state    = -1;
168             }
169         } else {
170             fputc(*str, h);
171             length ++;
172         }
173         str++;
174     }
175     /* restore */
176     SetConsoleTextAttribute(
177         (GMQCC_IS_STDOUT(h)) ?
178         GetStdHandle(STD_OUTPUT_HANDLE) :
179         GetStdHandle(STD_ERROR_HANDLE),
180         icolor
181     );
182     return length;
183 }
184 #endif
185
186 /*
187  * We use standard files as default. These can be changed at any time
188  * with con_change(F, F)
189  */
190 static con_t console;
191
192 /*
193  * Enables color on output if supported.
194  * NOTE: The support for checking colors is NULL.  On windows this will
195  * always work, on *nix it depends if the term has colors.
196  *
197  * NOTE: This prevents colored output to piped stdout/err via isatty
198  * checks.
199  */
200 static void con_enablecolor() {
201     if (console.handle_err == stderr || console.handle_err == stdout)
202         console.color_err = !!(isatty(STDERR_FILENO));
203     if (console.handle_out == stderr || console.handle_out == stdout)
204         console.color_out = !!(isatty(STDOUT_FILENO));
205 }
206
207 /*
208  * Does a write to the handle with the format string and list of
209  * arguments.  This colorizes for windows as well via translate
210  * step.
211  */
212 static int con_write(FILE *handle, const char *fmt, va_list va) {
213     int      ln;
214     #ifndef _MSC_VER
215     ln = vfprintf(handle, fmt, va);
216     #else
217     {
218         char data[4096];
219         memset(data, 0, sizeof(data));
220         vsnprintf(data, sizeof(data), fmt, va);
221         ln = (GMQCC_IS_DEFINE(handle)) ? win_fputs(data, handle) : fputs(data, handle);
222     }
223     #endif
224     return ln;
225 }
226
227 /**********************************************************************
228  * EXPOSED INTERFACE BEGINS
229  *********************************************************************/
230
231 void con_close() {
232     if (!GMQCC_IS_DEFINE(console.handle_err))
233         fclose(console.handle_err);
234     if (!GMQCC_IS_DEFINE(console.handle_out))
235         fclose(console.handle_out);
236 }
237
238 void con_color(int state) {
239     if (state)
240         con_enablecolor();
241     else {
242         console.color_err = 0;
243         console.color_out = 0;
244     }
245 }
246
247 void con_init() {
248     console.handle_err = stderr;
249     console.handle_out = stdout;
250     con_enablecolor();
251 }
252
253 void con_reset() {
254     con_close();
255     con_init ();
256 }
257
258 /*
259  * This is clever, say you want to change the console to use two
260  * files for out/err.  You pass in two strings, it will properly
261  * close the existing handles (if they're not std* handles) and
262  * open them.  Now say you want TO use stdout and stderr, this
263  * allows you to do that so long as you cast them to (char*).
264  * Say you need stdout for out, but want a file for error, you can
265  * do this too, just cast the stdout for (char*) and stick to a
266  * string for the error file.
267  */
268 int con_change(const char *out, const char *err) {
269     con_close();
270
271     if (GMQCC_IS_DEFINE(out)) {
272         console.handle_out = GMQCC_IS_STDOUT(out) ? stdout : stderr;
273         con_enablecolor();
274     } else if (!(console.handle_out = fopen(out, "w"))) return 0;
275
276     if (GMQCC_IS_DEFINE(err)) {
277         console.handle_err = GMQCC_IS_STDOUT(err) ? stdout : stderr;
278         con_enablecolor();
279     } else if (!(console.handle_err = fopen(err, "w"))) return 0;
280
281     /* no buffering */
282     setvbuf(console.handle_out, NULL, _IONBF, 0);
283     setvbuf(console.handle_err, NULL, _IONBF, 0);
284
285     return 1;
286 }
287
288 int con_verr(const char *fmt, va_list va) {
289     return con_write(console.handle_err, fmt, va);
290 }
291 int con_vout(const char *fmt, va_list va) {
292     return con_write(console.handle_out, fmt, va);
293 }
294
295 /*
296  * Standard stdout/stderr printf functions used generally where they need
297  * to be used.
298  */
299 int con_err(const char *fmt, ...) {
300     va_list  va;
301     int      ln = 0;
302     va_start(va, fmt);
303     con_verr(fmt, va);
304     va_end  (va);
305     return   ln;
306 }
307 int con_out(const char *fmt, ...) {
308     va_list  va;
309     int      ln = 0;
310     va_start(va, fmt);
311     con_vout(fmt, va);
312     va_end  (va);
313     return   ln;
314 }
315
316 /*
317  * Utility console message writes for lexer contexts.  These will allow
318  * for reporting of file:line based on lexer context, These are used
319  * heavily in the parser/ir/ast.
320  */
321 void con_vprintmsg_c(int level, const char *name, size_t line, const char *msgtype, const char *msg, va_list ap, const char *condname) {
322     /* color selection table */
323     static int sel[] = {
324         CON_WHITE,
325         CON_CYAN,
326         CON_RED
327     };
328
329     int  err                         = !!(level == LVL_ERROR);
330     int  color                       = (err) ? console.color_err : console.color_out;
331     int (*print) (const char *, ...)  = (err) ? &con_err          : &con_out;
332     int (*vprint)(const char *, va_list) = (err) ? &con_verr : &con_vout;
333
334     if (color)
335         print("\033[0;%dm%s:%d: \033[0;%dm%s: \033[0m", CON_CYAN, name, (int)line, sel[level], msgtype);
336     else
337         print("%s:%d: %s: ", name, (int)line, msgtype);
338
339     vprint(msg, ap);
340     if (condname)
341         print(" [%s]\n", condname);
342     else
343         print("\n");
344 }
345
346 void con_vprintmsg(int level, const char *name, size_t line, const char *msgtype, const char *msg, va_list ap) {
347     con_vprintmsg_c(level, name, line, msgtype, msg, ap, NULL);
348 }
349
350 void con_printmsg(int level, const char *name, size_t line, const char *msgtype, const char *msg, ...) {
351     va_list   va;
352     va_start(va, msg);
353     con_vprintmsg(level, name, line, msgtype, msg, va);
354     va_end  (va);
355 }
356
357 void con_cvprintmsg(void *ctx, int lvl, const char *msgtype, const char *msg, va_list ap) {
358     con_vprintmsg(lvl, ((lex_ctx*)ctx)->file, ((lex_ctx*)ctx)->line, msgtype, msg, ap);
359 }
360
361 void con_cprintmsg (void *ctx, int lvl, const char *msgtype, const char *msg, ...) {
362     va_list   va;
363     va_start(va, msg);
364     con_cvprintmsg(ctx, lvl, msgtype, msg, va);
365     va_end  (va);
366 }
367
368 /* General error interface */
369 size_t compile_errors = 0;
370 size_t compile_warnings = 0;
371
372 void vcompile_error(lex_ctx ctx, const char *msg, va_list ap)
373 {
374     ++compile_errors;
375     con_cvprintmsg((void*)&ctx, LVL_ERROR, "error", msg, ap);
376 }
377
378 void compile_error(lex_ctx ctx, const char *msg, ...)
379 {
380     va_list ap;
381     va_start(ap, msg);
382     vcompile_error(ctx, msg, ap);
383     va_end(ap);
384 }
385
386 bool GMQCC_WARN vcompile_warning(lex_ctx ctx, int warntype, const char *fmt, va_list ap)
387 {
388     int lvl = LVL_WARNING;
389     char warn_name[1024];
390
391     if (!OPTS_WARN(warntype))
392         return false;
393
394     warn_name[0] = '-';
395     warn_name[1] = 'W';
396     (void)util_strtononcmd(opts_warn_list[warntype].name, warn_name+2, sizeof(warn_name)-2);
397
398     if (OPTS_WERROR(warntype)) {
399         ++compile_errors;
400         lvl = LVL_ERROR;
401     }
402     else
403         ++compile_warnings;
404
405     con_vprintmsg_c(lvl, ctx.file, ctx.line, ((lvl == LVL_ERROR) ? "error" : "warning"), fmt, ap, warn_name);
406
407     return OPTS_WERROR(warntype);
408 }
409
410 bool GMQCC_WARN compile_warning(lex_ctx ctx, int warntype, const char *fmt, ...)
411 {
412     bool r;
413     va_list ap;
414     va_start(ap, fmt);
415     r = vcompile_warning(ctx, warntype, fmt, ap);
416     va_end(ap);
417     return r;
418 }