// // DIContainer.swift // // Copyright 2026 Brendan Szymanski // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // SPDX-License-Identifier: GPL-3.0-or-later // import Adwaita import Foundation public final class DIContainer: @unchecked Sendable { public static let shared = DIContainer() public private(set) var values = InjectionValues() private var observers: [AnyKeyPath: [UUID: @Sendable () -> Void]] = [:] private let lock = NSLock() private init() {} public func register( _ keyPath: WritableKeyPath, value: T ) { lock.withLock { values[keyPath: keyPath] = value } notifyObservers(for: keyPath) } public func resolve( _ keyPath: KeyPath ) -> T { lock.withLock { guard let value = values[keyPath: keyPath] else { fatalError( "DIContainer: No value registered for \(keyPath). " + "Call DIContainer.shared.register(\\.key, value:) during app startup." ) } return value } } @discardableResult func addObserver( for keyPath: KeyPath, handler: @escaping @Sendable () -> Void ) -> UUID { let id = UUID() lock.withLock { observers[keyPath, default: [:]][id] = handler } return id } func removeObserver(_ id: UUID) { lock.withLock { for keyPath in observers.keys { observers[keyPath]?.removeValue(forKey: id) } } } private func notifyObservers(for keyPath: AnyKeyPath) { let handlers: [@Sendable () -> Void] = lock.withLock { Array((observers[keyPath] ?? [:]).values) } handlers.forEach { $0() } } public func reset() { lock.withLock { values = InjectionValues() observers.removeAll() } } }