mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
35 lines
958 B
Swift
35 lines
958 B
Swift
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public class SwiftSingletons: NSObject {
|
|
public static let shared = SwiftSingletons()
|
|
|
|
private var classSet = Set<String>()
|
|
|
|
private override init() {
|
|
super.init()
|
|
}
|
|
|
|
public func register(_ singleton: AnyObject) {
|
|
guard !CurrentAppContext().isRunningTests else {
|
|
return
|
|
}
|
|
guard _isDebugAssertConfiguration() else {
|
|
return
|
|
}
|
|
let singletonClassName = String(describing: type(of: singleton))
|
|
guard !classSet.contains(singletonClassName) else {
|
|
owsFailDebug("Duplicate singleton: \(singletonClassName).")
|
|
return
|
|
}
|
|
Logger.verbose("Registering singleton: \(singletonClassName).")
|
|
classSet.insert(singletonClassName)
|
|
}
|
|
|
|
public static func register(_ singleton: AnyObject) {
|
|
shared.register(singleton)
|
|
}
|
|
}
|