forked from eczarny/xmlrpc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
XMLRPCConnection.m
166 lines (113 loc) · 5.08 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
#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 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) {
myManager = [manager retain];
myRequest = [request retain];
myIdentifier = [[NSString stringByGeneratingUUID] retain];
myData = [[NSMutableData alloc] init];
myConnection = [[NSURLConnection alloc] initWithRequest: [request request] delegate: self];
myDelegate = [delegate retain];
if (myConnection) {
NSLog(@"The connection, %@, has been established!", myIdentifier);
} else {
NSLog(@"The connection, %@, could not be established!", myIdentifier);
[self release];
return nil;
}
}
return self;
}
#pragma mark -
+ (XMLRPCResponse *)sendSynchronousXMLRPCRequest: (XMLRPCRequest *)request error: (NSError **)error {
NSHTTPURLResponse *response = nil;
NSData *data = [[[NSURLConnection sendSynchronousRequest: [request request] returningResponse: &response error: error] retain] autorelease];
if (response) {
NSInteger statusCode = [response statusCode];
if ((statusCode < 400) && data) {
return [[[XMLRPCResponse alloc] initWithData: data] autorelease];
}
}
return nil;
}
#pragma mark -
- (NSString *)identifier {
return [[myIdentifier retain] autorelease];
}
#pragma mark -
- (id<XMLRPCConnectionDelegate>)delegate {
return myDelegate;
}
#pragma mark -
- (void)cancel {
[myConnection cancel];
}
#pragma mark -
- (void)dealloc {
[myManager release];
[myRequest release];
[myIdentifier release];
[myData release];
[myConnection release];
[myDelegate release];
[super dealloc];
}
@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 didFailWithError: (NSError *)error {
XMLRPCRequest *request = [[myRequest retain] autorelease];
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)) {
XMLRPCResponse *response = [[[XMLRPCResponse alloc] initWithData: myData] autorelease];
XMLRPCRequest *request = [[myRequest retain] autorelease];
[myDelegate request: request didReceiveResponse: response];
}
[myManager closeConnectionForIdentifier: myIdentifier];
}
@end