This repository has been archived by the owner on Apr 15, 2019. It is now read-only.
forked from eczarny/xmlrpc
-
Notifications
You must be signed in to change notification settings - Fork 29
/
XMLRPCConnection.m
277 lines (205 loc) · 8.75 KB
/
XMLRPCConnection.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
#import "XMLRPCConnection.h"
#import "XMLRPCConnectionManager.h"
#import "XMLRPCRequest.h"
#import "XMLRPCResponse.h"
#import "NSStringAdditions.h"
static NSOperationQueue *parsingQueue;
@interface XMLRPCConnection (XMLRPCConnectionPrivate)
- (void)connection: (NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response;
- (void)connection: (NSURLConnection *)connection didReceiveData: (NSData *)data;
- (void)connection: (NSURLConnection *)connection didSendBodyData: (NSInteger)bytesWritten totalBytesWritten: (NSInteger)totalBytesWritten totalBytesExpectedToWrite: (NSInteger)totalBytesExpectedToWrite;
- (void)connection: (NSURLConnection *)connection didFailWithError: (NSError *)error;
#pragma mark -
- (BOOL)connection: (NSURLConnection *)connection canAuthenticateAgainstProtectionSpace: (NSURLProtectionSpace *)protectionSpace;
- (void)connection: (NSURLConnection *)connection didReceiveAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge;
- (void)connection: (NSURLConnection *)connection didCancelAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge;
- (void)connectionDidFinishLoading: (NSURLConnection *)connection;
#pragma mark -
- (void)timeoutExpired;
- (void)invalidateTimer;
#pragma mark -
+ (NSOperationQueue *)parsingQueue;
@end
#pragma mark -
@implementation XMLRPCConnection
- (id)initWithXMLRPCRequest: (XMLRPCRequest *)request delegate: (id<XMLRPCConnectionDelegate>)delegate manager: (XMLRPCConnectionManager *)manager {
self = [super init];
if (self) {
#if ! __has_feature(objc_arc)
myManager = [manager retain];
myRequest = [request retain];
myIdentifier = [[NSString stringByGeneratingUUID] retain];
#else
myManager = manager;
myRequest = request;
myIdentifier = [NSString stringByGeneratingUUID];
#endif
myData = [[NSMutableData alloc] init];
myConnection = [[NSURLConnection alloc] initWithRequest: [request request] delegate: self startImmediately:NO];
[myConnection scheduleInRunLoop:[NSRunLoop mainRunLoop]
forMode:NSDefaultRunLoopMode];
[myConnection start];
#if ! __has_feature(objc_arc)
myDelegate = [delegate retain];
#else
myDelegate = delegate;
#endif
if (myConnection) {
NSLog(@"The connection, %@, has been established!", myIdentifier);
[self performSelector:@selector(timeoutExpired) withObject:nil afterDelay:[myRequest timeout]];
} else {
NSLog(@"The connection, %@, could not be established!", myIdentifier);
#if ! __has_feature(objc_arc)
[self release];
#endif
return nil;
}
}
return self;
}
#pragma mark -
+ (XMLRPCResponse *)sendSynchronousXMLRPCRequest: (XMLRPCRequest *)request error: (NSError **)error {
NSHTTPURLResponse *response = nil;
#if ! __has_feature(objc_arc)
NSData *data = [[[NSURLConnection sendSynchronousRequest: [request request] returningResponse: &response error: error] retain] autorelease];
#else
NSData *data = [NSURLConnection sendSynchronousRequest: [request request] returningResponse: &response error: error];
#endif
if (response) {
NSInteger statusCode = [response statusCode];
if ((statusCode < 400) && data) {
#if ! __has_feature(objc_arc)
return [[[XMLRPCResponse alloc] initWithData: data] autorelease];
#else
return [[XMLRPCResponse alloc] initWithData: data];
#endif
}
}
return nil;
}
#pragma mark -
- (NSString *)identifier {
#if ! __has_feature(objc_arc)
return [[myIdentifier retain] autorelease];
#else
return myIdentifier;
#endif
}
#pragma mark -
- (id<XMLRPCConnectionDelegate>)delegate {
return myDelegate;
}
#pragma mark -
- (void)cancel {
[myConnection cancel];
[self invalidateTimer];
}
#pragma mark -
- (void)dealloc {
#if ! __has_feature(objc_arc)
[myManager release];
[myRequest release];
[myIdentifier release];
[myData release];
[myConnection release];
[myDelegate release];
[super dealloc];
#endif
}
@end
#pragma mark -
@implementation XMLRPCConnection (XMLRPCConnectionPrivate)
- (void)connection: (NSURLConnection *)connection didReceiveResponse: (NSURLResponse *)response {
if([response respondsToSelector: @selector(statusCode)]) {
NSInteger statusCode = [(NSHTTPURLResponse *)response statusCode];
if(statusCode >= 400) {
NSError *error = [NSError errorWithDomain: @"HTTP" code: statusCode userInfo: nil];
[myDelegate request: myRequest didFailWithError: error];
} else if (statusCode == 304) {
[myManager closeConnectionForIdentifier: myIdentifier];
}
}
[myData setLength: 0];
}
- (void)connection: (NSURLConnection *)connection didReceiveData: (NSData *)data {
[myData appendData: data];
}
- (void)connection: (NSURLConnection *)connection didSendBodyData: (NSInteger)bytesWritten totalBytesWritten: (NSInteger)totalBytesWritten totalBytesExpectedToWrite: (NSInteger)totalBytesExpectedToWrite {
if ([myDelegate respondsToSelector: @selector(request:didSendBodyData:)]) {
float percent = totalBytesWritten / (float)totalBytesExpectedToWrite;
[myDelegate request:myRequest didSendBodyData:percent];
}
}
- (void)connection: (NSURLConnection *)connection didFailWithError: (NSError *)error {
#if ! __has_feature(objc_arc)
XMLRPCRequest *request = [[myRequest retain] autorelease];
#else
XMLRPCRequest *request = myRequest;
#endif
NSLog(@"The connection, %@, failed with the following error: %@", myIdentifier, [error localizedDescription]);
[self invalidateTimer];
[myDelegate request: request didFailWithError: error];
[myManager closeConnectionForIdentifier: myIdentifier];
}
#pragma mark -
- (BOOL)connection: (NSURLConnection *)connection canAuthenticateAgainstProtectionSpace: (NSURLProtectionSpace *)protectionSpace {
return [myDelegate request: myRequest canAuthenticateAgainstProtectionSpace: protectionSpace];
}
- (void)connection: (NSURLConnection *)connection didReceiveAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge {
[myDelegate request: myRequest didReceiveAuthenticationChallenge: challenge];
}
- (void)connection: (NSURLConnection *)connection didCancelAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge {
[myDelegate request: myRequest didCancelAuthenticationChallenge: challenge];
}
- (void)connectionDidFinishLoading: (NSURLConnection *)connection {
[self invalidateTimer];
if (myData && ([myData length] > 0)) {
NSBlockOperation *parsingOperation;
#if ! __has_feature(objc_arc)
parsingOperation = [NSBlockOperation blockOperationWithBlock:^{
XMLRPCResponse *response = [[[XMLRPCResponse alloc] initWithData: myData] autorelease];
XMLRPCRequest *request = [[myRequest retain] autorelease];
[[NSOperationQueue mainQueue] addOperation: [NSBlockOperation blockOperationWithBlock:^{
[myDelegate request: request didReceiveResponse: response];
}]];
}];
#else
parsingOperation = [NSBlockOperation blockOperationWithBlock:^{
XMLRPCResponse *response = [[XMLRPCResponse alloc] initWithData: myData];
XMLRPCRequest *request = myRequest;
[[NSOperationQueue mainQueue] addOperation: [NSBlockOperation blockOperationWithBlock:^{
[myDelegate request: request didReceiveResponse: response];
[myManager closeConnectionForIdentifier: myIdentifier];
}]];
}];
#endif
[[XMLRPCConnection parsingQueue] addOperation: parsingOperation];
}
else {
[myManager closeConnectionForIdentifier: myIdentifier];
}
}
#pragma mark -
- (void)timeoutExpired
{
NSDictionary *userInfo = [NSDictionary dictionaryWithObjectsAndKeys:
[myRequest URL], NSURLErrorFailingURLErrorKey,
[[myRequest URL] absoluteString], NSURLErrorFailingURLStringErrorKey,
//TODO not good to use hardcoded value for localized description
@"The request timed out.", NSLocalizedDescriptionKey,
nil];
NSError *error = [NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorTimedOut userInfo:userInfo];
[self connection:myConnection didFailWithError:error];
}
- (void)invalidateTimer
{
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(timeoutExpired) object:nil];
}
#pragma mark -
+ (NSOperationQueue *)parsingQueue {
if (parsingQueue == nil) {
parsingQueue = [[NSOperationQueue alloc] init];
}
return parsingQueue;
}
@end