session-ios/SessionMessagingKit/Utilities/ProximityMonitoringManager....

94 lines
2.7 KiB
Swift
Raw Normal View History

// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
import Foundation
import SignalCoreKit
import SessionUtilitiesKit
@objc
2021-05-04 07:06:41 +02:00
public protocol OWSProximityMonitoringManager: AnyObject {
func add(lifetime: AnyObject)
func remove(lifetime: AnyObject)
}
@objc
public class OWSProximityMonitoringManagerImpl: NSObject, OWSProximityMonitoringManager {
var lifetimes: [Weak<AnyObject>] = []
public override init() {
super.init()
2018-11-13 16:24:49 +01:00
AppReadiness.runNowOrWhenAppWillBecomeReady {
self.setup()
}
}
// MARK:
var device: UIDevice {
return UIDevice.current
}
// MARK:
@objc
public func add(lifetime: AnyObject) {
objc_sync_enter(self)
2020-11-17 06:23:13 +01:00
if !lifetimes.contains(where: { $0.value === lifetime }) {
lifetimes.append(Weak(value: lifetime))
}
reconcile()
objc_sync_exit(self)
}
@objc
public func remove(lifetime: AnyObject) {
objc_sync_enter(self)
lifetimes = lifetimes.filter { $0.value !== lifetime }
reconcile()
objc_sync_exit(self)
}
@objc
public func setup() {
2019-03-30 14:22:31 +01:00
NotificationCenter.default.addObserver(self, selector: #selector(proximitySensorStateDidChange(notification:)), name: UIDevice.proximityStateDidChangeNotification, object: nil)
}
@objc
func proximitySensorStateDidChange(notification: Notification) {
Logger.debug("")
// This is crazy, but if we disable `device.isProximityMonitoringEnabled` while
// `device.proximityState` is true (while the device is held to the ear)
// then `device.proximityState` remains true, even after we bring the phone
// away from the ear and re-enable monitoring.
//
// To resolve this, we wait to disable proximity monitoring until `proximityState`
// is false.
if self.device.proximityState {
self.add(lifetime: self)
} else {
self.remove(lifetime: self)
}
}
func reconcile() {
lifetimes = lifetimes.filter { $0.value != nil }
if lifetimes.isEmpty {
2018-10-25 17:12:20 +02:00
DispatchQueue.main.async {
Logger.debug("disabling proximity monitoring")
2018-10-25 17:12:20 +02:00
self.device.isProximityMonitoringEnabled = false
}
} else {
let lifetimes = self.lifetimes
2018-10-25 17:12:20 +02:00
DispatchQueue.main.async {
Logger.debug("willEnable proximity monitoring for lifetimes: \(lifetimes), proximityState: \(self.device.proximityState)")
2018-10-25 17:12:20 +02:00
self.device.isProximityMonitoringEnabled = true
Logger.debug("didEnable proximity monitoring for lifetimes: \(lifetimes), proximityState: \(self.device.proximityState)")
2018-10-25 17:12:20 +02:00
}
}
}
}