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
|
|
|
});
|
|
|
|
|
2013-07-18 21:18:50 +00:00
|
|
|
var winSize = [];
|
|
|
|
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;
|
2013-07-18 21:18:50 +00:00
|
|
|
var winSize = [];
|
|
|
|
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
|
|
|
};
|