|
|
@ -18,175 +18,74 @@ |
|
|
|
|
|
|
|
|
|
|
|
#import "GRPCConnectivityMonitor.h" |
|
|
|
#import "GRPCConnectivityMonitor.h" |
|
|
|
|
|
|
|
|
|
|
|
#pragma mark Flags |
|
|
|
#include <netinet/in.h> |
|
|
|
|
|
|
|
|
|
|
|
@implementation GRPCReachabilityFlags { |
|
|
|
NSString *kGRPCConnectivityNotification = @"kGRPCConnectivityNotification"; |
|
|
|
SCNetworkReachabilityFlags _flags; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+ (instancetype)flagsWithFlags:(SCNetworkReachabilityFlags)flags { |
|
|
|
static SCNetworkReachabilityRef reachability; |
|
|
|
return [[self alloc] initWithFlags:flags]; |
|
|
|
static GRPCConnectivityStatus currentStatus; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- (instancetype)initWithFlags:(SCNetworkReachabilityFlags)flags { |
|
|
|
// Aggregate information in flags into network status. |
|
|
|
if ((self = [super init])) { |
|
|
|
GRPCConnectivityStatus CalculateConnectivityStatus(SCNetworkReachabilityFlags flags) { |
|
|
|
_flags = flags; |
|
|
|
GRPCConnectivityStatus result = GRPCConnectivityUnknown; |
|
|
|
|
|
|
|
if (((flags & kSCNetworkReachabilityFlagsReachable) == 0) || |
|
|
|
|
|
|
|
((flags & kSCNetworkReachabilityFlagsConnectionRequired) != 0)) { |
|
|
|
|
|
|
|
return GRPCConnectivityNoNetwork; |
|
|
|
} |
|
|
|
} |
|
|
|
return self; |
|
|
|
result = GRPCConnectivityWiFi; |
|
|
|
} |
|
|
|
#if TARGET_OS_IPHONE |
|
|
|
|
|
|
|
if (flags & kSCNetworkReachabilityFlagsIsWWAN) { |
|
|
|
/* |
|
|
|
return result = GRPCConnectivityCellular; |
|
|
|
* One accessor method implementation per flag. Example: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- (BOOL)isCell { \ |
|
|
|
|
|
|
|
return !!(_flags & kSCNetworkReachabilityFlagsIsWWAN); \ |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
#define GRPC_XMACRO_ITEM(methodName, FlagName) \ |
|
|
|
|
|
|
|
- (BOOL)methodName { \ |
|
|
|
|
|
|
|
return !!(_flags & kSCNetworkReachabilityFlags ## FlagName); \ |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
#include "GRPCReachabilityFlagNames.xmacro.h" |
|
|
|
|
|
|
|
#undef GRPC_XMACRO_ITEM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- (BOOL)isHostReachable { |
|
|
|
|
|
|
|
// Note: connectionOnDemand means it'll be reachable only if using the CFSocketStream API or APIs |
|
|
|
|
|
|
|
// on top of it. |
|
|
|
|
|
|
|
// connectionRequired means we can't tell until a connection is attempted (e.g. for VPN on |
|
|
|
|
|
|
|
// demand). |
|
|
|
|
|
|
|
return self.reachable && !self.interventionRequired && !self.connectionOnDemand; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- (NSString *)description { |
|
|
|
|
|
|
|
NSMutableArray *activeOptions = [NSMutableArray arrayWithCapacity:9]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* |
|
|
|
|
|
|
|
* For each flag, add its name to the array if it's ON. Example: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (self.isCell) { |
|
|
|
|
|
|
|
[activeOptions addObject:@"isCell"]; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
#endif |
|
|
|
*/ |
|
|
|
return result; |
|
|
|
#define GRPC_XMACRO_ITEM(methodName, FlagName) \ |
|
|
|
|
|
|
|
if (self.methodName) { \ |
|
|
|
|
|
|
|
[activeOptions addObject:@ #methodName]; \ |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
#include "GRPCReachabilityFlagNames.xmacro.h" |
|
|
|
|
|
|
|
#undef GRPC_XMACRO_ITEM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return activeOptions.count == 0 ? @"(none)" : [activeOptions componentsJoinedByString:@", "]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- (BOOL)isEqual:(id)object { |
|
|
|
|
|
|
|
return [object isKindOfClass:[GRPCReachabilityFlags class]] && |
|
|
|
|
|
|
|
_flags == ((GRPCReachabilityFlags *)object)->_flags; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- (NSUInteger)hash { |
|
|
|
|
|
|
|
return _flags; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma mark Connectivity Monitor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Assumes the third argument is a block that accepts a GRPCReachabilityFlags object, and passes the |
|
|
|
|
|
|
|
// received ones to it. |
|
|
|
|
|
|
|
static void PassFlagsToContextInfoBlock(SCNetworkReachabilityRef target, |
|
|
|
|
|
|
|
SCNetworkReachabilityFlags flags, |
|
|
|
|
|
|
|
void *info) { |
|
|
|
|
|
|
|
#pragma unused (target) |
|
|
|
|
|
|
|
// This can be called many times with the same info. The info is retained by SCNetworkReachability |
|
|
|
|
|
|
|
// while this function is being executed. |
|
|
|
|
|
|
|
void (^handler)(GRPCReachabilityFlags *) = (__bridge void (^)(GRPCReachabilityFlags *))info; |
|
|
|
|
|
|
|
handler([[GRPCReachabilityFlags alloc] initWithFlags:flags]); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@implementation GRPCConnectivityMonitor { |
|
|
|
static void ReachabilityCallback( |
|
|
|
SCNetworkReachabilityRef _reachabilityRef; |
|
|
|
SCNetworkReachabilityRef target, SCNetworkReachabilityFlags flags, void* info) { |
|
|
|
GRPCReachabilityFlags *_previousReachabilityFlags; |
|
|
|
GRPCConnectivityStatus newStatus = CalculateConnectivityStatus(flags); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- (nullable instancetype)initWithReachability:(nullable SCNetworkReachabilityRef)reachability { |
|
|
|
if (newStatus != currentStatus) { |
|
|
|
if (!reachability) { |
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:kGRPCConnectivityNotification |
|
|
|
return nil; |
|
|
|
object:nil]; |
|
|
|
|
|
|
|
currentStatus = newStatus; |
|
|
|
} |
|
|
|
} |
|
|
|
if ((self = [super init])) { |
|
|
|
|
|
|
|
_reachabilityRef = CFRetain(reachability); |
|
|
|
|
|
|
|
_queue = dispatch_get_main_queue(); |
|
|
|
|
|
|
|
_previousReachabilityFlags = nil; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return self; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
+ (nullable instancetype)monitorWithHost:(nonnull NSString *)host { |
|
|
|
@implementation GRPCConnectivityMonitor |
|
|
|
const char *hostName = host.UTF8String; |
|
|
|
|
|
|
|
if (!hostName) { |
|
|
|
|
|
|
|
[NSException raise:NSInvalidArgumentException |
|
|
|
|
|
|
|
format:@"host.UTF8String returns NULL for %@", host]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
SCNetworkReachabilityRef reachability = |
|
|
|
|
|
|
|
SCNetworkReachabilityCreateWithName(NULL, hostName); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GRPCConnectivityMonitor *returnValue = [[self alloc] initWithReachability:reachability]; |
|
|
|
+ (void)initialize { |
|
|
|
if (reachability) { |
|
|
|
if (self == [GRPCConnectivityMonitor self]) { |
|
|
|
CFRelease(reachability); |
|
|
|
struct sockaddr_in addr = {0}; |
|
|
|
} |
|
|
|
addr.sin_len = sizeof(addr); |
|
|
|
return returnValue; |
|
|
|
addr.sin_family = AF_INET; |
|
|
|
} |
|
|
|
reachability = SCNetworkReachabilityCreateWithAddress(NULL, (struct sockaddr *)&addr); |
|
|
|
|
|
|
|
currentStatus = GRPCConnectivityUnknown; |
|
|
|
|
|
|
|
|
|
|
|
- (void)handleLossWithHandler:(nullable void (^)(void))lossHandler |
|
|
|
SCNetworkConnectionFlags flags; |
|
|
|
wifiStatusChangeHandler:(nullable void (^)(void))wifiStatusChangeHandler { |
|
|
|
if (SCNetworkReachabilityGetFlags(reachability, &flags)) { |
|
|
|
__weak typeof(self) weakSelf = self; |
|
|
|
currentStatus = CalculateConnectivityStatus(flags); |
|
|
|
[self startListeningWithHandler:^(GRPCReachabilityFlags *flags) { |
|
|
|
|
|
|
|
typeof(self) strongSelf = weakSelf; |
|
|
|
|
|
|
|
if (strongSelf) { |
|
|
|
|
|
|
|
if (lossHandler && !flags.reachable) { |
|
|
|
|
|
|
|
lossHandler(); |
|
|
|
|
|
|
|
#if TARGET_OS_IPHONE |
|
|
|
|
|
|
|
} else if (wifiStatusChangeHandler && |
|
|
|
|
|
|
|
strongSelf->_previousReachabilityFlags && |
|
|
|
|
|
|
|
(flags.isWWAN ^ |
|
|
|
|
|
|
|
strongSelf->_previousReachabilityFlags.isWWAN)) { |
|
|
|
|
|
|
|
wifiStatusChangeHandler(); |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
strongSelf->_previousReachabilityFlags = flags; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
}]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- (void)startListeningWithHandler:(void (^)(GRPCReachabilityFlags *))handler { |
|
|
|
SCNetworkReachabilityContext context = {0, (__bridge void *)(self), NULL, NULL, NULL}; |
|
|
|
// Copy to ensure the handler block is in the heap (and so can't be deallocated when this method |
|
|
|
if (!SCNetworkReachabilitySetCallback(reachability, ReachabilityCallback, &context) || |
|
|
|
// returns). |
|
|
|
!SCNetworkReachabilityScheduleWithRunLoop( |
|
|
|
void (^copiedHandler)(GRPCReachabilityFlags *) = [handler copy]; |
|
|
|
reachability, CFRunLoopGetMain(), kCFRunLoopCommonModes)) { |
|
|
|
SCNetworkReachabilityContext context = { |
|
|
|
NSLog(@"gRPC connectivity monitor fail to set"); |
|
|
|
.version = 0, |
|
|
|
} |
|
|
|
.info = (__bridge void *)copiedHandler, |
|
|
|
} |
|
|
|
.retain = CFRetain, |
|
|
|
|
|
|
|
.release = CFRelease, |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
// The following will retain context.info, and release it when the callback is set to NULL. |
|
|
|
|
|
|
|
SCNetworkReachabilitySetCallback(_reachabilityRef, PassFlagsToContextInfoBlock, &context); |
|
|
|
|
|
|
|
SCNetworkReachabilitySetDispatchQueue(_reachabilityRef, _queue); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- (void)stopListening { |
|
|
|
|
|
|
|
// This releases the block on context.info. |
|
|
|
|
|
|
|
SCNetworkReachabilitySetCallback(_reachabilityRef, NULL, NULL); |
|
|
|
|
|
|
|
SCNetworkReachabilitySetDispatchQueue(_reachabilityRef, NULL); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
- (void)setQueue:(dispatch_queue_t)queue { |
|
|
|
+ (void)registerObserver:(_Nonnull id)observer |
|
|
|
_queue = queue ?: dispatch_get_main_queue(); |
|
|
|
selector:(SEL)selector { |
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:observer |
|
|
|
|
|
|
|
selector:selector |
|
|
|
|
|
|
|
name:kGRPCConnectivityNotification |
|
|
|
|
|
|
|
object:nil]; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
- (void)dealloc { |
|
|
|
+ (void)unregisterObserver:(_Nonnull id)observer { |
|
|
|
if (_reachabilityRef) { |
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver:observer]; |
|
|
|
[self stopListening]; |
|
|
|
|
|
|
|
CFRelease(_reachabilityRef); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@end |
|
|
|
@end |
|
|
|