-
Notifications
You must be signed in to change notification settings - Fork 3
/
BKServer.m
207 lines (168 loc) · 7.11 KB
/
BKServer.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
/*
<codex/>
*/
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h>
#include <CFNetwork/CFSocketStream.h>
#import "BKServer.h"
NSString * const BKServerErrorDomain = @"BKServerErrorDomain";
@interface BKServer ()
@property(nonatomic,retain) NSNetService* netService;
@property(assign) uint16_t port;
@end
@implementation BKServer
@synthesize delegate=_delegate, netService=_netService, port=_port;
- (id)init {
self = [super init];
if (self) {
}
return self;
}
- (void)dealloc {
[self stop];
[super dealloc];
}
- (void)handleNewConnectionFromAddress:(NSData *)addr inputStream:(NSInputStream *)istr outputStream:(NSOutputStream *)ostr {
NSLog(@"Handle New Connection.");
// if the delegate implements the delegate method, call it
if (self.delegate && [self.delegate respondsToSelector:@selector(didAcceptConnectionForServer:inputStream:outputStream:)]) {
[self.delegate didAcceptConnectionForServer:self inputStream:istr outputStream:ostr];
}
}
// This function is called by CFSocket when a new connection comes in.
// We gather some data here, and convert the function call to a method
// invocation on BKServer.
static void BKServerAcceptCallBack(CFSocketRef socket, CFSocketCallBackType type, CFDataRef address, const void *data, void *info) {
BKServer *server = (BKServer *)info;
if (kCFSocketAcceptCallBack == type) {
// for an AcceptCallBack, the data parameter is a pointer to a CFSocketNativeHandle
CFSocketNativeHandle nativeSocketHandle = *(CFSocketNativeHandle *)data;
uint8_t name[SOCK_MAXADDRLEN];
socklen_t namelen = sizeof(name);
NSData *peer = nil;
if (0 == getpeername(nativeSocketHandle, (struct sockaddr *)name, &namelen)) {
peer = [NSData dataWithBytes:name length:namelen];
}
CFReadStreamRef readStream = NULL;
CFWriteStreamRef writeStream = NULL;
CFStreamCreatePairWithSocket(kCFAllocatorDefault, nativeSocketHandle, &readStream, &writeStream);
if (readStream && writeStream) {
CFReadStreamSetProperty(readStream, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanTrue);
CFWriteStreamSetProperty(writeStream, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanTrue);
[server handleNewConnectionFromAddress:peer inputStream:(NSInputStream *)readStream outputStream:(NSOutputStream *)writeStream];
} else {
// on any failure, need to destroy the CFSocketNativeHandle
// since we are not going to use it any more
close(nativeSocketHandle);
}
if (readStream) CFRelease(readStream);
if (writeStream) CFRelease(writeStream);
}
}
- (BOOL)startWithRunLoop:(NSRunLoop *)aRunLoop error:(NSError **)error {
NSLog(@"create tcp server");
CFSocketContext socketCtxt = {0, self, NULL, NULL, NULL};
_ipv4socket = CFSocketCreate(kCFAllocatorDefault, PF_INET, SOCK_STREAM, IPPROTO_TCP, kCFSocketAcceptCallBack, (CFSocketCallBack)&BKServerAcceptCallBack, &socketCtxt);
if (NULL == _ipv4socket) {
if (error) *error = [[NSError alloc] initWithDomain:BKServerErrorDomain code:kBKServerNoSocketsAvailable userInfo:nil];
if (_ipv4socket) CFRelease(_ipv4socket);
_ipv4socket = NULL;
return NO;
}
int yes = 1;
setsockopt(CFSocketGetNative(_ipv4socket), SOL_SOCKET, SO_REUSEADDR, (void *)&yes, sizeof(yes));
// set up the IPv4 endpoint; use port 0, so the kernel will choose an arbitrary port for us, which will be advertised using Bonjour
struct sockaddr_in addr4;
memset(&addr4, 0, sizeof(addr4));
addr4.sin_len = sizeof(addr4);
addr4.sin_family = AF_INET;
addr4.sin_port = 0;
addr4.sin_addr.s_addr = htonl(INADDR_ANY);
NSData *address4 = [NSData dataWithBytes:&addr4 length:sizeof(addr4)];
if (kCFSocketSuccess != CFSocketSetAddress(_ipv4socket, (CFDataRef)address4)) {
if (error) *error = [[NSError alloc] initWithDomain:BKServerErrorDomain code:kBKServerCouldNotBindToIPv4Address userInfo:nil];
if (_ipv4socket) CFRelease(_ipv4socket);
_ipv4socket = NULL;
return NO;
}
// now that the binding was successful, we get the port number
// -- we will need it for the NSNetService
NSData *addr = [(NSData *)CFSocketCopyAddress(_ipv4socket) autorelease];
memcpy(&addr4, [addr bytes], [addr length]);
self.port = ntohs(addr4.sin_port);
// set up the run loop sources for the sockets
CFRunLoopRef cfrl = [aRunLoop getCFRunLoop];
CFRunLoopSourceRef source4 = CFSocketCreateRunLoopSource(kCFAllocatorDefault, _ipv4socket, 0);
CFRunLoopAddSource(cfrl, source4, kCFRunLoopCommonModes);
CFRelease(source4);
[_runLoop autorelease];
_runLoop = [aRunLoop retain];
NSLog(@"BKServer Start OK.");
return YES;
}
- (BOOL)stop {
[self disableBonjour];
if (_ipv4socket) {
CFSocketInvalidate(_ipv4socket);
CFRelease(_ipv4socket);
_ipv4socket = NULL;
}
return YES;
}
- (BOOL) enableBonjourWithDomain:(NSString*)domain applicationProtocol:(NSString*)protocol name:(NSString*)name
{
if(![domain length])
domain = @""; //Will use default Bonjour registration doamins, typically just ".local"
if(![name length])
name = @""; //Will use default Bonjour name, e.g. the name assigned to the device in iTunes
if(!protocol || ![protocol length] || _ipv4socket == NULL) {
NSLog(@"Protocol is not found.");
return NO;
}
self.netService = [[NSNetService alloc] initWithDomain:domain type:protocol name:name port:self.port];
if(self.netService == nil) {
NSLog(@"Net Searvice is not found.");
return NO;
}
[self.netService scheduleInRunLoop:_runLoop forMode:NSRunLoopCommonModes];
[self.netService publish];
[self.netService setDelegate:self];
NSLog(@"Publish With Protocol:%@", protocol);
return YES;
}
/*
Bonjour will not allow conflicting service instance names (in the same domain), and may have automatically renamed
the service if there was a conflict. We pass the name back to the delegate so that the name can be displayed to
the user.
See http://developer.apple.com/networking/bonjour/faq.html for more information.
*/
- (void)netServiceDidPublish:(NSNetService *)sender
{
if (self.delegate && [self.delegate respondsToSelector:@selector(serverDidEnableBonjour:withName:)])
[self.delegate serverDidEnableBonjour:self withName:sender.name];
}
- (void)netService:(NSNetService *)sender didNotPublish:(NSDictionary *)errorDict
{
[super netService:sender didNotPublish:errorDict];
if (self.delegate && [self.delegate respondsToSelector:@selector(server:didNotEnableBonjour:)])
[self.delegate server:self didNotEnableBonjour:errorDict];
}
- (void) disableBonjour
{
if (self.netService) {
[self.netService stop];
[self.netService removeFromRunLoop:_runLoop forMode:NSRunLoopCommonModes];
self.netService = nil;
}
}
- (NSString*) description
{
return [NSString stringWithFormat:@"<%@ = 0x%08X | port %d | netService = %@>", [self class], (long)self, self.port, self.netService];
}
+ (NSString*) bonjourTypeFromIdentifier:(NSString*)identifier {
if (![identifier length])
return nil;
return [NSString stringWithFormat:@"_%@._tcp.", identifier];
}
@end