-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathws.js
135 lines (108 loc) · 3.67 KB
/
ws.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*-----------------------------------------------
Requirements:
-----------------------------------------------*/
var sys = require("sys")
, http = require("http")
, events = require("events")
, path = require("path");
require.paths.unshift(__dirname);
var Manager = require("ws/manager")
, Connection = require("ws/connection");
/*-----------------------------------------------
Mixin:
-----------------------------------------------*/
var mixin = function(target, source) {
for(var i = 0, keys = Object.keys(source), l = keys.length; i < l; ++i) {
if(source.hasOwnProperty(keys[i])){
target[keys[i]] = source[keys[i]];
}
}
return target;
};
/*-----------------------------------------------
WebSocket Server Exports:
-----------------------------------------------*/
exports.Server = Server;
exports.createServer = function(options){
return new Server(options);
};
/*-----------------------------------------------
WebSocket Server Implementation:
-----------------------------------------------*/
function Server(options){
var ws = this;
events.EventEmitter.call(this);
this.options = mixin({
debug: false, // Boolean: Show debug information.
version: "auto", // String: Value must be either: draft75, draft76, auto
origin: "*", // String, Array: A match for a valid connection origin
subprotocol: "*", // String, Array: A match for a valid connection subprotocol.
datastore: true, // Object, Function, Boolean: If === true, then it is the default mem-store.
server: new http.Server()
}, options || {});
this.manager = new Manager(this.options.debug);
this.server = this.options.server
this.debug = this.options.debug;
this.server.addListener("upgrade", function(req, socket, upgradeHead){
if( req.method == "GET" && ( "upgrade" in req.headers && "connection" in req.headers) &&
req.headers.upgrade.toLowerCase() == "websocket" && req.headers.connection.toLowerCase() == "upgrade"
){
// create a new connection, it'll handle everything else.
new Connection(ws, req, socket, upgradeHead);
} else {
// Close the socket, it wasn't a valid connection.
socket.end();
socket.destroy();
}
});
this.server.addListener("connection", function(socket){
socket.setTimeout(0);
socket.setNoDelay(true);
socket.setKeepAlive(true, 0);
});
this.server.addListener("listening", function(req, res){
ws.emit("listening");
});
this.server.addListener("close", function(errno){
ws.emit("shutdown", errno);
});
this.server.addListener("request", function(req, res){
ws.emit("request", req, res);
});
this.server.addListener("stream", function(stream){
ws.emit("stream", stream);
});
this.server.addListener("clientError", function(e){
ws.emit("clientError", e);
});
};
sys.inherits(Server, events.EventEmitter);
/*-----------------------------------------------
Public API
-----------------------------------------------*/
Server.prototype.setSecure = function (credentials) {
this.server.setSecure.call(this.server, credentials);
}
Server.prototype.listen = function(){
this.server.listen.apply(this.server, arguments);
};
Server.prototype.close = function(){
this.server.close();
};
Server.prototype.send = function(id, data){
this.manager.find(id, function(client){
if(client && client._state === 4){
client.write(data);
}
});
};
Server.prototype.broadcast = function(data){
this.manager.forEach(function(client){
if(client && client._state === 4){
client.write(data);
}
});
};
Server.prototype.use = function(module){
module.call(this, this.options);
};