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