]> git.proxmox.com Git - mirror_xterm.js.git/blob - src/xterm.js
Retain wrapped line state when copying
[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 * @param {boolean} isWrapped Whether the new line is wrapped from the previous
1120 * line.
1121 */
1122 Terminal.prototype.scroll = function(isWrapped) {
1123 var row;
1124
1125 // Make room for the new row in lines
1126 if (this.lines.length === this.lines.maxLength) {
1127 this.lines.trimStart(1);
1128 this.ybase--;
1129 if (this.ydisp !== 0) {
1130 this.ydisp--;
1131 }
1132 }
1133
1134 this.ybase++;
1135
1136 // TODO: Why is this done twice?
1137 if (!this.userScrolling) {
1138 this.ydisp = this.ybase;
1139 }
1140
1141 // last line
1142 row = this.ybase + this.rows - 1;
1143
1144 // subtract the bottom scroll region
1145 row -= this.rows - 1 - this.scrollBottom;
1146
1147 if (row === this.lines.length) {
1148 // Optimization: pushing is faster than splicing when they amount to the same behavior
1149 this.lines.push(this.blankLine(undefined, isWrapped));
1150 } else {
1151 // add our new line
1152 this.lines.splice(row, 0, this.blankLine(undefined, isWrapped));
1153 }
1154
1155 if (this.scrollTop !== 0) {
1156 if (this.ybase !== 0) {
1157 this.ybase--;
1158 if (!this.userScrolling) {
1159 this.ydisp = this.ybase;
1160 }
1161 }
1162 this.lines.splice(this.ybase + this.scrollTop, 1);
1163 }
1164
1165 // this.maxRange();
1166 this.updateRange(this.scrollTop);
1167 this.updateRange(this.scrollBottom);
1168
1169 /**
1170 * This event is emitted whenever the terminal is scrolled.
1171 * The one parameter passed is the new y display position.
1172 *
1173 * @event scroll
1174 */
1175 this.emit('scroll', this.ydisp);
1176 };
1177
1178 /**
1179 * Scroll the display of the terminal
1180 * @param {number} disp The number of lines to scroll down (negatives scroll up).
1181 * @param {boolean} suppressScrollEvent Don't emit the scroll event as scrollDisp. This is used
1182 * to avoid unwanted events being handled by the veiwport when the event was triggered from the
1183 * viewport originally.
1184 */
1185 Terminal.prototype.scrollDisp = function(disp, suppressScrollEvent) {
1186 if (disp < 0) {
1187 if (this.ydisp === 0) {
1188 return;
1189 }
1190 this.userScrolling = true;
1191 } else if (disp + this.ydisp >= this.ybase) {
1192 this.userScrolling = false;
1193 }
1194
1195 this.ydisp += disp;
1196
1197 if (this.ydisp > this.ybase) {
1198 this.ydisp = this.ybase;
1199 } else if (this.ydisp < 0) {
1200 this.ydisp = 0;
1201 }
1202
1203 if (!suppressScrollEvent) {
1204 this.emit('scroll', this.ydisp);
1205 }
1206
1207 this.refresh(0, this.rows - 1);
1208 };
1209
1210 /**
1211 * Scroll the display of the terminal by a number of pages.
1212 * @param {number} pageCount The number of pages to scroll (negative scrolls up).
1213 */
1214 Terminal.prototype.scrollPages = function(pageCount) {
1215 this.scrollDisp(pageCount * (this.rows - 1));
1216 }
1217
1218 /**
1219 * Scrolls the display of the terminal to the top.
1220 */
1221 Terminal.prototype.scrollToTop = function() {
1222 this.scrollDisp(-this.ydisp);
1223 }
1224
1225 /**
1226 * Scrolls the display of the terminal to the bottom.
1227 */
1228 Terminal.prototype.scrollToBottom = function() {
1229 this.scrollDisp(this.ybase - this.ydisp);
1230 }
1231
1232 /**
1233 * Writes text to the terminal.
1234 * @param {string} text The text to write to the terminal.
1235 */
1236 Terminal.prototype.write = function(data) {
1237 this.writeBuffer.push(data);
1238
1239 // Send XOFF to pause the pty process if the write buffer becomes too large so
1240 // xterm.js can catch up before more data is sent. This is necessary in order
1241 // to keep signals such as ^C responsive.
1242 if (this.options.useFlowControl && !this.xoffSentToCatchUp && this.writeBuffer.length >= WRITE_BUFFER_PAUSE_THRESHOLD) {
1243 // XOFF - stop pty pipe
1244 // XON will be triggered by emulator before processing data chunk
1245 this.send(C0.DC3);
1246 this.xoffSentToCatchUp = true;
1247 }
1248
1249 if (!this.writeInProgress && this.writeBuffer.length > 0) {
1250 // Kick off a write which will write all data in sequence recursively
1251 this.writeInProgress = true;
1252 // Kick off an async innerWrite so more writes can come in while processing data
1253 var self = this;
1254 setTimeout(function () {
1255 self.innerWrite();
1256 });
1257 }
1258 }
1259
1260 Terminal.prototype.innerWrite = function() {
1261 var writeBatch = this.writeBuffer.splice(0, WRITE_BATCH_SIZE);
1262 while (writeBatch.length > 0) {
1263 var data = writeBatch.shift();
1264 var l = data.length, i = 0, j, cs, ch, code, low, ch_width, row;
1265
1266 // If XOFF was sent in order to catch up with the pty process, resume it if
1267 // the writeBuffer is empty to allow more data to come in.
1268 if (this.xoffSentToCatchUp && writeBatch.length === 0 && this.writeBuffer.length === 0) {
1269 this.send(C0.DC1);
1270 this.xoffSentToCatchUp = false;
1271 }
1272
1273 this.refreshStart = this.y;
1274 this.refreshEnd = this.y;
1275
1276 // HACK: Set the parser state based on it's state at the time of return.
1277 // This works around the bug #662 which saw the parser state reset in the
1278 // middle of parsing escape sequence in two chunks. For some reason the
1279 // state of the parser resets to 0 after exiting parser.parse. This change
1280 // just sets the state back based on the correct return statement.
1281 var state = this.parser.parse(data);
1282 this.parser.setState(state);
1283
1284 this.updateRange(this.y);
1285 this.refresh(this.refreshStart, this.refreshEnd);
1286 }
1287 if (this.writeBuffer.length > 0) {
1288 // Allow renderer to catch up before processing the next batch
1289 var self = this;
1290 setTimeout(function () {
1291 self.innerWrite();
1292 }, 0);
1293 } else {
1294 this.writeInProgress = false;
1295 }
1296 };
1297
1298 /**
1299 * Writes text to the terminal, followed by a break line character (\n).
1300 * @param {string} text The text to write to the terminal.
1301 */
1302 Terminal.prototype.writeln = function(data) {
1303 this.write(data + '\r\n');
1304 };
1305
1306 /**
1307 * Attaches a custom keydown handler which is run before keys are processed, giving consumers of
1308 * xterm.js ultimate control as to what keys should be processed by the terminal and what keys
1309 * should not.
1310 * @param {function} customKeydownHandler The custom KeyboardEvent handler to attach. This is a
1311 * function that takes a KeyboardEvent, allowing consumers to stop propogation and/or prevent
1312 * the default action. The function returns whether the event should be processed by xterm.js.
1313 */
1314 Terminal.prototype.attachCustomKeydownHandler = function(customKeydownHandler) {
1315 this.customKeydownHandler = customKeydownHandler;
1316 }
1317
1318 /**
1319 * Attaches a http(s) link handler, forcing web links to behave differently to
1320 * regular <a> tags. This will trigger a refresh as links potentially need to be
1321 * reconstructed. Calling this with null will remove the handler.
1322 * @param {LinkHandler} handler The handler callback function.
1323 */
1324 Terminal.prototype.setHypertextLinkHandler = function(handler) {
1325 if (!this.linkifier) {
1326 throw new Error('Cannot attach a hypertext link handler before Terminal.open is called');
1327 }
1328 this.linkifier.setHypertextLinkHandler(handler);
1329 // Refresh to force links to refresh
1330 this.refresh(0, this.rows - 1);
1331 }
1332
1333 /**
1334 * Attaches a validation callback for hypertext links. This is useful to use
1335 * validation logic or to do something with the link's element and url.
1336 * @param {LinkMatcherValidationCallback} callback The callback to use, this can
1337 * be cleared with null.
1338 */
1339 Terminal.prototype.setHypertextValidationCallback = function(handler) {
1340 if (!this.linkifier) {
1341 throw new Error('Cannot attach a hypertext validation callback before Terminal.open is called');
1342 }
1343 this.linkifier.setHypertextValidationCallback(handler);
1344 // Refresh to force links to refresh
1345 this.refresh(0, this.rows - 1);
1346 }
1347
1348 /**
1349 * Registers a link matcher, allowing custom link patterns to be matched and
1350 * handled.
1351 * @param {RegExp} regex The regular expression to search for, specifically
1352 * this searches the textContent of the rows. You will want to use \s to match
1353 * a space ' ' character for example.
1354 * @param {LinkHandler} handler The callback when the link is called.
1355 * @param {LinkMatcherOptions} [options] Options for the link matcher.
1356 * @return {number} The ID of the new matcher, this can be used to deregister.
1357 */
1358 Terminal.prototype.registerLinkMatcher = function(regex, handler, options) {
1359 if (this.linkifier) {
1360 var matcherId = this.linkifier.registerLinkMatcher(regex, handler, options);
1361 this.refresh(0, this.rows - 1);
1362 return matcherId;
1363 }
1364 }
1365
1366 /**
1367 * Deregisters a link matcher if it has been registered.
1368 * @param {number} matcherId The link matcher's ID (returned after register)
1369 */
1370 Terminal.prototype.deregisterLinkMatcher = function(matcherId) {
1371 if (this.linkifier) {
1372 if (this.linkifier.deregisterLinkMatcher(matcherId)) {
1373 this.refresh(0, this.rows - 1);
1374 }
1375 }
1376 }
1377
1378 /**
1379 * Gets whether the terminal has an active selection.
1380 */
1381 Terminal.prototype.hasSelection = function() {
1382 return this.selectionManager.hasSelection;
1383 }
1384
1385 /**
1386 * Gets the terminal's current selection, this is useful for implementing copy
1387 * behavior outside of xterm.js.
1388 */
1389 Terminal.prototype.getSelection = function() {
1390 return this.selectionManager.selectionText;
1391 }
1392
1393 /**
1394 * Clears the current terminal selection.
1395 */
1396 Terminal.prototype.clearSelection = function() {
1397 this.selectionManager.clearSelection();
1398 }
1399
1400 /**
1401 * Selects all text within the terminal.
1402 */
1403 Terminal.prototype.selectAll = function() {
1404 this.selectionManager.selectAll();
1405 }
1406
1407 /**
1408 * Handle a keydown event
1409 * Key Resources:
1410 * - https://developer.mozilla.org/en-US/docs/DOM/KeyboardEvent
1411 * @param {KeyboardEvent} ev The keydown event to be handled.
1412 */
1413 Terminal.prototype.keyDown = function(ev) {
1414 if (this.customKeydownHandler && this.customKeydownHandler(ev) === false) {
1415 return false;
1416 }
1417
1418 this.restartCursorBlinking();
1419
1420 if (!this.compositionHelper.keydown.bind(this.compositionHelper)(ev)) {
1421 if (this.ybase !== this.ydisp) {
1422 this.scrollToBottom();
1423 }
1424 return false;
1425 }
1426
1427 var self = this;
1428 var result = this.evaluateKeyEscapeSequence(ev);
1429
1430 if (result.key === C0.DC3) { // XOFF
1431 this.writeStopped = true;
1432 } else if (result.key === C0.DC1) { // XON
1433 this.writeStopped = false;
1434 }
1435
1436 if (result.scrollDisp) {
1437 this.scrollDisp(result.scrollDisp);
1438 return this.cancel(ev, true);
1439 }
1440
1441 if (isThirdLevelShift(this, ev)) {
1442 return true;
1443 }
1444
1445 if (result.cancel) {
1446 // The event is canceled at the end already, is this necessary?
1447 this.cancel(ev, true);
1448 }
1449
1450 if (!result.key) {
1451 return true;
1452 }
1453
1454 this.emit('keydown', ev);
1455 this.emit('key', result.key, ev);
1456 this.showCursor();
1457 this.handler(result.key);
1458
1459 return this.cancel(ev, true);
1460 };
1461
1462 /**
1463 * Returns an object that determines how a KeyboardEvent should be handled. The key of the
1464 * returned value is the new key code to pass to the PTY.
1465 *
1466 * Reference: http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
1467 * @param {KeyboardEvent} ev The keyboard event to be translated to key escape sequence.
1468 */
1469 Terminal.prototype.evaluateKeyEscapeSequence = function(ev) {
1470 var result = {
1471 // Whether to cancel event propogation (NOTE: this may not be needed since the event is
1472 // canceled at the end of keyDown
1473 cancel: false,
1474 // The new key even to emit
1475 key: undefined,
1476 // The number of characters to scroll, if this is defined it will cancel the event
1477 scrollDisp: undefined
1478 };
1479 var modifiers = ev.shiftKey << 0 | ev.altKey << 1 | ev.ctrlKey << 2 | ev.metaKey << 3;
1480 switch (ev.keyCode) {
1481 case 8:
1482 // backspace
1483 if (ev.shiftKey) {
1484 result.key = C0.BS; // ^H
1485 break;
1486 }
1487 result.key = C0.DEL; // ^?
1488 break;
1489 case 9:
1490 // tab
1491 if (ev.shiftKey) {
1492 result.key = C0.ESC + '[Z';
1493 break;
1494 }
1495 result.key = C0.HT;
1496 result.cancel = true;
1497 break;
1498 case 13:
1499 // return/enter
1500 result.key = C0.CR;
1501 result.cancel = true;
1502 break;
1503 case 27:
1504 // escape
1505 result.key = C0.ESC;
1506 result.cancel = true;
1507 break;
1508 case 37:
1509 // left-arrow
1510 if (modifiers) {
1511 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'D';
1512 // HACK: Make Alt + left-arrow behave like Ctrl + left-arrow: move one word backwards
1513 // http://unix.stackexchange.com/a/108106
1514 // macOS uses different escape sequences than linux
1515 if (result.key == C0.ESC + '[1;3D') {
1516 result.key = (this.browser.isMac) ? C0.ESC + 'b' : C0.ESC + '[1;5D';
1517 }
1518 } else if (this.applicationCursor) {
1519 result.key = C0.ESC + 'OD';
1520 } else {
1521 result.key = C0.ESC + '[D';
1522 }
1523 break;
1524 case 39:
1525 // right-arrow
1526 if (modifiers) {
1527 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'C';
1528 // HACK: Make Alt + right-arrow behave like Ctrl + right-arrow: move one word forward
1529 // http://unix.stackexchange.com/a/108106
1530 // macOS uses different escape sequences than linux
1531 if (result.key == C0.ESC + '[1;3C') {
1532 result.key = (this.browser.isMac) ? C0.ESC + 'f' : C0.ESC + '[1;5C';
1533 }
1534 } else if (this.applicationCursor) {
1535 result.key = C0.ESC + 'OC';
1536 } else {
1537 result.key = C0.ESC + '[C';
1538 }
1539 break;
1540 case 38:
1541 // up-arrow
1542 if (modifiers) {
1543 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'A';
1544 // HACK: Make Alt + up-arrow behave like Ctrl + up-arrow
1545 // http://unix.stackexchange.com/a/108106
1546 if (result.key == C0.ESC + '[1;3A') {
1547 result.key = C0.ESC + '[1;5A';
1548 }
1549 } else if (this.applicationCursor) {
1550 result.key = C0.ESC + 'OA';
1551 } else {
1552 result.key = C0.ESC + '[A';
1553 }
1554 break;
1555 case 40:
1556 // down-arrow
1557 if (modifiers) {
1558 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'B';
1559 // HACK: Make Alt + down-arrow behave like Ctrl + down-arrow
1560 // http://unix.stackexchange.com/a/108106
1561 if (result.key == C0.ESC + '[1;3B') {
1562 result.key = C0.ESC + '[1;5B';
1563 }
1564 } else if (this.applicationCursor) {
1565 result.key = C0.ESC + 'OB';
1566 } else {
1567 result.key = C0.ESC + '[B';
1568 }
1569 break;
1570 case 45:
1571 // insert
1572 if (!ev.shiftKey && !ev.ctrlKey) {
1573 // <Ctrl> or <Shift> + <Insert> are used to
1574 // copy-paste on some systems.
1575 result.key = C0.ESC + '[2~';
1576 }
1577 break;
1578 case 46:
1579 // delete
1580 if (modifiers) {
1581 result.key = C0.ESC + '[3;' + (modifiers + 1) + '~';
1582 } else {
1583 result.key = C0.ESC + '[3~';
1584 }
1585 break;
1586 case 36:
1587 // home
1588 if (modifiers)
1589 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'H';
1590 else if (this.applicationCursor)
1591 result.key = C0.ESC + 'OH';
1592 else
1593 result.key = C0.ESC + '[H';
1594 break;
1595 case 35:
1596 // end
1597 if (modifiers)
1598 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'F';
1599 else if (this.applicationCursor)
1600 result.key = C0.ESC + 'OF';
1601 else
1602 result.key = C0.ESC + '[F';
1603 break;
1604 case 33:
1605 // page up
1606 if (ev.shiftKey) {
1607 result.scrollDisp = -(this.rows - 1);
1608 } else {
1609 result.key = C0.ESC + '[5~';
1610 }
1611 break;
1612 case 34:
1613 // page down
1614 if (ev.shiftKey) {
1615 result.scrollDisp = this.rows - 1;
1616 } else {
1617 result.key = C0.ESC + '[6~';
1618 }
1619 break;
1620 case 112:
1621 // F1-F12
1622 if (modifiers) {
1623 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'P';
1624 } else {
1625 result.key = C0.ESC + 'OP';
1626 }
1627 break;
1628 case 113:
1629 if (modifiers) {
1630 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'Q';
1631 } else {
1632 result.key = C0.ESC + 'OQ';
1633 }
1634 break;
1635 case 114:
1636 if (modifiers) {
1637 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'R';
1638 } else {
1639 result.key = C0.ESC + 'OR';
1640 }
1641 break;
1642 case 115:
1643 if (modifiers) {
1644 result.key = C0.ESC + '[1;' + (modifiers + 1) + 'S';
1645 } else {
1646 result.key = C0.ESC + 'OS';
1647 }
1648 break;
1649 case 116:
1650 if (modifiers) {
1651 result.key = C0.ESC + '[15;' + (modifiers + 1) + '~';
1652 } else {
1653 result.key = C0.ESC + '[15~';
1654 }
1655 break;
1656 case 117:
1657 if (modifiers) {
1658 result.key = C0.ESC + '[17;' + (modifiers + 1) + '~';
1659 } else {
1660 result.key = C0.ESC + '[17~';
1661 }
1662 break;
1663 case 118:
1664 if (modifiers) {
1665 result.key = C0.ESC + '[18;' + (modifiers + 1) + '~';
1666 } else {
1667 result.key = C0.ESC + '[18~';
1668 }
1669 break;
1670 case 119:
1671 if (modifiers) {
1672 result.key = C0.ESC + '[19;' + (modifiers + 1) + '~';
1673 } else {
1674 result.key = C0.ESC + '[19~';
1675 }
1676 break;
1677 case 120:
1678 if (modifiers) {
1679 result.key = C0.ESC + '[20;' + (modifiers + 1) + '~';
1680 } else {
1681 result.key = C0.ESC + '[20~';
1682 }
1683 break;
1684 case 121:
1685 if (modifiers) {
1686 result.key = C0.ESC + '[21;' + (modifiers + 1) + '~';
1687 } else {
1688 result.key = C0.ESC + '[21~';
1689 }
1690 break;
1691 case 122:
1692 if (modifiers) {
1693 result.key = C0.ESC + '[23;' + (modifiers + 1) + '~';
1694 } else {
1695 result.key = C0.ESC + '[23~';
1696 }
1697 break;
1698 case 123:
1699 if (modifiers) {
1700 result.key = C0.ESC + '[24;' + (modifiers + 1) + '~';
1701 } else {
1702 result.key = C0.ESC + '[24~';
1703 }
1704 break;
1705 default:
1706 // a-z and space
1707 if (ev.ctrlKey && !ev.shiftKey && !ev.altKey && !ev.metaKey) {
1708 if (ev.keyCode >= 65 && ev.keyCode <= 90) {
1709 result.key = String.fromCharCode(ev.keyCode - 64);
1710 } else if (ev.keyCode === 32) {
1711 // NUL
1712 result.key = String.fromCharCode(0);
1713 } else if (ev.keyCode >= 51 && ev.keyCode <= 55) {
1714 // escape, file sep, group sep, record sep, unit sep
1715 result.key = String.fromCharCode(ev.keyCode - 51 + 27);
1716 } else if (ev.keyCode === 56) {
1717 // delete
1718 result.key = String.fromCharCode(127);
1719 } else if (ev.keyCode === 219) {
1720 // ^[ - Control Sequence Introducer (CSI)
1721 result.key = String.fromCharCode(27);
1722 } else if (ev.keyCode === 220) {
1723 // ^\ - String Terminator (ST)
1724 result.key = String.fromCharCode(28);
1725 } else if (ev.keyCode === 221) {
1726 // ^] - Operating System Command (OSC)
1727 result.key = String.fromCharCode(29);
1728 }
1729 } else if (!this.browser.isMac && ev.altKey && !ev.ctrlKey && !ev.metaKey) {
1730 // On Mac this is a third level shift. Use <Esc> instead.
1731 if (ev.keyCode >= 65 && ev.keyCode <= 90) {
1732 result.key = C0.ESC + String.fromCharCode(ev.keyCode + 32);
1733 } else if (ev.keyCode === 192) {
1734 result.key = C0.ESC + '`';
1735 } else if (ev.keyCode >= 48 && ev.keyCode <= 57) {
1736 result.key = C0.ESC + (ev.keyCode - 48);
1737 }
1738 } else if (this.browser.isMac && !ev.altKey && !ev.ctrlKey && ev.metaKey) {
1739 if (ev.keyCode === 65) { // cmd + a
1740 this.selectAll();
1741 }
1742 }
1743 break;
1744 }
1745
1746 return result;
1747 };
1748
1749 /**
1750 * Set the G level of the terminal
1751 * @param g
1752 */
1753 Terminal.prototype.setgLevel = function(g) {
1754 this.glevel = g;
1755 this.charset = this.charsets[g];
1756 };
1757
1758 /**
1759 * Set the charset for the given G level of the terminal
1760 * @param g
1761 * @param charset
1762 */
1763 Terminal.prototype.setgCharset = function(g, charset) {
1764 this.charsets[g] = charset;
1765 if (this.glevel === g) {
1766 this.charset = charset;
1767 }
1768 };
1769
1770 /**
1771 * Handle a keypress event.
1772 * Key Resources:
1773 * - https://developer.mozilla.org/en-US/docs/DOM/KeyboardEvent
1774 * @param {KeyboardEvent} ev The keypress event to be handled.
1775 */
1776 Terminal.prototype.keyPress = function(ev) {
1777 var key;
1778
1779 this.cancel(ev);
1780
1781 if (ev.charCode) {
1782 key = ev.charCode;
1783 } else if (ev.which == null) {
1784 key = ev.keyCode;
1785 } else if (ev.which !== 0 && ev.charCode !== 0) {
1786 key = ev.which;
1787 } else {
1788 return false;
1789 }
1790
1791 if (!key || (
1792 (ev.altKey || ev.ctrlKey || ev.metaKey) && !isThirdLevelShift(this, ev)
1793 )) {
1794 return false;
1795 }
1796
1797 key = String.fromCharCode(key);
1798
1799 this.emit('keypress', key, ev);
1800 this.emit('key', key, ev);
1801 this.showCursor();
1802 this.handler(key);
1803
1804 return false;
1805 };
1806
1807 /**
1808 * Send data for handling to the terminal
1809 * @param {string} data
1810 */
1811 Terminal.prototype.send = function(data) {
1812 var self = this;
1813
1814 if (!this.queue) {
1815 setTimeout(function() {
1816 self.handler(self.queue);
1817 self.queue = '';
1818 }, 1);
1819 }
1820
1821 this.queue += data;
1822 };
1823
1824 /**
1825 * Ring the bell.
1826 * Note: We could do sweet things with webaudio here
1827 */
1828 Terminal.prototype.bell = function() {
1829 if (!this.visualBell) return;
1830 var self = this;
1831 this.element.style.borderColor = 'white';
1832 setTimeout(function() {
1833 self.element.style.borderColor = '';
1834 }, 10);
1835 if (this.popOnBell) this.focus();
1836 };
1837
1838 /**
1839 * Log the current state to the console.
1840 */
1841 Terminal.prototype.log = function() {
1842 if (!this.debug) return;
1843 if (!this.context.console || !this.context.console.log) return;
1844 var args = Array.prototype.slice.call(arguments);
1845 this.context.console.log.apply(this.context.console, args);
1846 };
1847
1848 /**
1849 * Log the current state as error to the console.
1850 */
1851 Terminal.prototype.error = function() {
1852 if (!this.debug) return;
1853 if (!this.context.console || !this.context.console.error) return;
1854 var args = Array.prototype.slice.call(arguments);
1855 this.context.console.error.apply(this.context.console, args);
1856 };
1857
1858 /**
1859 * Resizes the terminal.
1860 *
1861 * @param {number} x The number of columns to resize to.
1862 * @param {number} y The number of rows to resize to.
1863 */
1864 Terminal.prototype.resize = function(x, y) {
1865 if (isNaN(x) || isNaN(y)) {
1866 return;
1867 }
1868
1869 var line
1870 , el
1871 , i
1872 , j
1873 , ch
1874 , addToY;
1875
1876 if (x === this.cols && y === this.rows) {
1877 return;
1878 }
1879
1880 if (x < 1) x = 1;
1881 if (y < 1) y = 1;
1882
1883 // resize cols
1884 j = this.cols;
1885 if (j < x) {
1886 ch = [this.defAttr, ' ', 1]; // does xterm use the default attr?
1887 i = this.lines.length;
1888 while (i--) {
1889 while (this.lines.get(i).length < x) {
1890 this.lines.get(i).push(ch);
1891 }
1892 }
1893 }
1894
1895 this.cols = x;
1896 this.setupStops(this.cols);
1897
1898 // resize rows
1899 j = this.rows;
1900 addToY = 0;
1901 if (j < y) {
1902 el = this.element;
1903 while (j++ < y) {
1904 // y is rows, not this.y
1905 if (this.lines.length < y + this.ybase) {
1906 if (this.ybase > 0 && this.lines.length <= this.ybase + this.y + addToY + 1) {
1907 // There is room above the buffer and there are no empty elements below the line,
1908 // scroll up
1909 this.ybase--;
1910 addToY++
1911 if (this.ydisp > 0) {
1912 // Viewport is at the top of the buffer, must increase downwards
1913 this.ydisp--;
1914 }
1915 } else {
1916 // Add a blank line if there is no buffer left at the top to scroll to, or if there
1917 // are blank lines after the cursor
1918 this.lines.push(this.blankLine());
1919 }
1920 }
1921 if (this.children.length < y) {
1922 this.insertRow();
1923 }
1924 }
1925 } else { // (j > y)
1926 while (j-- > y) {
1927 if (this.lines.length > y + this.ybase) {
1928 if (this.lines.length > this.ybase + this.y + 1) {
1929 // The line is a blank line below the cursor, remove it
1930 this.lines.pop();
1931 } else {
1932 // The line is the cursor, scroll down
1933 this.ybase++;
1934 this.ydisp++;
1935 }
1936 }
1937 if (this.children.length > y) {
1938 el = this.children.shift();
1939 if (!el) continue;
1940 el.parentNode.removeChild(el);
1941 }
1942 }
1943 }
1944 this.rows = y;
1945
1946 // Make sure that the cursor stays on screen
1947 if (this.y >= y) {
1948 this.y = y - 1;
1949 }
1950 if (addToY) {
1951 this.y += addToY;
1952 }
1953
1954 if (this.x >= x) {
1955 this.x = x - 1;
1956 }
1957
1958 this.scrollTop = 0;
1959 this.scrollBottom = y - 1;
1960
1961 this.charMeasure.measure();
1962
1963 this.refresh(0, this.rows - 1);
1964
1965 this.normal = null;
1966
1967 this.geometry = [this.cols, this.rows];
1968 this.emit('resize', {terminal: this, cols: x, rows: y});
1969 };
1970
1971 /**
1972 * Updates the range of rows to refresh
1973 * @param {number} y The number of rows to refresh next.
1974 */
1975 Terminal.prototype.updateRange = function(y) {
1976 if (y < this.refreshStart) this.refreshStart = y;
1977 if (y > this.refreshEnd) this.refreshEnd = y;
1978 // if (y > this.refreshEnd) {
1979 // this.refreshEnd = y;
1980 // if (y > this.rows - 1) {
1981 // this.refreshEnd = this.rows - 1;
1982 // }
1983 // }
1984 };
1985
1986 /**
1987 * Set the range of refreshing to the maximum value
1988 */
1989 Terminal.prototype.maxRange = function() {
1990 this.refreshStart = 0;
1991 this.refreshEnd = this.rows - 1;
1992 };
1993
1994
1995
1996 /**
1997 * Setup the tab stops.
1998 * @param {number} i
1999 */
2000 Terminal.prototype.setupStops = function(i) {
2001 if (i != null) {
2002 if (!this.tabs[i]) {
2003 i = this.prevStop(i);
2004 }
2005 } else {
2006 this.tabs = {};
2007 i = 0;
2008 }
2009
2010 for (; i < this.cols; i += this.getOption('tabStopWidth')) {
2011 this.tabs[i] = true;
2012 }
2013 };
2014
2015
2016 /**
2017 * Move the cursor to the previous tab stop from the given position (default is current).
2018 * @param {number} x The position to move the cursor to the previous tab stop.
2019 */
2020 Terminal.prototype.prevStop = function(x) {
2021 if (x == null) x = this.x;
2022 while (!this.tabs[--x] && x > 0);
2023 return x >= this.cols
2024 ? this.cols - 1
2025 : x < 0 ? 0 : x;
2026 };
2027
2028
2029 /**
2030 * Move the cursor one tab stop forward from the given position (default is current).
2031 * @param {number} x The position to move the cursor one tab stop forward.
2032 */
2033 Terminal.prototype.nextStop = function(x) {
2034 if (x == null) x = this.x;
2035 while (!this.tabs[++x] && x < this.cols);
2036 return x >= this.cols
2037 ? this.cols - 1
2038 : x < 0 ? 0 : x;
2039 };
2040
2041
2042 /**
2043 * Erase in the identified line everything from "x" to the end of the line (right).
2044 * @param {number} x The column from which to start erasing to the end of the line.
2045 * @param {number} y The line in which to operate.
2046 */
2047 Terminal.prototype.eraseRight = function(x, y) {
2048 var line = this.lines.get(this.ybase + y);
2049 if (!line) {
2050 return;
2051 }
2052 var ch = [this.eraseAttr(), ' ', 1]; // xterm
2053 for (; x < this.cols; x++) {
2054 line[x] = ch;
2055 }
2056 this.updateRange(y);
2057 };
2058
2059
2060
2061 /**
2062 * Erase in the identified line everything from "x" to the start of the line (left).
2063 * @param {number} x The column from which to start erasing to the start of the line.
2064 * @param {number} y The line in which to operate.
2065 */
2066 Terminal.prototype.eraseLeft = function(x, y) {
2067 var line = this.lines.get(this.ybase + y);
2068 if (!line) {
2069 return;
2070 }
2071 var ch = [this.eraseAttr(), ' ', 1]; // xterm
2072 x++;
2073 while (x--) {
2074 line[x] = ch;
2075 }
2076 this.updateRange(y);
2077 };
2078
2079 /**
2080 * Clears the entire buffer, making the prompt line the new first line.
2081 */
2082 Terminal.prototype.clear = function() {
2083 if (this.ybase === 0 && this.y === 0) {
2084 // Don't clear if it's already clear
2085 return;
2086 }
2087 this.lines.set(0, this.lines.get(this.ybase + this.y));
2088 this.lines.length = 1;
2089 this.ydisp = 0;
2090 this.ybase = 0;
2091 this.y = 0;
2092 for (var i = 1; i < this.rows; i++) {
2093 this.lines.push(this.blankLine());
2094 }
2095 this.refresh(0, this.rows - 1);
2096 this.emit('scroll', this.ydisp);
2097 };
2098
2099 /**
2100 * Erase all content in the given line
2101 * @param {number} y The line to erase all of its contents.
2102 */
2103 Terminal.prototype.eraseLine = function(y) {
2104 this.eraseRight(0, y);
2105 };
2106
2107
2108 /**
2109 * Return the data array of a blank line
2110 * @param {number} cur First bunch of data for each "blank" character.
2111 * @param {boolean} isWrapped Whether the new line is wrapped from the previous line.
2112 */
2113 Terminal.prototype.blankLine = function(cur, isWrapped) {
2114 var attr = cur
2115 ? this.eraseAttr()
2116 : this.defAttr;
2117
2118 var ch = [attr, ' ', 1] // width defaults to 1 halfwidth character
2119 , line = []
2120 , i = 0;
2121
2122 // TODO: It is not ideal that this is a property on an array, a buffer line
2123 // class should be added that will hold this data and other useful functions.
2124 if (isWrapped) {
2125 line.isWrapped = isWrapped;
2126 }
2127
2128 for (; i < this.cols; i++) {
2129 line[i] = ch;
2130 }
2131
2132 return line;
2133 };
2134
2135
2136 /**
2137 * If cur return the back color xterm feature attribute. Else return defAttr.
2138 * @param {object} cur
2139 */
2140 Terminal.prototype.ch = function(cur) {
2141 return cur
2142 ? [this.eraseAttr(), ' ', 1]
2143 : [this.defAttr, ' ', 1];
2144 };
2145
2146
2147 /**
2148 * Evaluate if the current erminal is the given argument.
2149 * @param {object} term The terminal to evaluate
2150 */
2151 Terminal.prototype.is = function(term) {
2152 var name = this.termName;
2153 return (name + '').indexOf(term) === 0;
2154 };
2155
2156
2157 /**
2158 * Emit the 'data' event and populate the given data.
2159 * @param {string} data The data to populate in the event.
2160 */
2161 Terminal.prototype.handler = function(data) {
2162 // Prevents all events to pty process if stdin is disabled
2163 if (this.options.disableStdin) {
2164 return;
2165 }
2166
2167 // Input is being sent to the terminal, the terminal should focus the prompt.
2168 if (this.ybase !== this.ydisp) {
2169 this.scrollToBottom();
2170 }
2171 this.emit('data', data);
2172 };
2173
2174
2175 /**
2176 * Emit the 'title' event and populate the given title.
2177 * @param {string} title The title to populate in the event.
2178 */
2179 Terminal.prototype.handleTitle = function(title) {
2180 /**
2181 * This event is emitted when the title of the terminal is changed
2182 * from inside the terminal. The parameter is the new title.
2183 *
2184 * @event title
2185 */
2186 this.emit('title', title);
2187 };
2188
2189
2190 /**
2191 * ESC
2192 */
2193
2194 /**
2195 * ESC D Index (IND is 0x84).
2196 */
2197 Terminal.prototype.index = function() {
2198 this.y++;
2199 if (this.y > this.scrollBottom) {
2200 this.y--;
2201 this.scroll();
2202 }
2203 // If the end of the line is hit, prevent this action from wrapping around to the next line.
2204 if (this.x >= this.cols) {
2205 this.x--;
2206 }
2207 };
2208
2209
2210 /**
2211 * ESC M Reverse Index (RI is 0x8d).
2212 *
2213 * Move the cursor up one row, inserting a new blank line if necessary.
2214 */
2215 Terminal.prototype.reverseIndex = function() {
2216 var j;
2217 if (this.y === this.scrollTop) {
2218 // possibly move the code below to term.reverseScroll();
2219 // test: echo -ne '\e[1;1H\e[44m\eM\e[0m'
2220 // blankLine(true) is xterm/linux behavior
2221 this.lines.shiftElements(this.y + this.ybase, this.rows - 1, 1);
2222 this.lines.set(this.y + this.ybase, this.blankLine(true));
2223 this.updateRange(this.scrollTop);
2224 this.updateRange(this.scrollBottom);
2225 } else {
2226 this.y--;
2227 }
2228 };
2229
2230
2231 /**
2232 * ESC c Full Reset (RIS).
2233 */
2234 Terminal.prototype.reset = function() {
2235 this.options.rows = this.rows;
2236 this.options.cols = this.cols;
2237 var customKeydownHandler = this.customKeydownHandler;
2238 var cursorBlinkInterval = this.cursorBlinkInterval;
2239 Terminal.call(this, this.options);
2240 this.customKeydownHandler = customKeydownHandler;
2241 this.cursorBlinkInterval = cursorBlinkInterval;
2242 this.refresh(0, this.rows - 1);
2243 this.viewport.syncScrollArea();
2244 };
2245
2246
2247 /**
2248 * ESC H Tab Set (HTS is 0x88).
2249 */
2250 Terminal.prototype.tabSet = function() {
2251 this.tabs[this.x] = true;
2252 };
2253
2254 /**
2255 * Helpers
2256 */
2257
2258 function on(el, type, handler, capture) {
2259 if (!Array.isArray(el)) {
2260 el = [el];
2261 }
2262 el.forEach(function (element) {
2263 element.addEventListener(type, handler, capture || false);
2264 });
2265 }
2266
2267 function off(el, type, handler, capture) {
2268 el.removeEventListener(type, handler, capture || false);
2269 }
2270
2271 function cancel(ev, force) {
2272 if (!this.cancelEvents && !force) {
2273 return;
2274 }
2275 ev.preventDefault();
2276 ev.stopPropagation();
2277 return false;
2278 }
2279
2280 function inherits(child, parent) {
2281 function f() {
2282 this.constructor = child;
2283 }
2284 f.prototype = parent.prototype;
2285 child.prototype = new f;
2286 }
2287
2288 function indexOf(obj, el) {
2289 var i = obj.length;
2290 while (i--) {
2291 if (obj[i] === el) return i;
2292 }
2293 return -1;
2294 }
2295
2296 function isThirdLevelShift(term, ev) {
2297 var thirdLevelKey =
2298 (term.browser.isMac && ev.altKey && !ev.ctrlKey && !ev.metaKey) ||
2299 (term.browser.isMSWindows && ev.altKey && ev.ctrlKey && !ev.metaKey);
2300
2301 if (ev.type == 'keypress') {
2302 return thirdLevelKey;
2303 }
2304
2305 // Don't invoke for arrows, pageDown, home, backspace, etc. (on non-keypress events)
2306 return thirdLevelKey && (!ev.keyCode || ev.keyCode > 47);
2307 }
2308
2309 // Expose to InputHandler (temporary)
2310 Terminal.prototype.matchColor = matchColor;
2311
2312 function matchColor(r1, g1, b1) {
2313 var hash = (r1 << 16) | (g1 << 8) | b1;
2314
2315 if (matchColor._cache[hash] != null) {
2316 return matchColor._cache[hash];
2317 }
2318
2319 var ldiff = Infinity
2320 , li = -1
2321 , i = 0
2322 , c
2323 , r2
2324 , g2
2325 , b2
2326 , diff;
2327
2328 for (; i < Terminal.vcolors.length; i++) {
2329 c = Terminal.vcolors[i];
2330 r2 = c[0];
2331 g2 = c[1];
2332 b2 = c[2];
2333
2334 diff = matchColor.distance(r1, g1, b1, r2, g2, b2);
2335
2336 if (diff === 0) {
2337 li = i;
2338 break;
2339 }
2340
2341 if (diff < ldiff) {
2342 ldiff = diff;
2343 li = i;
2344 }
2345 }
2346
2347 return matchColor._cache[hash] = li;
2348 }
2349
2350 matchColor._cache = {};
2351
2352 // http://stackoverflow.com/questions/1633828
2353 matchColor.distance = function(r1, g1, b1, r2, g2, b2) {
2354 return Math.pow(30 * (r1 - r2), 2)
2355 + Math.pow(59 * (g1 - g2), 2)
2356 + Math.pow(11 * (b1 - b2), 2);
2357 };
2358
2359 function each(obj, iter, con) {
2360 if (obj.forEach) return obj.forEach(iter, con);
2361 for (var i = 0; i < obj.length; i++) {
2362 iter.call(con, obj[i], i, obj);
2363 }
2364 }
2365
2366 function wasMondifierKeyOnlyEvent(ev) {
2367 return ev.keyCode === 16 || // Shift
2368 ev.keyCode === 17 || // Ctrl
2369 ev.keyCode === 18; // Alt
2370 }
2371
2372 function keys(obj) {
2373 if (Object.keys) return Object.keys(obj);
2374 var key, keys = [];
2375 for (key in obj) {
2376 if (Object.prototype.hasOwnProperty.call(obj, key)) {
2377 keys.push(key);
2378 }
2379 }
2380 return keys;
2381 }
2382
2383 /**
2384 * Expose
2385 */
2386
2387 Terminal.EventEmitter = EventEmitter;
2388 Terminal.inherits = inherits;
2389
2390 /**
2391 * Adds an event listener to the terminal.
2392 *
2393 * @param {string} event The name of the event. TODO: Document all event types
2394 * @param {function} callback The function to call when the event is triggered.
2395 */
2396 Terminal.on = on;
2397 Terminal.off = off;
2398 Terminal.cancel = cancel;
2399
2400 module.exports = Terminal;