55 lines
1.6 KiB
Swift
55 lines
1.6 KiB
Swift
//
|
|
// Copyright 2021-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/// A FIFO queue which will ensure only one user indicator is shown at a given time.
|
|
///
|
|
/// `UserIndicatorQueue` offers a `shared` queue that can be used by any clients app-wide, but clients are also allowed
|
|
/// to create local `UserIndicatorQueue` if the context requres multiple simultaneous indicators.
|
|
public class UserIndicatorQueue {
|
|
private class Weak<T: AnyObject> {
|
|
weak var element: T?
|
|
init(_ element: T) {
|
|
self.element = element
|
|
}
|
|
}
|
|
|
|
private var queue: [Weak<UserIndicator>]
|
|
|
|
public init() {
|
|
queue = []
|
|
}
|
|
|
|
/// Add a new indicator to the queue by providing a request.
|
|
///
|
|
/// The queue will start the indicator right away, if there are no currently running indicators,
|
|
/// otherwise the indicator will be put on hold.
|
|
public func add(_ request: UserIndicatorRequest) -> UserIndicator {
|
|
let indicator = UserIndicator(request: request) { [weak self] in
|
|
self?.startNextIfIdle()
|
|
}
|
|
|
|
queue.append(Weak(indicator))
|
|
startNextIfIdle()
|
|
return indicator
|
|
}
|
|
|
|
private func startNextIfIdle() {
|
|
cleanup()
|
|
if let indicator = queue.first?.element, indicator.state == .pending {
|
|
indicator.start()
|
|
}
|
|
}
|
|
|
|
private func cleanup() {
|
|
queue.removeAll {
|
|
$0.element == nil || $0.element?.state == .completed
|
|
}
|
|
}
|
|
}
|