- Refactor chapter runtime: replace window coordinator/snapshot with warmup orchestrator - Update EPUB core: parser, reading session, JS bridge, navigator layout - Update reader controller: data source, location resolution, persistence - Update chapter runtime: data cache, loader, runtime store, disk cache, warmup orchestrator - Remove deprecated navigation state machine and pagination state - Update text rendering: book cache, HTML normalizer - Update UI: text content view, dark image adjuster, text selection controller - Update settings and reader configuration - Add CODE_REVIEW.md and AUDIT_FINAL.md documentation - Update pod dependencies (remove SSAlertSwift, SnapKit) - Update podspec and pod configuration files Co-Authored-By: Claude <noreply@anthropic.com>
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()
|
|
}
|
|
}
|