forked from AssemblyScript/assemblyscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiagnostics.ts
More file actions
388 lines (354 loc) · 11.2 KB
/
diagnostics.ts
File metadata and controls
388 lines (354 loc) · 11.2 KB
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
/**
* @fileoverview Shared diagnostic handling.
* @license Apache-2.0
*/
import {
Range
} from "./tokenizer";
import {
Source
} 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 {
/** Overly pedantic message. */
PEDANTIC,
/** 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.PEDANTIC: return "PEDANTIC";
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[96m";
/** 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 for magenta foreground. */
export const COLOR_MAGENTA: string = "\u001b[95m";
/** 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.PEDANTIC: return COLOR_MAGENTA;
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;
/** Related range, if any. */
relatedRange: 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);
}
/** Adds a source range to this message. */
withRange(range: Range): this {
this.range = range;
return this;
}
/** Adds a related source range to this message. */
withRelatedRange(range: Range): this {
this.relatedRange = range;
return this;
}
/** Converts this message to a string. */
toString(): string {
var range = this.range;
if (range) {
let source = range.source;
return (
diagnosticCategoryToString(this.category) +
" " +
this.code.toString() +
": \"" +
this.message +
"\" in " +
source.normalizedPath +
":" +
source.lineAt(range.start).toString() +
":" +
source.columnAt().toString()
);
}
return (
diagnosticCategoryToString(this.category) +
" " +
this.code.toString() +
": " +
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());
sb.push(": ");
sb.push(message.message);
// include range information if available
var range = message.range;
if (range) {
let source = range.source;
// include context information if requested
if (showContext) {
sb.push("\n");
sb.push(formatDiagnosticContext(range, useColors));
}
sb.push("\n");
sb.push(" in ");
sb.push(source.normalizedPath);
sb.push("(");
sb.push(source.lineAt(range.start).toString());
sb.push(",");
sb.push(source.columnAt().toString());
sb.push(")");
let relatedRange = message.relatedRange;
if (relatedRange) {
let relatedSource = relatedRange.source;
if (showContext) {
sb.push("\n");
sb.push(formatDiagnosticContext(relatedRange, useColors));
}
sb.push("\n");
sb.push(" in ");
sb.push(relatedSource.normalizedPath);
sb.push("(");
sb.push(relatedSource.lineAt(relatedRange.start).toString());
sb.push(",");
sb.push(relatedSource.columnAt().toString());
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) {
if (isLineBreak(text.charCodeAt(start))) {
sb.push(start == range.start + 1 ? "^" : "~");
break;
}
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[];
/** Diagnostic messages already seen, by range. */
private seen: Map<Source,Map<i32,i32[]>> = new Map();
/** 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 | null,
relatedRange: Range | null,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
// It is possible that the same diagnostic is emitted twice, for example
// when compiling generics with different types or when recompiling a loop
// because our initial assumptions didn't hold. It is even possible to get
// multiple instances of the same range during parsing. Deduplicate these.
if (range) {
let seen = this.seen;
if (seen.has(range.source)) {
let seenInSource = assert(seen.get(range.source));
if (seenInSource.has(range.start)) {
let seenCodesAtPos = assert(seenInSource.get(range.start));
if (seenCodesAtPos.includes(code)) return;
seenCodesAtPos.push(code);
} else {
seenInSource.set(range.start, [ code ]);
}
} else {
let seenInSource = new Map<i32,i32[]>();
seenInSource.set(range.start, [ code ]);
seen.set(range.source, seenInSource);
}
}
var message = DiagnosticMessage.create(code, category, arg0, arg1, arg2);
if (range) message = message.withRange(range);
if (relatedRange) message.relatedRange = relatedRange;
this.diagnostics.push(message);
// console.log(formatDiagnosticMessage(message, true, true) + "\n"); // temporary
// console.log(<string>new Error("stack").stack);
}
/** Emits an overly pedantic diagnostic message. */
pedantic(
code: DiagnosticCode,
range: Range | null,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
this.emitDiagnostic(code, DiagnosticCategory.PEDANTIC, range, null, arg0, arg1, arg2);
}
/** Emits an overly pedantic diagnostic message with a related range. */
pedanticRelated(
code: DiagnosticCode,
range: Range,
relatedRange: Range,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
this.emitDiagnostic(code, DiagnosticCategory.PEDANTIC, range, relatedRange, arg0, arg1, arg2);
}
/** Emits an informatory diagnostic message. */
info(
code: DiagnosticCode,
range: Range | null,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
this.emitDiagnostic(code, DiagnosticCategory.INFO, range, null, arg0, arg1, arg2);
}
/** Emits an informatory diagnostic message with a related range. */
infoRelated(
code: DiagnosticCode,
range: Range,
relatedRange: Range,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
this.emitDiagnostic(code, DiagnosticCategory.INFO, range, relatedRange, arg0, arg1, arg2);
}
/** Emits a warning diagnostic message. */
warning(
code: DiagnosticCode,
range: Range | null,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
this.emitDiagnostic(code, DiagnosticCategory.WARNING, range, null, arg0, arg1, arg2);
}
/** Emits a warning diagnostic message with a related range. */
warningRelated(
code: DiagnosticCode,
range: Range,
relatedRange: Range,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
this.emitDiagnostic(code, DiagnosticCategory.WARNING, range, relatedRange, arg0, arg1, arg2);
}
/** Emits an error diagnostic message. */
error(
code: DiagnosticCode,
range: Range | null,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
this.emitDiagnostic(code, DiagnosticCategory.ERROR, range, null, arg0, arg1, arg2);
}
/** Emits an error diagnostic message with a related range. */
errorRelated(
code: DiagnosticCode,
range: Range,
relatedRange: Range,
arg0: string | null = null,
arg1: string | null = null,
arg2: string | null = null
): void {
this.emitDiagnostic(code, DiagnosticCategory.ERROR, range, relatedRange, arg0, arg1, arg2);
}
}