mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.4 KiB
Swift
75 lines
2.4 KiB
Swift
// Copyright © 2024 Rangeproof Pty Ltd. All rights reserved.
|
|
|
|
import Foundation
|
|
import SessionUtilitiesKit
|
|
|
|
// MARK: - Singleton
|
|
|
|
public extension Singleton {
|
|
static let appReadiness: SingletonConfig<AppReadiness> = Dependencies.create(
|
|
identifier: "appReadiness",
|
|
createInstance: { _ in AppReadiness() }
|
|
)
|
|
}
|
|
|
|
// MARK: - AppReadiness
|
|
|
|
public class AppReadiness {
|
|
public private(set) var isAppReady: Bool = false
|
|
@ThreadSafeObject private var appWillBecomeReadyBlocks: [() -> ()] = []
|
|
@ThreadSafeObject private var appDidBecomeReadyBlocks: [() -> ()] = []
|
|
|
|
public func setAppReady() {
|
|
guard Thread.isMainThread else {
|
|
DispatchQueue.main.async { [weak self] in self?.setAppReady() }
|
|
return
|
|
}
|
|
|
|
// Update the flag
|
|
isAppReady = true
|
|
|
|
// Trigure the closures
|
|
let willBecomeReadyClosures: [() -> ()] = appWillBecomeReadyBlocks
|
|
let didBecomeReadyClosures: [() -> ()] = appDidBecomeReadyBlocks
|
|
_appWillBecomeReadyBlocks.set(to: [])
|
|
_appDidBecomeReadyBlocks.set(to: [])
|
|
|
|
willBecomeReadyClosures.forEach { $0() }
|
|
didBecomeReadyClosures.forEach { $0() }
|
|
}
|
|
|
|
public func invalidate() {
|
|
isAppReady = false
|
|
}
|
|
|
|
public func runNowOrWhenAppWillBecomeReady(closure: @escaping () -> ()) {
|
|
// We don't need to do any "on app ready" work in the tests.
|
|
guard !SNUtilitiesKit.isRunningTests else { return }
|
|
guard !isAppReady else {
|
|
guard Thread.isMainThread else {
|
|
DispatchQueue.main.async { [weak self] in self?.runNowOrWhenAppWillBecomeReady(closure: closure) }
|
|
return
|
|
}
|
|
|
|
return closure()
|
|
}
|
|
|
|
_appWillBecomeReadyBlocks.performUpdate { $0.appending(closure) }
|
|
}
|
|
|
|
public func runNowOrWhenAppDidBecomeReady(closure: @escaping () -> ()) {
|
|
// We don't need to do any "on app ready" work in the tests.
|
|
guard !SNUtilitiesKit.isRunningTests else { return }
|
|
guard !isAppReady else {
|
|
guard Thread.isMainThread else {
|
|
DispatchQueue.main.async { [weak self] in self?.runNowOrWhenAppDidBecomeReady(closure: closure) }
|
|
return
|
|
}
|
|
|
|
return closure()
|
|
}
|
|
|
|
_appDidBecomeReadyBlocks.performUpdate { $0.appending(closure) }
|
|
}
|
|
}
|