mirror of https://github.com/oxen-io/session-ios
Reachability Singleton
parent
b8e4bfff86
commit
54c63c7a2e
@ -0,0 +1,57 @@
|
|||||||
|
//
|
||||||
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
import Foundation
|
||||||
|
|
||||||
|
@objc(SSKReachabilityType)
|
||||||
|
public enum ReachabilityType: Int {
|
||||||
|
case any, wifi, cellular
|
||||||
|
}
|
||||||
|
|
||||||
|
@objc
|
||||||
|
public protocol SSKReachabilityManager {
|
||||||
|
var observationContext: AnyObject { get }
|
||||||
|
func setup()
|
||||||
|
|
||||||
|
var isReachable: Bool { get }
|
||||||
|
func isReachable(via reachabilityType: ReachabilityType) -> Bool
|
||||||
|
}
|
||||||
|
|
||||||
|
@objc
|
||||||
|
public class SSKReachabilityManagerImpl: NSObject, SSKReachabilityManager {
|
||||||
|
|
||||||
|
public let reachability: Reachability
|
||||||
|
public var observationContext: AnyObject {
|
||||||
|
return self.reachability
|
||||||
|
}
|
||||||
|
|
||||||
|
public var isReachable: Bool {
|
||||||
|
return isReachable(via: .any)
|
||||||
|
}
|
||||||
|
|
||||||
|
public func isReachable(via reachabilityType: ReachabilityType) -> Bool {
|
||||||
|
switch reachabilityType {
|
||||||
|
case .any:
|
||||||
|
return reachability.isReachable()
|
||||||
|
case .wifi:
|
||||||
|
return reachability.isReachableViaWiFi()
|
||||||
|
case .cellular:
|
||||||
|
return reachability.isReachableViaWWAN()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@objc
|
||||||
|
override public init() {
|
||||||
|
self.reachability = Reachability.forInternetConnection()
|
||||||
|
}
|
||||||
|
|
||||||
|
@objc
|
||||||
|
public func setup() {
|
||||||
|
guard reachability.startNotifier() else {
|
||||||
|
owsFailDebug("failed to start notifier")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
Logger.debug("started notifier")
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue