forked from eczarny/xmlrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXMLRPCConnection.m
212 lines (159 loc) · 6.52 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
#import "XMLRPCConnection.h"
#import "XMLRPCConnectionManager.h"
#import "XMLRPCRequest.h"
#import "XMLRPCResponse.h"
#import "NSStringAdditions.h"
@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;
@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];
#if ! __has_feature(objc_arc)
myDelegate = [delegate retain];
#endif
if (myConnection) {
NSLog(@"The connection, %@, has been established!", myIdentifier);
} 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];
}
#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)]) {
int 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]);
[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 {
if (myData && ([myData length] > 0)) {
#if ! __has_feature(objc_arc)
XMLRPCResponse *response = [[[XMLRPCResponse alloc] initWithData: myData] autorelease];
XMLRPCRequest *request = [[myRequest retain] autorelease];
#else
XMLRPCResponse *response = [[XMLRPCResponse alloc] initWithData: myData];
XMLRPCRequest *request = myRequest;
#endif
[myDelegate request: request didReceiveResponse: response];
}
[myManager closeConnectionForIdentifier: myIdentifier];
}
@end