forked from juretta/objc-stomp
-
Notifications
You must be signed in to change notification settings - Fork 4
/
CRVStompClient.m
399 lines (333 loc) · 14.8 KB
/
CRVStompClient.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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
//
// CRVStompClient.h
// Objc-Stomp
//
//
// Implements the Stomp Protocol v1.0
// See: http://stomp.codehaus.org/Protocol
//
// Requires the AsyncSocket library
// See: http://code.google.com/p/cocoaasyncsocket/
//
// See: LICENSE
// Stefan Saasen <stefan@coravy.com>
// Based on StompService.{h,m} by Scott Raymond <sco@scottraymond.net>.
#import "CRVStompClient.h"
#define kStompDefaultPort 61613
#define kDefaultTimeout 5 //
// ============= http://stomp.codehaus.org/Protocol =============
#define kCommandConnect @"CONNECT"
#define kCommandSend @"SEND"
#define kCommandSubscribe @"SUBSCRIBE"
#define kCommandUnsubscribe @"UNSUBSCRIBE"
#define kCommandBegin @"BEGIN"
#define kCommandCommit @"COMMIT"
#define kCommandAbort @"ABORT"
#define kCommandAck @"ACK"
#define kCommandDisconnect @"DISCONNECT"
#define kControlChar [NSString stringWithFormat:@"%C", 0] // TODO -> static
//#define kControlChar [NSString stringWithFormat:@"\n%C", 0] // TODO -> static
#define kAckClient @"client"
#define kAckAuto @"auto"
#define kResponseHeaderSession @"session"
#define kResponseHeaderReceiptId @"receipt-id"
#define kResponseHeaderErrorMessage @"message"
#define kResponseFrameConnected @"CONNECTED"
#define kResponseFrameMessage @"MESSAGE"
#define kResponseFrameReceipt @"RECEIPT"
#define kResponseFrameError @"ERROR"
// ============= http://stomp.codehaus.org/Protocol =============
#define CRV_RELEASE_SAFELY(__POINTER) { [__POINTER release]; __POINTER = nil; }
@interface CRVStompClient()
@property (nonatomic, retain) SRWebSocket *webSocket;
@property (nonatomic, copy) NSString *url;
@property (nonatomic, copy) NSString *login;
@property (nonatomic, copy) NSString *passcode;
@property (nonatomic, copy) NSString *sessionId;
@end
@interface CRVStompClient(PrivateMethods)
- (void) sendFrame:(NSString *) command withHeader:(NSDictionary *) header andBody:(NSString *) body;
- (void) sendFrame:(NSString *) command;
- (void) readFrame;
@end
@implementation CRVStompClient
@synthesize delegate;
@synthesize webSocket, url, login, passcode, sessionId, isConnected;
- (id)init {
return [self initWithUrl:@"localhost" login:nil passcode:nil delegate:nil];
}
- (id)initWithUrl:(NSString *)theUrl
delegate:(id<CRVStompClientDelegate>)theDelegate
autoconnect:(BOOL) autoconnect {
if(self = [self initWithUrl:theUrl login:nil passcode:nil delegate:theDelegate autoconnect: NO]) {
anonymous = YES;
}
return self;
}
- (id)initWithUrl:(NSString *)theUrl
login:(NSString *)theLogin
passcode:(NSString *)thePasscode
delegate:(id<CRVStompClientDelegate>)theDelegate {
return [self initWithUrl:theUrl login:theLogin passcode:thePasscode delegate:theDelegate autoconnect: NO];
}
- (id)initWithUrl:(NSString *)theUrl
login:(NSString *)theLogin
passcode:(NSString *)thePasscode
delegate:(id<CRVStompClientDelegate>)theDelegate
autoconnect:(BOOL) autoconnect {
if(self = [super init]) {
anonymous = NO;
doAutoconnect = autoconnect;
[self setUrl:theUrl];
isConnected = NO;
webSocket = [[SRWebSocket alloc] initWithURLRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]];
webSocket.delegate = self;
[self setDelegate:theDelegate];
[self setLogin: theLogin];
[self setPasscode: thePasscode];
[webSocket open];
}
return self;
}
#pragma mark -
#pragma mark Public methods
- (void)connect {
if(anonymous) {
[self sendFrame:kCommandConnect];
} else {
NSDictionary *headers = [NSDictionary dictionaryWithObjectsAndKeys: [self login], @"login", [self passcode], @"passcode", @"0,0", @"heart-beat", nil];
[self sendFrame:kCommandConnect withHeader:headers andBody: nil];
}
[self readFrame];
}
- (void)sendMessage:(NSString *)theMessage toDestination:(NSString *)destination {
[self sendMessage:theMessage toDestination:destination withHeaders:[NSDictionary dictionary]];
}
- (void)sendMessage:(NSString *)theMessage toDestination:(NSString *)destination withHeaders:(NSDictionary*)headers {
NSMutableDictionary *allHeaders = [NSMutableDictionary dictionaryWithDictionary:headers];
if(theMessage){
NSString *content = [CRVStompClient stringFromJSONString:theMessage];
[allHeaders setValue:[NSString stringWithFormat:@"%lu",strlen([content UTF8String])] forKey:@"content-length"];
}
[allHeaders setValue:destination forKey:@"destination"];
[self sendFrame:kCommandSend withHeader:allHeaders andBody:theMessage];
}
- (void)subscribeToDestination:(NSString *)destination {
[self subscribeToDestination:destination withAck: CRVStompAckModeAuto];
}
- (void)subscribeToDestination:(NSString *)destination withAck:(CRVStompAckMode) ackMode {
NSString *ack;
switch (ackMode) {
case CRVStompAckModeClient:
ack = kAckClient;
break;
default:
ack = kAckAuto;
break;
}
NSDictionary *headers = [NSDictionary dictionaryWithObjectsAndKeys: destination, @"destination", ack, @"ack", nil];
[self sendFrame:kCommandSubscribe withHeader:headers andBody:nil];
}
- (void)subscribeToDestination:(NSString *)destination withHeader:(NSDictionary *) header {
NSMutableDictionary *headers = [[NSMutableDictionary alloc] initWithDictionary:header];
[headers setObject:destination forKey:@"destination"];
[self sendFrame:kCommandSubscribe withHeader:headers andBody:nil];
[headers release];
}
- (void)unsubscribeFromDestination:(NSString *)destination {
NSDictionary *headers = [NSDictionary dictionaryWithObjectsAndKeys: destination, @"destination", nil];
[self sendFrame:kCommandUnsubscribe withHeader:headers andBody:nil];
}
-(void)begin:(NSString *)transactionId {
NSDictionary *headers = [NSDictionary dictionaryWithObjectsAndKeys: transactionId, @"transaction", nil];
[self sendFrame:kCommandBegin withHeader:headers andBody:nil];
}
- (void)commit:(NSString *)transactionId {
NSDictionary *headers = [NSDictionary dictionaryWithObjectsAndKeys: transactionId, @"transaction", nil];
[self sendFrame:kCommandCommit withHeader:headers andBody:nil];
}
- (void)abort:(NSString *)transactionId {
NSDictionary *headers = [NSDictionary dictionaryWithObjectsAndKeys: transactionId, @"transaction", nil];
[self sendFrame:kCommandAbort withHeader:headers andBody:nil];
}
- (void)ack:(NSString *)messageId {
NSDictionary *headers = [NSDictionary dictionaryWithObjectsAndKeys: messageId, @"message-id", nil];
[self sendFrame:kCommandAck withHeader:headers andBody:nil];
}
- (void)disconnect {
[self sendFrame:kCommandDisconnect];
[[self webSocket] close];
}
#pragma mark -
#pragma mark PrivateMethods
- (void) sendFrame:(NSString *) command withHeader:(NSDictionary *) header andBody:(NSString *) body {
NSMutableString *frameString = [NSMutableString stringWithString: [NSString stringWithFormat:@"[\"%@\n", command]];
for (id key in header) {
[frameString appendString:key];
[frameString appendString:@":"];
[frameString appendString:[header objectForKey:key]];
[frameString appendString:@"\n"];
}
[frameString appendString:@"\n"];
if (body) {
[frameString appendString:body];
}
[frameString appendString:kControlChar];
[frameString appendString:@"\"]"];
// NSLog(@"sendFrame: %@", frameString);kControlChar
// NSLog(@"sendFrame (raw): %@", [[frameString stringByReplacingOccurrencesOfString:kControlChar withString:@"\\u0000"] stringByReplacingOccurrencesOfString:@"\n" withString:@"\\n"]);
[[self webSocket] send:frameString];
}
- (void) sendFrame:(NSString *) command {
[self sendFrame:command withHeader:nil andBody:nil];
}
- (void)receiveFrame:(NSString *)command headers:(NSDictionary *)headers body:(NSString *)body {
//NSLog(@"receiveFrame <%@> <%@>, <%@>", command, headers, body);
// Connected
if([kResponseFrameConnected isEqual:command]) {
if([[self delegate] respondsToSelector:@selector(stompClientDidConnect:)]) {
[[self delegate] stompClientDidConnect:self];
}
isConnected = YES;
// store session-id
NSString *sessId = [headers valueForKey:kResponseHeaderSession];
[self setSessionId: sessId];
// Response
} else if([kResponseFrameMessage isEqual:command]) {
[[self delegate] stompClient:self messageReceived:body withHeader:headers];
// Receipt
} else if([kResponseFrameReceipt isEqual:command]) {
if([[self delegate] respondsToSelector:@selector(serverDidSendReceipt:withReceiptId:)]) {
NSString *receiptId = [headers valueForKey:kResponseHeaderReceiptId];
[[self delegate] serverDidSendReceipt:self withReceiptId: receiptId];
}
// Error
} else if([kResponseFrameError isEqual:command]) {
if([[self delegate] respondsToSelector:@selector(serverDidSendError:withErrorMessage:detailedErrorMessage:)]) {
NSString *msg = [headers valueForKey:kResponseHeaderErrorMessage];
[[self delegate] serverDidSendError:self withErrorMessage: msg detailedErrorMessage: body];
}
}
}
- (void)readFrame {
// [[self socket] readDataToData:[AsyncSocket ZeroData] withTimeout:-1 tag:0];
}
#pragma mark -
#pragma mark SRWebSocketDelegate
- (void)webSocket:(SRWebSocket *)webSocket didReceiveMessage:(id)message{
NSMutableString *messageString;
if([message isKindOfClass:[NSData class]]){
messageString = [[NSMutableString alloc] initWithData:message encoding:NSUTF8StringEncoding];
}
else{
messageString = [message mutableCopy];
}
[messageString replaceOccurrencesOfString:@"\\\\n" withString:@"{[EOL]}" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [messageString length])];
// NSLog(@"didReceiveMessage message: %@",message);
NSRange match;
NSRange match1;
match = [messageString rangeOfString: @"[\""];
match1 = [messageString rangeOfString: @"\"]"];
NSString *msg = messageString;
if(match.location != NSNotFound && match1.location != NSNotFound){
msg = [messageString substringWithRange: NSMakeRange (match.location+2, match1.location - (match.location+2))];
}
NSRange match2;
match2 = [messageString rangeOfString: @"\\u0000"];
if(match2.location != NSNotFound){
msg = [msg stringByReplacingOccurrencesOfString:@"\\u0000"
withString:@""];
}
NSMutableArray *contents = (NSMutableArray *)[[msg componentsSeparatedByString:@"\\n"] mutableCopy];
if([[contents objectAtIndex:0] isEqual:@""]) {
[contents removeObjectAtIndex:0];
}
NSString *command = [[[contents objectAtIndex:0] copy] autorelease];
NSMutableDictionary *headers = [[[NSMutableDictionary alloc] init] autorelease];
NSMutableString *body = [[[NSMutableString alloc] init] autorelease];
BOOL hasHeaders = NO;
[contents removeObjectAtIndex:0];
for(NSString *line in contents) {
if(hasHeaders) {
[body appendString:line];
if(line != [contents lastObject]){
//[body appendString:@"\\r\\n"];
[body appendString:@" "];
}
} else {
if ([line isEqual:@""]) {
hasHeaders = YES;
} else {
// message-id can look like this: message-id:ID:macbook-pro.local-50389-1237007652070-5:6:-1:1:1
NSMutableArray *parts = [NSMutableArray arrayWithArray:[line componentsSeparatedByString:@":"]];
// key ist the first part
NSString *key = [parts objectAtIndex:0];
[parts removeObjectAtIndex:0];
[headers setObject:[parts componentsJoinedByString:@":"] forKey:key];
}
}
}
[body replaceOccurrencesOfString:@"{[EOL]}" withString:@"\\\\n" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [body length])];
//[body replaceOccurrencesOfString:@"{[EOL]}" withString:@" " options:NSCaseInsensitiveSearch range:NSMakeRange(0, [body length])];
[self receiveFrame:command headers:headers body:body];
[self readFrame];
[contents release];
}
- (void)webSocketDidOpen:(SRWebSocket *)webSocket{
//NSLog(@"webSocketDidOpen");
if(doAutoconnect) {
[self connect];
}
}
- (void)webSocket:(SRWebSocket *)webSocket didFailWithError:(NSError *)error{
NSLog(@"didFailWithError");
NSLog(@"error: %@", [error description]);
isConnected = NO;
}
- (void)webSocket:(SRWebSocket *)webSocket didCloseWithCode:(NSInteger)code reason:(NSString *)reason wasClean:(BOOL)wasClean{
isConnected = NO;
if(code != 0){
NSLog(@"didCloseWithCode");
NSLog(@"reason: %@, code: %d",reason, code);
}
if([[self delegate] respondsToSelector:@selector(serverDidClose:withReason:)]) {
[[self delegate] serverDidClose:self withReason: reason];
}
}
+ (NSString *)stringFromJSONString:(NSString *)aString {
NSMutableString *s = [NSMutableString stringWithString:aString];
[s replaceOccurrencesOfString:@"\\\\" withString:@"\\" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
[s replaceOccurrencesOfString:@"\\\"" withString:@"\"" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
[s replaceOccurrencesOfString:@"\\/" withString:@"/" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
//[s replaceOccurrencesOfString:@"\\n" withString:@"\n" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
//[s replaceOccurrencesOfString:@"\\b" withString:@"\b" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
//[s replaceOccurrencesOfString:@"\\f" withString:@"\f" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
//[s replaceOccurrencesOfString:@"\\r" withString:@"\r" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
//[s replaceOccurrencesOfString:@"\\t" withString:@"\t" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
return [NSString stringWithString:s];
}
+ (NSString *)stringToJSONString:(NSString *)aString {
NSMutableString *s = [NSMutableString stringWithString:aString];
[s replaceOccurrencesOfString:@"\\" withString:@"\\\\" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
[s replaceOccurrencesOfString:@"\"" withString:@"\\\"" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
[s replaceOccurrencesOfString:@"/" withString:@"\\/" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
//[s replaceOccurrencesOfString:@"\\n" withString:@"\n" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
//[s replaceOccurrencesOfString:@"\\b" withString:@"\b" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
//[s replaceOccurrencesOfString:@"\\f" withString:@"\f" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
//[s replaceOccurrencesOfString:@"\\r" withString:@"\r" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
//[s replaceOccurrencesOfString:@"\\t" withString:@"\t" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [s length])];
return [NSString stringWithString:s];
}
#pragma mark -
#pragma mark Memory management
-(void) dealloc {
delegate = nil;
webSocket.delegate = nil;
[webSocket release];
CRV_RELEASE_SAFELY(passcode);
CRV_RELEASE_SAFELY(login);
// CRV_RELEASE_SAFELY(host);
CRV_RELEASE_SAFELY(url);
[super dealloc];
}
@end