readline-sync/lib/readline-sync.js

396 lines
11 KiB
JavaScript
Raw Normal View History

2013-08-29 12:55:23 +02:00
/*
* readlineSync
* https://github.com/anseki/readline-sync
*
2015-01-26 17:11:25 +01:00
* Copyright (c) 2015 anseki
2013-08-29 12:55:23 +02:00
* Licensed under the MIT license.
*/
'use strict';
2014-07-13 06:55:17 +02:00
var
IS_WIN = process.platform === 'win32',
2015-03-13 10:34:41 +01:00
SHELL_PATH = IS_WIN ? 'cscript.exe' : '/bin/sh',
SHELL_CMD = __dirname + (IS_WIN ? '\\read.cs.js' : '/read.sh'),
2014-07-13 06:55:17 +02:00
ALGORITHM_CIPHER = 'aes-256-cbc',
ALGORITHM_HASH = 'sha256',
2015-03-06 07:23:32 +01:00
DEFAULT_ERR_MSG = 'The platform doesn\'t support interactive reading',
2014-07-13 06:55:17 +02:00
2013-08-29 19:26:22 +02:00
fs = require('fs'),
2015-03-20 04:03:58 +01:00
TTY = process.binding('tty_wrap').TTY,
childProc = require('child_process'),
promptText = '> ',
encoding = 'utf8',
2015-02-22 14:23:46 +01:00
bufSize = 1024,
2015-03-07 16:19:40 +01:00
print,
2015-03-20 04:03:58 +01:00
mask = '*',
useShell = false,
2015-03-20 04:03:58 +01:00
fdR = 'none', fdW, ttyR, isRawMode = false,
tempdir, salt = 0;
2013-08-29 12:55:23 +02:00
2015-03-20 04:03:58 +01:00
function _readlineSync(options) { // options.display is string
var input = '', isEditable, displayInput;
2013-12-18 03:51:32 +01:00
2015-03-20 04:03:58 +01:00
function tryShell() {
var res = _readlineShell(options);
2015-03-07 16:19:40 +01:00
if (res.error) { throw res.error; }
2015-03-20 04:03:58 +01:00
return res.input;
}
// Node v0.10- returns an error if same mode is set.
function setRawMode(mode) {
if (mode === isRawMode) { return true; }
if (ttyR.setRawMode(mode) !== 0) { return false; }
isRawMode = mode;
return true;
}
(function() {
var fsB, constants;
function getFsB() {
if (!fsB) {
fsB = process.binding('fs'); // For raw device path
constants = process.binding('constants');
}
return fsB;
}
2015-03-07 16:19:40 +01:00
2015-03-20 04:03:58 +01:00
if (typeof fdR !== 'string') { return; }
fdR = null;
if (IS_WIN) {
if (process.stdin.isTTY) {
fdR = process.stdin.fd;
ttyR = process.stdin._handle;
} else {
2015-03-07 16:19:40 +01:00
try {
2015-03-20 04:03:58 +01:00
// The stream by fs.openSync('\\\\.\\CON', 'r') can't switch to raw mode.
// 'CONIN$' might fail on XP, 2000, 7 (x86).
fdR = getFsB().open('CONIN$', constants.O_RDWR, parseInt('0666', 8));
ttyR = new TTY(fdR, true);
2015-03-07 16:19:40 +01:00
} catch (e) {}
2015-03-20 04:03:58 +01:00
}
2015-03-07 16:19:40 +01:00
2015-03-20 04:03:58 +01:00
if (process.stdout.isTTY) {
fdW = process.stdout.fd;
} else {
try {
fdW = fs.openSync('\\\\.\\CON', 'w');
} catch (e) {}
if (typeof fdW !== 'number') { // Retry
2015-03-07 16:19:40 +01:00
try {
2015-03-20 04:03:58 +01:00
fdW = getFsB().open('CONOUT$', constants.O_RDWR, parseInt('0666', 8));
2015-03-07 16:19:40 +01:00
} catch (e) {}
}
}
2014-07-12 00:37:25 +02:00
2015-03-11 09:06:27 +01:00
} else {
2015-03-20 04:03:58 +01:00
if (process.stdin.isTTY) {
try {
fdR = fs.openSync('/dev/tty', 'r'); // device file, not process.stdin
ttyR = process.stdin._handle;
} catch (e) {}
} else {
// Node v0.12 read() fails.
try {
fdR = fs.openSync('/dev/tty', 'r');
ttyR = new TTY(fdR, false);
} catch (e) {}
}
if (process.stdout.isTTY) {
fdW = process.stdout.fd;
} else {
try {
fdW = fs.openSync('/dev/tty', 'w');
} catch (e) {}
}
2015-03-07 16:19:40 +01:00
}
2015-03-20 04:03:58 +01:00
})();
// Call before tryShell()
if (options.display !== '' && typeof print === 'function')
{ print(options.display, encoding); }
2015-03-07 16:19:40 +01:00
2015-03-20 04:03:58 +01:00
isEditable = !options.noEchoBack && !options.keyIn;
2015-03-07 16:19:40 +01:00
2015-03-20 04:03:58 +01:00
(function() { // try read
var buffer, reqSize, readSize, chunk;
2015-03-07 16:19:40 +01:00
2015-03-20 04:03:58 +01:00
if (useShell || !ttyR ||
typeof fdW !== 'number' && (options.display !== '' || !isEditable)) {
input = tryShell();
return;
}
if (options.display !== '') {
fs.writeSync(fdW, options.display);
options.display = '';
}
if (!setRawMode(!isEditable)) {
input = tryShell();
return;
}
buffer = new Buffer((reqSize = options.keyIn ? 1 : bufSize));
while (true) {
readSize = 0;
try {
readSize = fs.readSync(fdR, buffer, 0, reqSize);
} catch (e) {
if (e.code === 'EOF') { break; }
setRawMode(false);
input += tryShell();
return;
2013-12-17 18:18:39 +01:00
}
2014-07-12 00:37:25 +02:00
2015-03-20 04:03:58 +01:00
if (readSize === 0) { break; }
chunk = buffer.toString(encoding, 0, readSize);
// other ctrl-chars
if ((chunk = chunk.replace(/[\x00-\x08\x0b\x0c\x0e-\x1f\x7f]/g, '')) === '')
{ continue; }
2015-03-22 06:11:55 +01:00
if (!isEditable && (displayInput = chunk.replace(/[\r\n]/g, '')) !== '') {
if (options.noEchoBack) {
displayInput = mask === '' ? '' :
(new Array(displayInput.length + 1)).join(mask);
}
2015-03-20 04:03:58 +01:00
if (displayInput !== '') { fs.writeSync(fdW, displayInput); }
}
input += chunk;
if (/[\r\n]$/.test(input) ||
options.keyIn && input.length >= reqSize) { break; }
2013-12-17 18:18:39 +01:00
}
2013-12-18 03:51:32 +01:00
2015-03-20 04:03:58 +01:00
if (!isEditable) { fs.writeSync(fdW, '\n'); }
setRawMode(false);
})();
if (typeof print === 'function') {
displayInput = input.replace(/[\r\n]/g, '');
print((options.noEchoBack ?
displayInput.replace(/./g, mask) : displayInput) + '\n', encoding);
2013-08-29 12:55:23 +02:00
}
2015-03-20 04:03:58 +01:00
return options.noTrim || options.keyIn ?
input.replace(/[\r\n]+$/, '') : input.trim();
}
2015-03-02 14:44:36 +01:00
function _readlineShell(options) {
2015-03-07 16:19:40 +01:00
var cmdArgs = [], execArgs, res = {},
2015-03-02 14:44:36 +01:00
execOptions = {
env: process.env,
2015-03-13 10:34:41 +01:00
// ScriptPW (Win XP and Server2003) needs TTY stream as STDIN.
2015-03-07 16:19:40 +01:00
// In this case, If STDIN isn't TTY, an error is thrown.
stdio: [process.stdin],
encoding: encoding
2015-03-02 14:44:36 +01:00
};
2015-03-11 09:06:27 +01:00
// To send any text to crazy Windows shell safely.
function encodeDOS(arg) {
return arg.replace(/[^\w\u0080-\uFFFF]/g, function(chr) {
return '#' + chr.charCodeAt(0) + ';';
});
}
2015-03-13 10:34:41 +01:00
if (options.noEchoBack) { cmdArgs.push('--noechoback'); }
2015-03-11 09:06:27 +01:00
if (options.keyIn) { cmdArgs.push('--keyin'); }
if (options.display !== '') {
2015-03-13 10:34:41 +01:00
cmdArgs = cmdArgs.concat('--display', IS_WIN ?
[encodeDOS(options.display), '--encoded'] : options.display);
}
if (childProc.execFileSync) {
2015-03-13 10:34:41 +01:00
execArgs = (IS_WIN ? ['//nologo', SHELL_CMD] : [SHELL_CMD]).concat(cmdArgs);
2015-03-03 18:30:41 +01:00
try {
2015-03-07 16:19:40 +01:00
res.input = childProc.execFileSync(SHELL_PATH, execArgs, execOptions);
2015-03-03 18:30:41 +01:00
} catch (e) { // non-zero exit code
2015-03-06 07:23:32 +01:00
res.error = new Error(DEFAULT_ERR_MSG);
res.error.method = 'execFileSync';
res.error.command = SHELL_CMD;
2015-03-07 16:19:40 +01:00
res.error.args = cmdArgs;
2015-03-06 07:23:32 +01:00
res.error.shellMessage = e.stderr.trim();
2015-03-17 04:11:46 +01:00
res.error.code = e.code;
res.error.signal = e.signal;
res.error.exitCode = e.status;
2015-03-03 18:30:41 +01:00
}
} else {
2015-03-07 16:19:40 +01:00
res = _execSyncByFile(cmdArgs, execOptions);
}
2015-03-13 10:34:41 +01:00
if (!res.error) {
res.input = res.input.replace(/^'|'$/g, '');
options.display = '';
}
2015-03-03 18:30:41 +01:00
return res;
}
// piping via files (node v0.10-)
2015-03-07 16:19:40 +01:00
function _execSyncByFile(cmdArgs, execOptions) {
function getTempfile(name) {
var path = require('path'), filepath, suffix = '', fd;
tempdir = tempdir || require('os').tmpdir();
while (true) {
filepath = path.join(tempdir, name + suffix);
try {
fd = fs.openSync(filepath, 'wx');
} catch (e) {
if (e.code === 'EEXIST') {
suffix++;
continue;
} else {
throw e;
}
}
fs.closeSync(fd);
break;
}
return filepath;
}
2015-03-17 04:11:46 +01:00
var execArgs, interpreter, res = {}, exitCode,
2015-03-13 10:34:41 +01:00
pathStdout = getTempfile('readline-sync.stdout'),
pathStderr = getTempfile('readline-sync.stderr'),
pathExit = getTempfile('readline-sync.exit'),
pathDone = getTempfile('readline-sync.done'),
2014-07-13 06:55:17 +02:00
crypto = require('crypto'), shasum, decipher, password;
shasum = crypto.createHash(ALGORITHM_HASH);
shasum.update('' + process.pid + (salt++) + Math.random());
password = shasum.digest('hex');
decipher = crypto.createDecipher(ALGORITHM_CIPHER, password);
2015-03-02 14:44:36 +01:00
if (IS_WIN) {
2015-03-13 10:34:41 +01:00
interpreter = process.env.ComSpec || 'cmd.exe';
2015-03-07 16:19:40 +01:00
process.env.Q = '"'; // The quote (") that isn't escaped.
2015-03-03 18:30:41 +01:00
// `()` for ignore space by echo
2015-03-07 16:19:40 +01:00
execArgs = ['/V:ON', '/S', '/C',
2015-03-13 10:34:41 +01:00
'(%Q%' + interpreter + '%Q% /V:ON /S /C %Q%' +
'%Q%' + SHELL_PATH + '%Q% //nologo %Q%' + SHELL_CMD + '%Q%' +
2015-03-07 16:19:40 +01:00
cmdArgs.map(function(arg) { return ' %Q%' + arg + '%Q%'; }).join('') +
2015-03-13 10:34:41 +01:00
' & (echo !ERRORLEVEL!)>%Q%' + pathExit + '%Q%%Q%) 2>%Q%' + pathStderr + '%Q%' +
2015-03-02 14:44:36 +01:00
' |%Q%' + process.execPath + '%Q% %Q%' + __dirname + '\\encrypt.js%Q%' +
' %Q%' + ALGORITHM_CIPHER + '%Q% %Q%' + password + '%Q%' +
2015-03-03 18:30:41 +01:00
' >%Q%' + pathStdout + '%Q%' +
' & (echo 1)>%Q%' + pathDone + '%Q%'];
2015-03-02 14:44:36 +01:00
} else {
2015-03-13 10:34:41 +01:00
interpreter = SHELL_PATH;
2015-03-07 16:19:40 +01:00
execArgs = ['-c',
2015-03-05 09:39:46 +01:00
// Use `()`, not `{}` for `-c` (text param)
2015-03-11 09:06:27 +01:00
'("' + SHELL_PATH + '" "' + SHELL_CMD + '"' +
cmdArgs.map(function(arg)
2015-03-13 10:34:41 +01:00
{ return " '" + arg.replace(/'/g, "'\\''") + "'"; }).join('') +
'; echo $?>"' + pathExit + '") 2>"' + pathStderr + '"' +
2015-03-02 14:44:36 +01:00
' |"' + process.execPath + '" "' + __dirname + '/encrypt.js"' +
' "' + ALGORITHM_CIPHER + '" "' + password + '"' +
2015-03-03 18:30:41 +01:00
' >"' + pathStdout + '"' +
'; echo 1 >"' + pathDone + '"'];
2015-03-02 14:44:36 +01:00
}
2015-03-13 10:34:41 +01:00
try {
childProc.spawn(interpreter, execArgs, execOptions);
} catch (e) {
res.error = new Error(e.message);
res.error.method = '_execSyncByFile - spawn';
res.error.interpreter = interpreter;
}
2014-07-13 08:32:02 +02:00
while (fs.readFileSync(pathDone, {encoding: encoding}).trim() !== '1') {}
2015-03-17 04:11:46 +01:00
if ((exitCode = fs.readFileSync(pathExit, {encoding: encoding}).trim()) === '0') {
2015-03-06 07:23:32 +01:00
res.input =
2014-07-13 06:55:17 +02:00
decipher.update(fs.readFileSync(pathStdout, {encoding: 'binary'}), 'hex', encoding) +
decipher.final(encoding);
2015-03-03 18:30:41 +01:00
} else {
2015-03-06 07:23:32 +01:00
res.error = new Error(DEFAULT_ERR_MSG);
res.error.method = '_execSyncByFile';
res.error.command = SHELL_CMD;
2015-03-07 16:19:40 +01:00
res.error.args = cmdArgs;
2015-03-06 07:23:32 +01:00
res.error.shellMessage = fs.readFileSync(pathStderr, {encoding: encoding}).trim();
2015-03-17 04:11:46 +01:00
res.error.exitCode = +exitCode;
}
fs.unlinkSync(pathStdout);
2015-03-03 18:30:41 +01:00
fs.unlinkSync(pathStderr);
2015-03-13 10:34:41 +01:00
fs.unlinkSync(pathExit);
fs.unlinkSync(pathDone);
2015-03-03 18:30:41 +01:00
return res;
}
// for dev
2015-03-02 14:44:36 +01:00
exports._useShellSet = function(use) { useShell = use; };
2013-08-29 19:26:22 +02:00
2014-07-11 23:25:59 +02:00
exports.setPrint = function(fnc) { print = fnc; };
2013-08-29 19:26:22 +02:00
exports.setPrompt = function(newPrompt) {
/* jshint eqnull:true */
if (newPrompt != null) {
/* jshint eqnull:false */
promptText = newPrompt;
}
return promptText;
2013-08-29 19:26:22 +02:00
};
exports.setEncoding = function(newEncoding) {
if (typeof newEncoding === 'string') {
encoding = newEncoding;
}
return encoding;
2013-08-29 19:26:22 +02:00
};
2015-03-20 12:34:18 +01:00
exports.setMask = function(newMask) {
if (typeof newMask === 'string') {
mask = newMask;
}
return mask;
};
2015-02-22 12:57:07 +01:00
exports.setBufferSize = function(newBufSize) {
2015-03-13 10:34:41 +01:00
newBufSize = parseInt(newBufSize, 10);
if (!isNaN(newBufSize) && typeof newBufSize === 'number') {
2015-02-22 12:57:07 +01:00
bufSize = newBufSize;
}
return bufSize;
};
2014-07-12 00:37:25 +02:00
exports.prompt = function(options) {
2015-03-11 09:06:27 +01:00
var readOptions = {
display: promptText + '',
2015-03-12 16:59:30 +01:00
noEchoBack: !!(options && options.noEchoBack),
2015-03-11 09:06:27 +01:00
keyIn: false,
2015-03-12 16:59:30 +01:00
noTrim: !!(options && options.noTrim)
2015-03-11 09:06:27 +01:00
};
return _readlineSync(readOptions);
2013-08-29 19:26:22 +02:00
};
2014-07-12 00:37:25 +02:00
exports.question = function(query, options) {
2015-03-11 09:06:27 +01:00
var readOptions = {
/* jshint eqnull:true */
2015-03-11 09:06:27 +01:00
display: query != null ? query + '' : '',
/* jshint eqnull:false */
2015-03-12 16:59:30 +01:00
noEchoBack: !!(options && options.noEchoBack),
2015-03-11 09:06:27 +01:00
keyIn: false,
2015-03-12 16:59:30 +01:00
noTrim: !!(options && options.noTrim)
2015-03-11 09:06:27 +01:00
};
return _readlineSync(readOptions);
2013-08-29 19:26:22 +02:00
};
2015-03-01 15:46:52 +01:00
2015-03-07 16:19:40 +01:00
exports.keyIn = function(query, options) {
2015-03-11 09:06:27 +01:00
var readOptions = {
2015-03-01 15:46:52 +01:00
/* jshint eqnull:true */
2015-03-11 09:06:27 +01:00
display: query != null ? query + '' : '',
2015-03-01 15:46:52 +01:00
/* jshint eqnull:false */
2015-03-13 10:34:41 +01:00
noEchoBack: !!(options && options.noEchoBack),
2015-03-11 09:06:27 +01:00
keyIn: true,
noTrim: true
};
return _readlineSync(readOptions);
2015-03-01 15:46:52 +01:00
};