- Rename source module from RDReaderView to RDEpubReaderView - Move all source files from Sources/RDReaderView/ to Sources/RDEpubReaderView/ - Update podspec: RDReaderView.podspec -> RDEpubReaderView.podspec - Update Podfile, demo project, and CocoaPods config for new pod name - Delete old RDReaderView pod support files from ReadViewDemo/Pods - Add new RDEpubReaderView pod support files - Update documentation (API ref, architecture, UML, conventions, etc.) - Add FixedLayoutRotationTests - Update .gitignore: exclude .DS_Store, manual unpack backups, _ssoft-output
45 lines
900 B
Swift
45 lines
900 B
Swift
import Foundation
|
|
|
|
final class RDEPUBMetadataParseCancellationController {
|
|
|
|
let token: UUID
|
|
|
|
private let lock = NSLock()
|
|
|
|
private weak var queue: OperationQueue?
|
|
|
|
private var cancelled = false
|
|
|
|
init(token: UUID) {
|
|
self.token = token
|
|
}
|
|
|
|
func attach(queue: OperationQueue) {
|
|
let shouldCancelImmediately: Bool
|
|
lock.lock()
|
|
self.queue = queue
|
|
shouldCancelImmediately = cancelled
|
|
lock.unlock()
|
|
|
|
if shouldCancelImmediately {
|
|
queue.cancelAllOperations()
|
|
}
|
|
}
|
|
|
|
func cancel() {
|
|
let queueToCancel: OperationQueue?
|
|
lock.lock()
|
|
cancelled = true
|
|
queueToCancel = queue
|
|
lock.unlock()
|
|
queueToCancel?.cancelAllOperations()
|
|
}
|
|
|
|
var isCancelled: Bool {
|
|
lock.lock()
|
|
let value = cancelled
|
|
lock.unlock()
|
|
return value
|
|
}
|
|
}
|