2010-06-08 03:03:57 +04:00
|
|
|
// Inspiration for this code comes from Salvatore Sanfilippo's linenoise.
|
2011-11-01 23:52:35 +04:00
|
|
|
// https://github.com/antirez/linenoise
|
2010-05-31 22:50:35 +04:00
|
|
|
// Reference:
|
|
|
|
// * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
|
|
|
|
// * http://www.3waylabs.com/nw/WWW/products/wizcon/vt220.html
|
|
|
|
|
2014-11-22 18:59:48 +03:00
|
|
|
'use strict';
|
|
|
|
|
2015-01-21 19:36:59 +03:00
|
|
|
const kHistorySize = 30;
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2015-01-21 19:36:59 +03:00
|
|
|
const util = require('util');
|
2016-01-15 06:49:24 +03:00
|
|
|
const debug = util.debuglog('readline');
|
2015-01-21 19:36:59 +03:00
|
|
|
const inherits = util.inherits;
|
2015-05-29 20:35:43 +03:00
|
|
|
const Buffer = require('buffer').Buffer;
|
2015-09-17 01:45:29 +03:00
|
|
|
const EventEmitter = require('events');
|
2015-11-16 22:09:26 +03:00
|
|
|
const internalReadline = require('internal/readline');
|
|
|
|
const emitKeys = internalReadline.emitKeys;
|
|
|
|
const getStringWidth = internalReadline.getStringWidth;
|
|
|
|
const isFullWidthCodePoint = internalReadline.isFullWidthCodePoint;
|
|
|
|
const stripVTControlCharacters = internalReadline.stripVTControlCharacters;
|
2010-05-31 22:50:35 +04:00
|
|
|
|
|
|
|
|
2012-03-27 02:21:25 +04:00
|
|
|
exports.createInterface = function(input, output, completer, terminal) {
|
|
|
|
var rl;
|
|
|
|
if (arguments.length === 1) {
|
|
|
|
rl = new Interface(input);
|
|
|
|
} else {
|
|
|
|
rl = new Interface(input, output, completer, terminal);
|
|
|
|
}
|
|
|
|
return rl;
|
2010-05-31 22:50:35 +04:00
|
|
|
};
|
|
|
|
|
2010-11-12 09:36:39 +03:00
|
|
|
|
2012-03-27 02:21:25 +04:00
|
|
|
function Interface(input, output, completer, terminal) {
|
2011-01-19 22:46:14 +03:00
|
|
|
if (!(this instanceof Interface)) {
|
2015-04-09 18:55:26 +03:00
|
|
|
// call the constructor preserving original number of arguments
|
|
|
|
const self = Object.create(Interface.prototype);
|
|
|
|
Interface.apply(self, arguments);
|
|
|
|
return self;
|
2011-01-19 22:46:14 +03:00
|
|
|
}
|
2012-03-27 02:21:25 +04:00
|
|
|
|
2013-01-30 05:50:44 +04:00
|
|
|
this._sawReturn = false;
|
2016-05-13 10:54:31 +03:00
|
|
|
this.isCompletionEnabled = true;
|
2016-07-16 00:33:16 +03:00
|
|
|
this._previousKey = null;
|
2013-01-30 05:50:44 +04:00
|
|
|
|
2012-06-12 23:53:08 +04:00
|
|
|
EventEmitter.call(this);
|
2015-04-23 10:35:53 +03:00
|
|
|
var historySize;
|
2016-06-03 04:31:23 +03:00
|
|
|
let prompt = '> ';
|
2012-06-12 23:53:08 +04:00
|
|
|
|
2012-03-27 02:21:25 +04:00
|
|
|
if (arguments.length === 1) {
|
|
|
|
// an options object was given
|
|
|
|
output = input.output;
|
|
|
|
completer = input.completer;
|
|
|
|
terminal = input.terminal;
|
2015-04-23 10:35:53 +03:00
|
|
|
historySize = input.historySize;
|
2016-06-03 04:31:23 +03:00
|
|
|
if (input.prompt !== undefined) {
|
|
|
|
prompt = input.prompt;
|
|
|
|
}
|
2012-03-27 02:21:25 +04:00
|
|
|
input = input.input;
|
|
|
|
}
|
|
|
|
|
2015-05-21 07:17:10 +03:00
|
|
|
if (completer && typeof completer !== 'function') {
|
2015-10-15 00:10:25 +03:00
|
|
|
throw new TypeError('Argument "completer" must be a function');
|
2011-09-14 19:07:58 +04:00
|
|
|
}
|
|
|
|
|
2016-04-23 01:58:40 +03:00
|
|
|
if (historySize === undefined) {
|
|
|
|
historySize = kHistorySize;
|
|
|
|
}
|
|
|
|
|
2015-04-23 10:35:53 +03:00
|
|
|
if (typeof historySize !== 'number' ||
|
|
|
|
isNaN(historySize) ||
|
|
|
|
historySize < 0) {
|
2015-10-15 00:10:25 +03:00
|
|
|
throw new TypeError('Argument "historySize" must be a positive number');
|
2015-04-23 10:35:53 +03:00
|
|
|
}
|
|
|
|
|
2012-03-27 02:21:25 +04:00
|
|
|
// backwards compat; check the isTTY prop of the output stream
|
|
|
|
// when `terminal` was not specified
|
2015-01-29 04:05:53 +03:00
|
|
|
if (terminal === undefined && !(output === null || output === undefined)) {
|
2012-03-27 02:21:25 +04:00
|
|
|
terminal = !!output.isTTY;
|
|
|
|
}
|
|
|
|
|
2011-01-19 22:46:14 +03:00
|
|
|
var self = this;
|
|
|
|
|
2010-05-31 22:50:35 +04:00
|
|
|
this.output = output;
|
2011-01-19 22:46:14 +03:00
|
|
|
this.input = input;
|
2015-04-23 10:35:53 +03:00
|
|
|
this.historySize = historySize;
|
2011-01-19 22:46:14 +03:00
|
|
|
|
2011-09-07 11:39:49 +04:00
|
|
|
// Check arity, 2 - for async, 1 for sync
|
2015-05-21 07:17:10 +03:00
|
|
|
if (typeof completer === 'function') {
|
|
|
|
this.completer = completer.length === 2 ? completer : function(v, cb) {
|
|
|
|
cb(null, completer(v));
|
|
|
|
};
|
|
|
|
}
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2016-06-03 04:31:23 +03:00
|
|
|
this.setPrompt(prompt);
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2012-03-27 02:21:25 +04:00
|
|
|
this.terminal = !!terminal;
|
2010-06-09 00:05:21 +04:00
|
|
|
|
2012-07-24 07:44:12 +04:00
|
|
|
function ondata(data) {
|
|
|
|
self._normalWrite(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onend() {
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof self._line_buffer === 'string' &&
|
|
|
|
self._line_buffer.length > 0) {
|
2014-01-22 05:53:23 +04:00
|
|
|
self.emit('line', self._line_buffer);
|
|
|
|
}
|
2012-07-24 07:44:12 +04:00
|
|
|
self.close();
|
|
|
|
}
|
|
|
|
|
2014-05-07 20:05:39 +04:00
|
|
|
function ontermend() {
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof self.line === 'string' && self.line.length > 0) {
|
2014-05-07 20:05:39 +04:00
|
|
|
self.emit('line', self.line);
|
|
|
|
}
|
|
|
|
self.close();
|
|
|
|
}
|
|
|
|
|
2012-07-24 07:44:12 +04:00
|
|
|
function onkeypress(s, key) {
|
|
|
|
self._ttyWrite(s, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onresize() {
|
|
|
|
self._refreshLine();
|
|
|
|
}
|
|
|
|
|
2012-03-27 02:21:25 +04:00
|
|
|
if (!this.terminal) {
|
2012-07-24 07:44:12 +04:00
|
|
|
input.on('data', ondata);
|
|
|
|
input.on('end', onend);
|
|
|
|
self.once('close', function() {
|
|
|
|
input.removeListener('data', ondata);
|
|
|
|
input.removeListener('end', onend);
|
2012-03-27 23:41:42 +04:00
|
|
|
});
|
2012-04-07 01:33:58 +04:00
|
|
|
var StringDecoder = require('string_decoder').StringDecoder; // lazy load
|
|
|
|
this._decoder = new StringDecoder('utf8');
|
2011-01-19 22:46:14 +03:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2016-05-13 10:54:31 +03:00
|
|
|
emitKeypressEvents(input, this);
|
2012-03-27 02:21:25 +04:00
|
|
|
|
2011-01-19 22:46:14 +03:00
|
|
|
// input usually refers to stdin
|
2012-07-24 07:44:12 +04:00
|
|
|
input.on('keypress', onkeypress);
|
2014-05-07 20:05:39 +04:00
|
|
|
input.on('end', ontermend);
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2010-06-09 00:05:21 +04:00
|
|
|
// Current line
|
2010-12-02 05:07:20 +03:00
|
|
|
this.line = '';
|
2010-06-09 00:05:21 +04:00
|
|
|
|
2012-05-22 02:41:56 +04:00
|
|
|
this._setRawMode(true);
|
2012-03-27 02:21:25 +04:00
|
|
|
this.terminal = true;
|
2010-05-31 22:50:35 +04:00
|
|
|
|
|
|
|
// Cursor position on the line.
|
|
|
|
this.cursor = 0;
|
|
|
|
|
|
|
|
this.history = [];
|
|
|
|
this.historyIndex = -1;
|
2010-09-13 08:23:53 +04:00
|
|
|
|
2015-01-29 04:05:53 +03:00
|
|
|
if (output !== null && output !== undefined)
|
2014-09-23 00:21:11 +04:00
|
|
|
output.on('resize', onresize);
|
|
|
|
|
2012-07-24 07:44:12 +04:00
|
|
|
self.once('close', function() {
|
|
|
|
input.removeListener('keypress', onkeypress);
|
2014-05-07 20:05:39 +04:00
|
|
|
input.removeListener('end', ontermend);
|
2015-01-29 04:05:53 +03:00
|
|
|
if (output !== null && output !== undefined) {
|
2014-09-23 00:21:11 +04:00
|
|
|
output.removeListener('resize', onresize);
|
|
|
|
}
|
2012-03-27 02:21:25 +04:00
|
|
|
});
|
2010-05-31 22:50:35 +04:00
|
|
|
}
|
2012-10-24 04:42:57 +04:00
|
|
|
|
|
|
|
input.resume();
|
2010-05-31 22:50:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
inherits(Interface, EventEmitter);
|
|
|
|
|
2016-05-15 08:29:19 +03:00
|
|
|
Object.defineProperty(Interface.prototype, 'columns', {
|
|
|
|
configurable: true,
|
|
|
|
enumerable: true,
|
|
|
|
get: function() {
|
|
|
|
var columns = Infinity;
|
|
|
|
if (this.output && this.output.columns)
|
|
|
|
columns = this.output.columns;
|
|
|
|
return columns;
|
|
|
|
}
|
2010-08-12 10:14:12 +04:00
|
|
|
});
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2013-03-16 06:18:30 +04:00
|
|
|
Interface.prototype.setPrompt = function(prompt) {
|
2010-05-31 22:50:35 +04:00
|
|
|
this._prompt = prompt;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-05-22 02:41:56 +04:00
|
|
|
Interface.prototype._setRawMode = function(mode) {
|
2016-05-08 04:29:43 +03:00
|
|
|
const wasInRawMode = this.input.isRaw;
|
|
|
|
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof this.input.setRawMode === 'function') {
|
2016-05-08 04:29:43 +03:00
|
|
|
this.input.setRawMode(mode);
|
2012-05-22 02:41:56 +04:00
|
|
|
}
|
2016-05-08 04:29:43 +03:00
|
|
|
|
|
|
|
return wasInRawMode;
|
2012-06-11 18:48:02 +04:00
|
|
|
};
|
2012-05-22 02:41:56 +04:00
|
|
|
|
|
|
|
|
2011-12-09 13:24:15 +04:00
|
|
|
Interface.prototype.prompt = function(preserveCursor) {
|
2012-02-15 18:08:26 +04:00
|
|
|
if (this.paused) this.resume();
|
2012-03-27 02:21:25 +04:00
|
|
|
if (this.terminal) {
|
2011-12-09 13:24:15 +04:00
|
|
|
if (!preserveCursor) this.cursor = 0;
|
2010-05-31 22:50:35 +04:00
|
|
|
this._refreshLine();
|
|
|
|
} else {
|
2014-09-23 00:21:11 +04:00
|
|
|
this._writeToOutput(this._prompt);
|
2010-05-31 22:50:35 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-12-30 12:34:31 +03:00
|
|
|
Interface.prototype.question = function(query, cb) {
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof cb === 'function') {
|
2010-12-31 05:28:30 +03:00
|
|
|
if (this._questionCallback) {
|
|
|
|
this.prompt();
|
|
|
|
} else {
|
|
|
|
this._oldPrompt = this._prompt;
|
|
|
|
this.setPrompt(query);
|
|
|
|
this._questionCallback = cb;
|
|
|
|
this.prompt();
|
|
|
|
}
|
2010-12-30 12:34:31 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Interface.prototype._onLine = function(line) {
|
|
|
|
if (this._questionCallback) {
|
|
|
|
var cb = this._questionCallback;
|
|
|
|
this._questionCallback = null;
|
|
|
|
this.setPrompt(this._oldPrompt);
|
2011-01-07 03:06:27 +03:00
|
|
|
cb(line);
|
2010-12-30 12:34:31 +03:00
|
|
|
} else {
|
|
|
|
this.emit('line', line);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-09-23 00:21:11 +04:00
|
|
|
Interface.prototype._writeToOutput = function _writeToOutput(stringToWrite) {
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof stringToWrite !== 'string')
|
2015-10-15 00:10:25 +03:00
|
|
|
throw new TypeError('"stringToWrite" argument must be a string');
|
2014-09-23 00:21:11 +04:00
|
|
|
|
2015-01-29 04:05:53 +03:00
|
|
|
if (this.output !== null && this.output !== undefined)
|
2014-09-23 00:21:11 +04:00
|
|
|
this.output.write(stringToWrite);
|
|
|
|
};
|
2010-12-30 12:34:31 +03:00
|
|
|
|
2010-12-02 05:07:20 +03:00
|
|
|
Interface.prototype._addHistory = function() {
|
|
|
|
if (this.line.length === 0) return '';
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2016-04-23 01:58:40 +03:00
|
|
|
// if the history is disabled then return the line
|
|
|
|
if (this.historySize === 0) return this.line;
|
|
|
|
|
2012-06-13 21:37:31 +04:00
|
|
|
if (this.history.length === 0 || this.history[0] !== this.line) {
|
|
|
|
this.history.unshift(this.line);
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2012-06-13 21:37:31 +04:00
|
|
|
// Only store so many
|
2015-04-23 10:35:53 +03:00
|
|
|
if (this.history.length > this.historySize) this.history.pop();
|
2012-06-13 21:37:31 +04:00
|
|
|
}
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2012-06-13 21:37:31 +04:00
|
|
|
this.historyIndex = -1;
|
2010-06-08 08:19:25 +04:00
|
|
|
return this.history[0];
|
2010-05-31 22:50:35 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-12-02 05:07:20 +03:00
|
|
|
Interface.prototype._refreshLine = function() {
|
2012-03-21 02:14:40 +04:00
|
|
|
// line length
|
|
|
|
var line = this._prompt + this.line;
|
2013-03-16 06:18:30 +04:00
|
|
|
var dispPos = this._getDisplayPos(line);
|
|
|
|
var lineCols = dispPos.cols;
|
|
|
|
var lineRows = dispPos.rows;
|
2012-03-21 02:14:40 +04:00
|
|
|
|
|
|
|
// cursor position
|
|
|
|
var cursorPos = this._getCursorPos();
|
|
|
|
|
|
|
|
// first move to the bottom of the current line, based on cursor pos
|
|
|
|
var prevRows = this.prevRows || 0;
|
|
|
|
if (prevRows > 0) {
|
2012-03-27 02:21:25 +04:00
|
|
|
exports.moveCursor(this.output, 0, -prevRows);
|
2012-03-21 02:14:40 +04:00
|
|
|
}
|
|
|
|
|
2010-05-31 22:50:35 +04:00
|
|
|
// Cursor to left edge.
|
2012-03-27 02:21:25 +04:00
|
|
|
exports.cursorTo(this.output, 0);
|
2012-03-21 02:14:40 +04:00
|
|
|
// erase data
|
2012-03-27 02:21:25 +04:00
|
|
|
exports.clearScreenDown(this.output);
|
2010-05-31 22:50:35 +04:00
|
|
|
|
|
|
|
// Write the prompt and the current buffer content.
|
2014-09-23 00:21:11 +04:00
|
|
|
this._writeToOutput(line);
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2012-03-21 02:14:40 +04:00
|
|
|
// Force terminal to allocate a new line
|
|
|
|
if (lineCols === 0) {
|
2014-09-23 00:21:11 +04:00
|
|
|
this._writeToOutput(' ');
|
2012-03-21 02:14:40 +04:00
|
|
|
}
|
2010-05-31 22:50:35 +04:00
|
|
|
|
|
|
|
// Move cursor to original position.
|
2012-03-27 02:21:25 +04:00
|
|
|
exports.cursorTo(this.output, cursorPos.cols);
|
2012-03-21 02:14:40 +04:00
|
|
|
|
|
|
|
var diff = lineRows - cursorPos.rows;
|
|
|
|
if (diff > 0) {
|
2012-03-27 02:21:25 +04:00
|
|
|
exports.moveCursor(this.output, 0, -diff);
|
2012-03-21 02:14:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
this.prevRows = cursorPos.rows;
|
2010-05-31 22:50:35 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-04-17 22:31:07 +04:00
|
|
|
Interface.prototype.close = function() {
|
|
|
|
if (this.closed) return;
|
2013-07-30 17:43:31 +04:00
|
|
|
this.pause();
|
2012-03-27 02:21:25 +04:00
|
|
|
if (this.terminal) {
|
2012-05-22 02:41:56 +04:00
|
|
|
this._setRawMode(false);
|
2010-12-31 02:46:47 +03:00
|
|
|
}
|
2012-04-17 22:31:07 +04:00
|
|
|
this.closed = true;
|
|
|
|
this.emit('close');
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Interface.prototype.pause = function() {
|
|
|
|
if (this.paused) return;
|
2012-02-15 18:08:26 +04:00
|
|
|
this.input.pause();
|
|
|
|
this.paused = true;
|
|
|
|
this.emit('pause');
|
2013-08-28 05:59:58 +04:00
|
|
|
return this;
|
2010-12-31 02:46:47 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Interface.prototype.resume = function() {
|
2012-04-17 22:31:07 +04:00
|
|
|
if (!this.paused) return;
|
2012-02-15 18:08:26 +04:00
|
|
|
this.input.resume();
|
|
|
|
this.paused = false;
|
|
|
|
this.emit('resume');
|
2013-08-28 05:59:58 +04:00
|
|
|
return this;
|
2010-12-31 02:46:47 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
Interface.prototype.write = function(d, key) {
|
2012-02-15 18:08:26 +04:00
|
|
|
if (this.paused) this.resume();
|
2012-04-19 01:23:20 +04:00
|
|
|
this.terminal ? this._ttyWrite(d, key) : this._normalWrite(d);
|
2010-05-31 22:50:35 +04:00
|
|
|
};
|
|
|
|
|
2013-01-30 05:50:44 +04:00
|
|
|
// \r\n, \n, or \r followed by something other than \n
|
2015-01-21 19:36:59 +03:00
|
|
|
const lineEnding = /\r?\n|\r(?!\n)/;
|
2010-12-02 05:07:20 +03:00
|
|
|
Interface.prototype._normalWrite = function(b) {
|
2015-01-29 04:05:53 +03:00
|
|
|
if (b === undefined) {
|
2012-04-06 22:41:59 +04:00
|
|
|
return;
|
|
|
|
}
|
2012-04-07 01:33:58 +04:00
|
|
|
var string = this._decoder.write(b);
|
2013-01-30 05:50:44 +04:00
|
|
|
if (this._sawReturn) {
|
|
|
|
string = string.replace(/^\n/, '');
|
|
|
|
this._sawReturn = false;
|
|
|
|
}
|
|
|
|
|
2014-09-14 19:40:49 +04:00
|
|
|
// Run test() on the new string chunk, not on the entire line buffer.
|
|
|
|
var newPartContainsEnding = lineEnding.test(string);
|
|
|
|
|
2012-04-07 01:33:58 +04:00
|
|
|
if (this._line_buffer) {
|
|
|
|
string = this._line_buffer + string;
|
|
|
|
this._line_buffer = null;
|
|
|
|
}
|
2014-09-14 19:40:49 +04:00
|
|
|
if (newPartContainsEnding) {
|
2016-03-17 07:23:52 +03:00
|
|
|
this._sawReturn = string.endsWith('\r');
|
2013-01-30 05:50:44 +04:00
|
|
|
|
2012-04-07 01:33:58 +04:00
|
|
|
// got one or more newlines; process into "line" events
|
2013-01-30 05:50:44 +04:00
|
|
|
var lines = string.split(lineEnding);
|
2012-04-06 22:41:59 +04:00
|
|
|
// either '' or (concievably) the unfinished portion of the next line
|
2012-04-07 01:33:58 +04:00
|
|
|
string = lines.pop();
|
|
|
|
this._line_buffer = string;
|
2012-04-06 22:41:59 +04:00
|
|
|
lines.forEach(function(line) {
|
2012-11-07 02:54:58 +04:00
|
|
|
this._onLine(line);
|
2012-04-06 22:41:59 +04:00
|
|
|
}, this);
|
2012-04-07 01:33:58 +04:00
|
|
|
} else if (string) {
|
|
|
|
// no newlines this time, save what we have for next time
|
|
|
|
this._line_buffer = string;
|
2012-04-06 22:41:59 +04:00
|
|
|
}
|
2010-05-31 22:50:35 +04:00
|
|
|
};
|
|
|
|
|
2010-12-02 05:07:20 +03:00
|
|
|
Interface.prototype._insertString = function(c) {
|
2010-08-09 13:18:32 +04:00
|
|
|
if (this.cursor < this.line.length) {
|
|
|
|
var beg = this.line.slice(0, this.cursor);
|
|
|
|
var end = this.line.slice(this.cursor, this.line.length);
|
|
|
|
this.line = beg + c + end;
|
|
|
|
this.cursor += c.length;
|
|
|
|
this._refreshLine();
|
|
|
|
} else {
|
|
|
|
this.line += c;
|
|
|
|
this.cursor += c.length;
|
2012-03-23 22:24:06 +04:00
|
|
|
|
|
|
|
if (this._getCursorPos().cols === 0) {
|
2012-03-29 03:27:57 +04:00
|
|
|
this._refreshLine();
|
2012-03-23 22:24:06 +04:00
|
|
|
} else {
|
2014-09-23 00:21:11 +04:00
|
|
|
this._writeToOutput(c);
|
2012-03-23 22:24:06 +04:00
|
|
|
}
|
2012-03-21 02:14:40 +04:00
|
|
|
|
|
|
|
// a hack to get the line refreshed if it's needed
|
|
|
|
this._moveCursor(0);
|
2010-08-09 13:18:32 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-07-16 00:33:16 +03:00
|
|
|
Interface.prototype._tabComplete = function(lastKeypressWasTab) {
|
2010-08-09 13:18:32 +04:00
|
|
|
var self = this;
|
|
|
|
|
2011-09-08 13:03:27 +04:00
|
|
|
self.pause();
|
|
|
|
self.completer(self.line.slice(0, self.cursor), function(err, rv) {
|
2011-09-07 11:39:49 +04:00
|
|
|
self.resume();
|
|
|
|
|
|
|
|
if (err) {
|
2016-01-15 06:49:24 +03:00
|
|
|
debug('tab completion error %j', err);
|
2011-09-07 11:39:49 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-13 00:04:50 +03:00
|
|
|
const completions = rv[0];
|
|
|
|
const completeOn = rv[1]; // the text that was completed
|
2011-09-07 11:39:49 +04:00
|
|
|
if (completions && completions.length) {
|
|
|
|
// Apply/show completions.
|
2016-07-16 00:33:16 +03:00
|
|
|
if (lastKeypressWasTab) {
|
2014-09-23 00:21:11 +04:00
|
|
|
self._writeToOutput('\r\n');
|
2011-09-07 11:39:49 +04:00
|
|
|
var width = completions.reduce(function(a, b) {
|
|
|
|
return a.length > b.length ? a : b;
|
|
|
|
}).length + 2; // 2 space padding
|
2015-09-11 17:47:41 +03:00
|
|
|
var maxColumns = Math.floor(self.columns / width);
|
|
|
|
if (!maxColumns || maxColumns === Infinity) {
|
|
|
|
maxColumns = 1;
|
|
|
|
}
|
2011-09-07 11:39:49 +04:00
|
|
|
var group = [], c;
|
|
|
|
for (var i = 0, compLen = completions.length; i < compLen; i++) {
|
|
|
|
c = completions[i];
|
|
|
|
if (c === '') {
|
2012-07-07 06:41:01 +04:00
|
|
|
handleGroup(self, group, width, maxColumns);
|
2011-09-07 11:39:49 +04:00
|
|
|
group = [];
|
|
|
|
} else {
|
|
|
|
group.push(c);
|
|
|
|
}
|
|
|
|
}
|
2012-07-07 06:41:01 +04:00
|
|
|
handleGroup(self, group, width, maxColumns);
|
2016-07-16 00:33:16 +03:00
|
|
|
}
|
2011-09-07 11:39:49 +04:00
|
|
|
|
2016-07-16 00:33:16 +03:00
|
|
|
// If there is a common prefix to all matches, then apply that portion.
|
|
|
|
const f = completions.filter(function(e) { if (e) return e; });
|
|
|
|
const prefix = commonPrefix(f);
|
|
|
|
if (prefix.length > completeOn.length) {
|
|
|
|
self._insertString(prefix.slice(completeOn.length));
|
2011-09-07 11:39:49 +04:00
|
|
|
}
|
2016-07-16 00:33:16 +03:00
|
|
|
|
2011-09-09 00:05:21 +04:00
|
|
|
self._refreshLine();
|
2010-08-09 13:18:32 +04:00
|
|
|
}
|
2011-09-07 11:39:49 +04:00
|
|
|
});
|
2010-08-09 13:18:32 +04:00
|
|
|
};
|
|
|
|
|
2012-07-05 01:01:03 +04:00
|
|
|
// this = Interface instance
|
2012-07-07 06:41:01 +04:00
|
|
|
function handleGroup(self, group, width, maxColumns) {
|
2012-07-05 01:01:03 +04:00
|
|
|
if (group.length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var minRows = Math.ceil(group.length / maxColumns);
|
|
|
|
for (var row = 0; row < minRows; row++) {
|
|
|
|
for (var col = 0; col < maxColumns; col++) {
|
|
|
|
var idx = row * maxColumns + col;
|
|
|
|
if (idx >= group.length) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
var item = group[idx];
|
2014-09-23 00:21:11 +04:00
|
|
|
self._writeToOutput(item);
|
2012-07-05 01:01:03 +04:00
|
|
|
if (col < maxColumns - 1) {
|
|
|
|
for (var s = 0, itemLen = item.length; s < width - itemLen;
|
|
|
|
s++) {
|
2014-09-23 00:21:11 +04:00
|
|
|
self._writeToOutput(' ');
|
2012-07-05 01:01:03 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-23 00:21:11 +04:00
|
|
|
self._writeToOutput('\r\n');
|
2012-07-05 01:01:03 +04:00
|
|
|
}
|
2014-09-23 00:21:11 +04:00
|
|
|
self._writeToOutput('\r\n');
|
2012-07-05 01:01:03 +04:00
|
|
|
}
|
2011-01-24 21:55:30 +03:00
|
|
|
|
2010-08-18 03:53:27 +04:00
|
|
|
function commonPrefix(strings) {
|
|
|
|
if (!strings || strings.length == 0) {
|
2010-12-02 05:07:20 +03:00
|
|
|
return '';
|
2010-08-18 03:53:27 +04:00
|
|
|
}
|
2016-07-16 00:33:16 +03:00
|
|
|
if (strings.length === 1) return strings[0];
|
2010-08-18 03:53:27 +04:00
|
|
|
var sorted = strings.slice().sort();
|
|
|
|
var min = sorted[0];
|
|
|
|
var max = sorted[sorted.length - 1];
|
2010-09-23 16:14:16 +04:00
|
|
|
for (var i = 0, len = min.length; i < len; i++) {
|
2010-08-18 03:53:27 +04:00
|
|
|
if (min[i] != max[i]) {
|
|
|
|
return min.slice(0, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return min;
|
|
|
|
}
|
|
|
|
|
2011-01-24 21:55:30 +03:00
|
|
|
|
2011-01-25 05:54:26 +03:00
|
|
|
Interface.prototype._wordLeft = function() {
|
|
|
|
if (this.cursor > 0) {
|
|
|
|
var leading = this.line.slice(0, this.cursor);
|
|
|
|
var match = leading.match(/([^\w\s]+|\w+|)\s*$/);
|
2012-03-21 02:14:40 +04:00
|
|
|
this._moveCursor(-match[0].length);
|
2011-01-25 05:54:26 +03:00
|
|
|
}
|
2011-07-29 21:03:05 +04:00
|
|
|
};
|
2011-01-25 05:54:26 +03:00
|
|
|
|
|
|
|
|
|
|
|
Interface.prototype._wordRight = function() {
|
|
|
|
if (this.cursor < this.line.length) {
|
|
|
|
var trailing = this.line.slice(this.cursor);
|
|
|
|
var match = trailing.match(/^(\s+|\W+|\w+)\s*/);
|
2012-03-21 02:14:40 +04:00
|
|
|
this._moveCursor(match[0].length);
|
2011-01-25 05:54:26 +03:00
|
|
|
}
|
2011-07-29 21:03:05 +04:00
|
|
|
};
|
2011-01-25 05:54:26 +03:00
|
|
|
|
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
Interface.prototype._deleteLeft = function() {
|
|
|
|
if (this.cursor > 0 && this.line.length > 0) {
|
|
|
|
this.line = this.line.slice(0, this.cursor - 1) +
|
|
|
|
this.line.slice(this.cursor, this.line.length);
|
|
|
|
|
|
|
|
this.cursor--;
|
|
|
|
this._refreshLine();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-01-24 21:55:30 +03:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
Interface.prototype._deleteRight = function() {
|
|
|
|
this.line = this.line.slice(0, this.cursor) +
|
|
|
|
this.line.slice(this.cursor + 1, this.line.length);
|
|
|
|
this._refreshLine();
|
2011-01-24 21:55:30 +03:00
|
|
|
};
|
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
|
2011-01-25 05:54:26 +03:00
|
|
|
Interface.prototype._deleteWordLeft = function() {
|
|
|
|
if (this.cursor > 0) {
|
|
|
|
var leading = this.line.slice(0, this.cursor);
|
|
|
|
var match = leading.match(/([^\w\s]+|\w+|)\s*$/);
|
|
|
|
leading = leading.slice(0, leading.length - match[0].length);
|
|
|
|
this.line = leading + this.line.slice(this.cursor, this.line.length);
|
|
|
|
this.cursor = leading.length;
|
|
|
|
this._refreshLine();
|
|
|
|
}
|
2011-07-29 21:03:05 +04:00
|
|
|
};
|
2011-01-25 05:54:26 +03:00
|
|
|
|
|
|
|
|
|
|
|
Interface.prototype._deleteWordRight = function() {
|
|
|
|
if (this.cursor < this.line.length) {
|
|
|
|
var trailing = this.line.slice(this.cursor);
|
|
|
|
var match = trailing.match(/^(\s+|\W+|\w+)\s*/);
|
|
|
|
this.line = this.line.slice(0, this.cursor) +
|
|
|
|
trailing.slice(match[0].length);
|
|
|
|
this._refreshLine();
|
|
|
|
}
|
2011-07-29 21:03:05 +04:00
|
|
|
};
|
2011-01-25 05:54:26 +03:00
|
|
|
|
|
|
|
|
|
|
|
Interface.prototype._deleteLineLeft = function() {
|
|
|
|
this.line = this.line.slice(this.cursor);
|
|
|
|
this.cursor = 0;
|
|
|
|
this._refreshLine();
|
2011-07-29 21:03:05 +04:00
|
|
|
};
|
2011-01-25 05:54:26 +03:00
|
|
|
|
|
|
|
|
|
|
|
Interface.prototype._deleteLineRight = function() {
|
|
|
|
this.line = this.line.slice(0, this.cursor);
|
|
|
|
this._refreshLine();
|
2011-07-29 21:03:05 +04:00
|
|
|
};
|
2011-01-25 05:54:26 +03:00
|
|
|
|
|
|
|
|
2012-03-21 02:14:40 +04:00
|
|
|
Interface.prototype.clearLine = function() {
|
|
|
|
this._moveCursor(+Infinity);
|
2014-09-23 00:21:11 +04:00
|
|
|
this._writeToOutput('\r\n');
|
2012-03-21 02:14:40 +04:00
|
|
|
this.line = '';
|
|
|
|
this.cursor = 0;
|
|
|
|
this.prevRows = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
Interface.prototype._line = function() {
|
|
|
|
var line = this._addHistory();
|
2012-03-21 02:14:40 +04:00
|
|
|
this.clearLine();
|
2011-01-14 05:44:05 +03:00
|
|
|
this._onLine(line);
|
|
|
|
};
|
|
|
|
|
2011-01-24 21:55:30 +03:00
|
|
|
|
2010-12-02 05:07:20 +03:00
|
|
|
Interface.prototype._historyNext = function() {
|
2010-06-08 03:43:50 +04:00
|
|
|
if (this.historyIndex > 0) {
|
|
|
|
this.historyIndex--;
|
2010-06-08 08:19:25 +04:00
|
|
|
this.line = this.history[this.historyIndex];
|
|
|
|
this.cursor = this.line.length; // set cursor to end of line.
|
2010-06-08 03:43:50 +04:00
|
|
|
this._refreshLine();
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2010-06-08 03:43:50 +04:00
|
|
|
} else if (this.historyIndex === 0) {
|
|
|
|
this.historyIndex = -1;
|
|
|
|
this.cursor = 0;
|
2010-06-08 08:19:25 +04:00
|
|
|
this.line = '';
|
2010-06-08 03:43:50 +04:00
|
|
|
this._refreshLine();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-01-24 21:55:30 +03:00
|
|
|
|
2010-12-02 05:07:20 +03:00
|
|
|
Interface.prototype._historyPrev = function() {
|
2010-06-08 03:43:50 +04:00
|
|
|
if (this.historyIndex + 1 < this.history.length) {
|
|
|
|
this.historyIndex++;
|
2010-06-08 08:19:25 +04:00
|
|
|
this.line = this.history[this.historyIndex];
|
|
|
|
this.cursor = this.line.length; // set cursor to end of line.
|
2010-06-08 03:43:50 +04:00
|
|
|
|
|
|
|
this._refreshLine();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-01-14 03:04:33 +03:00
|
|
|
|
2013-03-16 06:18:30 +04:00
|
|
|
// Returns the last character's display position of the given string
|
|
|
|
Interface.prototype._getDisplayPos = function(str) {
|
|
|
|
var offset = 0;
|
|
|
|
var col = this.columns;
|
2014-03-09 10:46:54 +04:00
|
|
|
var row = 0;
|
2013-03-16 06:18:30 +04:00
|
|
|
var code;
|
2013-06-04 19:01:14 +04:00
|
|
|
str = stripVTControlCharacters(str);
|
2013-03-16 06:18:30 +04:00
|
|
|
for (var i = 0, len = str.length; i < len; i++) {
|
2015-02-12 23:09:34 +03:00
|
|
|
code = str.codePointAt(i);
|
2013-03-16 06:18:30 +04:00
|
|
|
if (code >= 0x10000) { // surrogates
|
|
|
|
i++;
|
|
|
|
}
|
2014-03-09 10:46:54 +04:00
|
|
|
if (code === 0x0a) { // new line \n
|
|
|
|
offset = 0;
|
|
|
|
row += 1;
|
|
|
|
continue;
|
|
|
|
}
|
2013-03-16 06:18:30 +04:00
|
|
|
if (isFullWidthCodePoint(code)) {
|
|
|
|
if ((offset + 1) % col === 0) {
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
offset += 2;
|
|
|
|
} else {
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var cols = offset % col;
|
2014-03-09 10:46:54 +04:00
|
|
|
var rows = row + (offset - cols) / col;
|
2013-03-16 06:18:30 +04:00
|
|
|
return {cols: cols, rows: rows};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-03-21 02:14:40 +04:00
|
|
|
// Returns current cursor's position and line
|
|
|
|
Interface.prototype._getCursorPos = function() {
|
|
|
|
var columns = this.columns;
|
2013-03-16 06:18:30 +04:00
|
|
|
var strBeforeCursor = this._prompt + this.line.substring(0, this.cursor);
|
2013-06-04 19:01:14 +04:00
|
|
|
var dispPos = this._getDisplayPos(stripVTControlCharacters(strBeforeCursor));
|
2013-03-16 06:18:30 +04:00
|
|
|
var cols = dispPos.cols;
|
|
|
|
var rows = dispPos.rows;
|
|
|
|
// If the cursor is on a full-width character which steps over the line,
|
|
|
|
// move the cursor to the beginning of the next line.
|
|
|
|
if (cols + 1 === columns &&
|
|
|
|
this.cursor < this.line.length &&
|
2015-02-12 23:09:34 +03:00
|
|
|
isFullWidthCodePoint(this.line.codePointAt(this.cursor))) {
|
2013-03-16 06:18:30 +04:00
|
|
|
rows++;
|
|
|
|
cols = 0;
|
|
|
|
}
|
2012-03-21 02:14:40 +04:00
|
|
|
return {cols: cols, rows: rows};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// This function moves cursor dx places to the right
|
|
|
|
// (-dx for left) and refreshes the line if it is needed
|
|
|
|
Interface.prototype._moveCursor = function(dx) {
|
|
|
|
var oldcursor = this.cursor;
|
|
|
|
var oldPos = this._getCursorPos();
|
|
|
|
this.cursor += dx;
|
|
|
|
|
|
|
|
// bounds check
|
|
|
|
if (this.cursor < 0) this.cursor = 0;
|
2013-03-16 06:18:30 +04:00
|
|
|
else if (this.cursor > this.line.length) this.cursor = this.line.length;
|
2012-03-21 02:14:40 +04:00
|
|
|
|
|
|
|
var newPos = this._getCursorPos();
|
|
|
|
|
|
|
|
// check if cursors are in the same line
|
2012-03-23 22:24:06 +04:00
|
|
|
if (oldPos.rows === newPos.rows) {
|
2013-03-16 06:18:30 +04:00
|
|
|
var diffCursor = this.cursor - oldcursor;
|
|
|
|
var diffWidth;
|
|
|
|
if (diffCursor < 0) {
|
|
|
|
diffWidth = -getStringWidth(
|
|
|
|
this.line.substring(this.cursor, oldcursor)
|
|
|
|
);
|
|
|
|
} else if (diffCursor > 0) {
|
|
|
|
diffWidth = getStringWidth(
|
|
|
|
this.line.substring(this.cursor, oldcursor)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
exports.moveCursor(this.output, diffWidth, 0);
|
2012-03-21 02:14:40 +04:00
|
|
|
this.prevRows = newPos.rows;
|
|
|
|
} else {
|
|
|
|
this._refreshLine();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-06-08 03:43:50 +04:00
|
|
|
// handle a write from the tty
|
2011-01-14 05:44:05 +03:00
|
|
|
Interface.prototype._ttyWrite = function(s, key) {
|
2016-07-16 00:33:16 +03:00
|
|
|
const previousKey = this._previousKey;
|
2011-01-14 05:44:05 +03:00
|
|
|
key = key || {};
|
2016-07-16 00:33:16 +03:00
|
|
|
this._previousKey = key;
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2012-03-06 10:22:51 +04:00
|
|
|
// Ignore escape key - Fixes #2876
|
|
|
|
if (key.name == 'escape') return;
|
|
|
|
|
2011-01-25 05:54:26 +03:00
|
|
|
if (key.ctrl && key.shift) {
|
|
|
|
/* Control and shift pressed */
|
|
|
|
switch (key.name) {
|
2011-07-29 21:03:05 +04:00
|
|
|
case 'backspace':
|
2011-01-25 05:54:26 +03:00
|
|
|
this._deleteLineLeft();
|
|
|
|
break;
|
|
|
|
|
2011-07-29 21:03:05 +04:00
|
|
|
case 'delete':
|
2011-01-25 05:54:26 +03:00
|
|
|
this._deleteLineRight();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (key.ctrl) {
|
2011-01-14 05:44:05 +03:00
|
|
|
/* Control key pressed */
|
2010-12-02 05:07:20 +03:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
switch (key.name) {
|
|
|
|
case 'c':
|
2015-08-11 21:31:50 +03:00
|
|
|
if (this.listenerCount('SIGINT') > 0) {
|
2011-01-14 05:44:05 +03:00
|
|
|
this.emit('SIGINT');
|
|
|
|
} else {
|
2012-04-17 22:31:07 +04:00
|
|
|
// This readline instance is finished
|
|
|
|
this.close();
|
2011-01-14 05:44:05 +03:00
|
|
|
}
|
|
|
|
break;
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'h': // delete left
|
|
|
|
this._deleteLeft();
|
|
|
|
break;
|
2010-05-31 22:50:35 +04:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'd': // delete right or EOF
|
|
|
|
if (this.cursor === 0 && this.line.length === 0) {
|
2012-04-17 22:31:07 +04:00
|
|
|
// This readline instance is finished
|
|
|
|
this.close();
|
2011-01-14 05:44:05 +03:00
|
|
|
} else if (this.cursor < this.line.length) {
|
|
|
|
this._deleteRight();
|
|
|
|
}
|
|
|
|
break;
|
2010-12-02 05:07:20 +03:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'u': // delete the whole line
|
|
|
|
this.cursor = 0;
|
|
|
|
this.line = '';
|
2010-06-08 03:43:50 +04:00
|
|
|
this._refreshLine();
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
2010-06-08 03:43:50 +04:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'k': // delete from current to end of line
|
2011-01-25 05:54:26 +03:00
|
|
|
this._deleteLineRight();
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
2010-09-04 08:53:53 +04:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'a': // go to the start of the line
|
2012-03-21 02:14:40 +04:00
|
|
|
this._moveCursor(-Infinity);
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
2010-09-13 08:47:56 +04:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'e': // go to the end of the line
|
2012-03-21 02:14:40 +04:00
|
|
|
this._moveCursor(+Infinity);
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
2010-09-13 08:47:56 +04:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'b': // back one character
|
2012-03-21 02:14:40 +04:00
|
|
|
this._moveCursor(-1);
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'f': // forward one character
|
2012-03-21 02:14:40 +04:00
|
|
|
this._moveCursor(+1);
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
|
|
|
|
2013-06-15 11:48:36 +04:00
|
|
|
case 'l': // clear the whole screen
|
|
|
|
exports.cursorTo(this.output, 0, 0);
|
|
|
|
exports.clearScreenDown(this.output);
|
|
|
|
this._refreshLine();
|
|
|
|
break;
|
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'n': // next history item
|
|
|
|
this._historyNext();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p': // previous history item
|
|
|
|
this._historyPrev();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'z':
|
2012-02-17 17:53:24 +04:00
|
|
|
if (process.platform == 'win32') break;
|
2015-08-11 21:31:50 +03:00
|
|
|
if (this.listenerCount('SIGTSTP') > 0) {
|
2012-02-15 18:08:26 +04:00
|
|
|
this.emit('SIGTSTP');
|
|
|
|
} else {
|
|
|
|
process.once('SIGCONT', (function(self) {
|
|
|
|
return function() {
|
|
|
|
// Don't raise events if stream has already been abandoned.
|
|
|
|
if (!self.paused) {
|
|
|
|
// Stream must be paused and resumed after SIGCONT to catch
|
|
|
|
// SIGINT, SIGTSTP, and EOF.
|
|
|
|
self.pause();
|
|
|
|
self.emit('SIGCONT');
|
|
|
|
}
|
2013-08-13 02:01:05 +04:00
|
|
|
// explicitly re-enable "raw mode" and move the cursor to
|
2012-06-11 18:48:02 +04:00
|
|
|
// the correct position.
|
|
|
|
// See https://github.com/joyent/node/issues/3295.
|
2012-05-22 02:43:26 +04:00
|
|
|
self._setRawMode(true);
|
|
|
|
self._refreshLine();
|
2012-02-15 18:08:26 +04:00
|
|
|
};
|
|
|
|
})(this));
|
2012-05-22 02:43:26 +04:00
|
|
|
this._setRawMode(false);
|
2012-02-15 18:08:26 +04:00
|
|
|
process.kill(process.pid, 'SIGTSTP');
|
|
|
|
}
|
2012-02-17 17:53:24 +04:00
|
|
|
break;
|
2011-01-25 05:54:26 +03:00
|
|
|
|
|
|
|
case 'w': // delete backwards to a word boundary
|
|
|
|
case 'backspace':
|
|
|
|
this._deleteWordLeft();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'delete': // delete forward to a word boundary
|
|
|
|
this._deleteWordRight();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'left':
|
|
|
|
this._wordLeft();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'right':
|
|
|
|
this._wordRight();
|
2012-02-17 17:53:24 +04:00
|
|
|
break;
|
2011-01-14 05:44:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} else if (key.meta) {
|
|
|
|
/* Meta key pressed */
|
|
|
|
|
|
|
|
switch (key.name) {
|
|
|
|
case 'b': // backward word
|
2011-01-25 05:54:26 +03:00
|
|
|
this._wordLeft();
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'f': // forward word
|
2011-01-25 05:54:26 +03:00
|
|
|
this._wordRight();
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'd': // delete forward word
|
2011-01-25 03:09:41 +03:00
|
|
|
case 'delete':
|
2011-01-25 05:54:26 +03:00
|
|
|
this._deleteWordRight();
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
2011-01-25 03:09:41 +03:00
|
|
|
|
|
|
|
case 'backspace': // delete backwards to a word boundary
|
2011-01-25 05:54:26 +03:00
|
|
|
this._deleteWordLeft();
|
2011-01-25 03:09:41 +03:00
|
|
|
break;
|
2011-01-14 05:44:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* No modifier keys used */
|
|
|
|
|
2013-01-30 05:50:44 +04:00
|
|
|
// \r bookkeeping is only relevant if a \n comes right after.
|
|
|
|
if (this._sawReturn && key.name !== 'enter')
|
|
|
|
this._sawReturn = false;
|
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
switch (key.name) {
|
2013-01-30 05:50:44 +04:00
|
|
|
case 'return': // carriage return, i.e. \r
|
|
|
|
this._sawReturn = true;
|
2011-01-14 05:44:05 +03:00
|
|
|
this._line();
|
|
|
|
break;
|
|
|
|
|
2013-01-30 05:50:44 +04:00
|
|
|
case 'enter':
|
|
|
|
if (this._sawReturn)
|
2013-01-30 11:55:58 +04:00
|
|
|
this._sawReturn = false;
|
2013-01-30 05:50:44 +04:00
|
|
|
else
|
|
|
|
this._line();
|
|
|
|
break;
|
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'backspace':
|
|
|
|
this._deleteLeft();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'delete':
|
|
|
|
this._deleteRight();
|
|
|
|
break;
|
2010-09-13 08:47:56 +04:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'left':
|
2012-03-21 02:14:40 +04:00
|
|
|
this._moveCursor(-1);
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
2010-09-13 08:47:56 +04:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'right':
|
2012-03-21 02:14:40 +04:00
|
|
|
this._moveCursor(+1);
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
2010-09-13 08:47:56 +04:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'home':
|
2012-03-21 02:14:40 +04:00
|
|
|
this._moveCursor(-Infinity);
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'end':
|
2012-03-21 02:14:40 +04:00
|
|
|
this._moveCursor(+Infinity);
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
2010-09-13 08:47:56 +04:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'up':
|
2010-06-08 03:43:50 +04:00
|
|
|
this._historyPrev();
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
2010-09-13 08:47:56 +04:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
case 'down':
|
2010-06-08 03:43:50 +04:00
|
|
|
this._historyNext();
|
2011-01-14 05:44:05 +03:00
|
|
|
break;
|
2010-09-13 08:47:56 +04:00
|
|
|
|
2015-05-21 07:17:10 +03:00
|
|
|
case 'tab':
|
|
|
|
// If tab completion enabled, do that...
|
2016-05-13 10:54:31 +03:00
|
|
|
if (typeof this.completer === 'function' && this.isCompletionEnabled) {
|
2016-07-16 00:33:16 +03:00
|
|
|
const lastKeypressWasTab = previousKey && previousKey.name === 'tab';
|
|
|
|
this._tabComplete(lastKeypressWasTab);
|
2015-05-21 07:17:10 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// falls through
|
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
default:
|
2015-01-29 04:05:53 +03:00
|
|
|
if (s instanceof Buffer)
|
2011-01-14 05:44:05 +03:00
|
|
|
s = s.toString('utf-8');
|
2010-09-13 08:47:56 +04:00
|
|
|
|
2011-01-14 05:44:05 +03:00
|
|
|
if (s) {
|
|
|
|
var lines = s.split(/\r\n|\n|\r/);
|
|
|
|
for (var i = 0, len = lines.length; i < len; i++) {
|
|
|
|
if (i > 0) {
|
|
|
|
this._line();
|
|
|
|
}
|
|
|
|
this._insertString(lines[i]);
|
|
|
|
}
|
2010-08-09 13:18:32 +04:00
|
|
|
}
|
2011-01-14 05:44:05 +03:00
|
|
|
}
|
2010-05-31 22:50:35 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-01-24 21:55:30 +03:00
|
|
|
|
2010-08-08 22:52:31 +04:00
|
|
|
exports.Interface = Interface;
|
2012-03-27 02:21:25 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* accepts a readable Stream instance and makes it emit "keypress" events
|
|
|
|
*/
|
|
|
|
|
2015-05-03 21:11:33 +03:00
|
|
|
const KEYPRESS_DECODER = Symbol('keypress-decoder');
|
|
|
|
const ESCAPE_DECODER = Symbol('escape-decoder');
|
|
|
|
|
2016-05-13 10:54:31 +03:00
|
|
|
function emitKeypressEvents(stream, iface) {
|
2015-05-03 21:11:33 +03:00
|
|
|
if (stream[KEYPRESS_DECODER]) return;
|
2012-11-07 02:58:47 +04:00
|
|
|
var StringDecoder = require('string_decoder').StringDecoder; // lazy load
|
2015-05-03 21:11:33 +03:00
|
|
|
stream[KEYPRESS_DECODER] = new StringDecoder('utf8');
|
|
|
|
|
|
|
|
stream[ESCAPE_DECODER] = emitKeys(stream);
|
|
|
|
stream[ESCAPE_DECODER].next();
|
2012-03-27 02:21:25 +04:00
|
|
|
|
|
|
|
function onData(b) {
|
2015-08-11 21:31:50 +03:00
|
|
|
if (stream.listenerCount('keypress') > 0) {
|
2015-05-03 21:11:33 +03:00
|
|
|
var r = stream[KEYPRESS_DECODER].write(b);
|
|
|
|
if (r) {
|
|
|
|
for (var i = 0; i < r.length; i++) {
|
2016-05-13 10:54:31 +03:00
|
|
|
if (r[i] === '\t' && typeof r[i + 1] === 'string' && iface) {
|
|
|
|
iface.isCompletionEnabled = false;
|
|
|
|
}
|
|
|
|
|
2015-07-05 19:16:47 +03:00
|
|
|
try {
|
|
|
|
stream[ESCAPE_DECODER].next(r[i]);
|
|
|
|
} catch (err) {
|
|
|
|
// if the generator throws (it could happen in the `keypress`
|
|
|
|
// event), we need to restart it.
|
|
|
|
stream[ESCAPE_DECODER] = emitKeys(stream);
|
|
|
|
stream[ESCAPE_DECODER].next();
|
|
|
|
throw err;
|
2016-05-13 10:54:31 +03:00
|
|
|
} finally {
|
|
|
|
if (iface) {
|
|
|
|
iface.isCompletionEnabled = true;
|
|
|
|
}
|
2015-07-05 19:16:47 +03:00
|
|
|
}
|
2015-05-03 21:11:33 +03:00
|
|
|
}
|
|
|
|
}
|
2012-03-27 02:21:25 +04:00
|
|
|
} else {
|
|
|
|
// Nobody's watching anyway
|
|
|
|
stream.removeListener('data', onData);
|
|
|
|
stream.on('newListener', onNewListener);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onNewListener(event) {
|
|
|
|
if (event == 'keypress') {
|
|
|
|
stream.on('data', onData);
|
|
|
|
stream.removeListener('newListener', onNewListener);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-11 21:31:50 +03:00
|
|
|
if (stream.listenerCount('keypress') > 0) {
|
2012-03-27 02:21:25 +04:00
|
|
|
stream.on('data', onData);
|
|
|
|
} else {
|
|
|
|
stream.on('newListener', onNewListener);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exports.emitKeypressEvents = emitKeypressEvents;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* moves the cursor to the x and y coordinate on the given stream
|
|
|
|
*/
|
|
|
|
|
|
|
|
function cursorTo(stream, x, y) {
|
2015-01-29 04:05:53 +03:00
|
|
|
if (stream === null || stream === undefined)
|
2014-09-23 00:21:11 +04:00
|
|
|
return;
|
|
|
|
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof x !== 'number' && typeof y !== 'number')
|
2012-03-27 02:21:25 +04:00
|
|
|
return;
|
|
|
|
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof x !== 'number')
|
2015-10-15 00:10:25 +03:00
|
|
|
throw new Error('Can\'t set cursor row without also setting it\'s column');
|
2012-03-27 02:21:25 +04:00
|
|
|
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof y !== 'number') {
|
2012-03-27 02:21:25 +04:00
|
|
|
stream.write('\x1b[' + (x + 1) + 'G');
|
|
|
|
} else {
|
|
|
|
stream.write('\x1b[' + (y + 1) + ';' + (x + 1) + 'H');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exports.cursorTo = cursorTo;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* moves the cursor relative to its current location
|
|
|
|
*/
|
|
|
|
|
|
|
|
function moveCursor(stream, dx, dy) {
|
2015-01-29 04:05:53 +03:00
|
|
|
if (stream === null || stream === undefined)
|
2014-09-23 00:21:11 +04:00
|
|
|
return;
|
|
|
|
|
2012-03-27 02:21:25 +04:00
|
|
|
if (dx < 0) {
|
|
|
|
stream.write('\x1b[' + (-dx) + 'D');
|
|
|
|
} else if (dx > 0) {
|
|
|
|
stream.write('\x1b[' + dx + 'C');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dy < 0) {
|
|
|
|
stream.write('\x1b[' + (-dy) + 'A');
|
|
|
|
} else if (dy > 0) {
|
|
|
|
stream.write('\x1b[' + dy + 'B');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exports.moveCursor = moveCursor;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clears the current line the cursor is on:
|
|
|
|
* -1 for left of the cursor
|
|
|
|
* +1 for right of the cursor
|
|
|
|
* 0 for the entire line
|
|
|
|
*/
|
|
|
|
|
|
|
|
function clearLine(stream, dir) {
|
2015-01-29 04:05:53 +03:00
|
|
|
if (stream === null || stream === undefined)
|
2014-09-23 00:21:11 +04:00
|
|
|
return;
|
|
|
|
|
2012-03-27 02:21:25 +04:00
|
|
|
if (dir < 0) {
|
|
|
|
// to the beginning
|
|
|
|
stream.write('\x1b[1K');
|
|
|
|
} else if (dir > 0) {
|
|
|
|
// to the end
|
|
|
|
stream.write('\x1b[0K');
|
|
|
|
} else {
|
|
|
|
// entire line
|
|
|
|
stream.write('\x1b[2K');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exports.clearLine = clearLine;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clears the screen from the current position of the cursor down
|
|
|
|
*/
|
|
|
|
|
|
|
|
function clearScreenDown(stream) {
|
2015-01-29 04:05:53 +03:00
|
|
|
if (stream === null || stream === undefined)
|
2014-09-23 00:21:11 +04:00
|
|
|
return;
|
|
|
|
|
2012-03-27 02:21:25 +04:00
|
|
|
stream.write('\x1b[0J');
|
|
|
|
}
|
|
|
|
exports.clearScreenDown = clearScreenDown;
|