2011-06-16 19:11:05 +00:00
|
|
|
var events = require('events');
|
|
|
|
var stream = require('stream');
|
|
|
|
var timers = require('timers');
|
|
|
|
var util = require('util');
|
|
|
|
var assert = require('assert');
|
|
|
|
var TCP = process.binding('tcp_wrap').TCP;
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
/* Bit flags for socket._flags */
|
|
|
|
var FLAG_GOT_EOF = 1 << 0;
|
|
|
|
var FLAG_SHUTDOWN = 1 << 1;
|
|
|
|
var FLAG_DESTROY_SOON = 1 << 2;
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
|
|
|
|
var debug;
|
|
|
|
if (process.env.NODE_DEBUG && /net/.test(process.env.NODE_DEBUG)) {
|
|
|
|
debug = function(x) { console.error('NET:', x); };
|
|
|
|
} else {
|
|
|
|
debug = function() { };
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-17 12:27:02 +00:00
|
|
|
exports.createServer = function() {
|
|
|
|
return new Server(arguments[0], arguments[1]);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
exports.connect = exports.createConnection = function(port, host) {
|
|
|
|
var s = new Socket();
|
|
|
|
s.connect(port, host);
|
|
|
|
return s;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
function Socket(options) {
|
|
|
|
if (!(this instanceof Socket)) return new Socket(options);
|
|
|
|
|
|
|
|
stream.Stream.call(this);
|
|
|
|
|
|
|
|
// private
|
2011-06-17 12:27:02 +00:00
|
|
|
if (options && options.handle) {
|
2011-06-16 19:11:05 +00:00
|
|
|
this._handle = options.handle;
|
|
|
|
} else {
|
|
|
|
this._handle = new TCP();
|
|
|
|
}
|
|
|
|
this._handle.socket = this;
|
|
|
|
this._handle.onread = onread;
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
this.allowHalfOpen = options ? (options.allowHalfOpen || false) : false;
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
this._writeRequests = [];
|
2011-06-17 15:10:12 +00:00
|
|
|
|
|
|
|
this._flags = 0;
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
util.inherits(Socket, stream.Stream);
|
|
|
|
|
|
|
|
|
2011-06-17 16:09:15 +00:00
|
|
|
exports.Socket = Socket;
|
|
|
|
exports.Stream = Socket; // Legacy naming.
|
|
|
|
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
Socket.prototype.setTimeout = function(msecs, callback) {
|
|
|
|
if (msecs > 0) {
|
|
|
|
timers.enroll(this, msecs);
|
|
|
|
if (typeof this.fd === 'number') { timers.active(this); }
|
|
|
|
if (callback) {
|
|
|
|
this.once('timeout', callback);
|
|
|
|
}
|
|
|
|
} else if (msecs === 0) {
|
|
|
|
timers.unenroll(this);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 12:27:02 +00:00
|
|
|
Socket.prototype.setNoDelay = function() {
|
|
|
|
/* TODO implement me */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
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() {
|
|
|
|
return this._handle.writeQueueSize;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
Socket.prototype.pause = function() {
|
|
|
|
this._handle.readStop();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.resume = function() {
|
|
|
|
this._handle.readStart();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
Socket.prototype.end = function(data, encoding) {
|
|
|
|
if (!this.writable) return;
|
|
|
|
this.writable = false;
|
|
|
|
|
|
|
|
if (data) this.write(data, encoding);
|
|
|
|
DTRACE_NET_STREAM_END(this);
|
|
|
|
|
|
|
|
if (this._flags & FLAG_GOT_EOF) {
|
|
|
|
this.destroySoon();
|
|
|
|
} else {
|
|
|
|
this._flags |= FLAG_SHUTDOWN;
|
|
|
|
var shutdownReq = this._handle.shutdown();
|
|
|
|
shutdownReq.oncomplete = afterShutdown;
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
function afterShutdown(status, handle, req) {
|
|
|
|
var self = handle.socket;
|
|
|
|
|
|
|
|
assert.ok(self._flags & FLAG_SHUTDOWN);
|
|
|
|
|
|
|
|
if (self._flags & FLAG_GOT_EOF) {
|
|
|
|
self.destroy();
|
|
|
|
} else {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
Socket.prototype.destroySoon = function() {
|
2011-06-17 15:10:12 +00:00
|
|
|
this.writable = false;
|
|
|
|
this._flags |= FLAG_DESTROY_SOON;
|
|
|
|
|
|
|
|
if (this._writeRequests.length == 0) {
|
|
|
|
this.destroy();
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.destroy = function(exception) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
debug('destroy ' + this.fd);
|
|
|
|
|
|
|
|
this.readable = this.writable = false;
|
|
|
|
|
|
|
|
timers.unenroll(this);
|
|
|
|
|
|
|
|
if (this.server && !this.destroyed) {
|
|
|
|
this.server.connections--;
|
|
|
|
}
|
|
|
|
|
|
|
|
debug('close ' + this.fd);
|
|
|
|
this._handle.close();
|
|
|
|
|
|
|
|
process.nextTick(function() {
|
|
|
|
if (exception) self.emit('error', exception);
|
|
|
|
self.emit('close', exception ? true : false);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.destroyed = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function onread(buffer, offset, length) {
|
|
|
|
var handle = this;
|
|
|
|
var self = handle.socket;
|
|
|
|
assert.equal(handle, self._handle);
|
|
|
|
|
|
|
|
timers.active(self);
|
|
|
|
|
|
|
|
var end = offset + length;
|
|
|
|
|
2011-06-17 11:36:16 +00:00
|
|
|
if (buffer) {
|
|
|
|
// Emit 'data' event.
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2011-06-17 11:36:16 +00:00
|
|
|
if (self._decoder) {
|
|
|
|
// Emit a string.
|
|
|
|
var string = self._decoder.write(buffer.slice(offset, end));
|
|
|
|
if (string.length) self.emit('data', string);
|
|
|
|
} else {
|
|
|
|
// Emit a slice. Attempt to avoid slicing the buffer if no one is
|
|
|
|
// listening for 'data'.
|
|
|
|
if (self._events && self._events['data']) {
|
|
|
|
self.emit('data', buffer.slice(offset, end));
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
|
2011-06-17 11:36:16 +00:00
|
|
|
// Optimization: emit the original buffer with end points
|
|
|
|
if (self.ondata) self.ondata(buffer, offset, end);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// EOF
|
|
|
|
self.readable = false;
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
assert.ok(!(self._flags & FLAG_GOT_EOF));
|
|
|
|
self._flags |= FLAG_GOT_EOF;
|
|
|
|
|
|
|
|
// We call destroy() before end(). 'close' not emitted until nextTick so
|
|
|
|
// the 'end' event will come first as required.
|
2011-06-17 11:36:16 +00:00
|
|
|
if (!self.writable) self.destroy();
|
|
|
|
|
|
|
|
if (!self.allowHalfOpen) self.end();
|
|
|
|
if (self._events && self._events['end']) self.emit('end');
|
|
|
|
if (self.onend) self.onend();
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.setEncoding = function(encoding) {
|
|
|
|
var StringDecoder = require('string_decoder').StringDecoder; // lazy load
|
|
|
|
this._decoder = new StringDecoder(encoding);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.write = function(data /* [encoding], [fd], [cb] */) {
|
|
|
|
var encoding, fd, cb;
|
|
|
|
|
|
|
|
// parse arguments
|
|
|
|
if (typeof arguments[1] == 'string') {
|
|
|
|
encoding = arguments[1];
|
|
|
|
if (typeof arguments[2] == 'number') {
|
|
|
|
fd = arguments[2];
|
|
|
|
cb = arguments[3];
|
|
|
|
} else {
|
|
|
|
cb = arguments[2];
|
|
|
|
}
|
|
|
|
} else if (typeof arguments[1] == 'number') {
|
|
|
|
fd = arguments[1];
|
|
|
|
cb = arguments[2];
|
|
|
|
} else if (typeof arguments[2] == 'number') {
|
|
|
|
// This case is to support old calls when the encoding argument
|
|
|
|
// was not optional: s.write(buf, undefined, pipeFDs[1])
|
|
|
|
encoding = arguments[1];
|
|
|
|
fd = arguments[2];
|
|
|
|
cb = arguments[3];
|
|
|
|
} else {
|
|
|
|
cb = arguments[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change strings to buffers. SLOW
|
|
|
|
if (typeof data == 'string') {
|
|
|
|
data = new Buffer(data, encoding);
|
|
|
|
}
|
|
|
|
|
|
|
|
var writeReq = this._handle.write(data);
|
|
|
|
writeReq.oncomplete = afterWrite;
|
|
|
|
writeReq.cb = cb;
|
|
|
|
this._writeRequests.push(writeReq);
|
|
|
|
|
|
|
|
return this._handle.writeQueueSize == 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function afterWrite(status, handle, req, buffer) {
|
|
|
|
var self = handle.socket;
|
|
|
|
|
|
|
|
// TODO check status.
|
|
|
|
|
|
|
|
var req_ = self._writeRequests.shift();
|
|
|
|
assert.equal(req, req_);
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
if (self._writeRequests.length == 0) {
|
|
|
|
self.emit('drain');
|
|
|
|
}
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
if (req.cb) req.cb();
|
2011-06-17 15:10:12 +00:00
|
|
|
|
|
|
|
if (self._writeRequests.length == 0 && self._flags & FLAG_DESTROY_SOON) {
|
|
|
|
self.destroy();
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.connect = function(port, host) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
timers.active(this);
|
|
|
|
|
|
|
|
require('dns').lookup(host, function(err, ip, addressType) {
|
|
|
|
if (err) {
|
|
|
|
self.emit('error', err);
|
|
|
|
} else {
|
|
|
|
timers.active(self);
|
|
|
|
|
|
|
|
if (addressType != 4) {
|
|
|
|
throw new Error("ipv6 addresses not yet supported by libuv");
|
|
|
|
}
|
|
|
|
|
2011-06-17 12:27:02 +00:00
|
|
|
ip = ip || '127.0.0.1';
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
self.remoteAddress = ip;
|
|
|
|
self.remotePort = port;
|
|
|
|
|
|
|
|
// TODO retrun promise from Socket.prototype.connect which
|
|
|
|
// wraps _connectReq.
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
assert.ok(!self._connecting);
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
var connectReq = self._handle.connect(ip, port);
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
if (connectReq) {
|
|
|
|
self._connecting = true;
|
|
|
|
connectReq.oncomplete = afterConnect;
|
2011-06-17 12:27:02 +00:00
|
|
|
} else {
|
2011-06-16 19:11:05 +00:00
|
|
|
self.destroy(errnoException(errno, 'connect'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function afterConnect(status, handle, req) {
|
|
|
|
var self = handle.socket;
|
|
|
|
assert.equal(handle, self._handle);
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
assert.ok(self._connecting);
|
|
|
|
self._connecting = false;
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
if (status == 0) {
|
|
|
|
self.readable = self.writable = true;
|
|
|
|
timers.active(self);
|
|
|
|
handle.readStart();
|
|
|
|
self.emit('connect');
|
|
|
|
} else {
|
|
|
|
self.destroy(errnoException(errno, 'connect'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function errnoException(errorno, syscall) {
|
|
|
|
// TODO make this more compatible with ErrnoException from src/node.cc
|
|
|
|
// Once all of Node is using this function the ErrnoException from
|
|
|
|
// src/node.cc should be removed.
|
|
|
|
var e = new Error(syscall + ' ' + errorno);
|
|
|
|
e.errno = errorno;
|
|
|
|
e.syscall = syscall;
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 12:48:00 +00:00
|
|
|
var options;
|
2011-06-16 19:11:05 +00:00
|
|
|
|
|
|
|
if (typeof arguments[0] == 'function') {
|
|
|
|
options = {};
|
2011-06-20 12:48:00 +00:00
|
|
|
self.on('connection', arguments[0]);
|
2011-06-16 19:11:05 +00:00
|
|
|
} else {
|
|
|
|
options = arguments[0];
|
|
|
|
|
|
|
|
if (typeof arguments[1] == 'function') {
|
2011-06-20 12:48:00 +00:00
|
|
|
self.on('connection', arguments[1]);
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.connections = 0;
|
2011-06-17 15:10:12 +00:00
|
|
|
this.allowHalfOpen = options.allowHalfOpen || false;
|
2011-06-16 19:11:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
this._handle = new TCP();
|
|
|
|
this._handle.socket = this;
|
|
|
|
this._handle.onconnection = onconnection;
|
|
|
|
}
|
|
|
|
util.inherits(Server, events.EventEmitter);
|
|
|
|
exports.Server = Server;
|
|
|
|
|
|
|
|
|
|
|
|
function toPort(x) { return (x = Number(x)) >= 0 ? x : false; }
|
|
|
|
|
|
|
|
|
|
|
|
Server.prototype.listen = function() {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
var lastArg = arguments[arguments.length - 1];
|
|
|
|
if (typeof lastArg == 'function') {
|
|
|
|
self.addListener('listening', lastArg);
|
|
|
|
}
|
|
|
|
|
|
|
|
var port = toPort(arguments[0]);
|
|
|
|
|
|
|
|
if (arguments.length == 0 || typeof arguments[0] == 'function') {
|
|
|
|
// Don't bind(). OS will assign a port with INADDR_ANY.
|
|
|
|
// The port can be found with server.address()
|
|
|
|
this._handle.listen(self._backlog || 128);
|
|
|
|
this.emit('listening');
|
|
|
|
} else {
|
|
|
|
// the first argument is the port, the second an IP
|
|
|
|
require('dns').lookup(arguments[1], function(err, ip, addressType) {
|
|
|
|
if (err) {
|
|
|
|
self.emit('error', err);
|
|
|
|
} else {
|
|
|
|
if (addressType != 4) {
|
|
|
|
throw new Error("ipv6 addresses not yet supported by libuv");
|
|
|
|
}
|
|
|
|
|
|
|
|
var r = self._handle.bind(ip || '0.0.0.0', port);
|
|
|
|
if (r) {
|
|
|
|
self.emit('error', errnoException(errno, 'listen'));
|
|
|
|
} else {
|
|
|
|
self._handle.listen(self._backlog || 128);
|
|
|
|
self.emit('listening');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function onconnection(clientHandle) {
|
|
|
|
var handle = this;
|
|
|
|
var self = handle.socket;
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
var socket = new Socket({
|
|
|
|
handle: clientHandle,
|
|
|
|
allowHalfOpen: self.allowHalfOpen
|
|
|
|
});
|
2011-06-17 12:27:02 +00:00
|
|
|
socket.readable = socket.writable = true;
|
2011-06-16 19:11:05 +00:00
|
|
|
socket.resume();
|
|
|
|
|
2011-06-17 12:27:02 +00:00
|
|
|
self.connections++;
|
|
|
|
socket.server = self;
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
DTRACE_NET_SERVER_CONNECTION(socket);
|
|
|
|
self.emit('connection', socket);
|
|
|
|
}
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
|
|
|
|
Server.prototype.close = function() {
|
|
|
|
this._handle.close();
|
|
|
|
};
|