transmission/macosx/PortChecker.mm

154 lines
4.6 KiB
Plaintext
Raw Normal View History

2007-09-16 01:02:06 +00:00
/******************************************************************************
2012-01-14 17:12:04 +00:00
* Copyright (c) 2006-2012 Transmission authors and contributors
2007-09-16 01:02:06 +00:00
*
* 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 "PortChecker.h"
#define CHECKER_URL(port) [NSString stringWithFormat:@"https://portcheck.transmissionbt.com/%ld", port]
#define CHECK_FIRE 3.0
2007-12-19 20:46:00 +00:00
@interface PortChecker (Private)
- (void)startProbe:(NSTimer*)timer;
- (void)callBackWithStatus:(port_status_t)status;
2008-09-07 16:08:29 +00:00
@end
2007-09-16 01:02:06 +00:00
@implementation PortChecker
- (instancetype)initForPort:(NSInteger)portNumber delay:(BOOL)delay withDelegate:(id)delegate
2007-09-16 01:02:06 +00:00
{
if ((self = [super init]))
{
2007-12-18 21:13:36 +00:00
fDelegate = delegate;
fStatus = PORT_STATUS_CHECKING;
fTimer = [NSTimer scheduledTimerWithTimeInterval:CHECK_FIRE target:self selector:@selector(startProbe:)
userInfo:@(portNumber)
repeats:NO];
if (!delay)
{
[fTimer fire];
}
2007-09-16 01:02:06 +00:00
}
2007-09-16 01:02:06 +00:00
return self;
}
- (void)dealloc
{
[fTimer invalidate];
}
- (port_status_t)status
2007-09-16 01:02:06 +00:00
{
return fStatus;
}
- (void)cancelProbe
{
[fTimer invalidate];
2007-12-25 19:14:45 +00:00
fTimer = nil;
[fConnection cancel];
}
- (void)connection:(NSURLConnection*)connection didReceiveResponse:(NSURLResponse*)response
2007-09-16 01:02:06 +00:00
{
fPortProbeData.length = 0;
2007-09-16 01:02:06 +00:00
}
- (void)connection:(NSURLConnection*)connection didReceiveData:(NSData*)data
2007-09-16 01:02:06 +00:00
{
[fPortProbeData appendData:data];
2007-09-16 01:02:06 +00:00
}
- (void)connection:(NSURLConnection*)connection didFailWithError:(NSError*)error
2007-09-16 01:02:06 +00:00
{
NSLog(@"Unable to get port status: connection failed (%@)", error.localizedDescription);
[self callBackWithStatus:PORT_STATUS_ERROR];
2007-09-16 01:02:06 +00:00
}
- (void)connectionDidFinishLoading:(NSURLConnection*)connection
2007-09-16 01:02:06 +00:00
{
NSString* probeString = [[NSString alloc] initWithData:fPortProbeData encoding:NSUTF8StringEncoding];
fPortProbeData = nil;
if (probeString)
{
if ([probeString isEqualToString:@"1"])
{
[self callBackWithStatus:PORT_STATUS_OPEN];
}
else if ([probeString isEqualToString:@"0"])
{
[self callBackWithStatus:PORT_STATUS_CLOSED];
}
else
{
2009-09-12 02:48:57 +00:00
NSLog(@"Unable to get port status: invalid response (%@)", probeString);
[self callBackWithStatus:PORT_STATUS_ERROR];
}
}
2007-09-16 01:02:06 +00:00
else
{
NSLog(@"Unable to get port status: invalid data received");
[self callBackWithStatus:PORT_STATUS_ERROR];
}
2007-09-16 01:02:06 +00:00
}
@end
@implementation PortChecker (Private)
- (void)startProbe:(NSTimer*)timer
{
fTimer = nil;
NSURLRequest* portProbeRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:CHECKER_URL([[timer userInfo] integerValue])]
cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData
timeoutInterval:15.0];
if ((fConnection = [[NSURLConnection alloc] initWithRequest:portProbeRequest delegate:self]))
{
fPortProbeData = [[NSMutableData alloc] init];
}
else
{
NSLog(@"Unable to get port status: failed to initiate connection");
[self callBackWithStatus:PORT_STATUS_ERROR];
}
}
- (void)callBackWithStatus:(port_status_t)status
2008-09-07 16:08:29 +00:00
{
fStatus = status;
if (fDelegate && [fDelegate respondsToSelector:@selector(portCheckerDidFinishProbing:)])
{
[fDelegate performSelectorOnMainThread:@selector(portCheckerDidFinishProbing:) withObject:self waitUntilDone:NO];
}
2008-09-07 16:08:29 +00:00
}
@end