forked from railsware/upterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathANSIParser.ts
497 lines (424 loc) · 18.2 KB
/
ANSIParser.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
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
import Job from "./Job";
import Char from "./Char";
import {Color, Weight, Brightness, KeyCode, LogLevel, Buffer, colorIndex} from "./Enums";
import {Attributes} from "./Interfaces";
import BufferModel from "./Buffer";
import {print, error, info, debug} from "./utils/Common";
const ansiParserConstructor: typeof AnsiParser = require("node-ansiparser");
interface HandlerResult {
status: string;
description: string;
longDescription?: string;
url: string;
}
const SGR: { [indexer: string]: Attributes|string } = {
0: {color: Color.White, weight: Weight.Normal, underline: false, backgroundColor: Color.Black, inverse: false},
1: {brightness: Brightness.Bright},
2: {weight: Weight.Faint},
4: {underline: true},
7: {inverse: true},
27: {inverse: false},
30: {color: Color.Black},
31: {color: Color.Red},
32: {color: Color.Green},
33: {color: Color.Yellow},
34: {color: Color.Blue},
35: {color: Color.Magenta},
36: {color: Color.Cyan},
37: {color: Color.White},
38: "color",
39: {color: Color.White},
40: {backgroundColor: Color.Black},
41: {backgroundColor: Color.Red},
42: {backgroundColor: Color.Green},
43: {backgroundColor: Color.Yellow},
44: {backgroundColor: Color.Blue},
45: {backgroundColor: Color.Magenta},
46: {backgroundColor: Color.Cyan},
47: {backgroundColor: Color.White},
48: "backgroundColor",
49: {backgroundColor: Color.Black},
};
function isSetColorExtended(sgrValue: any) {
return sgrValue === "color" || sgrValue === "backgroundColor";
}
const CSI = {
erase: {
toEnd: 0,
toBeginning: 1,
entire: 2,
},
};
export default class ANSIParser {
private parser: AnsiParser;
private buffer: BufferModel;
constructor(private job: Job) {
this.buffer = this.job.buffer;
this.parser = this.initializeAnsiParser();
}
parse(data: string): void {
this.parser.parse(data);
}
private initializeAnsiParser(): AnsiParser {
// TODO: The parser is a mess, but I tried to make it
// TODO: an easy to clean up mess.
return new ansiParserConstructor({
inst_p: (text: string) => {
info("text", text, text.split("").map(letter => letter.charCodeAt(0)));
this.buffer.writeMany(text);
logPosition(this.buffer);
},
inst_o: function (s: any) {
error("osc", s);
},
inst_x: (flag: string) => {
const char = Char.flyweight(flag, this.job.buffer.attributes);
const name = KeyCode[char.keyCode];
print((name ? LogLevel.Log : LogLevel.Error), flag.split("").map((_, index) => flag.charCodeAt(index)));
this.buffer.writeOne(flag);
logPosition(this.buffer);
},
/**
* CSI handler.
*/
inst_c: (collected: any, params: Array<number>, flag: string) => {
let handlerResult: HandlerResult;
if (collected === "?") {
if (params.length !== 1) {
return error(`CSI private mode has ${params.length} parameters: ${params}`);
}
if (flag !== "h" && flag !== "l") {
return error(`CSI private mode has an incorrect flag: ${flag}`);
}
const mode = params[0];
handlerResult = this.decPrivateModeHandler(mode, flag);
if (handlerResult.status === "handled") {
info(`%cCSI ? ${mode} ${flag}`, "color: blue", handlerResult.description, handlerResult.url);
} else {
error(`%cCSI ? ${mode} ${flag}`, "color: blue", handlerResult.description, handlerResult.url);
}
} else {
handlerResult = this.csiHandler(collected, params, flag);
if (handlerResult.status === "handled") {
info(`%cCSI ${params} ${flag}`, "color: blue", handlerResult.description, handlerResult.url);
} else {
error(`%cCSI ${params} ${flag}`, "color: blue", handlerResult.description, handlerResult.url);
}
}
logPosition(this.buffer);
},
/**
* ESC handler.
*/
inst_e: (collected: any, flag: string) => {
const handlerResult = this.escapeHandler(collected, flag);
if (handlerResult.status === "handled") {
info(`%cESC ${collected} ${flag}`, "color: blue", handlerResult.description, handlerResult.url);
} else {
error(`%cESC ${collected} ${flag}`, "color: blue", handlerResult.description, handlerResult.url);
}
logPosition(this.buffer);
},
});
}
private escapeHandler(collected: any, flag: string) {
let short = "";
let long = "";
let url = "";
let status = "handled";
if (collected) {
if (collected === "#" && flag === "8") {
short = "DEC Screen Alignment Test (DECALN).";
url = "http://www.vt100.net/docs/vt510-rm/DECALN";
const dimensions = this.job.getDimensions();
for (let i = 0; i !== dimensions.rows; ++i) {
this.buffer.moveCursorAbsolute({row: i, column: 0});
this.buffer.writeMany(Array(dimensions.columns).join("E"));
}
this.buffer.moveCursorAbsolute({row: 0, column: 0});
} else {
status = "unhandled";
}
} else {
switch (flag) {
case "A":
short = "Cursor up.";
this.buffer.moveCursorRelative({vertical: -1});
break;
case "B":
short = "Cursor down.";
this.buffer.moveCursorRelative({vertical: 1});
break;
case "C":
short = "Cursor right.";
this.buffer.moveCursorRelative({horizontal: 1});
break;
case "D":
short = "Index (IND).";
url = "http://www.vt100.net/docs/vt510-rm/IND";
this.buffer.moveCursorRelative({vertical: 1});
break;
case "M":
short = "Reverse Index (RI).";
/* tslint:disable:max-line-length */
long = "Move the active position to the same horizontal position on the preceding lin If the active position is at the top margin, a scroll down is performed.";
this.buffer.moveCursorRelative({vertical: -1});
break;
case "E":
short = "Next Line (NEL).";
/* tslint:disable:max-line-length */
long = "This sequence causes the active position to move to the first position on the next line downward. If the active position is at the bottom margin, a scroll up is performed.";
this.buffer.moveCursorRelative({vertical: 1});
this.buffer.moveCursorAbsolute({column: 0});
break;
default:
status = "unhandled";
}
}
return {
status: status,
description: short,
longDescription: long,
url: url,
};
}
private decPrivateModeHandler(ps: number, flag: string): HandlerResult {
let description = "";
let url = "";
let status: "handled" | "unhandled" = "handled";
let shouldSet = flag === "h";
// noinspection FallThroughInSwitchStatementJS
switch (ps) {
case 1:
description = "Cursor Keys Mode.";
url = "http://www.vt100.net/docs/vt510-rm/DECCKM";
status = "unhandled";
break;
case 3:
url = "http://www.vt100.net/docs/vt510-rm/DECCOLM";
if (shouldSet) {
description = "132 Column Mode (DECCOLM).";
this.job.setDimensions({columns: 132, rows: this.job.getDimensions().rows});
} else {
description = "80 Column Mode (DECCOLM).";
this.job.setDimensions({columns: 80, rows: this.job.getDimensions().rows});
}
this.buffer.clear();
// TODO
// If you change the DECCOLM setting, the terminal:
// Sets the left, right, top and bottom scrolling margins to their default positions.
// Erases all data in page memory.
// DECCOLM resets vertical split screen mode (DECLRMM) to unavailabl
// DECCOLM clears data from the status line if the status line is set to host-writabl
break;
case 6:
description = "Origin Mode (DECOM).";
url = "http://www.vt100.net/docs/vt510-rm/DECOM";
this.job.buffer.originMode = shouldSet;
break;
case 12:
if (shouldSet) {
description = "Start Blinking Cursor (att610).";
this.buffer.blinkCursor(true);
} else {
description = "Stop Blinking Cursor (att610).";
this.buffer.blinkCursor(false);
}
break;
case 25:
url = "http://www.vt100.net/docs/vt510-rm/DECTCEM";
if (shouldSet) {
description = "Show Cursor (DECTCEM).";
this.buffer.showCursor(true);
} else {
description = "Hide Cursor (DECTCEM).";
this.buffer.showCursor(false);
}
break;
case 1049:
if (shouldSet) {
/* tslint:disable:max-line-length */
description = "Save cursor as in DECSC and use Alternate Screen Buffer, clearing it first. (This may be disabled by the titeInhibit resource). This combines the effects of the 1047 and 1048 modes. Use this with terminfo-based applications rather than the 47 mod";
this.buffer.activeBuffer = Buffer.Alternate;
} else {
// TODO: Add Implementation
status = "unhandled";
}
break;
case 2004:
if (shouldSet) {
description = "Set bracketed paste mod";
} else {
// TODO: Add Implementation
status = "unhandled";
}
break;
default:
status = "unhandled";
}
return {
status: status,
description: description,
url: url,
};
}
private csiHandler(collected: any, rawParams: number[] | number, flag: string): HandlerResult {
let short = "";
let long = "";
let url = "";
let status = "handled";
let params: number[] = Array.isArray(rawParams) ? rawParams : [];
const param: number | undefined = params[0];
switch (flag) {
case "A":
short = "Cursor Up Ps Times (default = 1) (CUU).";
this.buffer.moveCursorRelative({vertical: -(param || 1)});
break;
case "B":
short = "Cursor Down Ps Times (default = 1) (CUD).";
this.buffer.moveCursorRelative({vertical: (param || 1)});
break;
case "C":
short = "Cursor Forward Ps Times (default = 1) (CUF).";
this.buffer.moveCursorRelative({horizontal: (param || 1)});
break;
case "D":
short = "Cursor Backward Ps Times (default = 1) (CUB).";
this.buffer.moveCursorRelative({horizontal: -(param || 1)});
break;
// CSI Ps E Cursor Next Line Ps Times (default = 1) (CNL).
// CSI Ps F Cursor Preceding Line Ps Times (default = 1) (CPL).
case "G":
short = "Cursor Character Absolute [column] (default = [row,1]) (CHA)";
url = "http://www.vt100.net/docs/vt510-rm/CHA";
this.buffer.moveCursorAbsolute({column: or1(param || 1) - 1});
break;
case "H":
short = "Cursor Position [row;column] (default = [1,1]) (CUP).";
url = "http://www.vt100.net/docs/vt510-rm/CUP";
this.buffer.moveCursorAbsolute({row: or1(params[0]) - 1, column: or1(params[1]) - 1});
break;
case "J":
url = "http://www.vt100.net/docs/vt510-rm/ED";
switch (param) {
case CSI.erase.entire:
short = "Erase Entire Display (ED).";
this.buffer.clear();
break;
case CSI.erase.toEnd:
case undefined:
short = "Erase Display Below (ED).";
this.buffer.clearToEnd();
break;
case CSI.erase.toBeginning:
short = "Erase Display Above (ED).";
this.buffer.clearToBeginning();
break;
default:
throw `Unknown CSI erase: "${param}".`;
}
break;
case "K":
url = "http://www.vt100.net/docs/vt510-rm/DECSEL";
switch (param) {
case CSI.erase.entire:
short = "Erase the Line (DECSEL).";
this.buffer.clearRow();
break;
case CSI.erase.toEnd:
case undefined:
short = "Erase Line to Right (DECSEL).";
this.buffer.clearRowToEnd();
break;
case CSI.erase.toBeginning:
short = "Erase Line to Left (DECSEL).";
this.buffer.clearRowToBeginning();
break;
default:
throw `Unknown CSI erase: "${param}".`;
}
break;
case "L":
url = "http://www.vt100.net/docs/vt510-rm/IL";
short = "Inserts one or more blank lines, starting at the cursor. (DL)";
this.buffer.scrollUp(param || 1, this.buffer.cursor.row);
break;
case "M":
url = "http://www.vt100.net/docs/vt510-rm/DL";
short = "Deletes one or more lines in the scrolling region, starting with the line that has the cursor. (DL)";
this.buffer.scrollDown(param || 1, this.buffer.cursor.row);
break;
case "X":
short = "Erase P s Character(s) (default = 1) (ECH)";
url = "http://www.vt100.net/docs/vt510-rm/ECH";
this.buffer.eraseRight(param || 1);
break;
case "c":
this.job.write("\x1b>1;2;");
break;
case "d":
short = "Line Position Absolute [row] (default = [1,column]) (VPA).";
url = "http://www.vt100.net/docs/vt510-rm/VPA";
this.buffer.moveCursorAbsolute({row: or1(param || 1) - 1});
break;
case "f":
short = "Horizontal and Vertical Position [row;column] (default = [1,1]) (HVP).";
url = "http://www.vt100.net/docs/vt510-rm/HVP";
this.buffer.moveCursorAbsolute({row: or1(params[0]) - 1, column: or1(params[1]) - 1});
break;
case "m":
short = `SGR: ${params}`;
if (params.length === 0) {
short = "Reset SGR";
this.buffer.setAttributes(SGR[0]);
break;
}
while (params.length) {
const sgr = params.shift();
const attributeToSet = SGR[sgr];
if (!attributeToSet) {
error("sgr", sgr, params);
} else if (isSetColorExtended(attributeToSet)) {
const next = params.shift();
if (next === 5) {
const color = params.shift();
this.buffer.setAttributes({[<string>attributeToSet]: colorIndex[color]});
} else {
error("sgr", sgr, next, params);
}
} else {
this.buffer.setAttributes(attributeToSet);
}
}
break;
case "r":
url = "http://www.vt100.net/docs/vt510-rm/DECSTBM";
short = "Set Scrolling Region [top;bottom] (default = full size of window) (DECSTBM).";
let bottom = <number>(params[1] ? params[1] - 1 : undefined);
let top = <number>(params[0] ? params[0] - 1 : undefined);
this.buffer.margins = {top: top, bottom: bottom};
this.buffer.moveCursorAbsolute({row: 0, column: 0});
break;
default:
status = "unhandled";
}
return {
status: status,
description: short,
longDescription: long,
url: url,
};
}
}
function or1(value: number | undefined) {
if (value === undefined) {
return 1;
} else {
return value;
}
}
// TODO: Move to
function logPosition(buffer: BufferModel) {
const position = buffer.cursor.getPosition();
debug(`%crow: ${position.row}\tcolumn: ${position.column}\t value: ${buffer.at(position)}`, "color: green");
}