2011-11-02 21:00:57 +04: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.
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
var events = require('events');
|
2012-12-13 09:18:57 +04:00
|
|
|
var stream = require('stream');
|
2011-06-16 23:11:05 +04:00
|
|
|
var timers = require('timers');
|
|
|
|
var util = require('util');
|
|
|
|
var assert = require('assert');
|
2012-10-09 04:51:59 +04:00
|
|
|
var cares = process.binding('cares_wrap');
|
2013-07-19 01:18:50 +04:00
|
|
|
var uv = process.binding('uv');
|
2013-07-17 01:28:38 +04:00
|
|
|
|
2012-05-20 17:57:24 +04:00
|
|
|
var cluster;
|
2013-07-17 01:28:38 +04:00
|
|
|
var errnoException = util._errnoException;
|
2011-08-01 02:58:10 +04:00
|
|
|
|
2012-02-19 03:01:35 +04:00
|
|
|
function noop() {}
|
2011-10-07 21:00:48 +04:00
|
|
|
|
2011-08-01 02:58:10 +04:00
|
|
|
// constructor for lazy loading
|
|
|
|
function createPipe() {
|
|
|
|
var Pipe = process.binding('pipe_wrap').Pipe;
|
|
|
|
return new Pipe();
|
|
|
|
}
|
|
|
|
|
|
|
|
// constructor for lazy loading
|
|
|
|
function createTCP() {
|
|
|
|
var TCP = process.binding('tcp_wrap').TCP;
|
|
|
|
return new TCP();
|
|
|
|
}
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-03-14 18:13:58 +04:00
|
|
|
function createHandle(fd) {
|
|
|
|
var tty = process.binding('tty_wrap');
|
|
|
|
var type = tty.guessHandleType(fd);
|
|
|
|
if (type === 'PIPE') return createPipe();
|
|
|
|
if (type === 'TCP') return createTCP();
|
|
|
|
throw new TypeError('Unsupported fd type: ' + type);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-22 02:22:05 +04:00
|
|
|
var debug = util.debuglog('net');
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-07-20 00:49:42 +04:00
|
|
|
function isPipeName(s) {
|
2013-07-27 01:38:08 +04:00
|
|
|
return util.isString(s) && toNumber(s) === false;
|
2011-07-20 00:49:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-17 16:27:02 +04:00
|
|
|
exports.createServer = function() {
|
|
|
|
return new Server(arguments[0], arguments[1]);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
// Target API:
|
|
|
|
//
|
|
|
|
// var s = net.connect({port: 80, host: 'google.com'}, function() {
|
|
|
|
// ...
|
|
|
|
// });
|
|
|
|
//
|
|
|
|
// There are various forms:
|
|
|
|
//
|
|
|
|
// connect(options, [cb])
|
|
|
|
// connect(port, [host], [cb])
|
|
|
|
// connect(path, [cb]);
|
|
|
|
//
|
|
|
|
exports.connect = exports.createConnection = function() {
|
|
|
|
var args = normalizeConnectArgs(arguments);
|
2013-05-22 01:02:18 +04:00
|
|
|
debug('createConnection', args);
|
2012-01-09 05:18:39 +04:00
|
|
|
var s = new Socket(args[0]);
|
|
|
|
return Socket.prototype.connect.apply(s, args);
|
|
|
|
};
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
// Returns an array [options] or [options, cb]
|
|
|
|
// It is the same as the argument of Socket.prototype.connect().
|
|
|
|
function normalizeConnectArgs(args) {
|
|
|
|
var options = {};
|
|
|
|
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isObject(args[0])) {
|
2012-01-09 05:18:39 +04:00
|
|
|
// connect(options, [cb])
|
|
|
|
options = args[0];
|
|
|
|
} else if (isPipeName(args[0])) {
|
|
|
|
// connect(path, [cb]);
|
|
|
|
options.path = args[0];
|
2011-07-20 00:49:42 +04:00
|
|
|
} else {
|
2012-01-09 05:18:39 +04:00
|
|
|
// connect(port, [host], [cb])
|
|
|
|
options.port = args[0];
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isString(args[1])) {
|
2012-01-09 05:18:39 +04:00
|
|
|
options.host = args[1];
|
|
|
|
}
|
2011-07-20 00:49:42 +04:00
|
|
|
}
|
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
var cb = args[args.length - 1];
|
2013-07-27 01:38:08 +04:00
|
|
|
return util.isFunction(cb) ? [options, cb] : [options];
|
2012-01-09 05:18:39 +04:00
|
|
|
}
|
2012-08-30 19:11:05 +04:00
|
|
|
exports._normalizeConnectArgs = normalizeConnectArgs;
|
2012-01-09 05:18:39 +04:00
|
|
|
|
2011-06-17 16:27:02 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// called when creating new Socket, or when re-using a closed Socket
|
2011-07-01 03:37:30 +04:00
|
|
|
function initSocketHandle(self) {
|
|
|
|
self.destroyed = false;
|
2012-03-20 11:21:38 +04:00
|
|
|
self.errorEmitted = false;
|
2011-07-21 12:20:01 +04:00
|
|
|
self.bytesRead = 0;
|
2012-05-08 22:19:38 +04:00
|
|
|
self._bytesDispatched = 0;
|
2011-07-22 01:00:47 +04:00
|
|
|
|
|
|
|
// Handle creation may be deferred to bind() or connect() time.
|
|
|
|
if (self._handle) {
|
2012-04-27 06:42:10 +04:00
|
|
|
self._handle.owner = self;
|
2011-07-22 01:00:47 +04:00
|
|
|
self._handle.onread = onread;
|
2013-04-09 12:56:56 +04:00
|
|
|
|
|
|
|
// If handle doesn't support writev - neither do we
|
|
|
|
if (!self._handle.writev)
|
|
|
|
self._writev = null;
|
2011-07-22 01:00:47 +04:00
|
|
|
}
|
2011-07-01 03:37:30 +04:00
|
|
|
}
|
2011-06-17 16:27:02 +04:00
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
function Socket(options) {
|
|
|
|
if (!(this instanceof Socket)) return new Socket(options);
|
|
|
|
|
2013-01-28 20:54:27 +04:00
|
|
|
this._connecting = false;
|
2013-06-13 23:47:31 +04:00
|
|
|
this._hadError = false;
|
2013-01-28 20:54:27 +04:00
|
|
|
this._handle = null;
|
2013-10-28 14:25:27 +04:00
|
|
|
this._host = null;
|
2013-01-28 20:54:27 +04:00
|
|
|
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isNumber(options))
|
2013-07-24 20:03:53 +04:00
|
|
|
options = { fd: options }; // Legacy interface.
|
2013-07-27 01:38:08 +04:00
|
|
|
else if (util.isUndefined(options))
|
2013-07-24 20:03:53 +04:00
|
|
|
options = {};
|
2012-07-17 17:16:23 +04:00
|
|
|
|
2012-12-27 18:57:19 +04:00
|
|
|
stream.Duplex.call(this, options);
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
if (options.handle) {
|
|
|
|
this._handle = options.handle; // private
|
2013-07-27 01:38:08 +04:00
|
|
|
} else if (!util.isUndefined(options.fd)) {
|
2013-03-14 18:13:58 +04:00
|
|
|
this._handle = createHandle(options.fd);
|
2012-07-17 17:16:23 +04:00
|
|
|
this._handle.open(options.fd);
|
2012-12-21 06:08:40 +04:00
|
|
|
this.readable = options.readable !== false;
|
|
|
|
this.writable = options.writable !== false;
|
2013-01-17 21:52:48 +04:00
|
|
|
} else {
|
|
|
|
// these will be set once there is a connection
|
|
|
|
this.readable = this.writable = false;
|
2011-09-13 01:59:51 +04:00
|
|
|
}
|
2012-07-17 17:16:23 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// shut down the socket when we're finished with it.
|
|
|
|
this.on('finish', onSocketFinish);
|
|
|
|
this.on('_socketEnd', onSocketEnd);
|
|
|
|
|
2012-07-17 17:16:23 +04:00
|
|
|
initSocketHandle(this);
|
2012-12-13 09:18:57 +04:00
|
|
|
|
2013-03-04 07:14:06 +04:00
|
|
|
this._pendingData = null;
|
|
|
|
this._pendingEncoding = '';
|
2012-12-13 09:18:57 +04:00
|
|
|
|
|
|
|
// handle strings directly
|
|
|
|
this._writableState.decodeStrings = false;
|
|
|
|
|
|
|
|
// default to *not* allowing half open sockets
|
|
|
|
this.allowHalfOpen = options && options.allowHalfOpen || false;
|
|
|
|
|
|
|
|
// if we have a handle, then start the flow of data into the
|
|
|
|
// buffer. if not, then this will happen when we connect
|
2012-12-21 06:08:40 +04:00
|
|
|
if (this._handle && options.readable !== false)
|
2012-12-13 09:18:57 +04:00
|
|
|
this.read(0);
|
|
|
|
}
|
|
|
|
util.inherits(Socket, stream.Duplex);
|
|
|
|
|
|
|
|
// the user has called .end(), and all the bytes have been
|
|
|
|
// sent out to the other side.
|
|
|
|
// If allowHalfOpen is false, or if the readable side has
|
|
|
|
// ended already, then destroy.
|
|
|
|
// If allowHalfOpen is true, then we need to do a shutdown,
|
|
|
|
// so that only the writable side will be cleaned up.
|
|
|
|
function onSocketFinish() {
|
2013-03-13 16:53:27 +04:00
|
|
|
// If still connecting - defer handling 'finish' until 'connect' will happen
|
|
|
|
if (this._connecting) {
|
|
|
|
debug('osF: not yet connected');
|
|
|
|
return this.once('connect', onSocketFinish);
|
|
|
|
}
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('onSocketFinish');
|
2013-02-12 21:08:50 +04:00
|
|
|
if (!this.readable || this._readableState.ended) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('oSF: ended, destroy', this._readableState);
|
|
|
|
return this.destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
debug('oSF: not ended, call shutdown()');
|
|
|
|
|
|
|
|
// otherwise, just shutdown, or destroy() if not possible
|
2012-12-25 05:35:52 +04:00
|
|
|
if (!this._handle || !this._handle.shutdown)
|
2012-12-13 09:18:57 +04:00
|
|
|
return this.destroy();
|
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
var req = { oncomplete: afterShutdown };
|
|
|
|
var err = this._handle.shutdown(req);
|
2012-12-13 09:18:57 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err)
|
|
|
|
return this._destroy(errnoException(err, 'shutdown'));
|
2012-12-13 09:18:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function afterShutdown(status, handle, req) {
|
|
|
|
var self = handle.owner;
|
|
|
|
|
|
|
|
debug('afterShutdown destroyed=%j', self.destroyed,
|
|
|
|
self._readableState);
|
|
|
|
|
|
|
|
// callback may come after call to destroy.
|
|
|
|
if (self.destroyed)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (self._readableState.ended) {
|
|
|
|
debug('readableState ended, destroying');
|
|
|
|
self.destroy();
|
|
|
|
} else {
|
|
|
|
self.once('_socketEnd', self.destroy);
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// the EOF has been received, and no more bytes are coming.
|
|
|
|
// if the writable side has ended already, then clean everything
|
|
|
|
// up.
|
|
|
|
function onSocketEnd() {
|
|
|
|
// XXX Should not have to do as much crap in this function.
|
|
|
|
// ended should already be true, since this is called *after*
|
stream: There is no _read cb, there is only push
This makes it so that `stream.push(chunk)` is the only way to signal the
end of reading, removing the confusing disparity between the
callback-style _read method, and the fact that most real-world streams
do not have a 1:1 corollation between the "please give me data" event,
and the actual arrival of a chunk of data.
It is still possible, of course, to implement a `CallbackReadable` on
top of this. Simply provide a method like this as the callback:
function readCallback(er, chunk) {
if (er)
stream.emit('error', er);
else
stream.push(chunk);
}
However, *only* fs streams actually would behave in this way, so it
makes not a lot of sense to make TCP, TLS, HTTP, and all the rest have
to bend into this uncomfortable paradigm.
2013-03-01 03:32:32 +04:00
|
|
|
// the EOF errno and onread has eof'ed
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('onSocketEnd', this._readableState);
|
|
|
|
this._readableState.ended = true;
|
|
|
|
if (this._readableState.endEmitted) {
|
|
|
|
this.readable = false;
|
2013-06-05 10:43:29 +04:00
|
|
|
maybeDestroy(this);
|
2012-12-13 09:18:57 +04:00
|
|
|
} else {
|
|
|
|
this.once('end', function() {
|
|
|
|
this.readable = false;
|
2013-06-05 10:43:29 +04:00
|
|
|
maybeDestroy(this);
|
2012-12-13 09:18:57 +04:00
|
|
|
});
|
|
|
|
this.read(0);
|
|
|
|
}
|
|
|
|
|
2013-03-02 22:20:33 +04:00
|
|
|
if (!this.allowHalfOpen) {
|
|
|
|
this.write = writeAfterFIN;
|
2012-12-13 09:18:57 +04:00
|
|
|
this.destroySoon();
|
2013-03-02 22:20:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Provide a better error message when we call end() as a result
|
|
|
|
// of the other side sending a FIN. The standard 'write after end'
|
|
|
|
// is overly vague, and makes it seem like the user's code is to blame.
|
|
|
|
function writeAfterFIN(chunk, encoding, cb) {
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isFunction(encoding)) {
|
2013-03-02 22:20:33 +04:00
|
|
|
cb = encoding;
|
|
|
|
encoding = null;
|
|
|
|
}
|
|
|
|
|
2013-03-02 23:50:33 +04:00
|
|
|
var er = new Error('This socket has been ended by the other party');
|
2013-03-02 22:20:33 +04:00
|
|
|
er.code = 'EPIPE';
|
|
|
|
var self = this;
|
|
|
|
// TODO: defer error events consistently everywhere, not just the cb
|
|
|
|
self.emit('error', er);
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isFunction(cb)) {
|
2013-03-02 22:20:33 +04:00
|
|
|
process.nextTick(function() {
|
|
|
|
cb(er);
|
|
|
|
});
|
|
|
|
}
|
2012-12-13 09:18:57 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-06-17 20:09:15 +04:00
|
|
|
exports.Socket = Socket;
|
|
|
|
exports.Stream = Socket; // Legacy naming.
|
|
|
|
|
2013-01-07 18:29:00 +04:00
|
|
|
Socket.prototype.read = function(n) {
|
|
|
|
if (n === 0)
|
|
|
|
return stream.Readable.prototype.read.call(this, n);
|
|
|
|
|
|
|
|
this.read = stream.Readable.prototype.read;
|
|
|
|
this._consuming = true;
|
|
|
|
return this.read(n);
|
|
|
|
};
|
|
|
|
|
2011-06-17 20:09:15 +04:00
|
|
|
|
2011-07-27 05:37:21 +04:00
|
|
|
Socket.prototype.listen = function() {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('socket.listen');
|
2011-07-27 05:37:21 +04:00
|
|
|
var self = this;
|
|
|
|
self.on('connection', arguments[0]);
|
2012-04-18 17:56:14 +04:00
|
|
|
listen(self, null, null, null);
|
2011-07-27 05:37:21 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
Socket.prototype.setTimeout = function(msecs, callback) {
|
2012-07-16 21:41:26 +04:00
|
|
|
if (msecs > 0 && !isNaN(msecs) && isFinite(msecs)) {
|
2011-06-16 23:11:05 +04:00
|
|
|
timers.enroll(this, msecs);
|
2013-05-18 02:07:28 +04:00
|
|
|
timers._unrefActive(this);
|
2011-06-16 23:11:05 +04:00
|
|
|
if (callback) {
|
|
|
|
this.once('timeout', callback);
|
|
|
|
}
|
|
|
|
} else if (msecs === 0) {
|
|
|
|
timers.unenroll(this);
|
2012-04-08 19:24:53 +04:00
|
|
|
if (callback) {
|
|
|
|
this.removeListener('timeout', callback);
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-01 23:01:12 +04:00
|
|
|
Socket.prototype._onTimeout = function() {
|
2012-02-19 03:01:35 +04:00
|
|
|
debug('_onTimeout');
|
2011-07-01 23:01:12 +04:00
|
|
|
this.emit('timeout');
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-04-12 21:13:04 +04:00
|
|
|
Socket.prototype.setNoDelay = function(enable) {
|
|
|
|
// backwards compatibility: assume true when `enable` is omitted
|
2011-10-22 04:07:11 +04:00
|
|
|
if (this._handle && this._handle.setNoDelay)
|
2013-07-27 01:38:08 +04:00
|
|
|
this._handle.setNoDelay(util.isUndefined(enable) ? true : !!enable);
|
2011-06-17 16:27:02 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-01 01:53:22 +04:00
|
|
|
Socket.prototype.setKeepAlive = function(setting, msecs) {
|
2011-10-22 04:07:11 +04:00
|
|
|
if (this._handle && this._handle.setKeepAlive)
|
|
|
|
this._handle.setKeepAlive(setting, ~~(msecs / 1000));
|
2011-07-01 01:53:22 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-16 02:06:10 +04:00
|
|
|
Socket.prototype.address = function() {
|
2011-12-28 10:13:57 +04:00
|
|
|
if (this._handle && this._handle.getsockname) {
|
2013-07-19 01:18:50 +04:00
|
|
|
var out = {};
|
|
|
|
var err = this._handle.getsockname(out);
|
|
|
|
// TODO(bnoordhuis) Check err and throw?
|
|
|
|
return out;
|
2011-12-28 10:13:57 +04:00
|
|
|
}
|
|
|
|
return null;
|
2011-07-16 02:06:10 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 16:27:02 +04:00
|
|
|
Object.defineProperty(Socket.prototype, 'readyState', {
|
|
|
|
get: function() {
|
|
|
|
if (this._connecting) {
|
|
|
|
return 'opening';
|
|
|
|
} else if (this.readable && this.writable) {
|
|
|
|
return 'open';
|
|
|
|
} else if (this.readable && !this.writable) {
|
|
|
|
return 'readOnly';
|
|
|
|
} else if (!this.readable && this.writable) {
|
|
|
|
return 'writeOnly';
|
|
|
|
} else {
|
|
|
|
return 'closed';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(Socket.prototype, 'bufferSize', {
|
|
|
|
get: function() {
|
2011-12-28 10:13:57 +04:00
|
|
|
if (this._handle) {
|
2013-01-07 05:37:35 +04:00
|
|
|
return this._handle.writeQueueSize + this._writableState.length;
|
2011-12-28 10:13:57 +04:00
|
|
|
}
|
2011-06-17 16:27:02 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// Just call handle.readStart until we have enough in the buffer
|
stream: There is no _read cb, there is only push
This makes it so that `stream.push(chunk)` is the only way to signal the
end of reading, removing the confusing disparity between the
callback-style _read method, and the fact that most real-world streams
do not have a 1:1 corollation between the "please give me data" event,
and the actual arrival of a chunk of data.
It is still possible, of course, to implement a `CallbackReadable` on
top of this. Simply provide a method like this as the callback:
function readCallback(er, chunk) {
if (er)
stream.emit('error', er);
else
stream.push(chunk);
}
However, *only* fs streams actually would behave in this way, so it
makes not a lot of sense to make TCP, TLS, HTTP, and all the rest have
to bend into this uncomfortable paradigm.
2013-03-01 03:32:32 +04:00
|
|
|
Socket.prototype._read = function(n) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('_read');
|
stream: There is no _read cb, there is only push
This makes it so that `stream.push(chunk)` is the only way to signal the
end of reading, removing the confusing disparity between the
callback-style _read method, and the fact that most real-world streams
do not have a 1:1 corollation between the "please give me data" event,
and the actual arrival of a chunk of data.
It is still possible, of course, to implement a `CallbackReadable` on
top of this. Simply provide a method like this as the callback:
function readCallback(er, chunk) {
if (er)
stream.emit('error', er);
else
stream.push(chunk);
}
However, *only* fs streams actually would behave in this way, so it
makes not a lot of sense to make TCP, TLS, HTTP, and all the rest have
to bend into this uncomfortable paradigm.
2013-03-01 03:32:32 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
if (this._connecting || !this._handle) {
|
|
|
|
debug('_read wait for connection');
|
stream: There is no _read cb, there is only push
This makes it so that `stream.push(chunk)` is the only way to signal the
end of reading, removing the confusing disparity between the
callback-style _read method, and the fact that most real-world streams
do not have a 1:1 corollation between the "please give me data" event,
and the actual arrival of a chunk of data.
It is still possible, of course, to implement a `CallbackReadable` on
top of this. Simply provide a method like this as the callback:
function readCallback(er, chunk) {
if (er)
stream.emit('error', er);
else
stream.push(chunk);
}
However, *only* fs streams actually would behave in this way, so it
makes not a lot of sense to make TCP, TLS, HTTP, and all the rest have
to bend into this uncomfortable paradigm.
2013-03-01 03:32:32 +04:00
|
|
|
this.once('connect', this._read.bind(this, n));
|
|
|
|
} else if (!this._handle.reading) {
|
|
|
|
// not already reading, start the flow
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('Socket._read readStart');
|
|
|
|
this._handle.reading = true;
|
2013-07-19 01:18:50 +04:00
|
|
|
var err = this._handle.readStart();
|
|
|
|
if (err)
|
|
|
|
this._destroy(errnoException(err, 'read'));
|
2011-08-12 03:41:53 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
Socket.prototype.end = function(data, encoding) {
|
2012-12-13 09:18:57 +04:00
|
|
|
stream.Duplex.prototype.end.call(this, data, encoding);
|
2011-06-17 19:10:12 +04:00
|
|
|
this.writable = false;
|
|
|
|
DTRACE_NET_STREAM_END(this);
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// just in case we're waiting for an EOF.
|
2013-02-12 21:08:50 +04:00
|
|
|
if (this.readable && !this._readableState.endEmitted)
|
2012-12-13 09:18:57 +04:00
|
|
|
this.read(0);
|
2013-06-05 10:43:29 +04:00
|
|
|
else
|
|
|
|
maybeDestroy(this);
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-06-05 10:43:29 +04:00
|
|
|
// Call whenever we set writable=false or readable=false
|
|
|
|
function maybeDestroy(socket) {
|
|
|
|
if (!socket.readable &&
|
|
|
|
!socket.writable &&
|
|
|
|
!socket.destroyed &&
|
2013-06-15 02:57:11 +04:00
|
|
|
!socket._connecting &&
|
|
|
|
!socket._writableState.length) {
|
2013-06-05 10:43:29 +04:00
|
|
|
socket.destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
Socket.prototype.destroySoon = function() {
|
2012-12-13 09:18:57 +04:00
|
|
|
if (this.writable)
|
|
|
|
this.end();
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-03-04 04:12:02 +04:00
|
|
|
if (this._writableState.finished)
|
2012-12-13 09:18:57 +04:00
|
|
|
this.destroy();
|
|
|
|
else
|
|
|
|
this.once('finish', this.destroy);
|
2011-07-02 11:18:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-03-20 11:21:38 +04:00
|
|
|
Socket.prototype._destroy = function(exception, cb) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('destroy');
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
var self = this;
|
|
|
|
|
2012-03-20 11:21:38 +04:00
|
|
|
function fireErrorCallbacks() {
|
|
|
|
if (cb) cb(exception);
|
|
|
|
if (exception && !self.errorEmitted) {
|
|
|
|
process.nextTick(function() {
|
|
|
|
self.emit('error', exception);
|
|
|
|
});
|
|
|
|
self.errorEmitted = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if (this.destroyed) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('already destroyed, fire error callbacks');
|
2012-03-20 11:21:38 +04:00
|
|
|
fireErrorCallbacks();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
self._connecting = false;
|
2011-06-16 23:11:05 +04:00
|
|
|
|
|
|
|
this.readable = this.writable = false;
|
|
|
|
|
|
|
|
timers.unenroll(this);
|
|
|
|
|
2011-08-23 13:31:20 +04:00
|
|
|
debug('close');
|
2011-07-22 01:00:47 +04:00
|
|
|
if (this._handle) {
|
2012-12-13 09:18:57 +04:00
|
|
|
if (this !== process.stderr)
|
|
|
|
debug('close handle');
|
2013-03-06 19:15:17 +04:00
|
|
|
var isException = exception ? true : false;
|
|
|
|
this._handle.close(function() {
|
|
|
|
debug('emit close');
|
|
|
|
self.emit('close', isException);
|
|
|
|
});
|
2011-10-07 21:00:48 +04:00
|
|
|
this._handle.onread = noop;
|
2011-07-22 02:47:28 +04:00
|
|
|
this._handle = null;
|
2011-07-22 01:00:47 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2012-03-20 11:21:38 +04:00
|
|
|
fireErrorCallbacks();
|
2011-06-16 23:11:05 +04:00
|
|
|
this.destroyed = true;
|
2012-05-29 15:05:49 +04:00
|
|
|
|
|
|
|
if (this.server) {
|
2012-11-21 03:27:22 +04:00
|
|
|
COUNTER_NET_SERVER_CONNECTION_CLOSE(this);
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('has server');
|
2012-05-29 15:05:49 +04:00
|
|
|
this.server._connections--;
|
2012-06-12 21:02:52 +04:00
|
|
|
if (this.server._emitCloseIfDrained) {
|
|
|
|
this.server._emitCloseIfDrained();
|
|
|
|
}
|
2012-05-29 15:05:49 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-03-20 11:21:38 +04:00
|
|
|
Socket.prototype.destroy = function(exception) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('destroy', exception);
|
2012-03-20 11:21:38 +04:00
|
|
|
this._destroy(exception);
|
2012-04-18 23:24:41 +04:00
|
|
|
};
|
2012-03-20 11:21:38 +04:00
|
|
|
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// This function is called whenever the handle gets a
|
|
|
|
// buffer, or when there's an error reading.
|
2013-07-19 01:18:50 +04:00
|
|
|
function onread(nread, buffer) {
|
2011-06-16 23:11:05 +04:00
|
|
|
var handle = this;
|
2012-04-27 06:42:10 +04:00
|
|
|
var self = handle.owner;
|
2012-08-23 18:03:46 +04:00
|
|
|
assert(handle === self._handle, 'handle != self._handle');
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-05-18 02:07:28 +04:00
|
|
|
timers._unrefActive(self);
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
debug('onread', nread);
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (nread > 0) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('got data');
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// read success.
|
|
|
|
// In theory (and in practice) calling readStop right now
|
|
|
|
// will prevent this from being called again until _read() gets
|
|
|
|
// called again.
|
|
|
|
|
|
|
|
// if it's not enough data, we'll just call handle.readStart()
|
|
|
|
// again right away.
|
2013-07-19 01:18:50 +04:00
|
|
|
self.bytesRead += nread;
|
2012-12-28 01:03:59 +04:00
|
|
|
|
|
|
|
// Optimization: emit the original buffer with end points
|
2013-07-26 06:33:15 +04:00
|
|
|
var ret = self.push(buffer);
|
2012-12-13 09:18:57 +04:00
|
|
|
|
2013-01-08 06:07:37 +04:00
|
|
|
if (handle.reading && !ret) {
|
2012-12-13 09:18:57 +04:00
|
|
|
handle.reading = false;
|
|
|
|
debug('readStop');
|
2013-07-19 01:18:50 +04:00
|
|
|
var err = handle.readStop();
|
|
|
|
if (err)
|
|
|
|
self._destroy(errnoException(err, 'read'));
|
2012-12-13 09:18:57 +04:00
|
|
|
}
|
2013-07-19 01:18:50 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-07-21 12:20:01 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
// if we didn't get any bytes, that doesn't necessarily mean EOF.
|
|
|
|
// wait for the next one.
|
|
|
|
if (nread === 0) {
|
|
|
|
debug('not any data, keep waiting');
|
|
|
|
return;
|
|
|
|
}
|
2011-06-17 19:10:12 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
// Error, possibly EOF.
|
|
|
|
if (nread !== uv.UV_EOF) {
|
|
|
|
return self._destroy(errnoException(nread, 'read'));
|
|
|
|
}
|
2011-06-17 15:36:16 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
debug('EOF');
|
2012-12-13 09:18:57 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (self._readableState.length === 0) {
|
|
|
|
self.readable = false;
|
|
|
|
maybeDestroy(self);
|
2011-06-17 15:36:16 +04:00
|
|
|
}
|
2013-07-19 01:18:50 +04:00
|
|
|
|
|
|
|
// push a null to signal the end of data.
|
|
|
|
self.push(null);
|
|
|
|
|
|
|
|
// internal end event so that we know that the actual socket
|
|
|
|
// is no longer readable, and we can start the shutdown
|
|
|
|
// procedure. No need to wait for all the data to be consumed.
|
|
|
|
self.emit('_socketEnd');
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-12 23:46:41 +04:00
|
|
|
Socket.prototype._getpeername = function() {
|
|
|
|
if (!this._handle || !this._handle.getpeername) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
if (!this._peername) {
|
2013-07-19 01:18:50 +04:00
|
|
|
var out = {};
|
|
|
|
var err = this._handle.getpeername(out);
|
|
|
|
if (err) return {}; // FIXME(bnoordhuis) Throw?
|
|
|
|
this._peername = out;
|
2011-10-12 23:46:41 +04:00
|
|
|
}
|
|
|
|
return this._peername;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.__defineGetter__('remoteAddress', function() {
|
|
|
|
return this._getpeername().address;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.__defineGetter__('remotePort', function() {
|
|
|
|
return this._getpeername().port;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2013-01-01 06:01:42 +04:00
|
|
|
Socket.prototype._getsockname = function() {
|
|
|
|
if (!this._handle || !this._handle.getsockname) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
if (!this._sockname) {
|
2013-07-19 01:18:50 +04:00
|
|
|
var out = {};
|
|
|
|
var err = this._handle.getsockname(out);
|
|
|
|
if (err) return {}; // FIXME(bnoordhuis) Throw?
|
|
|
|
this._sockname = out;
|
2013-01-01 06:01:42 +04:00
|
|
|
}
|
|
|
|
return this._sockname;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.__defineGetter__('localAddress', function() {
|
|
|
|
return this._getsockname().address;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.__defineGetter__('localPort', function() {
|
|
|
|
return this._getsockname().port;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
Socket.prototype.write = function(chunk, encoding, cb) {
|
2013-07-27 01:38:08 +04:00
|
|
|
if (!util.isString(chunk) && !util.isBuffer(chunk))
|
2012-12-13 09:18:57 +04:00
|
|
|
throw new TypeError('invalid data');
|
|
|
|
return stream.Duplex.prototype.write.apply(this, arguments);
|
|
|
|
};
|
2011-06-16 23:11:05 +04:00
|
|
|
|
|
|
|
|
2013-04-09 12:56:56 +04:00
|
|
|
Socket.prototype._writeGeneric = function(writev, data, encoding, cb) {
|
2011-07-02 11:18:36 +04:00
|
|
|
// If we are still connecting, then buffer this for later.
|
2012-12-13 09:18:57 +04:00
|
|
|
// The Writable logic will buffer up any more writes while
|
|
|
|
// waiting for this one to be done.
|
2011-07-02 11:18:36 +04:00
|
|
|
if (this._connecting) {
|
2013-03-04 07:14:06 +04:00
|
|
|
this._pendingData = data;
|
|
|
|
this._pendingEncoding = encoding;
|
2012-12-13 09:18:57 +04:00
|
|
|
this.once('connect', function() {
|
2013-04-09 12:56:56 +04:00
|
|
|
this._writeGeneric(writev, data, encoding, cb);
|
2012-12-13 09:18:57 +04:00
|
|
|
});
|
|
|
|
return;
|
2011-07-02 11:18:36 +04:00
|
|
|
}
|
2013-03-04 07:14:06 +04:00
|
|
|
this._pendingData = null;
|
|
|
|
this._pendingEncoding = '';
|
2011-07-02 11:18:36 +04:00
|
|
|
|
2013-05-18 02:07:28 +04:00
|
|
|
timers._unrefActive(this);
|
2011-11-03 23:34:23 +04:00
|
|
|
|
2012-03-20 11:21:38 +04:00
|
|
|
if (!this._handle) {
|
|
|
|
this._destroy(new Error('This socket is closed.'), cb);
|
|
|
|
return false;
|
|
|
|
}
|
2011-12-22 06:32:27 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
var req = { oncomplete: afterWrite };
|
|
|
|
var err;
|
|
|
|
|
2013-04-09 12:56:56 +04:00
|
|
|
if (writev) {
|
|
|
|
var chunks = new Array(data.length << 1);
|
|
|
|
for (var i = 0; i < data.length; i++) {
|
|
|
|
var entry = data[i];
|
|
|
|
var chunk = entry.chunk;
|
2013-05-18 00:04:02 +04:00
|
|
|
var enc = entry.encoding;
|
2013-04-09 12:56:56 +04:00
|
|
|
chunks[i * 2] = chunk;
|
2013-05-18 00:04:02 +04:00
|
|
|
chunks[i * 2 + 1] = enc;
|
2013-04-09 12:56:56 +04:00
|
|
|
}
|
2013-07-19 01:18:50 +04:00
|
|
|
err = this._handle.writev(req, chunks);
|
2013-04-09 12:56:56 +04:00
|
|
|
|
|
|
|
// Retain chunks
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err === 0) req._chunks = chunks;
|
2013-04-09 12:56:56 +04:00
|
|
|
} else {
|
2013-08-10 00:35:54 +04:00
|
|
|
var enc;
|
|
|
|
if (util.isBuffer(data)) {
|
|
|
|
req.buffer = data; // Keep reference alive.
|
|
|
|
enc = 'buffer';
|
|
|
|
} else {
|
|
|
|
enc = encoding;
|
|
|
|
}
|
2013-07-19 01:18:50 +04:00
|
|
|
err = createWriteReq(req, this._handle, data, enc);
|
2013-04-09 12:56:56 +04:00
|
|
|
}
|
2011-07-19 13:04:34 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err)
|
|
|
|
return this._destroy(errnoException(err, 'write'), cb);
|
2011-07-19 13:04:34 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
this._bytesDispatched += req.bytes;
|
2013-01-29 05:15:22 +04:00
|
|
|
|
|
|
|
// If it was entirely flushed, we can write some more right now.
|
|
|
|
// However, if more is left in the queue, then wait until that clears.
|
|
|
|
if (this._handle.writeQueueSize === 0)
|
|
|
|
cb();
|
|
|
|
else
|
2013-07-19 01:18:50 +04:00
|
|
|
req.cb = cb;
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
2013-04-09 12:56:56 +04:00
|
|
|
|
|
|
|
Socket.prototype._writev = function(chunks, cb) {
|
|
|
|
this._writeGeneric(true, chunks, '', cb);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype._write = function(data, encoding, cb) {
|
|
|
|
this._writeGeneric(false, data, encoding, cb);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Important: this should have the same values as in src/stream_wrap.h
|
|
|
|
function getEncodingId(encoding) {
|
|
|
|
switch (encoding) {
|
|
|
|
case 'buffer':
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case 'utf8':
|
|
|
|
case 'utf-8':
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
case 'ascii':
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
case 'ucs2':
|
|
|
|
case 'ucs-2':
|
|
|
|
case 'utf16le':
|
|
|
|
case 'utf-16le':
|
|
|
|
return 3;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
function createWriteReq(req, handle, data, encoding) {
|
2012-12-27 23:39:57 +04:00
|
|
|
switch (encoding) {
|
|
|
|
case 'buffer':
|
2013-07-19 01:18:50 +04:00
|
|
|
return handle.writeBuffer(req, data);
|
2012-12-27 23:39:57 +04:00
|
|
|
|
|
|
|
case 'utf8':
|
|
|
|
case 'utf-8':
|
2013-07-19 01:18:50 +04:00
|
|
|
return handle.writeUtf8String(req, data);
|
2012-12-27 23:39:57 +04:00
|
|
|
|
|
|
|
case 'ascii':
|
2013-07-19 01:18:50 +04:00
|
|
|
return handle.writeAsciiString(req, data);
|
2012-12-27 23:39:57 +04:00
|
|
|
|
|
|
|
case 'ucs2':
|
|
|
|
case 'ucs-2':
|
|
|
|
case 'utf16le':
|
|
|
|
case 'utf-16le':
|
2013-07-19 01:18:50 +04:00
|
|
|
return handle.writeUcs2String(req, data);
|
2012-12-27 23:39:57 +04:00
|
|
|
|
|
|
|
default:
|
2013-07-19 01:18:50 +04:00
|
|
|
return handle.writeBuffer(req, new Buffer(data, encoding));
|
2012-12-27 23:39:57 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2012-05-08 22:19:38 +04:00
|
|
|
Socket.prototype.__defineGetter__('bytesWritten', function() {
|
|
|
|
var bytes = this._bytesDispatched,
|
2012-12-13 09:18:57 +04:00
|
|
|
state = this._writableState,
|
2013-03-04 07:14:06 +04:00
|
|
|
data = this._pendingData,
|
|
|
|
encoding = this._pendingEncoding;
|
2012-05-08 22:19:38 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
state.buffer.forEach(function(el) {
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isBuffer(el.chunk))
|
2013-04-10 14:21:41 +04:00
|
|
|
bytes += el.chunk.length;
|
|
|
|
else
|
|
|
|
bytes += Buffer.byteLength(el.chunk, el.encoding);
|
2012-12-13 09:18:57 +04:00
|
|
|
});
|
|
|
|
|
2013-04-11 22:06:07 +04:00
|
|
|
if (data) {
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isBuffer(data))
|
2013-04-10 14:21:41 +04:00
|
|
|
bytes += data.length;
|
|
|
|
else
|
|
|
|
bytes += Buffer.byteLength(data, encoding);
|
2013-04-11 22:06:07 +04:00
|
|
|
}
|
2012-05-08 22:19:38 +04:00
|
|
|
|
|
|
|
return bytes;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-05-08 01:30:55 +04:00
|
|
|
function afterWrite(status, handle, req) {
|
2012-04-27 06:42:10 +04:00
|
|
|
var self = handle.owner;
|
2012-12-13 09:18:57 +04:00
|
|
|
if (self !== process.stderr && self !== process.stdout)
|
2013-08-10 00:35:54 +04:00
|
|
|
debug('afterWrite', status);
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-07-16 00:20:24 +04:00
|
|
|
// callback may come after call to destroy.
|
|
|
|
if (self.destroyed) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('afterWrite destroyed');
|
2011-07-16 00:20:24 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-12-13 01:45:39 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (status < 0) {
|
|
|
|
var ex = errnoException(status, 'write');
|
|
|
|
debug('write failure', ex);
|
|
|
|
self._destroy(ex, req.cb);
|
2011-12-13 01:45:39 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-05-18 02:07:28 +04:00
|
|
|
timers._unrefActive(self);
|
2011-11-03 23:34:23 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
if (self !== process.stderr && self !== process.stdout)
|
|
|
|
debug('afterWrite call cb');
|
2011-06-17 19:10:12 +04:00
|
|
|
|
2012-12-17 00:47:01 +04:00
|
|
|
if (req.cb)
|
|
|
|
req.cb.call(self);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-23 19:37:49 +04:00
|
|
|
function connect(self, address, port, addressType, localAddress) {
|
2011-06-24 23:32:09 +04:00
|
|
|
// TODO return promise from Socket.prototype.connect which
|
|
|
|
// wraps _connectReq.
|
|
|
|
|
2011-07-02 11:18:36 +04:00
|
|
|
assert.ok(self._connecting);
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
var err;
|
2012-05-04 00:27:06 +04:00
|
|
|
if (localAddress) {
|
|
|
|
if (addressType == 6) {
|
2013-07-19 01:18:50 +04:00
|
|
|
err = self._handle.bind6(localAddress);
|
2012-05-04 00:27:06 +04:00
|
|
|
} else {
|
2013-07-19 01:18:50 +04:00
|
|
|
err = self._handle.bind(localAddress);
|
2012-05-04 00:27:06 +04:00
|
|
|
}
|
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err) {
|
|
|
|
self._destroy(errnoException(err, 'bind'));
|
2012-05-04 00:27:06 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
var req = { oncomplete: afterConnect };
|
2013-09-05 02:57:43 +04:00
|
|
|
if (addressType === 6 || addressType === 4) {
|
|
|
|
port = port | 0;
|
|
|
|
if (port <= 0 || port > 65535)
|
|
|
|
throw new RangeError('Port should be > 0 and < 65536');
|
|
|
|
|
|
|
|
if (addressType === 6) {
|
|
|
|
err = self._handle.connect6(req, address, port);
|
|
|
|
} else if (addressType === 4) {
|
|
|
|
err = self._handle.connect(req, address, port);
|
|
|
|
}
|
2011-07-07 00:34:04 +04:00
|
|
|
} else {
|
2013-07-19 01:18:50 +04:00
|
|
|
err = self._handle.connect(req, address, afterConnect);
|
2011-07-07 00:34:04 +04:00
|
|
|
}
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err) {
|
|
|
|
self._destroy(errnoException(err, 'connect'));
|
2011-06-24 23:32:09 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
Socket.prototype.connect = function(options, cb) {
|
2013-03-02 22:20:33 +04:00
|
|
|
if (this.write !== Socket.prototype.write)
|
|
|
|
this.write = Socket.prototype.write;
|
|
|
|
|
2013-07-27 01:38:08 +04:00
|
|
|
if (!util.isObject(options)) {
|
2012-01-09 05:18:39 +04:00
|
|
|
// Old API:
|
|
|
|
// connect(port, [host], [cb])
|
|
|
|
// connect(path, [cb]);
|
|
|
|
var args = normalizeConnectArgs(arguments);
|
|
|
|
return Socket.prototype.connect.apply(this, args);
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
if (this.destroyed) {
|
|
|
|
this._readableState.reading = false;
|
|
|
|
this._readableState.ended = false;
|
|
|
|
this._writableState.ended = false;
|
|
|
|
this._writableState.ending = false;
|
|
|
|
this._writableState.finished = false;
|
|
|
|
this.destroyed = false;
|
|
|
|
this._handle = null;
|
|
|
|
}
|
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
var self = this;
|
|
|
|
var pipe = !!options.path;
|
2013-05-22 01:02:18 +04:00
|
|
|
debug('pipe', pipe, options.path);
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
if (!this._handle) {
|
2011-08-01 02:58:10 +04:00
|
|
|
this._handle = pipe ? createPipe() : createTCP();
|
2011-07-01 03:37:30 +04:00
|
|
|
initSocketHandle(this);
|
|
|
|
}
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isFunction(cb)) {
|
2012-11-24 18:24:36 +04:00
|
|
|
self.once('connect', cb);
|
2011-06-21 18:53:02 +04:00
|
|
|
}
|
|
|
|
|
2013-05-18 02:07:28 +04:00
|
|
|
timers._unrefActive(this);
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-07-02 11:18:36 +04:00
|
|
|
self._connecting = true;
|
2011-07-15 01:18:17 +04:00
|
|
|
self.writable = true;
|
2011-07-02 11:18:36 +04:00
|
|
|
|
2011-07-20 00:49:42 +04:00
|
|
|
if (pipe) {
|
2012-01-09 05:18:39 +04:00
|
|
|
connect(self, options.path);
|
|
|
|
|
|
|
|
} else if (!options.host) {
|
|
|
|
debug('connect: missing host');
|
2013-10-28 14:25:27 +04:00
|
|
|
self._host = '127.0.0.1';
|
|
|
|
connect(self, self._host, options.port, 4);
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
} else {
|
|
|
|
var host = options.host;
|
2013-08-20 16:31:40 +04:00
|
|
|
var family = options.family || 4;
|
2011-10-05 02:08:18 +04:00
|
|
|
debug('connect: find host ' + host);
|
2013-10-28 14:25:27 +04:00
|
|
|
self._host = host;
|
2013-08-20 16:31:40 +04:00
|
|
|
require('dns').lookup(host, family, function(err, ip, addressType) {
|
2013-05-07 22:55:12 +04:00
|
|
|
self.emit('lookup', err, ip, addressType);
|
|
|
|
|
2011-09-20 00:41:42 +04:00
|
|
|
// It's possible we were destroyed while looking this up.
|
|
|
|
// XXX it would be great if we could cancel the promise returned by
|
|
|
|
// the look up.
|
|
|
|
if (!self._connecting) return;
|
|
|
|
|
2011-06-24 23:32:09 +04:00
|
|
|
if (err) {
|
2011-08-09 18:26:42 +04:00
|
|
|
// net.createConnection() creates a net.Socket object and
|
|
|
|
// immediately calls net.Socket.connect() on it (that's us).
|
|
|
|
// There are no event listeners registered yet so defer the
|
|
|
|
// error event to the next tick.
|
|
|
|
process.nextTick(function() {
|
|
|
|
self.emit('error', err);
|
2012-03-20 11:21:38 +04:00
|
|
|
self._destroy();
|
2011-08-09 18:26:42 +04:00
|
|
|
});
|
2011-06-24 23:32:09 +04:00
|
|
|
} else {
|
2013-05-18 02:07:28 +04:00
|
|
|
timers._unrefActive(self);
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-08-11 19:41:30 +04:00
|
|
|
addressType = addressType || 4;
|
|
|
|
|
|
|
|
// node_net.cc handles null host names graciously but user land
|
|
|
|
// expects remoteAddress to have a meaningful value
|
|
|
|
ip = ip || (addressType === 4 ? '127.0.0.1' : '0:0:0:0:0:0:0:1');
|
|
|
|
|
2012-02-23 19:37:49 +04:00
|
|
|
connect(self, ip, options.port, addressType, options.localAddress);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
2011-06-24 23:32:09 +04:00
|
|
|
});
|
|
|
|
}
|
2011-10-23 13:20:03 +04:00
|
|
|
return self;
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-07-13 05:26:04 +04:00
|
|
|
Socket.prototype.ref = function() {
|
|
|
|
if (this._handle)
|
|
|
|
this._handle.ref();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.unref = function() {
|
|
|
|
if (this._handle)
|
|
|
|
this._handle.unref();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-10 13:35:35 +04:00
|
|
|
function afterConnect(status, handle, req, readable, writable) {
|
2012-04-27 06:42:10 +04:00
|
|
|
var self = handle.owner;
|
2011-07-02 11:18:36 +04:00
|
|
|
|
2011-07-16 00:20:24 +04:00
|
|
|
// callback may come after call to destroy
|
|
|
|
if (self.destroyed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-23 18:03:46 +04:00
|
|
|
assert(handle === self._handle, 'handle != self._handle');
|
2011-07-22 13:11:02 +04:00
|
|
|
|
2011-10-05 02:08:18 +04:00
|
|
|
debug('afterConnect');
|
2011-07-22 13:11:02 +04:00
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
assert.ok(self._connecting);
|
|
|
|
self._connecting = false;
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
if (status == 0) {
|
2012-02-10 13:35:35 +04:00
|
|
|
self.readable = readable;
|
|
|
|
self.writable = writable;
|
2013-05-18 02:07:28 +04:00
|
|
|
timers._unrefActive(self);
|
2011-07-02 11:18:36 +04:00
|
|
|
|
2012-02-26 23:13:08 +04:00
|
|
|
self.emit('connect');
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// start the first read, or get an immediate EOF.
|
|
|
|
// this doesn't actually consume any bytes, because len=0.
|
|
|
|
if (readable)
|
|
|
|
self.read(0);
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
} else {
|
2012-12-13 09:18:57 +04:00
|
|
|
self._connecting = false;
|
2013-07-19 01:18:50 +04:00
|
|
|
self._destroy(errnoException(status, 'connect'));
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function Server(/* [ options, ] listener */) {
|
|
|
|
if (!(this instanceof Server)) return new Server(arguments[0], arguments[1]);
|
|
|
|
events.EventEmitter.call(this);
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
2011-06-20 16:48:00 +04:00
|
|
|
var options;
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isFunction(arguments[0])) {
|
2011-06-16 23:11:05 +04:00
|
|
|
options = {};
|
2011-06-20 16:48:00 +04:00
|
|
|
self.on('connection', arguments[0]);
|
2011-06-16 23:11:05 +04:00
|
|
|
} else {
|
2011-07-13 02:26:45 +04:00
|
|
|
options = arguments[0] || {};
|
2011-10-05 02:08:18 +04:00
|
|
|
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isFunction(arguments[1])) {
|
2011-06-20 16:48:00 +04:00
|
|
|
self.on('connection', arguments[1]);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
this._connections = 0;
|
|
|
|
|
|
|
|
Object.defineProperty(this, 'connections', {
|
2013-01-14 21:08:20 +04:00
|
|
|
get: util.deprecate(function() {
|
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
if (self._usingSlaves) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return self._connections;
|
2013-01-14 21:08:20 +04:00
|
|
|
}, 'connections property is deprecated. Use getConnections() method'),
|
|
|
|
set: util.deprecate(function(val) {
|
2012-04-12 11:23:07 +04:00
|
|
|
return (self._connections = val);
|
2013-01-14 21:08:20 +04:00
|
|
|
}, 'connections property is deprecated. Use getConnections() method'),
|
2012-04-12 11:23:07 +04:00
|
|
|
configurable: true, enumerable: true
|
|
|
|
});
|
|
|
|
|
2011-07-07 04:13:17 +04:00
|
|
|
this._handle = null;
|
2013-01-14 21:08:20 +04:00
|
|
|
this._usingSlaves = false;
|
|
|
|
this._slaves = [];
|
2012-12-13 09:18:57 +04:00
|
|
|
|
|
|
|
this.allowHalfOpen = options.allowHalfOpen || false;
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
util.inherits(Server, events.EventEmitter);
|
|
|
|
exports.Server = Server;
|
|
|
|
|
|
|
|
|
2012-04-18 17:56:14 +04:00
|
|
|
function toNumber(x) { return (x = Number(x)) >= 0 ? x : false; }
|
2011-06-16 23:11:05 +04:00
|
|
|
|
|
|
|
|
2012-08-07 01:43:47 +04:00
|
|
|
var createServerHandle = exports._createServerHandle =
|
|
|
|
function(address, port, addressType, fd) {
|
2013-07-19 01:18:50 +04:00
|
|
|
var err = 0;
|
2011-10-12 13:56:29 +04:00
|
|
|
// assign handle in listen, and clean up if bind or listen fails
|
2011-12-02 01:24:28 +04:00
|
|
|
var handle;
|
|
|
|
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isNumber(fd) && fd >= 0) {
|
2013-03-14 18:13:58 +04:00
|
|
|
try {
|
|
|
|
handle = createHandle(fd);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
// Not a fd we can listen on. This will trigger an error.
|
|
|
|
debug('listen invalid fd=' + fd + ': ' + e.message);
|
2013-07-19 01:18:50 +04:00
|
|
|
return uv.UV_EINVAL;
|
2012-06-12 21:02:52 +04:00
|
|
|
}
|
2013-03-14 18:13:58 +04:00
|
|
|
handle.open(fd);
|
|
|
|
handle.readable = true;
|
|
|
|
handle.writable = true;
|
2012-06-12 21:02:52 +04:00
|
|
|
return handle;
|
|
|
|
|
|
|
|
} else if (port == -1 && addressType == -1) {
|
2011-12-02 01:24:28 +04:00
|
|
|
handle = createPipe();
|
|
|
|
if (process.platform === 'win32') {
|
|
|
|
var instances = parseInt(process.env.NODE_PENDING_PIPE_INSTANCES);
|
|
|
|
if (!isNaN(instances)) {
|
|
|
|
handle.setPendingInstances(instances);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
handle = createTCP();
|
|
|
|
}
|
2011-10-12 13:56:29 +04:00
|
|
|
|
|
|
|
if (address || port) {
|
|
|
|
debug('bind to ' + address);
|
|
|
|
if (addressType == 6) {
|
2013-07-19 01:18:50 +04:00
|
|
|
err = handle.bind6(address, port);
|
2011-10-12 13:56:29 +04:00
|
|
|
} else {
|
2013-07-19 01:18:50 +04:00
|
|
|
err = handle.bind(address, port);
|
2011-10-12 13:56:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err) {
|
2011-10-12 13:56:29 +04:00
|
|
|
handle.close();
|
2013-07-19 01:18:50 +04:00
|
|
|
return err;
|
2011-10-12 13:56:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return handle;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-06-12 21:02:52 +04:00
|
|
|
Server.prototype._listen2 = function(address, port, addressType, backlog, fd) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('listen2', address, port, addressType, backlog);
|
2011-10-12 13:56:29 +04:00
|
|
|
var self = this;
|
2011-06-29 20:04:55 +04:00
|
|
|
|
2012-08-07 01:43:47 +04:00
|
|
|
// If there is not yet a handle, we need to create one and bind.
|
|
|
|
// In the case of a server sent via IPC, we don't need to do this.
|
|
|
|
if (!self._handle) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('_listen2: create a handle');
|
2013-07-19 01:18:50 +04:00
|
|
|
var rval = createServerHandle(address, port, addressType, fd);
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isNumber(rval)) {
|
2013-07-19 01:18:50 +04:00
|
|
|
var error = errnoException(rval, 'listen');
|
2012-08-07 01:43:47 +04:00
|
|
|
process.nextTick(function() {
|
2012-08-06 01:22:44 +04:00
|
|
|
self.emit('error', error);
|
2012-08-07 01:43:47 +04:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2013-07-19 01:18:50 +04:00
|
|
|
self._handle = rval;
|
2012-12-13 09:18:57 +04:00
|
|
|
} else {
|
|
|
|
debug('_listen2: have a handle already');
|
2012-08-07 01:43:47 +04:00
|
|
|
}
|
|
|
|
|
2011-10-08 00:58:49 +04:00
|
|
|
self._handle.onconnection = onconnection;
|
2012-04-27 06:42:10 +04:00
|
|
|
self._handle.owner = self;
|
2011-10-08 00:58:49 +04:00
|
|
|
|
2012-04-18 17:56:14 +04:00
|
|
|
// Use a backlog of 512 entries. We pass 511 to the listen() call because
|
|
|
|
// the kernel does: backlogsize = roundup_pow_of_two(backlogsize + 1);
|
|
|
|
// which will thus give us a backlog of 512 entries.
|
2013-07-19 01:18:50 +04:00
|
|
|
var err = self._handle.listen(backlog || 511);
|
2011-10-08 00:58:49 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err) {
|
|
|
|
var ex = errnoException(err, 'listen');
|
2011-07-07 04:13:17 +04:00
|
|
|
self._handle.close();
|
|
|
|
self._handle = null;
|
2011-06-29 01:32:01 +04:00
|
|
|
process.nextTick(function() {
|
2012-07-12 18:56:42 +04:00
|
|
|
self.emit('error', ex);
|
2011-06-29 01:32:01 +04:00
|
|
|
});
|
2012-08-07 01:43:47 +04:00
|
|
|
return;
|
2011-06-24 23:32:09 +04:00
|
|
|
}
|
2011-10-08 00:58:49 +04:00
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
// generate connection key, this should be unique to the connection
|
|
|
|
this._connectionKey = addressType + ':' + address + ':' + port;
|
|
|
|
|
2012-08-07 01:43:47 +04:00
|
|
|
process.nextTick(function() {
|
|
|
|
self.emit('listening');
|
|
|
|
});
|
2012-02-19 03:01:35 +04:00
|
|
|
};
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2011-10-08 00:58:49 +04:00
|
|
|
|
2012-06-12 21:02:52 +04:00
|
|
|
function listen(self, address, port, addressType, backlog, fd) {
|
2012-08-07 01:43:47 +04:00
|
|
|
if (!cluster) cluster = require('cluster');
|
2012-07-10 14:06:13 +04:00
|
|
|
|
2012-02-09 09:22:50 +04:00
|
|
|
if (cluster.isMaster) {
|
2012-08-07 01:43:47 +04:00
|
|
|
self._listen2(address, port, addressType, backlog, fd);
|
2012-02-09 09:22:50 +04:00
|
|
|
return;
|
2012-07-14 11:38:00 +04:00
|
|
|
}
|
2012-02-09 09:22:50 +04:00
|
|
|
|
2013-07-28 14:19:34 +04:00
|
|
|
cluster._getServer(self, address, port, addressType, fd, cb);
|
|
|
|
|
|
|
|
function cb(err, handle) {
|
|
|
|
// EADDRINUSE may not be reported until we call listen(). To complicate
|
|
|
|
// matters, a failed bind() followed by listen() will implicitly bind to
|
|
|
|
// a random port. Ergo, check that the socket is bound to the expected
|
|
|
|
// port before calling listen().
|
|
|
|
//
|
|
|
|
// FIXME(bnoordhuis) Doesn't work for pipe handles, they don't have a
|
|
|
|
// getsockname() method. Non-issue for now, the cluster module doesn't
|
|
|
|
// really support pipes anyway.
|
|
|
|
if (err === 0 && port > 0 && handle.getsockname) {
|
2013-07-19 01:18:50 +04:00
|
|
|
var out = {};
|
2013-07-28 14:19:34 +04:00
|
|
|
err = handle.getsockname(out);
|
|
|
|
if (err === 0 && port !== out.port)
|
2013-07-19 01:18:50 +04:00
|
|
|
err = uv.UV_EADDRINUSE;
|
2012-02-09 09:22:50 +04:00
|
|
|
}
|
|
|
|
|
2013-07-28 14:19:34 +04:00
|
|
|
if (err)
|
|
|
|
return self.emit('error', errnoException(err, 'bind'));
|
|
|
|
|
2012-02-09 09:22:50 +04:00
|
|
|
self._handle = handle;
|
|
|
|
self._listen2(address, port, addressType, backlog, fd);
|
2013-07-28 14:19:34 +04:00
|
|
|
}
|
2012-07-14 11:38:00 +04:00
|
|
|
}
|
2011-10-12 13:56:29 +04:00
|
|
|
|
2012-08-07 01:43:47 +04:00
|
|
|
|
|
|
|
Server.prototype.listen = function() {
|
2011-06-16 23:11:05 +04:00
|
|
|
var self = this;
|
|
|
|
|
|
|
|
var lastArg = arguments[arguments.length - 1];
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isFunction(lastArg)) {
|
2011-10-12 14:06:16 +04:00
|
|
|
self.once('listening', lastArg);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
2012-04-18 17:56:14 +04:00
|
|
|
var port = toNumber(arguments[0]);
|
|
|
|
|
|
|
|
// The third optional argument is the backlog size.
|
|
|
|
// When the ip is omitted it can be the second argument.
|
|
|
|
var backlog = toNumber(arguments[1]) || toNumber(arguments[2]);
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-10-12 23:46:41 +04:00
|
|
|
var TCP = process.binding('tcp_wrap').TCP;
|
2011-10-08 03:43:53 +04:00
|
|
|
|
2013-07-27 01:38:08 +04:00
|
|
|
if (arguments.length == 0 || util.isFunction(arguments[0])) {
|
2012-07-29 03:59:26 +04:00
|
|
|
// Bind to a random port.
|
|
|
|
listen(self, '0.0.0.0', 0, null, backlog);
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2013-07-27 01:38:08 +04:00
|
|
|
} else if (arguments[0] && util.isObject(arguments[0])) {
|
2012-06-12 21:02:52 +04:00
|
|
|
var h = arguments[0];
|
|
|
|
if (h._handle) {
|
|
|
|
h = h._handle;
|
|
|
|
} else if (h.handle) {
|
|
|
|
h = h.handle;
|
|
|
|
}
|
2012-08-07 01:43:47 +04:00
|
|
|
if (h instanceof TCP) {
|
2012-06-12 21:02:52 +04:00
|
|
|
self._handle = h;
|
|
|
|
listen(self, null, -1, -1, backlog);
|
2013-07-27 01:38:08 +04:00
|
|
|
} else if (util.isNumber(h.fd) && h.fd >= 0) {
|
2012-06-12 21:02:52 +04:00
|
|
|
listen(self, null, null, null, backlog, h.fd);
|
|
|
|
} else {
|
|
|
|
throw new Error('Invalid listen argument: ' + h);
|
|
|
|
}
|
2011-07-20 00:49:42 +04:00
|
|
|
} else if (isPipeName(arguments[0])) {
|
|
|
|
// UNIX socket or Windows pipe.
|
2011-11-02 02:42:45 +04:00
|
|
|
var pipeName = self._pipeName = arguments[0];
|
2012-04-18 17:56:14 +04:00
|
|
|
listen(self, pipeName, -1, -1, backlog);
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2013-07-27 01:38:08 +04:00
|
|
|
} else if (util.isUndefined(arguments[1]) ||
|
|
|
|
util.isFunction(arguments[1]) ||
|
|
|
|
util.isNumber(arguments[1])) {
|
2011-06-24 23:32:09 +04:00
|
|
|
// The first argument is the port, no IP given.
|
2012-04-18 17:56:14 +04:00
|
|
|
listen(self, '0.0.0.0', port, 4, backlog);
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
} else {
|
2012-04-18 17:56:14 +04:00
|
|
|
// The first argument is the port, the second an IP.
|
2011-06-16 23:11:05 +04:00
|
|
|
require('dns').lookup(arguments[1], function(err, ip, addressType) {
|
|
|
|
if (err) {
|
|
|
|
self.emit('error', err);
|
|
|
|
} else {
|
2012-04-18 17:56:14 +04:00
|
|
|
listen(self, ip || '0.0.0.0', port, ip ? addressType : 4, backlog);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2011-10-23 13:20:03 +04:00
|
|
|
return self;
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
2011-07-16 02:06:10 +04:00
|
|
|
Server.prototype.address = function() {
|
2011-11-02 02:42:45 +04:00
|
|
|
if (this._handle && this._handle.getsockname) {
|
2013-07-19 01:18:50 +04:00
|
|
|
var out = {};
|
|
|
|
var err = this._handle.getsockname(out);
|
|
|
|
// TODO(bnoordhuis) Check err and throw?
|
|
|
|
return out;
|
2011-11-02 02:42:45 +04:00
|
|
|
} else if (this._pipeName) {
|
|
|
|
return this._pipeName;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2011-07-16 02:06:10 +04:00
|
|
|
};
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
function onconnection(err, clientHandle) {
|
2011-06-16 23:11:05 +04:00
|
|
|
var handle = this;
|
2012-04-27 06:42:10 +04:00
|
|
|
var self = handle.owner;
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-10-05 02:08:18 +04:00
|
|
|
debug('onconnection');
|
2011-07-02 11:18:36 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err) {
|
|
|
|
self.emit('error', errnoException(err, 'accept'));
|
2011-08-11 01:59:21 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
if (self.maxConnections && self._connections >= self.maxConnections) {
|
2011-07-15 00:18:28 +04:00
|
|
|
clientHandle.close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
var socket = new Socket({
|
|
|
|
handle: clientHandle,
|
|
|
|
allowHalfOpen: self.allowHalfOpen
|
|
|
|
});
|
2011-06-17 16:27:02 +04:00
|
|
|
socket.readable = socket.writable = true;
|
2011-09-05 04:09:24 +04:00
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
self._connections++;
|
2011-06-17 16:27:02 +04:00
|
|
|
socket.server = self;
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
DTRACE_NET_SERVER_CONNECTION(socket);
|
2012-11-21 03:27:22 +04:00
|
|
|
COUNTER_NET_SERVER_CONNECTION(socket);
|
2011-06-16 23:11:05 +04:00
|
|
|
self.emit('connection', socket);
|
|
|
|
}
|
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
|
2013-01-14 21:08:20 +04:00
|
|
|
Server.prototype.getConnections = function(cb) {
|
|
|
|
function end(err, connections) {
|
|
|
|
process.nextTick(function() {
|
|
|
|
cb(err, connections);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this._usingSlaves) {
|
|
|
|
return end(null, this._connections);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Poll slaves
|
|
|
|
var left = this._slaves.length,
|
|
|
|
total = this._connections;
|
|
|
|
|
|
|
|
function oncount(err, count) {
|
|
|
|
if (err) {
|
|
|
|
left = -1;
|
|
|
|
return end(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
total += count;
|
|
|
|
if (--left === 0) return end(null, total);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._slaves.forEach(function(slave) {
|
|
|
|
slave.getConnections(oncount);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-02-16 23:52:47 +04:00
|
|
|
Server.prototype.close = function(cb) {
|
2013-01-14 21:08:20 +04:00
|
|
|
function onSlaveClose() {
|
|
|
|
if (--left !== 0) return;
|
|
|
|
|
|
|
|
self._connections = 0;
|
|
|
|
self._emitCloseIfDrained();
|
|
|
|
}
|
|
|
|
|
2011-07-22 03:23:50 +04:00
|
|
|
if (!this._handle) {
|
|
|
|
// Throw error. Follows net_legacy behaviour.
|
|
|
|
throw new Error('Not running');
|
2011-07-07 04:13:17 +04:00
|
|
|
}
|
2011-07-22 03:23:50 +04:00
|
|
|
|
2012-02-16 23:52:47 +04:00
|
|
|
if (cb) {
|
|
|
|
this.once('close', cb);
|
|
|
|
}
|
2011-07-22 03:23:50 +04:00
|
|
|
this._handle.close();
|
|
|
|
this._handle = null;
|
2011-10-23 13:20:03 +04:00
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
if (this._usingSlaves) {
|
2013-01-14 21:08:20 +04:00
|
|
|
var self = this,
|
|
|
|
left = this._slaves.length;
|
|
|
|
|
|
|
|
// Increment connections to be sure that, even if all sockets will be closed
|
|
|
|
// during polling of slaves, `close` event will be emitted only once.
|
|
|
|
this._connections++;
|
|
|
|
|
|
|
|
// Poll slaves
|
|
|
|
this._slaves.forEach(function(slave) {
|
|
|
|
slave.close(onSlaveClose);
|
2012-04-12 11:23:07 +04:00
|
|
|
});
|
2013-01-14 21:08:20 +04:00
|
|
|
} else {
|
|
|
|
this._emitCloseIfDrained();
|
2012-04-12 11:23:07 +04:00
|
|
|
}
|
|
|
|
|
2011-10-23 13:20:03 +04:00
|
|
|
return this;
|
2011-07-25 11:01:44 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
Server.prototype._emitCloseIfDrained = function() {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('SERVER _emitCloseIfDrained');
|
2011-12-29 22:30:07 +04:00
|
|
|
var self = this;
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
if (self._handle || self._connections) {
|
|
|
|
debug('SERVER handle? %j connections? %d',
|
|
|
|
!!self._handle, self._connections);
|
|
|
|
return;
|
|
|
|
}
|
2011-12-29 22:30:07 +04:00
|
|
|
|
|
|
|
process.nextTick(function() {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('SERVER: emit close');
|
2011-12-29 22:30:07 +04:00
|
|
|
self.emit('close');
|
|
|
|
});
|
2011-06-17 19:10:12 +04:00
|
|
|
};
|
2011-07-04 22:25:31 +04:00
|
|
|
|
2011-10-11 01:24:56 +04:00
|
|
|
|
2012-06-21 22:42:33 +04:00
|
|
|
Server.prototype.listenFD = util.deprecate(function(fd, type) {
|
|
|
|
return this.listen({ fd: fd });
|
|
|
|
}, 'listenFD is deprecated. Use listen({fd: <number>}).');
|
2011-08-04 23:04:54 +04:00
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
Server.prototype._setupSlave = function(socketList) {
|
2013-01-14 21:08:20 +04:00
|
|
|
this._usingSlaves = true;
|
2012-04-12 11:23:07 +04:00
|
|
|
this._slaves.push(socketList);
|
|
|
|
};
|
|
|
|
|
2012-07-13 05:26:04 +04:00
|
|
|
Server.prototype.ref = function() {
|
|
|
|
if (this._handle)
|
|
|
|
this._handle.ref();
|
|
|
|
};
|
|
|
|
|
|
|
|
Server.prototype.unref = function() {
|
|
|
|
if (this._handle)
|
|
|
|
this._handle.unref();
|
|
|
|
};
|
|
|
|
|
2011-07-04 22:25:31 +04:00
|
|
|
|
|
|
|
// TODO: isIP should be moved to the DNS code. Putting it here now because
|
|
|
|
// this is what the legacy system did.
|
2012-10-09 04:51:59 +04:00
|
|
|
exports.isIP = cares.isIP;
|
2011-07-04 22:25:31 +04:00
|
|
|
|
|
|
|
|
|
|
|
exports.isIPv4 = function(input) {
|
2011-07-05 02:03:21 +04:00
|
|
|
return exports.isIP(input) === 4;
|
2011-07-04 22:25:31 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
exports.isIPv6 = function(input) {
|
2011-07-05 02:03:21 +04:00
|
|
|
return exports.isIP(input) === 6;
|
2011-07-04 22:25:31 +04:00
|
|
|
};
|
2012-01-20 04:52:23 +04:00
|
|
|
|
|
|
|
|
|
|
|
if (process.platform === 'win32') {
|
|
|
|
var simultaneousAccepts;
|
|
|
|
|
|
|
|
exports._setSimultaneousAccepts = function(handle) {
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isUndefined(handle)) {
|
2012-01-20 04:52:23 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-27 01:38:08 +04:00
|
|
|
if (util.isUndefined(simultaneousAccepts)) {
|
2012-01-20 04:52:23 +04:00
|
|
|
simultaneousAccepts = (process.env.NODE_MANY_ACCEPTS &&
|
2012-02-19 03:01:35 +04:00
|
|
|
process.env.NODE_MANY_ACCEPTS !== '0');
|
2012-01-20 04:52:23 +04:00
|
|
|
}
|
|
|
|
|
2012-02-19 03:01:35 +04:00
|
|
|
if (handle._simultaneousAccepts !== simultaneousAccepts) {
|
2012-01-20 04:52:23 +04:00
|
|
|
handle.setSimultaneousAccepts(simultaneousAccepts);
|
|
|
|
handle._simultaneousAccepts = simultaneousAccepts;
|
|
|
|
}
|
2012-02-19 03:01:35 +04:00
|
|
|
};
|
2012-01-20 04:52:23 +04:00
|
|
|
} else {
|
2012-02-19 03:01:35 +04:00
|
|
|
exports._setSimultaneousAccepts = function(handle) {};
|
2012-01-20 04:52:23 +04:00
|
|
|
}
|