mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
9cd44bb2b6
Changes included in this commit are 1. Making the deprecation messages consistent. The messages will be in the following format x is deprecated. Use y instead. If there is no alternative for `x`, then the ` Use y instead.` part will not be there in the message. 2. All the internal deprecation messages are printed with the prefix `(node) `, except when the `--trace-deprecation` flag is set. Fixes: https://github.com/nodejs/io.js/issues/1883 PR-URL: https://github.com/nodejs/io.js/pull/1892 Reviewed-By: Roman Reiss <me@silverwind.io>
111 lines
2.5 KiB
JavaScript
111 lines
2.5 KiB
JavaScript
'use strict';
|
|
|
|
const util = require('util');
|
|
const internalUtil = require('internal/util');
|
|
const net = require('net');
|
|
const TTY = process.binding('tty_wrap').TTY;
|
|
const isTTY = process.binding('tty_wrap').isTTY;
|
|
const inherits = util.inherits;
|
|
const errnoException = util._errnoException;
|
|
|
|
|
|
exports.isatty = function(fd) {
|
|
return isTTY(fd);
|
|
};
|
|
|
|
|
|
// backwards-compat
|
|
exports.setRawMode = internalUtil.deprecate(function(flag) {
|
|
if (!process.stdin.isTTY) {
|
|
throw new Error('can\'t set raw mode on non-tty');
|
|
}
|
|
process.stdin.setRawMode(flag);
|
|
}, 'tty.setRawMode is deprecated. ' +
|
|
'Use process.stdin.setRawMode instead.');
|
|
|
|
|
|
function ReadStream(fd, options) {
|
|
if (!(this instanceof ReadStream))
|
|
return new ReadStream(fd, options);
|
|
|
|
options = util._extend({
|
|
highWaterMark: 0,
|
|
readable: true,
|
|
writable: false,
|
|
handle: new TTY(fd, true)
|
|
}, options);
|
|
|
|
net.Socket.call(this, options);
|
|
|
|
this.isRaw = false;
|
|
this.isTTY = true;
|
|
}
|
|
inherits(ReadStream, net.Socket);
|
|
|
|
exports.ReadStream = ReadStream;
|
|
|
|
ReadStream.prototype.setRawMode = function(flag) {
|
|
flag = !!flag;
|
|
this._handle.setRawMode(flag);
|
|
this.isRaw = flag;
|
|
};
|
|
|
|
|
|
function WriteStream(fd) {
|
|
if (!(this instanceof WriteStream)) return new WriteStream(fd);
|
|
net.Socket.call(this, {
|
|
handle: new TTY(fd, false),
|
|
readable: false,
|
|
writable: true
|
|
});
|
|
|
|
var winSize = [];
|
|
var err = this._handle.getWindowSize(winSize);
|
|
if (!err) {
|
|
this.columns = winSize[0];
|
|
this.rows = winSize[1];
|
|
}
|
|
}
|
|
inherits(WriteStream, net.Socket);
|
|
exports.WriteStream = WriteStream;
|
|
|
|
|
|
WriteStream.prototype.isTTY = true;
|
|
|
|
|
|
WriteStream.prototype._refreshSize = function() {
|
|
var oldCols = this.columns;
|
|
var oldRows = this.rows;
|
|
var winSize = [];
|
|
var err = this._handle.getWindowSize(winSize);
|
|
if (err) {
|
|
this.emit('error', errnoException(err, 'getWindowSize'));
|
|
return;
|
|
}
|
|
var newCols = winSize[0];
|
|
var newRows = winSize[1];
|
|
if (oldCols !== newCols || oldRows !== newRows) {
|
|
this.columns = newCols;
|
|
this.rows = newRows;
|
|
this.emit('resize');
|
|
}
|
|
};
|
|
|
|
|
|
// backwards-compat
|
|
WriteStream.prototype.cursorTo = function(x, y) {
|
|
require('readline').cursorTo(this, x, y);
|
|
};
|
|
WriteStream.prototype.moveCursor = function(dx, dy) {
|
|
require('readline').moveCursor(this, dx, dy);
|
|
};
|
|
WriteStream.prototype.clearLine = function(dir) {
|
|
require('readline').clearLine(this, dir);
|
|
};
|
|
WriteStream.prototype.clearScreenDown = function() {
|
|
require('readline').clearScreenDown(this);
|
|
};
|
|
WriteStream.prototype.getWindowSize = function() {
|
|
return [this.columns, this.rows];
|
|
};
|