- 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
76 lines
1.9 KiB
Swift
76 lines
1.9 KiB
Swift
import UIKit
|
|
|
|
/// M-01: All properties must be accessed exclusively from the main thread.
|
|
/// This is currently enforced by convention — all verified access paths are main-thread-only.
|
|
/// Adding @MainActor would formalize this but requires iOS 15+ and Swift concurrency throughout.
|
|
/// For now, rely on the audit-verified access patterns and consider @MainActor in a future refactor.
|
|
final class RDEPUBReaderState {
|
|
|
|
var parser: RDEPUBParser?
|
|
|
|
var publication: RDEPUBPublication?
|
|
|
|
var readingSession: RDEPUBReadingSession?
|
|
|
|
var textBook: RDEPUBTextBook?
|
|
|
|
var bookPageMap: RDEPUBBookPageMap?
|
|
|
|
var activeBookmarks: [RDEPUBBookmark] = []
|
|
|
|
var activeHighlights: [RDEPUBHighlight] = []
|
|
|
|
var currentBookIdentifier: String?
|
|
|
|
var paginationToken = UUID()
|
|
|
|
var searchState: RDEPUBSearchState?
|
|
|
|
var pendingPageMapUpdates: [RDEPUBPendingPageMapUpdate] = []
|
|
|
|
var lastTextPaginationPageSize: CGSize?
|
|
|
|
var lastMetadataParseWallClockMs: Int = 0
|
|
|
|
var lastMetadataParseConcurrency: Int = 0
|
|
|
|
var selectionState: RDEPUBSelectionState = .idle
|
|
|
|
var isRepaginating: Bool = false
|
|
|
|
var didStartInitialLoad: Bool = false
|
|
|
|
var isExternalTextBook: Bool = false
|
|
|
|
var textFileURL: URL?
|
|
|
|
let textBookCache = RDEPUBTextBookCache()
|
|
|
|
var currentSelection: RDEPUBSelection? {
|
|
get { selectionState.selection }
|
|
set {
|
|
if let newValue, !newValue.isEmpty {
|
|
selectionState = .selected(newValue)
|
|
} else {
|
|
selectionState = .idle
|
|
}
|
|
}
|
|
}
|
|
|
|
var activePages: [EPUBPage] {
|
|
readingSession?.activePages ?? []
|
|
}
|
|
|
|
var activeChapters: [EPUBChapterInfo] {
|
|
readingSession?.activeChapters ?? []
|
|
}
|
|
|
|
func replaceActiveSnapshot(_ snapshot: RDEPUBReadingSession.PaginationSnapshot) {
|
|
readingSession?.setActiveSnapshot(snapshot)
|
|
}
|
|
|
|
func clearActiveSnapshot() {
|
|
readingSession?.resetRuntimeState()
|
|
}
|
|
}
|