forked from robertapengelly/ar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.c
125 lines (80 loc) · 2.5 KB
/
report.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/******************************************************************************
* @file report.c
*****************************************************************************/
#include <stdarg.h>
#include <stdio.h>
#include "report.h"
#ifndef __PDOS__
#if defined (_WIN32)
# include <windows.h>
static int OriginalConsoleColor = -1;
#endif
static void reset_console_color (void) {
#if defined (_WIN32)
HANDLE hStdError = GetStdHandle (STD_ERROR_HANDLE);
if (OriginalConsoleColor == -1) { return; }
SetConsoleTextAttribute (hStdError, OriginalConsoleColor);
OriginalConsoleColor = -1;
#else
fprintf (stderr, "\033[0m");
#endif
}
static void set_console_color (int color) {
#if defined (_WIN32)
HANDLE hStdError = GetStdHandle (STD_ERROR_HANDLE);
WORD wColor;
if (OriginalConsoleColor == -1) {
CONSOLE_SCREEN_BUFFER_INFO csbi;
if (!GetConsoleScreenBufferInfo (hStdError, &csbi)) {
return;
}
OriginalConsoleColor = csbi.wAttributes;
}
wColor = (OriginalConsoleColor & 0xF0) + (color & 0xF);
SetConsoleTextAttribute (hStdError, wColor);
#else
fprintf (stderr, "\033[%dm", color);
#endif
}
#endif
void report_at (const char *filename, unsigned long line_number, int type, const char *fmt, ...) {
va_list ap;
if (filename) {
if (line_number == 0) {
fprintf (stderr, "%s: ", filename);
} else {
fprintf (stderr, "%s:", filename);
}
}
if (line_number > 0) {
fprintf (stderr, "%lu: ", line_number);
}
if (type == REPORT_ERROR || type == REPORT_FATAL_ERROR) {
#ifndef __PDOS__
set_console_color (COLOR_ERROR);
#endif
if (type == REPORT_ERROR) {
fprintf (stderr, "error:");
} else {
fprintf (stderr, "fatal error:");
}
} else if (type == REPORT_INTERNAL_ERROR) {
#ifndef __PDOS__
set_console_color (COLOR_INTERNAL_ERROR);
#endif
fprintf (stderr, "internal error:");
} else if (type == REPORT_WARNING) {
#ifndef __PDOS__
set_console_color (COLOR_WARNING);
#endif
fprintf (stderr, "warning:");
}
#ifndef __PDOS__
reset_console_color ();
#endif
fprintf (stderr, " ");
va_start (ap, fmt);
vfprintf (stderr, fmt, ap);
va_end (ap);
fprintf (stderr, "\n");
}