-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathindex.ts
459 lines (406 loc) · 12.4 KB
/
index.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
/**
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {Terminal} from 'xterm';
import {FitAddon} from 'xterm-addon-fit';
import {WebLinksAddon} from 'xterm-addon-web-links';
import 'xterm/css/xterm.css';
import {
serial as polyfill, SerialPort as SerialPortPolyfill,
} from 'web-serial-polyfill';
/**
* Elements of the port selection dropdown extend HTMLOptionElement so that
* they can reference the SerialPort they represent.
*/
declare class PortOption extends HTMLOptionElement {
port: SerialPort | SerialPortPolyfill;
}
let portSelector: HTMLSelectElement;
let connectButton: HTMLButtonElement;
let baudRateSelector: HTMLSelectElement;
let customBaudRateInput: HTMLInputElement;
let dataBitsSelector: HTMLSelectElement;
let paritySelector: HTMLSelectElement;
let stopBitsSelector: HTMLSelectElement;
let flowControlCheckbox: HTMLInputElement;
let echoCheckbox: HTMLInputElement;
let flushOnEnterCheckbox: HTMLInputElement;
let autoconnectCheckbox: HTMLInputElement;
let portCounter = 1;
let port: SerialPort | SerialPortPolyfill | undefined;
let reader: ReadableStreamDefaultReader | ReadableStreamBYOBReader | undefined;
const urlParams = new URLSearchParams(window.location.search);
const usePolyfill = urlParams.has('polyfill');
const bufferSize = 8 * 1024; // 8kB
const term = new Terminal({
scrollback: 10_000,
});
const fitAddon = new FitAddon();
term.loadAddon(fitAddon);
term.loadAddon(new WebLinksAddon());
const encoder = new TextEncoder();
let toFlush = '';
term.onData((data) => {
if (echoCheckbox.checked) {
term.write(data);
}
if (port?.writable == null) {
console.warn(`unable to find writable port`);
return;
}
const writer = port.writable.getWriter();
if (flushOnEnterCheckbox.checked) {
toFlush += data;
if (data === '\r') {
writer.write(encoder.encode(toFlush));
writer.releaseLock();
toFlush = '';
}
} else {
writer.write(encoder.encode(data));
}
writer.releaseLock();
});
/**
* Returns the option corresponding to the given SerialPort if one is present
* in the selection dropdown.
*
* @param {SerialPort} port the port to find
* @return {PortOption}
*/
function findPortOption(port: SerialPort | SerialPortPolyfill):
PortOption | null {
for (let i = 0; i < portSelector.options.length; ++i) {
const option = portSelector.options[i];
if (option.value === 'prompt') {
continue;
}
const portOption = option as PortOption;
if (portOption.port === port) {
return portOption;
}
}
return null;
}
/**
* Adds the given port to the selection dropdown.
*
* @param {SerialPort} port the port to add
* @return {PortOption}
*/
function addNewPort(port: SerialPort | SerialPortPolyfill): PortOption {
const portOption = document.createElement('option') as PortOption;
portOption.textContent = `Port ${portCounter++}`;
portOption.port = port;
portSelector.appendChild(portOption);
return portOption;
}
/**
* Adds the given port to the selection dropdown, or returns the existing
* option if one already exists.
*
* @param {SerialPort} port the port to add
* @return {PortOption}
*/
function maybeAddNewPort(port: SerialPort | SerialPortPolyfill): PortOption {
const portOption = findPortOption(port);
if (portOption) {
return portOption;
}
return addNewPort(port);
}
/**
* Download the terminal's contents to a file.
*/
function downloadTerminalContents(): void {
if (!term) {
throw new Error('no terminal instance found');
}
if (term.rows === 0) {
console.log('No output yet');
return;
}
term.selectAll();
const contents = term.getSelection();
term.clearSelection();
const linkContent = URL.createObjectURL(
new Blob([new TextEncoder().encode(contents).buffer],
{type: 'text/plain'}));
const fauxLink = document.createElement('a');
fauxLink.download = `terminal_content_${new Date().getTime()}.txt`;
fauxLink.href = linkContent;
fauxLink.click();
}
/**
* Clear the terminal's contents.
*/
function clearTerminalContents(): void {
if (!term) {
throw new Error('no terminal instance found');
}
if (term.rows === 0) {
console.log('No output yet');
return;
}
term.clear();
}
/**
* Sets |port| to the currently selected port. If none is selected then the
* user is prompted for one.
*/
async function getSelectedPort(): Promise<void> {
if (portSelector.value == 'prompt') {
try {
const serial = usePolyfill ? polyfill : navigator.serial;
port = await serial.requestPort({});
} catch (e) {
return;
}
const portOption = maybeAddNewPort(port);
portOption.selected = true;
} else {
const selectedOption = portSelector.selectedOptions[0] as PortOption;
port = selectedOption.port;
}
}
/**
* @return {number} the currently selected baud rate
*/
function getSelectedBaudRate(): number {
if (baudRateSelector.value == 'custom') {
return Number.parseInt(customBaudRateInput.value);
}
return Number.parseInt(baudRateSelector.value);
}
/**
* Resets the UI back to the disconnected state.
*/
function markDisconnected(): void {
term.writeln('<DISCONNECTED>');
portSelector.disabled = false;
connectButton.textContent = 'Connect';
connectButton.disabled = false;
baudRateSelector.disabled = false;
customBaudRateInput.disabled = false;
dataBitsSelector.disabled = false;
paritySelector.disabled = false;
stopBitsSelector.disabled = false;
flowControlCheckbox.disabled = false;
port = undefined;
}
/**
* Initiates a connection to the selected port.
*/
async function connectToPort(): Promise<void> {
await getSelectedPort();
if (!port) {
return;
}
const options = {
baudRate: getSelectedBaudRate(),
dataBits: Number.parseInt(dataBitsSelector.value),
parity: paritySelector.value as ParityType,
stopBits: Number.parseInt(stopBitsSelector.value),
flowControl:
flowControlCheckbox.checked ? <const> 'hardware' : <const> 'none',
bufferSize,
// Prior to Chrome 86 these names were used.
baudrate: getSelectedBaudRate(),
databits: Number.parseInt(dataBitsSelector.value),
stopbits: Number.parseInt(stopBitsSelector.value),
rtscts: flowControlCheckbox.checked,
};
console.log(options);
portSelector.disabled = true;
connectButton.textContent = 'Connecting...';
connectButton.disabled = true;
baudRateSelector.disabled = true;
customBaudRateInput.disabled = true;
dataBitsSelector.disabled = true;
paritySelector.disabled = true;
stopBitsSelector.disabled = true;
flowControlCheckbox.disabled = true;
try {
await port.open(options);
term.writeln('<CONNECTED>');
connectButton.textContent = 'Disconnect';
connectButton.disabled = false;
} catch (e) {
console.error(e);
if (e instanceof Error) {
term.writeln(`<ERROR: ${e.message}>`);
}
markDisconnected();
return;
}
while (port && port.readable) {
try {
try {
reader = port.readable.getReader({mode: 'byob'});
} catch {
reader = port.readable.getReader();
}
let buffer = null;
for (;;) {
const {value, done} = await (async () => {
if (reader instanceof ReadableStreamBYOBReader) {
if (!buffer) {
buffer = new ArrayBuffer(bufferSize);
}
const {value, done} =
await reader.read(new Uint8Array(buffer, 0, bufferSize));
buffer = value?.buffer;
return {value, done};
} else {
return await reader.read();
}
})();
if (value) {
await new Promise<void>((resolve) => {
term.write(value, resolve);
});
}
if (done) {
break;
}
}
} catch (e) {
console.error(e);
await new Promise<void>((resolve) => {
if (e instanceof Error) {
term.writeln(`<ERROR: ${e.message}>`, resolve);
}
});
} finally {
if (reader) {
reader.releaseLock();
reader = undefined;
}
}
}
if (port) {
try {
await port.close();
} catch (e) {
console.error(e);
if (e instanceof Error) {
term.writeln(`<ERROR: ${e.message}>`);
}
}
markDisconnected();
}
}
/**
* Closes the currently active connection.
*/
async function disconnectFromPort(): Promise<void> {
// Move |port| into a local variable so that connectToPort() doesn't try to
// close it on exit.
const localPort = port;
port = undefined;
if (reader) {
await reader.cancel();
}
if (localPort) {
try {
await localPort.close();
} catch (e) {
console.error(e);
if (e instanceof Error) {
term.writeln(`<ERROR: ${e.message}>`);
}
}
}
markDisconnected();
}
document.addEventListener('DOMContentLoaded', async () => {
const terminalElement = document.getElementById('terminal');
if (terminalElement) {
term.open(terminalElement);
fitAddon.fit();
window.addEventListener('resize', () => {
fitAddon.fit();
});
}
const downloadOutput =
document.getElementById('download') as HTMLSelectElement;
downloadOutput.addEventListener('click', downloadTerminalContents);
const clearOutput = document.getElementById('clear') as HTMLSelectElement;
clearOutput.addEventListener('click', clearTerminalContents);
portSelector = document.getElementById('ports') as HTMLSelectElement;
connectButton = document.getElementById('connect') as HTMLButtonElement;
connectButton.addEventListener('click', () => {
if (port) {
disconnectFromPort();
} else {
connectToPort();
}
});
baudRateSelector = document.getElementById('baudrate') as HTMLSelectElement;
baudRateSelector.addEventListener('input', () => {
if (baudRateSelector.value == 'custom') {
customBaudRateInput.hidden = false;
} else {
customBaudRateInput.hidden = true;
}
});
customBaudRateInput =
document.getElementById('custom_baudrate') as HTMLInputElement;
dataBitsSelector = document.getElementById('databits') as HTMLSelectElement;
paritySelector = document.getElementById('parity') as HTMLSelectElement;
stopBitsSelector = document.getElementById('stopbits') as HTMLSelectElement;
flowControlCheckbox = document.getElementById('rtscts') as HTMLInputElement;
echoCheckbox = document.getElementById('echo') as HTMLInputElement;
flushOnEnterCheckbox =
document.getElementById('enter_flush') as HTMLInputElement;
autoconnectCheckbox =
document.getElementById('autoconnect') as HTMLInputElement;
const convertEolCheckbox =
document.getElementById('convert_eol') as HTMLInputElement;
const convertEolCheckboxHandler = () => {
term.options.convertEol = convertEolCheckbox.checked;
};
convertEolCheckbox.addEventListener('change', convertEolCheckboxHandler);
convertEolCheckboxHandler();
const polyfillSwitcher =
document.getElementById('polyfill_switcher') as HTMLAnchorElement;
if (usePolyfill) {
polyfillSwitcher.href = './';
polyfillSwitcher.textContent = 'Switch to native API';
} else {
polyfillSwitcher.href = './?polyfill';
polyfillSwitcher.textContent = 'Switch to API polyfill';
}
const serial = usePolyfill ? polyfill : navigator.serial;
const ports: (SerialPort | SerialPortPolyfill)[] = await serial.getPorts();
ports.forEach((port) => addNewPort(port));
// These events are not supported by the polyfill.
// https://github.com/google/web-serial-polyfill/issues/20
if (!usePolyfill) {
navigator.serial.addEventListener('connect', (event) => {
const portOption = addNewPort(event.target as SerialPort);
if (autoconnectCheckbox.checked) {
portOption.selected = true;
connectToPort();
}
});
navigator.serial.addEventListener('disconnect', (event) => {
const portOption = findPortOption(event.target as SerialPort);
if (portOption) {
portOption.remove();
}
});
}
});