-
Notifications
You must be signed in to change notification settings - Fork 22
/
websocket.js
127 lines (106 loc) · 2.5 KB
/
websocket.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
(function () {
function WebSocket(url)
{
// Callback funx
this.onopen = null;
this.onmessage = null;
this.onerror = null;
this.onclose = null;
this.url = url;
this.sockId = (++WebSocket.nextIndex);
WebSocket.Sockets[this.sockId] = this;
this.bufferedAmount = 0;
this.readyState = WebSocket.CONNECTING;
debug.log(this.sockId);
PhoneGap.exec("WebSocketCommand.connect",this.url,this.sockId);
}
WebSocket.CONNECTING = 0;
WebSocket.OPEN = 1;
WebSocket.CLOSING = 2;
WebSocket.CLOSED = 3;
// Static Callback for ALL sockets
// sockId is used to route to the correct socket
WebSocket.__onOpen = function(sockId)
{
var sock = WebSocket.Sockets[sockId];
if(sock != null)
{
sock.readyState = WebSocket.OPEN;
if(sock.onopen != null)
{
sock.onopen();
}
}
}
// Static Callback for ALL sockets
// sockId is used to route to the correct socket
WebSocket.__onConnecting = function(sockId)
{
var sock = WebSocket.Sockets[sockId];
if(sock != null)
{
sock.readyState = WebSocket.CONNECTING;
}
}
// Static Callback for ALL sockets
// sockId is used to route to the correct socket
WebSocket.__onClosing = function(sockId)
{
var sock = WebSocket.Sockets[sockId];
if(sock != null)
{
sock.readyState = WebSocket.CLOSING;
}
}
// Static Callback for ALL sockets
// sockId is used to route to the correct socket
WebSocket.__onClosed = function(sockId)
{
var sock = WebSocket.Sockets[sockId];
if(sock != null)
{
sock.readyState = WebSocket.CLOSED;
sock.onclose();
delete WebSocket.Sockets[sock.sockId];
sock = null;
}
}
// Static Callback for ALL sockets
// sockId is used to route to the correct socket
WebSocket.__onError = function(sockId,errMsg)
{
var sock = WebSocket.Sockets[sockId];
if(sock != null)
{
sock.onerror(errMsg);
}
}
// Static Callback for ALL sockets
// sockId is used to route to the correct socket
WebSocket.__onMessage = function(sockId,msg)
{
debug.log('__onMessage called');
var sock = WebSocket.Sockets[sockId];
if(sock != null)
{
debug.log('message: ' + msg);
sock.onmessage({data:msg});
} else {
debug.log("couldn't find sock for msg [" + msg + "]");
}
}
WebSocket.Sockets = {};
WebSocket.nextIndex = -1;
WebSocket.prototype.send = function(data)
{
PhoneGap.exec("WebSocketCommand.send",this.sockId,data + "\r\n");
}
WebSocket.prototype.close = function()
{
this.readyState = WebSocket.CLOSING;
}
PhoneGap.addConstructor(function() {
if (typeof window.WebSocket == "undefined") window.WebSocket = WebSocket;
debug.log('Setup WebSocket');
});
})();