]> git.proxmox.com Git - mirror_xterm.js.git/blob - src/xterm.js
Issue #821 - Prevent TypeError in resize()
[mirror_xterm.js.git] / src / xterm.js
1 /**
2 * xterm.js: xterm, in the browser
3 * Originally forked from (with the author's permission):
4 * Fabrice Bellard's javascript vt100 for jslinux:
5 * http://bellard.org/jslinux/
6 * Copyright (c) 2011 Fabrice Bellard
7 * The original design remains. The terminal itself
8 * has been extended to include xterm CSI codes, among
9 * other features.
10 * @license MIT
11 */
12
13 import { BufferSet } from './BufferSet';
14 import { CompositionHelper } from './CompositionHelper';
15 import { EventEmitter } from './EventEmitter';
16 import { Viewport } from './Viewport';
17 import { rightClickHandler, moveTextAreaUnderMouseCursor, pasteHandler, copyHandler } from './handlers/Clipboard';
18 import { CircularList } from './utils/CircularList';
19 import { C0 } from './EscapeSequences';
20 import { InputHandler } from './InputHandler';
21 import { Parser } from './Parser';
22 import { Renderer } from './Renderer';
23 import { Linkifier } from './Linkifier';
24 import { SelectionManager } from './SelectionManager';
25 import { CharMeasure } from './utils/CharMeasure';
26 import * as Browser from './utils/Browser';
27 import * as Mouse from './utils/Mouse';
28 import { CHARSETS } from './Charsets';
29 import { getRawByteCoords } from './utils/Mouse';
30 import { translateBufferLineToString } from './utils/BufferLine';
31
32 /**
33 * Terminal Emulation References:
34 * http://vt100.net/
35 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.txt
36 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
37 * http://invisible-island.net/vttest/
38 * http://www.inwap.com/pdp10/ansicode.txt
39 * http://linux.die.net/man/4/console_codes
40 * http://linux.die.net/man/7/urxvt
41 */
42
43 // Let it work inside Node.js for automated testing purposes.
44 var document = (typeof window != 'undefined') ? window.document : null;
45
46 /**
47 * The amount of write requests to queue before sending an XOFF signal to the
48 * pty process. This number must be small in order for ^C and similar sequences
49 * to be responsive.
50 */
51 var WRITE_BUFFER_PAUSE_THRESHOLD = 5;
52
53 /**
54 * The number of writes to perform in a single batch before allowing the
55 * renderer to catch up with a 0ms setTimeout.
56 */
57 var WRITE_BATCH_SIZE = 300;
58
59 /**
60 * The time between cursor blinks. This is driven by JS rather than a CSS
61 * animation due to a bug in Chromium that causes it to use excessive CPU time.
62 * See https://github.com/Microsoft/vscode/issues/22900
63 */
64 var CURSOR_BLINK_INTERVAL = 600;
65
66 /**
67 * Terminal
68 */
69
70 /**
71 * Creates a new `Terminal` object.
72 *
73 * @param {object} options An object containing a set of options, the available options are:
74 * - `cursorBlink` (boolean): Whether the terminal cursor blinks
75 * - `cols` (number): The number of columns of the terminal (horizontal size)
76 * - `rows` (number): The number of rows of the terminal (vertical size)
77 *
78 * @public
79 * @class Xterm Xterm
80 * @alias module:xterm/src/xterm
81 */
82 function Terminal(options) {
83 var self = this;
84
85 if (!(this instanceof Terminal)) {
86 return new Terminal(arguments[0], arguments[1], arguments[2]);
87 }
88
89 self.browser = Browser;
90 self.cancel = Terminal.cancel;
91
92 EventEmitter.call(this);
93
94 if (typeof options === 'number') {
95 options = {
96 cols: arguments[0],
97 rows: arguments[1],
98 handler: arguments[2]
99 };
100 }
101
102 options = options || {};
103
104
105 Object.keys(Terminal.defaults).forEach(function(key) {
106 if (options[key] == null) {
107 options[key] = Terminal.options[key];
108
109 if (Terminal[key] !== Terminal.defaults[key]) {
110 options[key] = Terminal[key];
111 }
112 }
113 self[key] = options[key];
114 });
115
116 if (options.colors.length === 8) {
117 options.colors = options.colors.concat(Terminal._colors.slice(8));
118 } else if (options.colors.length === 16) {
119 options.colors = options.colors.concat(Terminal._colors.slice(16));
120 } else if (options.colors.length === 10) {
121 options.colors = options.colors.slice(0, -2).concat(
122 Terminal._colors.slice(8, -2), options.colors.slice(-2));
123 } else if (options.colors.length === 18) {
124 options.colors = options.colors.concat(
125 Terminal._colors.slice(16, -2), options.colors.slice(-2));
126 }
127 this.colors = options.colors;
128
129 this.options = options;
130
131 // this.context = options.context || window;
132 // this.document = options.document || document;
133 this.parent = options.body || options.parent || (
134 document ? document.getElementsByTagName('body')[0] : null
135 );
136
137 this.cols = options.cols || options.geometry[0];
138 this.rows = options.rows || options.geometry[1];
139 this.geometry = [this.cols, this.rows];
140
141 if (options.handler) {
142 this.on('data', options.handler);
143 }
144
145 this.cursorState = 0;
146 this.cursorHidden = false;
147 this.convertEol;
148 this.queue = '';
149 this.customKeyEventHandler = null;
150 this.cursorBlinkInterval = null;
151
152 // modes
153 this.applicationKeypad = false;
154 this.applicationCursor = false;
155 this.originMode = false;
156 this.insertMode = false;
157 this.wraparoundMode = true; // defaults: xterm - true, vt100 - false
158
159 // charset
160 this.charset = null;
161 this.gcharset = null;
162 this.glevel = 0;
163 this.charsets = [null];
164
165 // mouse properties
166 this.decLocator;
167 this.x10Mouse;
168 this.vt200Mouse;
169 this.vt300Mouse;
170 this.normalMouse;
171 this.mouseEvents;
172 this.sendFocus;
173 this.utfMouse;
174 this.sgrMouse;
175 this.urxvtMouse;
176
177 // misc
178 this.element;
179 this.children;
180 this.refreshStart;
181 this.refreshEnd;
182 this.savedX;
183 this.savedY;
184 this.savedCols;
185
186 // stream
187 this.readable = true;
188 this.writable = true;
189
190 this.defAttr = (0 << 18) | (257 << 9) | (256 << 0);
191 this.curAttr = this.defAttr;
192
193 this.params = [];
194 this.currentParam = 0;
195 this.prefix = '';
196 this.postfix = '';
197
198 this.inputHandler = new InputHandler(this);
199 this.parser = new Parser(this.inputHandler, this);
200 // Reuse renderer if the Terminal is being recreated via a Terminal.reset call.
201 this.renderer = this.renderer || null;
202 this.selectionManager = this.selectionManager || null;
203 this.linkifier = this.linkifier || new Linkifier();
204
205 // user input states
206 this.writeBuffer = [];
207 this.writeInProgress = false;
208
209 /**
210 * Whether _xterm.js_ sent XOFF in order to catch up with the pty process.
211 * This is a distinct state from writeStopped so that if the user requested
212 * XOFF via ^S that it will not automatically resume when the writeBuffer goes
213 * below threshold.
214 */
215 this.xoffSentToCatchUp = false;
216
217 /** Whether writing has been stopped as a result of XOFF */
218 this.writeStopped = false;
219
220 // leftover surrogate high from previous write invocation
221 this.surrogate_high = '';
222
223 // Create the terminal's buffers and set the current buffer
224 this.buffers = new BufferSet(this);
225 this.buffer = this.buffers.active; // Convenience shortcut;
226 this.buffers.on('activate', function (buffer) {
227 this._terminal.buffer = buffer;
228 });
229
230 var i = this.rows;
231
232 while (i--) {
233 this.buffer.lines.push(this.blankLine());
234 }
235 // Ensure the selection manager has the correct buffer
236 if (this.selectionManager) {
237 this.selectionManager.setBuffer(this.buffer.lines);
238 }
239
240 this.setupStops();
241
242 // Store if user went browsing history in scrollback
243 this.userScrolling = false;
244 }
245
246 inherits(Terminal, EventEmitter);
247
248 /**
249 * back_color_erase feature for xterm.
250 */
251 Terminal.prototype.eraseAttr = function() {
252 // if (this.is('screen')) return this.defAttr;
253 return (this.defAttr & ~0x1ff) | (this.curAttr & 0x1ff);
254 };
255
256 /**
257 * Colors
258 */
259
260 // Colors 0-15
261 Terminal.tangoColors = [
262 // dark:
263 '#2e3436',
264 '#cc0000',
265 '#4e9a06',
266 '#c4a000',
267 '#3465a4',
268 '#75507b',
269 '#06989a',
270 '#d3d7cf',
271 // bright:
272 '#555753',
273 '#ef2929',
274 '#8ae234',
275 '#fce94f',
276 '#729fcf',
277 '#ad7fa8',
278 '#34e2e2',
279 '#eeeeec'
280 ];
281
282 // Colors 0-15 + 16-255
283 // Much thanks to TooTallNate for writing this.
284 Terminal.colors = (function() {
285 var colors = Terminal.tangoColors.slice()
286 , r = [0x00, 0x5f, 0x87, 0xaf, 0xd7, 0xff]
287 , i;
288
289 // 16-231
290 i = 0;
291 for (; i < 216; i++) {
292 out(r[(i / 36) % 6 | 0], r[(i / 6) % 6 | 0], r[i % 6]);
293 }
294
295 // 232-255 (grey)
296 i = 0;
297 for (; i < 24; i++) {
298 r = 8 + i * 10;
299 out(r, r, r);
300 }
301
302 function out(r, g, b) {
303 colors.push('#' + hex(r) + hex(g) + hex(b));
304 }
305
306 function hex(c) {
307 c = c.toString(16);
308 return c.length < 2 ? '0' + c : c;
309 }
310
311 return colors;
312 })();
313
314 Terminal._colors = Terminal.colors.slice();
315
316 Terminal.vcolors = (function() {
317 var out = []
318 , colors = Terminal.colors
319 , i = 0
320 , color;
321
322 for (; i < 256; i++) {
323 color = parseInt(colors[i].substring(1), 16);
324 out.push([
325 (color >> 16) & 0xff,
326 (color >> 8) & 0xff,
327 color & 0xff
328 ]);
329 }
330
331 return out;
332 })();
333
334 /**
335 * Options
336 */
337
338 Terminal.defaults = {
339 colors: Terminal.colors,
340 theme: 'default',
341 convertEol: false,
342 termName: 'xterm',
343 geometry: [80, 24],
344 cursorBlink: false,
345 cursorStyle: 'block',
346 visualBell: false,
347 popOnBell: false,
348 scrollback: 1000,
349 screenKeys: false,
350 debug: false,
351 cancelEvents: false,
352 disableStdin: false,
353 useFlowControl: false,
354 tabStopWidth: 8
355 // programFeatures: false,
356 // focusKeys: false,
357 };
358
359 Terminal.options = {};
360
361 Terminal.focus = null;
362
363 each(keys(Terminal.defaults), function(key) {
364 Terminal[key] = Terminal.defaults[key];
365 Terminal.options[key] = Terminal.defaults[key];
366 });
367
368 /**
369 * Focus the terminal. Delegates focus handling to the terminal's DOM element.
370 */
371 Terminal.prototype.focus = function() {
372 return this.textarea.focus();
373 };
374
375 /**
376 * Retrieves an option's value from the terminal.
377 * @param {string} key The option key.
378 */
379 Terminal.prototype.getOption = function(key) {
380 if (!(key in Terminal.defaults)) {
381 throw new Error('No option with key "' + key + '"');
382 }
383
384 if (typeof this.options[key] !== 'undefined') {
385 return this.options[key];
386 }
387
388 return this[key];
389 };
390
391 /**
392 * Sets an option on the terminal.
393 * @param {string} key The option key.
394 * @param {string} value The option value.
395 */
396 Terminal.prototype.setOption = function(key, value) {
397 if (!(key in Terminal.defaults)) {
398 throw new Error('No option with key "' + key + '"');
399 }
400 switch (key) {
401 case 'scrollback':
402 if (value < this.rows) {
403 let msg = 'Setting the scrollback value less than the number of rows ';
404
405 msg += `(${this.rows}) is not allowed.`;
406
407 console.warn(msg);
408 return false;
409 }
410
411 if (this.options[key] !== value) {
412 if (this.buffer.lines.length > value) {
413 const amountToTrim = this.buffer.lines.length - value;
414 const needsRefresh = (this.buffer.ydisp - amountToTrim < 0);
415 this.buffer.lines.trimStart(amountToTrim);
416 this.buffer.ybase = Math.max(this.buffer.ybase - amountToTrim, 0);
417 this.buffer.ydisp = Math.max(this.buffer.ydisp - amountToTrim, 0);
418 if (needsRefresh) {
419 this.refresh(0, this.rows - 1);
420 }
421 }
422 this.buffer.lines.maxLength = value;
423 this.viewport.syncScrollArea();
424 }
425 break;
426 }
427 this[key] = value;
428 this.options[key] = value;
429 switch (key) {
430 case 'cursorBlink': this.setCursorBlinking(value); break;
431 case 'cursorStyle':
432 // Style 'block' applies with no class
433 this.element.classList.toggle(`xterm-cursor-style-underline`, value === 'underline');
434 this.element.classList.toggle(`xterm-cursor-style-bar`, value === 'bar');
435 break;
436 case 'tabStopWidth': this.setupStops(); break;
437 }
438 };
439
440 Terminal.prototype.restartCursorBlinking = function () {
441 this.setCursorBlinking(this.options.cursorBlink);
442 };
443
444 Terminal.prototype.setCursorBlinking = function (enabled) {
445 this.element.classList.toggle('xterm-cursor-blink', enabled);
446 this.clearCursorBlinkingInterval();
447 if (enabled) {
448 var self = this;
449 this.cursorBlinkInterval = setInterval(function () {
450 self.element.classList.toggle('xterm-cursor-blink-on');
451 }, CURSOR_BLINK_INTERVAL);
452 }
453 };
454
455 Terminal.prototype.clearCursorBlinkingInterval = function () {
456 this.element.classList.remove('xterm-cursor-blink-on');
457 if (this.cursorBlinkInterval) {
458 clearInterval(this.cursorBlinkInterval);
459 this.cursorBlinkInterval = null;
460 }
461 };
462
463 /**
464 * Binds the desired focus behavior on a given terminal object.
465 *
466 * @static
467 */
468 Terminal.bindFocus = function (term) {
469 on(term.textarea, 'focus', function (ev) {
470 if (term.sendFocus) {
471 term.send(C0.ESC + '[I');
472 }
473 term.element.classList.add('focus');
474 term.showCursor();
475 term.restartCursorBlinking.apply(term);
476 Terminal.focus = term;
477 term.emit('focus', {terminal: term});
478 });
479 };
480
481 /**
482 * Blur the terminal. Delegates blur handling to the terminal's DOM element.
483 */
484 Terminal.prototype.blur = function() {
485 return this.textarea.blur();
486 };
487
488 /**
489 * Binds the desired blur behavior on a given terminal object.
490 *
491 * @static
492 */
493 Terminal.bindBlur = function (term) {
494 on(term.textarea, 'blur', function (ev) {
495 term.refresh(term.buffer.y, term.buffer.y);
496 if (term.sendFocus) {
497 term.send(C0.ESC + '[O');
498 }
499 term.element.classList.remove('focus');
500 term.clearCursorBlinkingInterval.apply(term);
501 Terminal.focus = null;
502 term.emit('blur', {terminal: term});
503 });
504 };
505
506 /**
507 * Initialize default behavior
508 */
509 Terminal.prototype.initGlobal = function() {
510 var term = this;
511
512 Terminal.bindKeys(this);
513 Terminal.bindFocus(this);
514 Terminal.bindBlur(this);
515
516 // Bind clipboard functionality
517 on(this.element, 'copy', event => {
518 // If mouse events are active it means the selection manager is disabled and
519 // copy should be handled by the host program.
520 if (this.mouseEvents) {
521 return;
522 }
523 copyHandler(event, term, this.selectionManager);
524 });
525 const pasteHandlerWrapper = event => pasteHandler(event, term);
526 on(this.textarea, 'paste', pasteHandlerWrapper);
527 on(this.element, 'paste', pasteHandlerWrapper);
528
529 // Handle right click context menus
530 if (term.browser.isFirefox) {
531 // Firefox doesn't appear to fire the contextmenu event on right click
532 on(this.element, 'mousedown', event => {
533 if (event.button == 2) {
534 rightClickHandler(event, this.textarea, this.selectionManager);
535 }
536 });
537 } else {
538 on(this.element, 'contextmenu', event => {
539 rightClickHandler(event, this.textarea, this.selectionManager);
540 });
541 }
542
543 // Move the textarea under the cursor when middle clicking on Linux to ensure
544 // middle click to paste selection works. This only appears to work in Chrome
545 // at the time is writing.
546 if (term.browser.isLinux) {
547 // Use auxclick event over mousedown the latter doesn't seem to work. Note
548 // that the regular click event doesn't fire for the middle mouse button.
549 on(this.element, 'auxclick', event => {
550 if (event.button === 1) {
551 moveTextAreaUnderMouseCursor(event, this.textarea, this.selectionManager);
552 }
553 });
554 }
555 };
556
557 /**
558 * Apply key handling to the terminal
559 */
560 Terminal.bindKeys = function(term) {
561 on(term.element, 'keydown', function(ev) {
562 if (document.activeElement != this) {
563 return;
564 }
565 term.keyDown(ev);
566 }, true);
567
568 on(term.element, 'keypress', function(ev) {
569 if (document.activeElement != this) {
570 return;
571 }
572 term.keyPress(ev);
573 }, true);
574
575 on(term.element, 'keyup', function(ev) {
576 if (!wasMondifierKeyOnlyEvent(ev)) {
577 term.focus(term);
578 }
579 }, true);
580
581 on(term.textarea, 'keydown', function(ev) {
582 term.keyDown(ev);
583 }, true);
584
585 on(term.textarea, 'keypress', function(ev) {
586 term.keyPress(ev);
587 // Truncate the textarea's value, since it is not needed
588 this.value = '';
589 }, true);
590
591 on(term.textarea, 'compositionstart', term.compositionHelper.compositionstart.bind(term.compositionHelper));
592 on(term.textarea, 'compositionupdate', term.compositionHelper.compositionupdate.bind(term.compositionHelper));
593 on(term.textarea, 'compositionend', term.compositionHelper.compositionend.bind(term.compositionHelper));
594 term.on('refresh', term.compositionHelper.updateCompositionElements.bind(term.compositionHelper));
595 term.on('refresh', function (data) {
596 term.queueLinkification(data.start, data.end)
597 });
598 };
599
600
601 /**
602 * Insert the given row to the terminal or produce a new one
603 * if no row argument is passed. Return the inserted row.
604 * @param {HTMLElement} row (optional) The row to append to the terminal.
605 */
606 Terminal.prototype.insertRow = function (row) {
607 if (typeof row != 'object') {
608 row = document.createElement('div');
609 }
610
611 this.rowContainer.appendChild(row);
612 this.children.push(row);
613
614 return row;
615 };
616
617 /**
618 * Opens the terminal within an element.
619 *
620 * @param {HTMLElement} parent The element to create the terminal within.
621 * @param {boolean} focus Focus the terminal, after it gets instantiated in the DOM
622 */
623 Terminal.prototype.open = function(parent, focus) {
624 var self=this, i=0, div;
625
626 this.parent = parent || this.parent;
627
628 if (!this.parent) {
629 throw new Error('Terminal requires a parent element.');
630 }
631
632 // Grab global elements
633 this.context = this.parent.ownerDocument.defaultView;
634 this.document = this.parent.ownerDocument;
635 this.body = this.document.getElementsByTagName('body')[0];
636
637 //Create main element container
638 this.element = this.document.createElement('div');
639 this.element.classList.add('terminal');
640 this.element.classList.add('xterm');
641 this.element.classList.add('xterm-theme-' + this.theme);
642 this.setCursorBlinking(this.options.cursorBlink);
643
644 this.element.setAttribute('tabindex', 0);
645
646 this.viewportElement = document.createElement('div');
647 this.viewportElement.classList.add('xterm-viewport');
648 this.element.appendChild(this.viewportElement);
649 this.viewportScrollArea = document.createElement('div');
650 this.viewportScrollArea.classList.add('xterm-scroll-area');
651 this.viewportElement.appendChild(this.viewportScrollArea);
652
653 // Create the selection container.
654 this.selectionContainer = document.createElement('div');
655 this.selectionContainer.classList.add('xterm-selection');
656 this.element.appendChild(this.selectionContainer);
657
658 // Create the container that will hold the lines of the terminal and then
659 // produce the lines the lines.
660 this.rowContainer = document.createElement('div');
661 this.rowContainer.classList.add('xterm-rows');
662 this.element.appendChild(this.rowContainer);
663 this.children = [];
664 this.linkifier.attachToDom(document, this.children);
665
666 // Create the container that will hold helpers like the textarea for
667 // capturing DOM Events. Then produce the helpers.
668 this.helperContainer = document.createElement('div');
669 this.helperContainer.classList.add('xterm-helpers');
670 // TODO: This should probably be inserted once it's filled to prevent an additional layout
671 this.element.appendChild(this.helperContainer);
672 this.textarea = document.createElement('textarea');
673 this.textarea.classList.add('xterm-helper-textarea');
674 this.textarea.setAttribute('autocorrect', 'off');
675 this.textarea.setAttribute('autocapitalize', 'off');
676 this.textarea.setAttribute('spellcheck', 'false');
677 this.textarea.tabIndex = 0;
678 this.textarea.addEventListener('focus', function() {
679 self.emit('focus', {terminal: self});
680 });
681 this.textarea.addEventListener('blur', function() {
682 self.emit('blur', {terminal: self});
683 });
684 this.helperContainer.appendChild(this.textarea);
685
686 this.compositionView = document.createElement('div');
687 this.compositionView.classList.add('composition-view');
688 this.compositionHelper = new CompositionHelper(this.textarea, this.compositionView, this);
689 this.helperContainer.appendChild(this.compositionView);
690
691 this.charSizeStyleElement = document.createElement('style');
692 this.helperContainer.appendChild(this.charSizeStyleElement);
693
694 for (; i < this.rows; i++) {
695 this.insertRow();
696 }
697 this.parent.appendChild(this.element);
698
699 this.charMeasure = new CharMeasure(document, this.helperContainer);
700 this.charMeasure.on('charsizechanged', function () {
701 self.updateCharSizeStyles();
702 });
703 this.charMeasure.measure();
704
705 this.viewport = new Viewport(this, this.viewportElement, this.viewportScrollArea, this.charMeasure);
706 this.renderer = new Renderer(this);
707 this.selectionManager = new SelectionManager(
708 this, this.buffer.lines, this.rowContainer, this.charMeasure
709 );
710 this.selectionManager.on('refresh', data => {
711 this.renderer.refreshSelection(data.start, data.end);
712 });
713 this.selectionManager.on('newselection', text => {
714 // If there's a new selection, put it into the textarea, focus and select it
715 // in order to register it as a selection on the OS. This event is fired
716 // only on Linux to enable middle click to paste selection.
717 this.textarea.value = text;
718 this.textarea.focus();
719 this.textarea.select();
720 });
721 this.on('scroll', () => this.selectionManager.refresh());
722 this.viewportElement.addEventListener('scroll', () => this.selectionManager.refresh());
723
724 // Setup loop that draws to screen
725 this.refresh(0, this.rows - 1);
726
727 // Initialize global actions that
728 // need to be taken on the document.
729 this.initGlobal();
730
731 /**
732 * Automatic focus functionality.
733 * TODO: Default to `false` starting with xterm.js 3.0.
734 */
735 if (typeof focus == 'undefined') {
736 let message = 'You did not pass the `focus` argument in `Terminal.prototype.open()`.\n';
737
738 message += 'The `focus` argument now defaults to `true` but starting with xterm.js 3.0 ';
739 message += 'it will default to `false`.';
740
741 console.warn(message);
742 focus = true;
743 }
744
745 if (focus) {
746 this.focus();
747 }
748
749 on(this.element, 'click', function() {
750 var selection = document.getSelection(),
751 collapsed = selection.isCollapsed,
752 isRange = typeof collapsed == 'boolean' ? !collapsed : selection.type == 'Range';
753 if (!isRange) {
754 self.focus();
755 }
756 });
757
758 // Listen for mouse events and translate
759 // them into terminal mouse protocols.
760 this.bindMouse();
761
762 /**
763 * This event is emitted when terminal has completed opening.
764 *
765 * @event open
766 */
767 this.emit('open');
768 };
769
770
771 /**
772 * Attempts to load an add-on using CommonJS or RequireJS (whichever is available).
773 * @param {string} addon The name of the addon to load
774 * @static
775 */
776 Terminal.loadAddon = function(addon, callback) {
777 if (typeof exports === 'object' && typeof module === 'object') {
778 // CommonJS
779 return require('./addons/' + addon + '/' + addon);
780 } else if (typeof define == 'function') {
781 // RequireJS
782 return require(['./addons/' + addon + '/' + addon], callback);
783 } else {
784 console.error('Cannot load a module without a CommonJS or RequireJS environment.');
785 return false;
786 }
787 };
788
789 /**
790 * Updates the helper CSS class with any changes necessary after the terminal's
791 * character width has been changed.
792 */
793 Terminal.prototype.updateCharSizeStyles = function() {
794 this.charSizeStyleElement.textContent =
795 `.xterm-wide-char{width:${this.charMeasure.width * 2}px;}` +
796 `.xterm-normal-char{width:${this.charMeasure.width}px;}` +
797 `.xterm-rows > div{height:${this.charMeasure.height}px;}`;
798 }
799
800 /**
801 * XTerm mouse events
802 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#Mouse%20Tracking
803 * To better understand these
804 * the xterm code is very helpful:
805 * Relevant files:
806 * button.c, charproc.c, misc.c
807 * Relevant functions in xterm/button.c:
808 * BtnCode, EmitButtonCode, EditorButton, SendMousePosition
809 */
810 Terminal.prototype.bindMouse = function() {
811 var el = this.element, self = this, pressed = 32;
812
813 // mouseup, mousedown, wheel
814 // left click: ^[[M 3<^[[M#3<
815 // wheel up: ^[[M`3>
816 function sendButton(ev) {
817 var button
818 , pos;
819
820 // get the xterm-style button
821 button = getButton(ev);
822
823 // get mouse coordinates
824 pos = getRawByteCoords(ev, self.rowContainer, self.charMeasure, self.cols, self.rows);
825 if (!pos) return;
826
827 sendEvent(button, pos);
828
829 switch (ev.overrideType || ev.type) {
830 case 'mousedown':
831 pressed = button;
832 break;
833 case 'mouseup':
834 // keep it at the left
835 // button, just in case.
836 pressed = 32;
837 break;
838 case 'wheel':
839 // nothing. don't
840 // interfere with
841 // `pressed`.
842 break;
843 }
844 }
845
846 // motion example of a left click:
847 // ^[[M 3<^[[M@4<^[[M@5<^[[M@6<^[[M@7<^[[M#7<
848 function sendMove(ev) {
849 var button = pressed
850 , pos;
851
852 pos = getRawByteCoords(ev, self.rowContainer, self.charMeasure, self.cols, self.rows);
853 if (!pos) return;
854
855 // buttons marked as motions
856 // are incremented by 32
857 button += 32;
858
859 sendEvent(button, pos);
860 }
861
862 // encode button and
863 // position to characters
864 function encode(data, ch) {
865 if (!self.utfMouse) {
866 if (ch === 255) return data.push(0);
867 if (ch > 127) ch = 127;
868 data.push(ch);
869 } else {
870 if (ch === 2047) return data.push(0);
871 if (ch < 127) {
872 data.push(ch);
873 } else {
874 if (ch > 2047) ch = 2047;
875 data.push(0xC0 | (ch >> 6));
876 data.push(0x80 | (ch & 0x3F));
877 }
878 }
879 }
880
881 // send a mouse event:
882 // regular/utf8: ^[[M Cb Cx Cy
883 // urxvt: ^[[ Cb ; Cx ; Cy M
884 // sgr: ^[[ Cb ; Cx ; Cy M/m
885 // vt300: ^[[ 24(1/3/5)~ [ Cx , Cy ] \r
886 // locator: CSI P e ; P b ; P r ; P c ; P p & w
887 function sendEvent(button, pos) {
888 // self.emit('mouse', {
889 // x: pos.x - 32,
890 // y: pos.x - 32,
891 // button: button
892 // });
893
894 if (self.vt300Mouse) {
895 // NOTE: Unstable.
896 // http://www.vt100.net/docs/vt3xx-gp/chapter15.html
897 button &= 3;
898 pos.x -= 32;
899 pos.y -= 32;
900 var data = C0.ESC + '[24';
901 if (button === 0) data += '1';
902 else if (button === 1) data += '3';
903 else if (button === 2) data += '5';
904 else if (button === 3) return;
905 else data += '0';
906 data += '~[' + pos.x + ',' + pos.y + ']\r';
907 self.send(data);
908 return;
909 }
910
911 if (self.decLocator) {
912 // NOTE: Unstable.
913 button &= 3;
914 pos.x -= 32;
915 pos.y -= 32;
916 if (button === 0) button = 2;
917 else if (button === 1) button = 4;
918 else if (button === 2) button = 6;
919 else if (button === 3) button = 3;
920 self.send(C0.ESC + '['
921 + button
922 + ';'
923 + (button === 3 ? 4 : 0)
924 + ';'
925 + pos.y
926 + ';'
927 + pos.x
928 + ';'
929 + (pos.page || 0)
930 + '&w');
931 return;
932 }
933
934 if (self.urxvtMouse) {
935 pos.x -= 32;
936 pos.y -= 32;
937 pos.x++;
938 pos.y++;
939 self.send(C0.ESC + '[' + button + ';' + pos.x + ';' + pos.y + 'M');
940 return;
941 }
942
943 if (self.sgrMouse) {
944 pos.x -= 32;
945 pos.y -= 32;
946 self.send(C0.ESC + '[<'
947 + (((button & 3) === 3 ? button & ~3 : button) - 32)
948 + ';'
949 + pos.x
950 + ';'
951 + pos.y
952 + ((button & 3) === 3 ? 'm' : 'M'));
953 return;
954 }
955
956 var data = [];
957
958 encode(data, button);
959 encode(data, pos.x);
960 encode(data, pos.y);
961
962 self.send(C0.ESC + '[M' + String.fromCharCode.apply(String, data));
963 }
964
965 function getButton(ev) {
966 var button
967 , shift
968 , meta
969 , ctrl
970 , mod;
971
972 // two low bits:
973 // 0 = left
974 // 1 = middle
975 // 2 = right
976 // 3 = release
977 // wheel up/down:
978 // 1, and 2 - with 64 added
979 switch (ev.overrideType || ev.type) {
980 case 'mousedown':
981 button = ev.button != null
982 ? +ev.button
983 : ev.which != null
984 ? ev.which - 1
985 : null;
986
987 if (self.browser.isMSIE) {
988 button = button === 1 ? 0 : button === 4 ? 1 : button;
989 }
990 break;
991 case 'mouseup':
992 button = 3;
993 break;
994 case 'DOMMouseScroll':
995 button = ev.detail < 0
996 ? 64
997 : 65;
998 break;
999 case 'wheel':
1000 button = ev.wheelDeltaY > 0
1001 ? 64
1002 : 65;
1003 break;
1004 }
1005
1006 // next three bits are the modifiers:
1007 // 4 = shift, 8 = meta, 16 = control
1008 shift = ev.shiftKey ? 4 : 0;
1009 meta = ev.metaKey ? 8 : 0;
1010 ctrl = ev.ctrlKey ? 16 : 0;
1011 mod = shift | meta | ctrl;
1012
1013 // no mods
1014 if (self.vt200Mouse) {
1015 // ctrl only
1016 mod &= ctrl;
1017 } else if (!self.normalMouse) {
1018 mod = 0;
1019 }
1020
1021 // increment to SP
1022 button = (32 + (mod << 2)) + button;
1023
1024 return button;
1025 }
1026
1027 on(el, 'mousedown', function(ev) {
1028 if (!self.mouseEvents) return;
1029
1030 // send the button
1031 sendButton(ev);
1032
1033 // ensure focus
1034 self.focus();
1035
1036 // fix for odd bug
1037 //if (self.vt200Mouse && !self.normalMouse) {
1038 if (self.vt200Mouse) {
1039 ev.overrideType = 'mouseup';
1040 sendButton(ev);
1041 return self.cancel(ev);
1042 }
1043
1044 // bind events
1045 if (self.normalMouse) on(self.document, 'mousemove', sendMove);
1046
1047 // x10 compatibility mode can't send button releases
1048 if (!self.x10Mouse) {
1049 on(self.document, 'mouseup', function up(ev) {
1050 sendButton(ev);
1051 if (self.normalMouse) off(self.document, 'mousemove', sendMove);
1052 off(self.document, 'mouseup', up);
1053 return self.cancel(ev);
1054 });
1055 }
1056
1057 return self.cancel(ev);
1058 });
1059
1060 //if (self.normalMouse) {
1061 // on(self.document, 'mousemove', sendMove);
1062 //}
1063
1064 on(el, 'wheel', function(ev) {
1065 if (!self.mouseEvents) return;
1066 if (self.x10Mouse
1067 || self.vt300Mouse
1068 || self.decLocator) return;
1069 sendButton(ev);
1070 return self.cancel(ev);
1071 });
1072
1073 // allow wheel scrolling in
1074 // the shell for example
1075 on(el, 'wheel', function(ev) {
1076 if (self.mouseEvents) return;
1077 self.viewport.onWheel(ev);
1078 return self.cancel(ev);
1079 });
1080
1081 on(el, 'touchstart', function(ev) {
1082 if (self.mouseEvents) return;
1083 self.viewport.onTouchStart(ev);
1084 return self.cancel(ev);
1085 });
1086
1087 on(el, 'touchmove', function(ev) {
1088 if (self.mouseEvents) return;
1089 self.viewport.onTouchMove(ev);
1090 return self.cancel(ev);
1091 });
1092 };
1093
1094 /**
1095 * Destroys the terminal.
1096 */
1097 Terminal.prototype.destroy = function() {
1098 this.readable = false;
1099 this.writable = false;
1100 this._events = {};
1101 this.handler = function() {};
1102 this.write = function() {};
1103 if (this.element && this.element.parentNode) {
1104 this.element.parentNode.removeChild(this.element);
1105 }
1106 //this.emit('close');
1107 };
1108
1109 /**
1110 * Tells the renderer to refresh terminal content between two rows (inclusive) at the next
1111 * opportunity.
1112 * @param {number} start The row to start from (between 0 and this.rows - 1).
1113 * @param {number} end The row to end at (between start and this.rows - 1).
1114 */
1115 Terminal.prototype.refresh = function(start, end) {
1116 if (this.renderer) {
1117 this.renderer.queueRefresh(start, end);
1118 }
1119 };
1120
1121 /**
1122 * Queues linkification for the specified rows.
1123 * @param {number} start The row to start from (between 0 and this.rows - 1).
1124 * @param {number} end The row to end at (between start and this.rows - 1).
1125 */
1126 Terminal.prototype.queueLinkification = function(start, end) {
1127 if (this.linkifier) {
1128 for (let i = start; i <= end; i++) {
1129 this.linkifier.linkifyRow(i);
1130 }
1131 }
1132 };
1133
1134 /**
1135 * Display the cursor element
1136 */
1137 Terminal.prototype.showCursor = function() {
1138 if (!this.cursorState) {
1139 this.cursorState = 1;
1140 this.refresh(this.buffer.y, this.buffer.y);
1141 }
1142 };
1143
1144 /**
1145 * Scroll the terminal down 1 row, creating a blank line.
1146 * @param {boolean} isWrapped Whether the new line is wrapped from the previous
1147 * line.
1148 */
1149 Terminal.prototype.scroll = function(isWrapped) {
1150 var row;
1151
1152 // Make room for the new row in lines
1153 if (this.buffer.lines.length === this.buffer.lines.maxLength) {
1154 this.buffer.lines.trimStart(1);
1155 this.buffer.ybase--;
1156 if (this.buffer.ydisp !== 0) {
1157 this.buffer.ydisp--;
1158 }
1159 }
1160
1161 this.buffer.ybase++;
1162
1163 // TODO: Why is this done twice?
1164 if (!this.userScrolling) {
1165 this.buffer.ydisp = this.buffer.ybase;
1166 }
1167
1168 // last line
1169 row = this.buffer.ybase + this.rows - 1;
1170
1171 // subtract the bottom scroll region
1172 row -= this.rows - 1 - this.buffer.scrollBottom;
1173
1174 if (row === this.buffer.lines.length) {
1175 // Optimization: pushing is faster than splicing when they amount to the same behavior
1176 this.buffer.lines.push(this.blankLine(undefined, isWrapped));
1177 } else {
1178 // add our new line
1179 this.buffer.lines.splice(row, 0, this.blankLine(undefined, isWrapped));
1180 }
1181
1182 if (this.buffer.scrollTop !== 0) {
1183 if (this.buffer.ybase !== 0) {
1184 this.buffer.ybase--;
1185 if (!this.userScrolling) {
1186 this.buffer.ydisp = this.buffer.ybase;
1187 }
1188 }
1189 this.buffer.lines.splice(this.buffer.ybase + this.buffer.scrollTop, 1);
1190 }
1191
1192 // this.maxRange();
1193 this.updateRange(this.buffer.scrollTop);
1194 this.updateRange(this.buffer.scrollBottom);
1195
1196 /**
1197 * This event is emitted whenever the terminal is scrolled.
1198 * The one parameter passed is the new y display position.
1199 *
1200 * @event scroll
1201 */
1202 this.emit('scroll', this.buffer.ydisp);
1203 };
1204
1205 /**
1206 * Scroll the display of the terminal
1207 * @param {number} disp The number of lines to scroll down (negatives scroll up).
1208 * @param {boolean} suppressScrollEvent Don't emit the scroll event as scrollDisp. This is used
1209 * to avoid unwanted events being handled by the veiwport when the event was triggered from the
1210 * viewport originally.
1211 */
1212 Terminal.prototype.scrollDisp = function(disp, suppressScrollEvent) {
1213 if (disp < 0) {
1214 if (this.buffer.ydisp === 0) {
1215 return;
1216 }
1217 this.userScrolling = true;
1218 } else if (disp + this.buffer.ydisp >= this.buffer.ybase) {
1219 this.userScrolling = false;
1220 }
1221
1222 const oldYdisp = this.buffer.ydisp;
1223 this.buffer.ydisp = Math.max(Math.min(this.buffer.ydisp + disp, this.buffer.ybase), 0);
1224
1225 // No change occurred, don't trigger scroll/refresh
1226 if (oldYdisp === this.buffer.ydisp) {
1227 return;
1228 }
1229
1230 if (!suppressScrollEvent) {
1231 this.emit('scroll', this.buffer.ydisp);
1232 }
1233
1234 this.refresh(0, this.rows - 1);
1235 };
1236
1237 /**
1238 * Scroll the display of the terminal by a number of pages.
1239 * @param {number} pageCount The number of pages to scroll (negative scrolls up).
1240 */
1241 Terminal.prototype.scrollPages = function(pageCount) {
1242 this.scrollDisp(pageCount * (this.rows - 1));
1243 };
1244
1245 /**
1246 * Scrolls the display of the terminal to the top.
1247 */
1248 Terminal.prototype.scrollToTop = function() {
1249 this.scrollDisp(-this.buffer.ydisp);
1250 };
1251
1252 /**
1253 * Scrolls the display of the terminal to the bottom.
1254 */
1255 Terminal.prototype.scrollToBottom = function() {
1256 this.scrollDisp(this.buffer.ybase - this.buffer.ydisp);
1257 };
1258
1259 /**
1260 * Writes text to the terminal.
1261 * @param {string} data The text to write to the terminal.
1262 */
1263 Terminal.prototype.write = function(data) {
1264 this.writeBuffer.push(data);
1265
1266 // Send XOFF to pause the pty process if the write buffer becomes too large so
1267 // xterm.js can catch up before more data is sent. This is necessary in order
1268 // to keep signals such as ^C responsive.
1269 if (this.options.useFlowControl && !this.xoffSentToCatchUp && this.writeBuffer.length >= WRITE_BUFFER_PAUSE_THRESHOLD) {
1270 // XOFF - stop pty pipe
1271 // XON will be triggered by emulator before processing data chunk
1272 this.send(C0.DC3);
1273 this.xoffSentToCatchUp = true;
1274 }
1275
1276 if (!this.writeInProgress && this.writeBuffer.length > 0) {
1277 // Kick off a write which will write all data in sequence recursively
1278 this.writeInProgress = true;
1279 // Kick off an async innerWrite so more writes can come in while processing data
1280 var self = this;
1281 setTimeout(function () {
1282 self.innerWrite();
1283 });
1284 }
1285 };
1286
1287 Terminal.prototype.innerWrite = function() {
1288 var writeBatch = this.writeBuffer.splice(0, WRITE_BATCH_SIZE);
1289 while (writeBatch.length > 0) {
1290 var data = writeBatch.shift();
1291 var l = data.length, i = 0, j, cs, ch, code, low, ch_width, row;
1292
1293 // If XOFF was sent in order to catch up with the pty process, resume it if
1294 // the writeBuffer is empty to allow more data to come in.
1295 if (this.xoffSentToCatchUp && writeBatch.length === 0 && this.writeBuffer.length === 0) {
1296 this.send(C0.DC1);
1297 this.xoffSentToCatchUp = false;
1298 }
1299
1300 this.refreshStart = this.buffer.y;
1301 this.refreshEnd = this.buffer.y;
1302
1303 // HACK: Set the parser state based on it's state at the time of return.
1304 // This works around the bug #662 which saw the parser state reset in the
1305 // middle of parsing escape sequence in two chunks. For some reason the
1306 // state of the parser resets to 0 after exiting parser.parse. This change
1307 // just sets the state back based on the correct return statement.
1308 var state = this.parser.parse(data);
1309 this.parser.setState(state);
1310
1311 this.updateRange(this.buffer.y);
1312 this.refresh(this.refreshStart, this.refreshEnd);
1313 }
1314 if (this.writeBuffer.length > 0) {
1315 // Allow renderer to catch up before processing the next batch
1316 var self = this;
1317 setTimeout(function () {
1318 self.innerWrite();
1319 }, 0);
1320 } else {
1321 this.writeInProgress = false;
1322 }
1323 };
1324
1325 /**
1326 * Writes text to the terminal, followed by a break line character (\n).
1327 * @param {string} data The text to write to the terminal.
1328 */
1329 Terminal.prototype.writeln = function(data) {
1330 this.write(data + '\r\n');
1331 };
1332
1333 /**
1334 * DEPRECATED: only for backward compatibility. Please use attachCustomKeyEventHandler() instead.
1335 * @param {function} customKeydownHandler The custom KeyboardEvent handler to attach. This is a
1336 * function that takes a KeyboardEvent, allowing consumers to stop propogation and/or prevent
1337 * the default action. The function returns whether the event should be processed by xterm.js.
1338 */
1339 Terminal.prototype.attachCustomKeydownHandler = function(customKeydownHandler) {
1340 let message = 'attachCustomKeydownHandler() is DEPRECATED and will be removed soon. Please use attachCustomKeyEventHandler() instead.';
1341 console.warn(message);
1342 this.attachCustomKeyEventHandler(customKeydownHandler);
1343 };
1344
1345 /**
1346 * Attaches a custom key event handler which is run before keys are processed, giving consumers of
1347 * xterm.js ultimate control as to what keys should be processed by the terminal and what keys
1348 * should not.
1349 * @param {function} customKeyEventHandler The custom KeyboardEvent handler to attach. This is a
1350 * function that takes a KeyboardEvent, allowing consumers to stop propogation and/or prevent
1351 * the default action. The function returns whether the event should be processed by xterm.js.
1352 */
1353 Terminal.prototype.attachCustomKeyEventHandler = function(customKeyEventHandler) {
1354 this.customKeyEventHandler = customKeyEventHandler;
1355 };
1356
1357 /**
1358 * Attaches a http(s) link handler, forcing web links to behave differently to
1359 * regular <a> tags. This will trigger a refresh as links potentially need to be
1360 * reconstructed. Calling this with null will remove the handler.
1361 * @param {LinkMatcherHandler} handler The handler callback function.
1362 */
1363 Terminal.prototype.setHypertextLinkHandler = function(handler) {
1364 if (!this.linkifier) {
1365 throw new Error('Cannot attach a hypertext link handler before Terminal.open is called');
1366 }
1367 this.linkifier.setHypertextLinkHandler(handler);
1368 // Refresh to force links to refresh
1369 this.refresh(0, this.rows - 1);
1370 };
1371
1372 /**
1373 * Attaches a validation callback for hypertext links. This is useful to use
1374 * validation logic or to do something with the link's element and url.
1375 * @param {LinkMatcherValidationCallback} callback The callback to use, this can
1376 * be cleared with null.
1377 */
1378 Terminal.prototype.setHypertextValidationCallback = function(callback) {
1379 if (!this.linkifier) {
1380 throw new Error('Cannot attach a hypertext validation callback before Terminal.open is called');
1381 }
1382 this.linkifier.setHypertextValidationCallback(callback);
1383 // Refresh to force links to refresh
1384 this.refresh(0, this.rows - 1);
1385 };
1386
1387 /**
1388 * Registers a link matcher, allowing custom link patterns to be matched and
1389 * handled.
1390 * @param {RegExp} regex The regular expression to search for, specifically
1391 * this searches the textContent of the rows. You will want to use \s to match
1392 * a space ' ' character for example.
1393 * @param {LinkMatcherHandler} handler The callback when the link is called.
1394 * @param {LinkMatcherOptions} [options] Options for the link matcher.
1395 * @return {number} The ID of the new matcher, this can be used to deregister.
1396 */
1397 Terminal.prototype.registerLinkMatcher = function(regex, handler, options) {
1398 if (this.linkifier) {
1399 var matcherId = this.linkifier.registerLinkMatcher(regex, handler, options);
1400 this.refresh(0, this.rows - 1);
1401 return matcherId;
1402 }
1403 };
1404
1405 /**
1406 * Deregisters a link matcher if it has been registered.
1407 * @param {number} matcherId The link matcher's ID (returned after register)
1408 */
1409 Terminal.prototype.deregisterLinkMatcher = function(matcherId) {
1410 if (this.linkifier) {
1411 if (this.linkifier.deregisterLinkMatcher(matcherId)) {
1412 this.refresh(0, this.rows - 1);
1413 }
1414 }
1415 };
1416
1417 /**
1418 * Gets whether the terminal has an active selection.
1419 */
1420 Terminal.prototype.hasSelection = function() {
1421 return this.selectionManager ? this.selectionManager.hasSelection : false;
1422 };
1423
1424 /**
1425 * Gets the terminal's current selection, this is useful for implementing copy
1426 * behavior outside of xterm.js.
1427 */
1428 Terminal.prototype.getSelection = function() {
1429 return this.selectionManager ? this.selectionManager.selectionText : '';
1430 };
1431
1432 /**
1433 * Clears the current terminal selection.
1434 */
1435 Terminal.prototype.clearSelection = function() {
1436 if (this.selectionManager) {
1437 this.selectionManager.clearSelection();
1438 }
1439 };
1440
1441 /**
1442 * Selects all text within the terminal.
1443 */
1444 Terminal.prototype.selectAll = function() {
1445 if (this.selectionManager) {
1446 this.selectionManager.selectAll();
1447 }
1448 };
1449
1450 /**
1451 * Handle a keydown event
1452 * Key Resources:
1453 * - https://developer.mozilla.org/en-US/docs/DOM/KeyboardEvent
1454 * @param {KeyboardEvent} ev The keydown event to be handled.
1455 */
1456 Terminal.prototype.keyDown = function(ev) {
1457 if (this.customKeyEventHandler && this.customKeyEventHandler(ev) === false) {
1458 return false;
1459 }
1460
1461 this.restartCursorBlinking();
1462
1463 if (!this.compositionHelper.keydown.bind(this.compositionHelper)(ev)) {
1464 if (this.buffer.ybase !== this.buffer.ydisp) {
1465 this.scrollToBottom();
1466 }
1467 return false;
1468 }
1469
1470 var self = this;
1471 var result = this.evaluateKeyEscapeSequence(ev);
1472
1473 if (result.key === C0.DC3) { // XOFF
1474 this.writeStopped = true;
1475 } else if (result.key === C0.DC1) { // XON
1476 this.writeStopped = false;
1477 }
1478
1479 if (result.scrollDisp) {
1480 this.scrollDisp(result.scrollDisp);
1481 return this.cancel(ev, true);
1482 }
1483
1484 if (isThirdLevelShift(this, ev)) {
1485 return true;
1486 }
1487
1488 if (result.cancel) {
1489 // The event is canceled at the end already, is this necessary?
1490 this.cancel(ev, true);
1491 }
1492
1493 if (!result.key) {
1494 return true;
1495 }
1496
1497 this.emit('keydown', ev);
1498 this.emit('key', result.key, ev);
1499 this.showCursor();
1500 this.handler(result.key);
1501
1502 return this.cancel(ev, true);
1503 };
1504
1505 /**
1506 * Returns an object that determines how a KeyboardEvent should be handled. The key of the
1507 * returned value is the new key code to pass to the PTY.
1508 *
1509 * Reference: http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
1510 * @param {KeyboardEvent} ev The keyboard event to be translated to key escape sequence.
1511 */
1512 Terminal.prototype.evaluateKeyEscapeSequence = function(ev) {
1513 var result = {
1514 // Whether to cancel event propogation (NOTE: this may not be needed since the event is
1515 // canceled at the end of keyDown
1516 cancel: false,
1517 // The new key even to emit
1518 key: undefined,
1519 // The number of characters to scroll, if this is defined it will cancel the event
1520 scrollDisp: undefined
1521 };
1522 var modifiers = ev.shiftKey << 0 | ev.altKey << 1 | ev.ctrlKey << 2 | ev.metaKey << 3;
1523 switch (ev.keyCode) {
1524 case 8:
1525 // backspace
1526 if (ev.shiftKey) {
1527 result.key = C0.BS; // ^H
1528 break;
1529 }
1530 result.key = C0.DEL; // ^?
1531 break;
1532 case 9:
1533 // tab
1534 if (ev.shiftKey) {
1535 result.key = C0.ESC + '[Z';
1536 break;
1537 }
1538 result.key = C0.HT;
1539 result.cancel = true;
1540 break;
1541 case 13:
1542 // return/enter
1543 result.key = C0.CR;
1544 result.cancel = true;
1545 break;
1546 case 27:
1547 // escape
1548 result.key = C0.ESC;
1549 result.cancel = true;
1550 break;
1551 case 37:
1552 // left-arrow
1553 if (modifiers) {
1554 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'D';
1555 // HACK: Make Alt + left-arrow behave like Ctrl + left-arrow: move one word backwards
1556 // http://unix.stackexchange.com/a/108106
1557 // macOS uses different escape sequences than linux
1558 if (result.key == C0.ESC + '[1;3D') {
1559 result.key = (this.browser.isMac) ? C0.ESC + 'b' : C0.ESC + '[1;5D';
1560 }
1561 } else if (this.applicationCursor) {
1562 result.key = C0.ESC + 'OD';
1563 } else {
1564 result.key = C0.ESC + '[D';
1565 }
1566 break;
1567 case 39:
1568 // right-arrow
1569 if (modifiers) {
1570 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'C';
1571 // HACK: Make Alt + right-arrow behave like Ctrl + right-arrow: move one word forward
1572 // http://unix.stackexchange.com/a/108106
1573 // macOS uses different escape sequences than linux
1574 if (result.key == C0.ESC + '[1;3C') {
1575 result.key = (this.browser.isMac) ? C0.ESC + 'f' : C0.ESC + '[1;5C';
1576 }
1577 } else if (this.applicationCursor) {
1578 result.key = C0.ESC + 'OC';
1579 } else {
1580 result.key = C0.ESC + '[C';
1581 }
1582 break;
1583 case 38:
1584 // up-arrow
1585 if (modifiers) {
1586 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'A';
1587 // HACK: Make Alt + up-arrow behave like Ctrl + up-arrow
1588 // http://unix.stackexchange.com/a/108106
1589 if (result.key == C0.ESC + '[1;3A') {
1590 result.key = C0.ESC + '[1;5A';
1591 }
1592 } else if (this.applicationCursor) {
1593 result.key = C0.ESC + 'OA';
1594 } else {
1595 result.key = C0.ESC + '[A';
1596 }
1597 break;
1598 case 40:
1599 // down-arrow
1600 if (modifiers) {
1601 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'B';
1602 // HACK: Make Alt + down-arrow behave like Ctrl + down-arrow
1603 // http://unix.stackexchange.com/a/108106
1604 if (result.key == C0.ESC + '[1;3B') {
1605 result.key = C0.ESC + '[1;5B';
1606 }
1607 } else if (this.applicationCursor) {
1608 result.key = C0.ESC + 'OB';
1609 } else {
1610 result.key = C0.ESC + '[B';
1611 }
1612 break;
1613 case 45:
1614 // insert
1615 if (!ev.shiftKey && !ev.ctrlKey) {
1616 // <Ctrl> or <Shift> + <Insert> are used to
1617 // copy-paste on some systems.
1618 result.key = C0.ESC + '[2~';
1619 }
1620 break;
1621 case 46:
1622 // delete
1623 if (modifiers) {
1624 result.key = C0.ESC + '[3;' + (modifiers + 1) + '~';
1625 } else {
1626 result.key = C0.ESC + '[3~';
1627 }
1628 break;
1629 case 36:
1630 // home
1631 if (modifiers)
1632 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'H';
1633 else if (this.applicationCursor)
1634 result.key = C0.ESC + 'OH';
1635 else
1636 result.key = C0.ESC + '[H';
1637 break;
1638 case 35:
1639 // end
1640 if (modifiers)
1641 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'F';
1642 else if (this.applicationCursor)
1643 result.key = C0.ESC + 'OF';
1644 else
1645 result.key = C0.ESC + '[F';
1646 break;
1647 case 33:
1648 // page up
1649 if (ev.shiftKey) {
1650 result.scrollDisp = -(this.rows - 1);
1651 } else {
1652 result.key = C0.ESC + '[5~';
1653 }
1654 break;
1655 case 34:
1656 // page down
1657 if (ev.shiftKey) {
1658 result.scrollDisp = this.rows - 1;
1659 } else {
1660 result.key = C0.ESC + '[6~';
1661 }
1662 break;
1663 case 112:
1664 // F1-F12
1665 if (modifiers) {
1666 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'P';
1667 } else {
1668 result.key = C0.ESC + 'OP';
1669 }
1670 break;
1671 case 113:
1672 if (modifiers) {
1673 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'Q';
1674 } else {
1675 result.key = C0.ESC + 'OQ';
1676 }
1677 break;
1678 case 114:
1679 if (modifiers) {
1680 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'R';
1681 } else {
1682 result.key = C0.ESC + 'OR';
1683 }
1684 break;
1685 case 115:
1686 if (modifiers) {
1687 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'S';
1688 } else {
1689 result.key = C0.ESC + 'OS';
1690 }
1691 break;
1692 case 116:
1693 if (modifiers) {
1694 result.key = C0.ESC + '[15;' + (modifiers + 1) + '~';
1695 } else {
1696 result.key = C0.ESC + '[15~';
1697 }
1698 break;
1699 case 117:
1700 if (modifiers) {
1701 result.key = C0.ESC + '[17;' + (modifiers + 1) + '~';
1702 } else {
1703 result.key = C0.ESC + '[17~';
1704 }
1705 break;
1706 case 118:
1707 if (modifiers) {
1708 result.key = C0.ESC + '[18;' + (modifiers + 1) + '~';
1709 } else {
1710 result.key = C0.ESC + '[18~';
1711 }
1712 break;
1713 case 119:
1714 if (modifiers) {
1715 result.key = C0.ESC + '[19;' + (modifiers + 1) + '~';
1716 } else {
1717 result.key = C0.ESC + '[19~';
1718 }
1719 break;
1720 case 120:
1721 if (modifiers) {
1722 result.key = C0.ESC + '[20;' + (modifiers + 1) + '~';
1723 } else {
1724 result.key = C0.ESC + '[20~';
1725 }
1726 break;
1727 case 121:
1728 if (modifiers) {
1729 result.key = C0.ESC + '[21;' + (modifiers + 1) + '~';
1730 } else {
1731 result.key = C0.ESC + '[21~';
1732 }
1733 break;
1734 case 122:
1735 if (modifiers) {
1736 result.key = C0.ESC + '[23;' + (modifiers + 1) + '~';
1737 } else {
1738 result.key = C0.ESC + '[23~';
1739 }
1740 break;
1741 case 123:
1742 if (modifiers) {
1743 result.key = C0.ESC + '[24;' + (modifiers + 1) + '~';
1744 } else {
1745 result.key = C0.ESC + '[24~';
1746 }
1747 break;
1748 default:
1749 // a-z and space
1750 if (ev.ctrlKey && !ev.shiftKey && !ev.altKey && !ev.metaKey) {
1751 if (ev.keyCode >= 65 && ev.keyCode <= 90) {
1752 result.key = String.fromCharCode(ev.keyCode - 64);
1753 } else if (ev.keyCode === 32) {
1754 // NUL
1755 result.key = String.fromCharCode(0);
1756 } else if (ev.keyCode >= 51 && ev.keyCode <= 55) {
1757 // escape, file sep, group sep, record sep, unit sep
1758 result.key = String.fromCharCode(ev.keyCode - 51 + 27);
1759 } else if (ev.keyCode === 56) {
1760 // delete
1761 result.key = String.fromCharCode(127);
1762 } else if (ev.keyCode === 219) {
1763 // ^[ - Control Sequence Introducer (CSI)
1764 result.key = String.fromCharCode(27);
1765 } else if (ev.keyCode === 220) {
1766 // ^\ - String Terminator (ST)
1767 result.key = String.fromCharCode(28);
1768 } else if (ev.keyCode === 221) {
1769 // ^] - Operating System Command (OSC)
1770 result.key = String.fromCharCode(29);
1771 }
1772 } else if (!this.browser.isMac && ev.altKey && !ev.ctrlKey && !ev.metaKey) {
1773 // On Mac this is a third level shift. Use <Esc> instead.
1774 if (ev.keyCode >= 65 && ev.keyCode <= 90) {
1775 result.key = C0.ESC + String.fromCharCode(ev.keyCode + 32);
1776 } else if (ev.keyCode === 192) {
1777 result.key = C0.ESC + '`';
1778 } else if (ev.keyCode >= 48 && ev.keyCode <= 57) {
1779 result.key = C0.ESC + (ev.keyCode - 48);
1780 }
1781 } else if (this.browser.isMac && !ev.altKey && !ev.ctrlKey && ev.metaKey) {
1782 if (ev.keyCode === 65) { // cmd + a
1783 this.selectAll();
1784 }
1785 }
1786 break;
1787 }
1788
1789 return result;
1790 };
1791
1792 /**
1793 * Set the G level of the terminal
1794 * @param g
1795 */
1796 Terminal.prototype.setgLevel = function(g) {
1797 this.glevel = g;
1798 this.charset = this.charsets[g];
1799 };
1800
1801 /**
1802 * Set the charset for the given G level of the terminal
1803 * @param g
1804 * @param charset
1805 */
1806 Terminal.prototype.setgCharset = function(g, charset) {
1807 this.charsets[g] = charset;
1808 if (this.glevel === g) {
1809 this.charset = charset;
1810 }
1811 };
1812
1813 /**
1814 * Handle a keypress event.
1815 * Key Resources:
1816 * - https://developer.mozilla.org/en-US/docs/DOM/KeyboardEvent
1817 * @param {KeyboardEvent} ev The keypress event to be handled.
1818 */
1819 Terminal.prototype.keyPress = function(ev) {
1820 var key;
1821
1822 if (this.customKeyEventHandler && this.customKeyEventHandler(ev) === false) {
1823 return false;
1824 }
1825
1826 this.cancel(ev);
1827
1828 if (ev.charCode) {
1829 key = ev.charCode;
1830 } else if (ev.which == null) {
1831 key = ev.keyCode;
1832 } else if (ev.which !== 0 && ev.charCode !== 0) {
1833 key = ev.which;
1834 } else {
1835 return false;
1836 }
1837
1838 if (!key || (
1839 (ev.altKey || ev.ctrlKey || ev.metaKey) && !isThirdLevelShift(this, ev)
1840 )) {
1841 return false;
1842 }
1843
1844 key = String.fromCharCode(key);
1845
1846 this.emit('keypress', key, ev);
1847 this.emit('key', key, ev);
1848 this.showCursor();
1849 this.handler(key);
1850
1851 return true;
1852 };
1853
1854 /**
1855 * Send data for handling to the terminal
1856 * @param {string} data
1857 */
1858 Terminal.prototype.send = function(data) {
1859 var self = this;
1860
1861 if (!this.queue) {
1862 setTimeout(function() {
1863 self.handler(self.queue);
1864 self.queue = '';
1865 }, 1);
1866 }
1867
1868 this.queue += data;
1869 };
1870
1871 /**
1872 * Ring the bell.
1873 * Note: We could do sweet things with webaudio here
1874 */
1875 Terminal.prototype.bell = function() {
1876 if (!this.visualBell) return;
1877 var self = this;
1878 this.element.style.borderColor = 'white';
1879 setTimeout(function() {
1880 self.element.style.borderColor = '';
1881 }, 10);
1882 if (this.popOnBell) this.focus();
1883 };
1884
1885 /**
1886 * Log the current state to the console.
1887 */
1888 Terminal.prototype.log = function() {
1889 if (!this.debug) return;
1890 if (!this.context.console || !this.context.console.log) return;
1891 var args = Array.prototype.slice.call(arguments);
1892 this.context.console.log.apply(this.context.console, args);
1893 };
1894
1895 /**
1896 * Log the current state as error to the console.
1897 */
1898 Terminal.prototype.error = function() {
1899 if (!this.debug) return;
1900 if (!this.context.console || !this.context.console.error) return;
1901 var args = Array.prototype.slice.call(arguments);
1902 this.context.console.error.apply(this.context.console, args);
1903 };
1904
1905 /**
1906 * Resizes the terminal.
1907 *
1908 * @param {number} x The number of columns to resize to.
1909 * @param {number} y The number of rows to resize to.
1910 */
1911 Terminal.prototype.resize = function(x, y) {
1912 if (isNaN(x) || isNaN(y)) {
1913 return;
1914 }
1915
1916 if (y > this.getOption('scrollback')) {
1917 this.setOption('scrollback', y)
1918 }
1919
1920 var line
1921 , el
1922 , i
1923 , j
1924 , ch
1925 , addToY;
1926
1927 if (x === this.cols && y === this.rows) {
1928 // Check if we still need to measure the char size (fixes #785).
1929 if (!this.charMeasure.width || !this.charMeasure.height) {
1930 this.charMeasure.measure();
1931 }
1932 return;
1933 }
1934
1935 if (x < 1) x = 1;
1936 if (y < 1) y = 1;
1937
1938 // resize cols
1939 j = this.cols;
1940 if (j < x) {
1941 ch = [this.defAttr, ' ', 1]; // does xterm use the default attr?
1942 i = this.buffer.lines.length;
1943 while (i--) {
1944 if (this.buffer.lines.get(i) === undefined) {
1945 this.buffer.lines.set(i, this.blankLine());
1946 }
1947 while (this.buffer.lines.get(i).length < x) {
1948 this.buffer.lines.get(i).push(ch);
1949 }
1950 }
1951 }
1952
1953 this.cols = x;
1954 this.setupStops(this.cols);
1955
1956 // resize rows
1957 j = this.rows;
1958 addToY = 0;
1959 if (j < y) {
1960 el = this.element;
1961 while (j++ < y) {
1962 // y is rows, not this.buffer.y
1963 if (this.buffer.lines.length < y + this.buffer.ybase) {
1964 if (this.buffer.ybase > 0 && this.buffer.lines.length <= this.buffer.ybase + this.buffer.y + addToY + 1) {
1965 // There is room above the buffer and there are no empty elements below the line,
1966 // scroll up
1967 this.buffer.ybase--;
1968 addToY++;
1969 if (this.buffer.ydisp > 0) {
1970 // Viewport is at the top of the buffer, must increase downwards
1971 this.buffer.ydisp--;
1972 }
1973 } else {
1974 // Add a blank line if there is no buffer left at the top to scroll to, or if there
1975 // are blank lines after the cursor
1976 this.buffer.lines.push(this.blankLine());
1977 }
1978 }
1979 if (this.children.length < y) {
1980 this.insertRow();
1981 }
1982 }
1983 } else { // (j > y)
1984 while (j-- > y) {
1985 if (this.buffer.lines.length > y + this.buffer.ybase) {
1986 if (this.buffer.lines.length > this.buffer.ybase + this.buffer.y + 1) {
1987 // The line is a blank line below the cursor, remove it
1988 this.buffer.lines.pop();
1989 } else {
1990 // The line is the cursor, scroll down
1991 this.buffer.ybase++;
1992 this.buffer.ydisp++;
1993 }
1994 }
1995 if (this.children.length > y) {
1996 el = this.children.shift();
1997 if (!el) continue;
1998 el.parentNode.removeChild(el);
1999 }
2000 }
2001 }
2002 this.rows = y;
2003
2004 // Make sure that the cursor stays on screen
2005 if (this.buffer.y >= y) {
2006 this.buffer.y = y - 1;
2007 }
2008 if (addToY) {
2009 this.buffer.y += addToY;
2010 }
2011
2012 if (this.buffer.x >= x) {
2013 this.buffer.x = x - 1;
2014 }
2015
2016 this.buffer.scrollTop = 0;
2017 this.buffer.scrollBottom = y - 1;
2018
2019 this.charMeasure.measure();
2020
2021 this.refresh(0, this.rows - 1);
2022
2023 this.geometry = [this.cols, this.rows];
2024 this.emit('resize', {terminal: this, cols: x, rows: y});
2025 };
2026
2027 /**
2028 * Updates the range of rows to refresh
2029 * @param {number} y The number of rows to refresh next.
2030 */
2031 Terminal.prototype.updateRange = function(y) {
2032 if (y < this.refreshStart) this.refreshStart = y;
2033 if (y > this.refreshEnd) this.refreshEnd = y;
2034 // if (y > this.refreshEnd) {
2035 // this.refreshEnd = y;
2036 // if (y > this.rows - 1) {
2037 // this.refreshEnd = this.rows - 1;
2038 // }
2039 // }
2040 };
2041
2042 /**
2043 * Set the range of refreshing to the maximum value
2044 */
2045 Terminal.prototype.maxRange = function() {
2046 this.refreshStart = 0;
2047 this.refreshEnd = this.rows - 1;
2048 };
2049
2050
2051
2052 /**
2053 * Setup the tab stops.
2054 * @param {number} i
2055 */
2056 Terminal.prototype.setupStops = function(i) {
2057 if (i != null) {
2058 if (!this.buffer.tabs[i]) {
2059 i = this.prevStop(i);
2060 }
2061 } else {
2062 this.buffer.tabs = {};
2063 i = 0;
2064 }
2065
2066 for (; i < this.cols; i += this.getOption('tabStopWidth')) {
2067 this.buffer.tabs[i] = true;
2068 }
2069 };
2070
2071
2072 /**
2073 * Move the cursor to the previous tab stop from the given position (default is current).
2074 * @param {number} x The position to move the cursor to the previous tab stop.
2075 */
2076 Terminal.prototype.prevStop = function(x) {
2077 if (x == null) x = this.buffer.x;
2078 while (!this.buffer.tabs[--x] && x > 0);
2079 return x >= this.cols
2080 ? this.cols - 1
2081 : x < 0 ? 0 : x;
2082 };
2083
2084
2085 /**
2086 * Move the cursor one tab stop forward from the given position (default is current).
2087 * @param {number} x The position to move the cursor one tab stop forward.
2088 */
2089 Terminal.prototype.nextStop = function(x) {
2090 if (x == null) x = this.buffer.x;
2091 while (!this.buffer.tabs[++x] && x < this.cols);
2092 return x >= this.cols
2093 ? this.cols - 1
2094 : x < 0 ? 0 : x;
2095 };
2096
2097
2098 /**
2099 * Erase in the identified line everything from "x" to the end of the line (right).
2100 * @param {number} x The column from which to start erasing to the end of the line.
2101 * @param {number} y The line in which to operate.
2102 */
2103 Terminal.prototype.eraseRight = function(x, y) {
2104 var line = this.buffer.lines.get(this.buffer.ybase + y);
2105 if (!line) {
2106 return;
2107 }
2108 var ch = [this.eraseAttr(), ' ', 1]; // xterm
2109 for (; x < this.cols; x++) {
2110 line[x] = ch;
2111 }
2112 this.updateRange(y);
2113 };
2114
2115
2116
2117 /**
2118 * Erase in the identified line everything from "x" to the start of the line (left).
2119 * @param {number} x The column from which to start erasing to the start of the line.
2120 * @param {number} y The line in which to operate.
2121 */
2122 Terminal.prototype.eraseLeft = function(x, y) {
2123 var line = this.buffer.lines.get(this.buffer.ybase + y);
2124 if (!line) {
2125 return;
2126 }
2127 var ch = [this.eraseAttr(), ' ', 1]; // xterm
2128 x++;
2129 while (x--) {
2130 line[x] = ch;
2131 }
2132 this.updateRange(y);
2133 };
2134
2135 /**
2136 * Clears the entire buffer, making the prompt line the new first line.
2137 */
2138 Terminal.prototype.clear = function() {
2139 if (this.buffer.ybase === 0 && this.buffer.y === 0) {
2140 // Don't clear if it's already clear
2141 return;
2142 }
2143 this.buffer.lines.set(0, this.buffer.lines.get(this.buffer.ybase + this.buffer.y));
2144 this.buffer.lines.length = 1;
2145 this.buffer.ydisp = 0;
2146 this.buffer.ybase = 0;
2147 this.buffer.y = 0;
2148 for (var i = 1; i < this.rows; i++) {
2149 this.buffer.lines.push(this.blankLine());
2150 }
2151 this.refresh(0, this.rows - 1);
2152 this.emit('scroll', this.buffer.ydisp);
2153 };
2154
2155 /**
2156 * Erase all content in the given line
2157 * @param {number} y The line to erase all of its contents.
2158 */
2159 Terminal.prototype.eraseLine = function(y) {
2160 this.eraseRight(0, y);
2161 };
2162
2163
2164 /**
2165 * Return the data array of a blank line
2166 * @param {number} cur First bunch of data for each "blank" character.
2167 * @param {boolean} isWrapped Whether the new line is wrapped from the previous line.
2168 */
2169 Terminal.prototype.blankLine = function(cur, isWrapped) {
2170 var attr = cur
2171 ? this.eraseAttr()
2172 : this.defAttr;
2173
2174 var ch = [attr, ' ', 1] // width defaults to 1 halfwidth character
2175 , line = []
2176 , i = 0;
2177
2178 // TODO: It is not ideal that this is a property on an array, a buffer line
2179 // class should be added that will hold this data and other useful functions.
2180 if (isWrapped) {
2181 line.isWrapped = isWrapped;
2182 }
2183
2184 for (; i < this.cols; i++) {
2185 line[i] = ch;
2186 }
2187
2188 return line;
2189 };
2190
2191
2192 /**
2193 * If cur return the back color xterm feature attribute. Else return defAttr.
2194 * @param {object} cur
2195 */
2196 Terminal.prototype.ch = function(cur) {
2197 return cur
2198 ? [this.eraseAttr(), ' ', 1]
2199 : [this.defAttr, ' ', 1];
2200 };
2201
2202
2203 /**
2204 * Evaluate if the current erminal is the given argument.
2205 * @param {object} term The terminal to evaluate
2206 */
2207 Terminal.prototype.is = function(term) {
2208 var name = this.termName;
2209 return (name + '').indexOf(term) === 0;
2210 };
2211
2212
2213 /**
2214 * Emit the 'data' event and populate the given data.
2215 * @param {string} data The data to populate in the event.
2216 */
2217 Terminal.prototype.handler = function(data) {
2218 // Prevents all events to pty process if stdin is disabled
2219 if (this.options.disableStdin) {
2220 return;
2221 }
2222
2223 // Clear the selection if the selection manager is available and has an active selection
2224 if (this.selectionManager && this.selectionManager.hasSelection) {
2225 this.selectionManager.clearSelection();
2226 }
2227
2228 // Input is being sent to the terminal, the terminal should focus the prompt.
2229 if (this.buffer.ybase !== this.buffer.ydisp) {
2230 this.scrollToBottom();
2231 }
2232 this.emit('data', data);
2233 };
2234
2235
2236 /**
2237 * Emit the 'title' event and populate the given title.
2238 * @param {string} title The title to populate in the event.
2239 */
2240 Terminal.prototype.handleTitle = function(title) {
2241 /**
2242 * This event is emitted when the title of the terminal is changed
2243 * from inside the terminal. The parameter is the new title.
2244 *
2245 * @event title
2246 */
2247 this.emit('title', title);
2248 };
2249
2250
2251 /**
2252 * ESC
2253 */
2254
2255 /**
2256 * ESC D Index (IND is 0x84).
2257 */
2258 Terminal.prototype.index = function() {
2259 this.buffer.y++;
2260 if (this.buffer.y > this.buffer.scrollBottom) {
2261 this.buffer.y--;
2262 this.scroll();
2263 }
2264 // If the end of the line is hit, prevent this action from wrapping around to the next line.
2265 if (this.buffer.x >= this.cols) {
2266 this.buffer.x--;
2267 }
2268 };
2269
2270
2271 /**
2272 * ESC M Reverse Index (RI is 0x8d).
2273 *
2274 * Move the cursor up one row, inserting a new blank line if necessary.
2275 */
2276 Terminal.prototype.reverseIndex = function() {
2277 var j;
2278 if (this.buffer.y === this.buffer.scrollTop) {
2279 // possibly move the code below to term.reverseScroll();
2280 // test: echo -ne '\e[1;1H\e[44m\eM\e[0m'
2281 // blankLine(true) is xterm/linux behavior
2282 this.buffer.lines.shiftElements(this.buffer.y + this.buffer.ybase, this.rows - 1, 1);
2283 this.buffer.lines.set(this.buffer.y + this.buffer.ybase, this.blankLine(true));
2284 this.updateRange(this.buffer.scrollTop);
2285 this.updateRange(this.buffer.scrollBottom);
2286 } else {
2287 this.buffer.y--;
2288 }
2289 };
2290
2291
2292 /**
2293 * ESC c Full Reset (RIS).
2294 */
2295 Terminal.prototype.reset = function() {
2296 this.options.rows = this.rows;
2297 this.options.cols = this.cols;
2298 var customKeyEventHandler = this.customKeyEventHandler;
2299 var cursorBlinkInterval = this.cursorBlinkInterval;
2300 var inputHandler = this.inputHandler;
2301 var buffers = this.buffers;
2302 Terminal.call(this, this.options);
2303 this.customKeyEventHandler = customKeyEventHandler;
2304 this.cursorBlinkInterval = cursorBlinkInterval;
2305 this.inputHandler = inputHandler;
2306 this.buffers = buffers;
2307 this.refresh(0, this.rows - 1);
2308 this.viewport.syncScrollArea();
2309 };
2310
2311
2312 /**
2313 * ESC H Tab Set (HTS is 0x88).
2314 */
2315 Terminal.prototype.tabSet = function() {
2316 this.buffer.tabs[this.buffer.x] = true;
2317 };
2318
2319 /**
2320 * Helpers
2321 */
2322
2323 function on(el, type, handler, capture) {
2324 if (!Array.isArray(el)) {
2325 el = [el];
2326 }
2327 el.forEach(function (element) {
2328 element.addEventListener(type, handler, capture || false);
2329 });
2330 }
2331
2332 function off(el, type, handler, capture) {
2333 el.removeEventListener(type, handler, capture || false);
2334 }
2335
2336 function cancel(ev, force) {
2337 if (!this.cancelEvents && !force) {
2338 return;
2339 }
2340 ev.preventDefault();
2341 ev.stopPropagation();
2342 return false;
2343 }
2344
2345 function inherits(child, parent) {
2346 function f() {
2347 this.constructor = child;
2348 }
2349 f.prototype = parent.prototype;
2350 child.prototype = new f;
2351 }
2352
2353 function indexOf(obj, el) {
2354 var i = obj.length;
2355 while (i--) {
2356 if (obj[i] === el) return i;
2357 }
2358 return -1;
2359 }
2360
2361 function isThirdLevelShift(term, ev) {
2362 var thirdLevelKey =
2363 (term.browser.isMac && ev.altKey && !ev.ctrlKey && !ev.metaKey) ||
2364 (term.browser.isMSWindows && ev.altKey && ev.ctrlKey && !ev.metaKey);
2365
2366 if (ev.type == 'keypress') {
2367 return thirdLevelKey;
2368 }
2369
2370 // Don't invoke for arrows, pageDown, home, backspace, etc. (on non-keypress events)
2371 return thirdLevelKey && (!ev.keyCode || ev.keyCode > 47);
2372 }
2373
2374 // Expose to InputHandler (temporary)
2375 Terminal.prototype.matchColor = matchColor;
2376
2377 function matchColor(r1, g1, b1) {
2378 var hash = (r1 << 16) | (g1 << 8) | b1;
2379
2380 if (matchColor._cache[hash] != null) {
2381 return matchColor._cache[hash];
2382 }
2383
2384 var ldiff = Infinity
2385 , li = -1
2386 , i = 0
2387 , c
2388 , r2
2389 , g2
2390 , b2
2391 , diff;
2392
2393 for (; i < Terminal.vcolors.length; i++) {
2394 c = Terminal.vcolors[i];
2395 r2 = c[0];
2396 g2 = c[1];
2397 b2 = c[2];
2398
2399 diff = matchColor.distance(r1, g1, b1, r2, g2, b2);
2400
2401 if (diff === 0) {
2402 li = i;
2403 break;
2404 }
2405
2406 if (diff < ldiff) {
2407 ldiff = diff;
2408 li = i;
2409 }
2410 }
2411
2412 return matchColor._cache[hash] = li;
2413 }
2414
2415 matchColor._cache = {};
2416
2417 // http://stackoverflow.com/questions/1633828
2418 matchColor.distance = function(r1, g1, b1, r2, g2, b2) {
2419 return Math.pow(30 * (r1 - r2), 2)
2420 + Math.pow(59 * (g1 - g2), 2)
2421 + Math.pow(11 * (b1 - b2), 2);
2422 };
2423
2424 function each(obj, iter, con) {
2425 if (obj.forEach) return obj.forEach(iter, con);
2426 for (var i = 0; i < obj.length; i++) {
2427 iter.call(con, obj[i], i, obj);
2428 }
2429 }
2430
2431 function wasMondifierKeyOnlyEvent(ev) {
2432 return ev.keyCode === 16 || // Shift
2433 ev.keyCode === 17 || // Ctrl
2434 ev.keyCode === 18; // Alt
2435 }
2436
2437 function keys(obj) {
2438 if (Object.keys) return Object.keys(obj);
2439 var key, keys = [];
2440 for (key in obj) {
2441 if (Object.prototype.hasOwnProperty.call(obj, key)) {
2442 keys.push(key);
2443 }
2444 }
2445 return keys;
2446 }
2447
2448 /**
2449 * Expose
2450 */
2451
2452 Terminal.translateBufferLineToString = translateBufferLineToString;
2453 Terminal.EventEmitter = EventEmitter;
2454 Terminal.inherits = inherits;
2455
2456 /**
2457 * Adds an event listener to the terminal.
2458 *
2459 * @param {string} event The name of the event. TODO: Document all event types
2460 * @param {function} callback The function to call when the event is triggered.
2461 */
2462 Terminal.on = on;
2463 Terminal.off = off;
2464 Terminal.cancel = cancel;
2465
2466 module.exports = Terminal;