-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdiagnostics.ts
288 lines (258 loc) · 7.88 KB
/
diagnostics.ts
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
/**
* Shared diagnostic handling inherited by the parser and the compiler.
* @module diagnostics
* @preferred
*//***/
import {
Range
} from "./ast";
import {
DiagnosticCode,
diagnosticCodeToString
} from "./diagnosticMessages.generated";
import {
isLineBreak
} from "./util";
export {
DiagnosticCode,
diagnosticCodeToString
} from "./diagnosticMessages.generated";
/** Indicates the category of a {@link DiagnosticMessage}. */
export enum DiagnosticCategory {
/** Informatory message. */
INFO,
/** Warning message. */
WARNING,
/** Error message. */
ERROR
}
/** Returns the string representation of the specified diagnostic category. */
export function diagnosticCategoryToString(category: DiagnosticCategory): string {
switch (category) {
case DiagnosticCategory.INFO: return "INFO";
case DiagnosticCategory.WARNING: return "WARNING";
case DiagnosticCategory.ERROR: return "ERROR";
default: {
assert(false);
return "";
}
}
}
/** ANSI escape sequence for blue foreground. */
export const COLOR_BLUE: string = "\u001b[93m";
/** ANSI escape sequence for yellow foreground. */
export const COLOR_YELLOW: string = "\u001b[93m";
/** ANSI escape sequence for red foreground. */
export const COLOR_RED: string = "\u001b[91m";
/** ANSI escape sequence to reset the foreground color. */
export const COLOR_RESET: string = "\u001b[0m";
/** Returns the ANSI escape sequence for the specified category. */
export function diagnosticCategoryToColor(category: DiagnosticCategory): string {
switch (category) {
case DiagnosticCategory.INFO: return COLOR_BLUE;
case DiagnosticCategory.WARNING: return COLOR_YELLOW;
case DiagnosticCategory.ERROR: return COLOR_RED;
default: {
assert(false);
return "";
}
}
}
/** Represents a diagnostic message. */
export class DiagnosticMessage {
/** Message code. */
code: i32;
/** Message category. */
category: DiagnosticCategory;
/** Message text. */
message: string;
/** Respective source range, if any. */
range: Range | null = null;
/** Constructs a new diagnostic message. */
private constructor(code: i32, category: DiagnosticCategory, message: string) {
this.code = code;
this.category = category;
this.message = message;
}
/** Creates a new diagnostic message of the specified category. */
static create(
code: DiagnosticCode,
category: DiagnosticCategory,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): DiagnosticMessage {
var message = diagnosticCodeToString(code);
if (arg0 != null) message = message.replace("{0}", arg0);
if (arg1 != null) message = message.replace("{1}", arg1);
if (arg2 != null) message = message.replace("{2}", arg2);
return new DiagnosticMessage(code, category, message);
}
/** Creates a new informatory diagnostic message. */
static createInfo(
code: DiagnosticCode,
arg0: string | null = null,
arg1: string | null = null
): DiagnosticMessage {
return DiagnosticMessage.create(code, DiagnosticCategory.INFO, arg0, arg1);
}
/** Creates a new warning diagnostic message. */
static createWarning(
code: DiagnosticCode,
arg0: string | null = null,
arg1: string | null = null
): DiagnosticMessage {
return DiagnosticMessage.create(code, DiagnosticCategory.WARNING, arg0, arg1);
}
/** Creates a new error diagnostic message. */
static createError(
code: DiagnosticCode,
arg0: string | null = null,
arg1: string | null = null
): DiagnosticMessage {
return DiagnosticMessage.create(code, DiagnosticCategory.ERROR, arg0, arg1);
}
/** Adds a source range to this message. */
withRange(range: Range): this {
this.range = range;
return this;
}
/** Converts this message to a string. */
toString(): string {
if (this.range) {
return (
diagnosticCategoryToString(this.category) +
" " +
this.code.toString(10) +
": \"" +
this.message +
"\" in " +
this.range.source.normalizedPath +
":" +
this.range.line.toString(10) +
":" +
this.range.column.toString(10)
);
}
return (
diagnosticCategoryToString(this.category) +
" " +
this.code.toString(10) +
": " +
this.message
);
}
}
/** Formats a diagnostic message, optionally with terminal colors and source context. */
export function formatDiagnosticMessage(
message: DiagnosticMessage,
useColors: bool = false,
showContext: bool = false
): string {
// general information
var sb: string[] = [];
if (useColors) sb.push(diagnosticCategoryToColor(message.category));
sb.push(diagnosticCategoryToString(message.category));
if (useColors) sb.push(COLOR_RESET);
sb.push(message.code < 1000 ? " AS" : " TS");
sb.push(message.code.toString(10));
sb.push(": ");
sb.push(message.message);
// include range information if available
if (message.range) {
// include context information if requested
let range = message.range;
if (showContext) {
sb.push("\n");
sb.push(formatDiagnosticContext(message.range, useColors));
}
sb.push("\n");
sb.push(" in ");
sb.push(range.source.normalizedPath);
sb.push("(");
sb.push(range.line.toString(10));
sb.push(",");
sb.push(range.column.toString(10));
sb.push(")");
}
return sb.join("");
}
/** Formats the diagnostic context for the specified range, optionally with terminal colors. */
export function formatDiagnosticContext(range: Range, useColors: bool = false): string {
var text = range.source.text;
var len = text.length;
var start = range.start;
var end = range.end;
while (start > 0 && !isLineBreak(text.charCodeAt(start - 1))) start--;
while (end < len && !isLineBreak(text.charCodeAt(end))) end++;
var sb: string[] = [
"\n ",
text.substring(start, end),
"\n "
];
while (start < range.start) {
sb.push(" ");
start++;
}
if (useColors) sb.push(COLOR_RED);
if (range.start == range.end) {
sb.push("^");
} else {
while (start++ < range.end) sb.push("~");
}
if (useColors) sb.push(COLOR_RESET);
return sb.join("");
}
/** Base class of all diagnostic emitters. */
export abstract class DiagnosticEmitter {
/** Diagnostic messages emitted so far. */
diagnostics: DiagnosticMessage[];
/** Initializes this diagnostic emitter. */
protected constructor(diagnostics: DiagnosticMessage[] | null = null) {
this.diagnostics = diagnostics ? <DiagnosticMessage[]>diagnostics : new Array();
}
/** Emits a diagnostic message of the specified category. */
emitDiagnostic(
code: DiagnosticCode,
category: DiagnosticCategory,
range: Range,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
var message = DiagnosticMessage.create(code, category, arg0, arg1, arg2).withRange(range);
this.diagnostics.push(message);
// console.log(formatDiagnosticMessage(message, true, true) + "\n"); // temporary
// console.log(<string>new Error("stack").stack);
}
/** Emits an informatory diagnostic message. */
info(
code: DiagnosticCode,
range: Range,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
this.emitDiagnostic(code, DiagnosticCategory.INFO, range, arg0, arg1, arg2);
}
/** Emits a warning diagnostic message. */
warning(
code: DiagnosticCode,
range: Range,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
this.emitDiagnostic(code, DiagnosticCategory.WARNING, range, arg0, arg1, arg2);
}
/** Emits an error diagnostic message. */
error(
code: DiagnosticCode,
range: Range,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
this.emitDiagnostic(code, DiagnosticCategory.ERROR, range, arg0, arg1, arg2);
}
}