-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathBBConnection.m
168 lines (146 loc) · 4.89 KB
/
BBConnection.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
//
// BBConnection.m
// Blackbox
//
// Created by Matt Patenaude on 1/18/10.
// Copyright 2010 Matt Patenaude.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
#import "BBConnection.h"
#import "BBServer.h"
#import "BBResponder.h"
#import "BBRequest.h"
#import "BBDataResponse.h"
#import "HTTPAsyncFileResponse.h"
@implementation BBConnection
#pragma mark Deallocator
- (void)dealloc
{
[associatedIdentifier release];
[asyncRequest release];
[super dealloc];
}
#pragma mark Properties
- (NSString *)associatedIdentifier
{
return associatedIdentifier;
}
- (void)setAssociatedIdentifier:(NSString *)theIdentifier
{
if (associatedIdentifier)
{
[associatedIdentifier release];
associatedIdentifier = nil;
}
associatedIdentifier = [theIdentifier copy];
}
#pragma mark Response methods
- (NSObject<HTTPResponse> *)responseForRequest:(BBRequest *)theRequest
{
NSObject<HTTPResponse> *response = nil;
if ([theRequest responseFilePath] != nil)
response = [[HTTPAsyncFileResponse alloc] initWithFilePath:[theRequest responseFilePath] forConnection:self runLoopModes:[asyncSocket runLoopModes]];
else
response = [[BBDataResponse alloc] initWithRequest:theRequest];
return [response autorelease];
}
- (void)sendAsynchronousResponse
{
[super replyToHTTPRequest];
}
#pragma mark Overridden methods
- (BOOL)supportsMethod:(NSString *)method atPath:(NSString *)path
{
if ([method isEqualToString:@"POST"])
return YES;
return [super supportsMethod:method atPath:path];
}
- (void)replyToHTTPRequest
{
NSURL *requestURL = (NSURL *)CFHTTPMessageCopyRequestURL(request);
NSString *path = [[requestURL path] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
CFRelease((CFURLRef)requestURL);
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
BBResponseHandler h = [(BBServer *)server handlerForPath:path];
if (h)
{
[super replyToHTTPRequest];
return;
}
#endif
NSObject<BBResponder> *theResponder = [(BBServer *)server responderForPath:path];
if ([theResponder respondsToSelector:@selector(repliesAsynchronously)] && [theResponder repliesAsynchronously])
{
if (asyncRequest)
{
[asyncRequest release];
asyncRequest = nil;
}
asyncRequest = [[BBRequest alloc] initWithServer:(BBServer *)server connection:self message:request asynchronous:YES];
[theResponder handleRequest:asyncRequest];
}
else
[super replyToHTTPRequest];
}
- (NSObject<HTTPResponse> *)httpResponseForMethod:(NSString *)method URI:(NSString *)path
{
NSURL *requestURL = (NSURL *)CFHTTPMessageCopyRequestURL(request);
NSString *rPath = [[requestURL path] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
CFRelease((CFURLRef)requestURL);
BBRequest *theRequest = nil;
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
BBResponseHandler h = [(BBServer *)server handlerForPath:rPath];
if (h)
{
theRequest = [[BBRequest alloc] initWithServer:(BBServer *)server connection:self message:request asynchronous:NO];
h(theRequest);
}
else
{
#endif
NSObject<BBResponder> *theResponder = [(BBServer *)server responderForPath:rPath];
if ([theResponder respondsToSelector:@selector(repliesAsynchronously)] && [theResponder repliesAsynchronously] && asyncRequest != nil)
{
theRequest = [asyncRequest retain];
if (asyncRequest)
{
[asyncRequest release];
asyncRequest = nil;
}
}
else
{
theRequest = [[BBRequest alloc] initWithServer:(BBServer *)server connection:self message:request asynchronous:NO];
[theResponder handleRequest:theRequest];
}
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
}
#endif
NSObject<HTTPResponse> *theResponse = [self responseForRequest:theRequest];
[theRequest release];
return theResponse;
}
- (void)processDataChunk:(NSData *)postDataChunk
{
BOOL result = CFHTTPMessageAppendBytes(request, [postDataChunk bytes], [postDataChunk length]);
if (!result)
NSLog(@"Couldn't append bytes!");
}
@end