This repository has been archived by the owner on Apr 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
SocketIoClient.m
306 lines (231 loc) · 7.5 KB
/
SocketIoClient.m
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
//
// SocketIoClient.m
// SocketIoCocoa
//
// Created by Fred Potter on 11/11/10.
// Copyright 2010 Fred Potter. All rights reserved.
//
#import "SocketIoClient.h"
#import "WebSocket.h"
@interface SocketIoClient (FP_Private) <WebSocketDelegate>
- (void)log:(NSString *)message;
- (NSString *)encode:(NSArray *)messages;
- (void)onDisconnect;
- (void)notifyMessagesSent:(NSArray *)messages;
@end
@implementation SocketIoClient
@synthesize sessionId = _sessionId, delegate = _delegate, connectTimeout = _connectTimeout,
tryAgainOnConnectTimeout = _tryAgainOnConnectTimeout, heartbeatTimeout = _heartbeatTimeout,
isConnecting = _isConnecting, isConnected = _isConnected, host = _host, port = _port;
- (id)initWithHost:(NSString *)host port:(NSInteger)port {
if (self = [super init]) {
_host = [host retain];
_port = port;
_queue = [[NSMutableArray array] retain];
_connectTimeout = 5.0;
_tryAgainOnConnectTimeout = YES;
_heartbeatTimeout = 15.0;
}
return self;
}
- (void)dealloc {
[_host release];
[_queue release];
[_webSocket release];
self.sessionId = nil;
[super dealloc];
}
- (void)checkIfConnected {
if (!_isConnected) {
[self disconnect];
if (_tryAgainOnConnectTimeout) {
[self connect];
}
}
}
- (void)connect {
if (!_isConnected) {
if (_isConnecting) {
[self disconnect];
}
_isConnecting = YES;
NSString *URL = [NSString stringWithFormat:@"ws://%@:%d/socket.io/websocket",
_host,
_port];
[self log:[NSString stringWithFormat:@"Opening %@", URL]];
[_webSocket release];
_webSocket = nil;
_webSocket = [[WebSocket alloc] initWithURLString:URL delegate:self];
[_webSocket open];
if (_connectTimeout > 0.0) {
[self performSelector:@selector(checkIfConnected) withObject:nil afterDelay:_connectTimeout];
}
}
}
- (void)disconnect {
[self log:@"Disconnect"];
[_webSocket close];
[self onDisconnect];
}
- (void)send:(NSString *)data isJSON:(BOOL)isJSON {
[self log:[NSString stringWithFormat:@"Sending %@:\n%@", isJSON ? @"JSON" : @"TEXT", data]];
NSDictionary *message = [NSDictionary dictionaryWithObjectsAndKeys:
data,
@"data",
isJSON ? @"json" : @"text",
@"type",
nil];
if (!_isConnected) {
[_queue addObject:message];
} else {
NSArray *messages = [NSArray arrayWithObject:message];
[_webSocket send:[self encode:messages]];
[self notifyMessagesSent:messages];
}
}
#pragma mark SocketIO Related Protocol
- (void)notifyMessagesSent:(NSArray *)messages {
if ([_delegate respondsToSelector:@selector(socketIoClient:didSendMessage:isJSON:)]) {
for (NSDictionary *message in messages) {
NSString *data = [message objectForKey:@"data"];
NSString *type = [message objectForKey:@"type"];
[_delegate socketIoClient:self didSendMessage:data isJSON:[type isEqualToString:@"json"]];
}
}
}
- (NSString *)encode:(NSArray *)messages {
NSMutableString *buffer = [[[NSMutableString alloc] initWithCapacity:0] autorelease];
for (NSDictionary *message in messages) {
NSString *data = [message objectForKey:@"data"];
NSString *type = [message objectForKey:@"type"];
NSString *dataWithType = nil;
if ([type isEqualToString:@"json"]) {
dataWithType = [NSString stringWithFormat:@"~j~%@", data];
} else {
dataWithType = data;
}
[buffer appendString:@"~m~"];
[buffer appendFormat:@"%d", [dataWithType length]];
[buffer appendString:@"~m~"];
[buffer appendString:dataWithType];
}
return buffer;
}
- (NSArray *)decode:(NSString *)data {
NSMutableArray *messages = [NSMutableArray array];
int i = 0;
int len = [data length];
while (i < len) {
if ([[data substringWithRange:NSMakeRange(i, 3)] isEqualToString:@"~m~"]) {
i += 3;
int lengthOfLengthString = 0;
for (int j = i; j < len; j++) {
unichar c = [data characterAtIndex:j];
if ('0' <= c && c <= '9') {
lengthOfLengthString++;
} else {
break;
}
}
int messageLength = [[data substringWithRange:NSMakeRange(i, lengthOfLengthString)] intValue];
i += lengthOfLengthString;
// skip past the next frame
i += 3;
NSString *message = [data substringWithRange:NSMakeRange(i, messageLength)];
i += messageLength;
[messages addObject:message];
} else {
// No frame marker
break;
}
}
return messages;
}
- (void)onTimeout {
[self log:@"Timed out waiting for heartbeat."];
[self onDisconnect];
}
- (void)setTimeout {
if (_timeout != nil) {
[_timeout invalidate];
[_timeout release];
_timeout = nil;
}
_timeout = [[NSTimer scheduledTimerWithTimeInterval:_heartbeatTimeout
target:self
selector:@selector(onTimeout)
userInfo:nil
repeats:NO] retain];
}
- (void)onHeartbeat:(NSString *)heartbeat {
[self send:[NSString stringWithFormat:@"~h~%@", heartbeat] isJSON:NO];
}
- (void)doQueue {
if ([_queue count] > 0) {
[_webSocket send:[self encode:_queue]];
[self notifyMessagesSent:_queue];
[_queue removeAllObjects];
}
}
- (void)onConnect {
_isConnected = YES;
_isConnecting = NO;
[self doQueue];
if (_delegate != nil) {
[_delegate socketIoClientDidConnect:self];
}
[self setTimeout];
}
- (void)onDisconnect {
BOOL wasConnected = _isConnected;
_isConnected = NO;
_isConnecting = NO;
self.sessionId = nil;
[_queue removeAllObjects];
if (wasConnected && _delegate != nil) {
[_delegate socketIoClientDidDisconnect:self];
}
}
- (void)onMessage:(NSString *)message {
[self log:[NSString stringWithFormat:@"Message: %@", message]];
if (self.sessionId == nil) {
self.sessionId = message;
[self onConnect];
} else if ([[message substringWithRange:NSMakeRange(0, 3)] isEqualToString:@"~h~"]) {
[self onHeartbeat:[message substringFromIndex:3]];
} else if ([[message substringWithRange:NSMakeRange(0, 3)] isEqualToString:@"~j~"]) {
if (_delegate != nil) {
[_delegate socketIoClient:self didReceiveMessage:[message substringFromIndex:3] isJSON:YES];
}
} else {
if (_delegate != nil) {
[_delegate socketIoClient:self didReceiveMessage:message isJSON:NO];
}
}
}
- (void)onData:(NSString *)data {
[self setTimeout];
NSArray *messages = [self decode:data];
for (NSString *message in messages) {
[self onMessage:message];
}
}
#pragma mark WebSocket Delegate Methods
- (void)webSocket:(WebSocket *)ws didFailWithError:(NSError *)error {
[self log:[NSString stringWithFormat:@"Connection failed with error: %@", [error localizedDescription]]];
}
- (void)webSocketDidClose:(WebSocket*)webSocket {
[self log:[NSString stringWithFormat:@"Connection closed."]];
[self onDisconnect];
}
- (void)webSocketDidOpen:(WebSocket *)ws {
[self log:[NSString stringWithFormat:@"Connection opened."]];
}
- (void)webSocket:(WebSocket *)ws didReceiveMessage:(NSString*)message {
[self log:[NSString stringWithFormat:@"Received %@", message]];
[self onData:message];
}
- (void)log:(NSString *)message {
// NSLog(@"%@", message);
}
@end