2017-01-03 21:16:48 +00:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2014-11-22 15:59:48 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-01-29 01:05:53 +00:00
|
|
|
const util = require('util');
|
2015-01-21 16:36:59 +00:00
|
|
|
const net = require('net');
|
|
|
|
const TTY = process.binding('tty_wrap').TTY;
|
|
|
|
const isTTY = process.binding('tty_wrap').isTTY;
|
2015-01-29 01:05:53 +00:00
|
|
|
const inherits = util.inherits;
|
2015-01-21 16:36:59 +00:00
|
|
|
const errnoException = util._errnoException;
|
2013-07-16 21:28:38 +00:00
|
|
|
|
|
|
|
|
2011-09-20 22:57:23 +00:00
|
|
|
exports.isatty = function(fd) {
|
|
|
|
return isTTY(fd);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-12-13 06:06:35 +00:00
|
|
|
function ReadStream(fd, options) {
|
|
|
|
if (!(this instanceof ReadStream))
|
|
|
|
return new ReadStream(fd, options);
|
|
|
|
|
|
|
|
options = util._extend({
|
|
|
|
highWaterMark: 0,
|
2012-12-21 02:08:40 +00:00
|
|
|
readable: true,
|
|
|
|
writable: false,
|
2016-03-29 13:09:37 +00:00
|
|
|
handle: new TTY(fd, true)
|
2012-12-13 06:06:35 +00:00
|
|
|
}, options);
|
|
|
|
|
|
|
|
net.Socket.call(this, options);
|
2011-09-20 22:57:23 +00:00
|
|
|
|
2012-03-26 22:21:25 +00:00
|
|
|
this.isRaw = false;
|
2012-12-13 06:06:35 +00:00
|
|
|
this.isTTY = true;
|
2011-09-20 22:57:23 +00:00
|
|
|
}
|
|
|
|
inherits(ReadStream, net.Socket);
|
2011-12-05 23:36:45 +00:00
|
|
|
|
2011-09-20 22:57:23 +00:00
|
|
|
exports.ReadStream = ReadStream;
|
|
|
|
|
2012-03-26 22:21:25 +00:00
|
|
|
ReadStream.prototype.setRawMode = function(flag) {
|
|
|
|
flag = !!flag;
|
|
|
|
this._handle.setRawMode(flag);
|
|
|
|
this.isRaw = flag;
|
|
|
|
};
|
2011-09-20 22:57:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
function WriteStream(fd) {
|
|
|
|
if (!(this instanceof WriteStream)) return new WriteStream(fd);
|
|
|
|
net.Socket.call(this, {
|
2012-12-13 06:06:35 +00:00
|
|
|
handle: new TTY(fd, false),
|
|
|
|
readable: false,
|
|
|
|
writable: true
|
2011-09-20 22:57:23 +00:00
|
|
|
});
|
|
|
|
|
2016-07-14 10:24:10 +00:00
|
|
|
// Prevents interleaved or dropped stdout/stderr output for terminals.
|
2016-05-20 14:20:08 +00:00
|
|
|
// As noted in the following reference, local TTYs tend to be quite fast and
|
|
|
|
// this behaviour has become expected due historical functionality on OS X,
|
|
|
|
// even though it was originally intended to change in v1.0.2 (Libuv 1.2.1).
|
|
|
|
// Ref: https://github.com/nodejs/node/pull/1771#issuecomment-119351671
|
2016-07-14 10:24:10 +00:00
|
|
|
this._handle.setBlocking(process.env.NODE_TTY_UNSAFE_ASYNC !== '1');
|
2016-05-20 14:20:08 +00:00
|
|
|
|
2017-02-18 12:12:22 +00:00
|
|
|
var winSize = new Array(2);
|
2013-07-18 21:18:50 +00:00
|
|
|
var err = this._handle.getWindowSize(winSize);
|
|
|
|
if (!err) {
|
2012-04-30 23:18:37 +00:00
|
|
|
this.columns = winSize[0];
|
|
|
|
this.rows = winSize[1];
|
|
|
|
}
|
2011-09-20 22:57:23 +00:00
|
|
|
}
|
|
|
|
inherits(WriteStream, net.Socket);
|
|
|
|
exports.WriteStream = WriteStream;
|
|
|
|
|
|
|
|
|
|
|
|
WriteStream.prototype.isTTY = true;
|
|
|
|
|
|
|
|
|
2012-03-26 22:21:25 +00:00
|
|
|
WriteStream.prototype._refreshSize = function() {
|
|
|
|
var oldCols = this.columns;
|
|
|
|
var oldRows = this.rows;
|
2017-02-18 12:12:22 +00:00
|
|
|
var winSize = new Array(2);
|
2013-07-18 21:18:50 +00:00
|
|
|
var err = this._handle.getWindowSize(winSize);
|
|
|
|
if (err) {
|
|
|
|
this.emit('error', errnoException(err, 'getWindowSize'));
|
2012-05-01 22:51:29 +00:00
|
|
|
return;
|
2012-04-30 23:18:37 +00:00
|
|
|
}
|
2012-03-26 22:21:25 +00:00
|
|
|
var newCols = winSize[0];
|
|
|
|
var newRows = winSize[1];
|
|
|
|
if (oldCols !== newCols || oldRows !== newRows) {
|
|
|
|
this.columns = newCols;
|
|
|
|
this.rows = newRows;
|
|
|
|
this.emit('resize');
|
2011-09-20 22:57:23 +00:00
|
|
|
}
|
2012-03-28 23:27:57 +00:00
|
|
|
};
|
2011-09-20 22:57:23 +00:00
|
|
|
|
|
|
|
|
2012-03-26 22:21:25 +00:00
|
|
|
// backwards-compat
|
|
|
|
WriteStream.prototype.cursorTo = function(x, y) {
|
|
|
|
require('readline').cursorTo(this, x, y);
|
|
|
|
};
|
2011-09-20 22:57:23 +00:00
|
|
|
WriteStream.prototype.moveCursor = function(dx, dy) {
|
2012-03-26 22:21:25 +00:00
|
|
|
require('readline').moveCursor(this, dx, dy);
|
2011-09-20 22:57:23 +00:00
|
|
|
};
|
|
|
|
WriteStream.prototype.clearLine = function(dir) {
|
2012-03-26 22:21:25 +00:00
|
|
|
require('readline').clearLine(this, dir);
|
2011-09-20 22:57:23 +00:00
|
|
|
};
|
2012-03-20 22:14:40 +00:00
|
|
|
WriteStream.prototype.clearScreenDown = function() {
|
2012-03-26 22:21:25 +00:00
|
|
|
require('readline').clearScreenDown(this);
|
2012-03-20 22:14:40 +00:00
|
|
|
};
|
2011-09-23 02:55:15 +00:00
|
|
|
WriteStream.prototype.getWindowSize = function() {
|
2012-03-26 22:21:25 +00:00
|
|
|
return [this.columns, this.rows];
|
2011-09-23 02:55:15 +00:00
|
|
|
};
|