Files
openclaw-openclaw/apps/shared/OpenClawKit/Sources/OpenClawChatUI/ChatViewModel+TranscriptCache.swift

87 lines
3.6 KiB
Swift

import Foundation
// Offline transcript cache integration. The cache only pre-paints cold opens
// and covers offline browsing; live gateway responses are always the source
// of truth and replace cached rows wholesale.
extension OpenClawChatViewModel {
struct SessionSnapshot {
var key: String
var generation: UInt64
var agentID: String?
var deliveryAgentID: String?
var sessionRoutingContract: String?
}
func replaceMessages(_ messages: [OpenClawChatMessage]) {
guard self.messages != messages else { return }
self.messages = messages
markTimelineChanged()
}
func persistTranscriptToCache(
sessionKey: String,
agentID: String?,
messages: [OpenClawChatMessage],
canonicalMessageIdempotencyKeys: Set<String>)
{
guard let transcriptCache else { return }
// Chain writes so an older snapshot can never land after a newer one;
// detached tasks alone give no ordering guarantee across awaits.
let previous = pendingCacheWriteTask
pendingCacheWriteTask = Task.detached {
await previous?.value
await transcriptCache.storeCanonicalTranscript(
sessionKey: sessionKey,
agentID: Self.transcriptCacheAgentID(sessionKey: sessionKey, agentID: agentID),
messages: messages,
canonicalMessageIdempotencyKeys: canonicalMessageIdempotencyKeys)
}
}
func persistSessionsToCache(_ sessions: [OpenClawChatSessionEntry]) {
guard let transcriptCache else { return }
let previous = pendingCacheWriteTask
pendingCacheWriteTask = Task.detached {
await previous?.value
await transcriptCache.storeSessions(sessions)
}
}
/// Cache-first cold open: pre-paint the cached transcript/session list
/// while the live requests are in flight (or failing while offline).
/// Live history replaces the painted rows wholesale via the normal
/// applyHistoryPayload reconciliation path.
func paintFromCacheIfNeeded(session: SessionSnapshot) {
guard let transcriptCache else { return }
if sessions.isEmpty, !hasAppliedLiveSessions {
Task { [weak self] in
let cached = await transcriptCache.loadSessions()
guard let self, !cached.isEmpty else { return }
// A live sessions response (even an empty one) is authoritative;
// a slow cache read must never repaint over it.
guard self.sessions.isEmpty, !self.hasAppliedLiveSessions else { return }
self.sessions = cached
}
}
guard messages.isEmpty, !hasAppliedLiveHistory else { return }
Task { [weak self] in
let cached = await transcriptCache.loadTranscript(
sessionKey: session.key,
agentID: Self.transcriptCacheAgentID(sessionKey: session.key, agentID: session.agentID))
guard let self, !cached.isEmpty else { return }
guard self.isCurrentSession(session), !self.hasAppliedLiveHistory, self.messages.isEmpty else {
return
}
self.replaceMessages(cached)
self.isShowingCachedTranscript = true
}
}
static func transcriptCacheAgentID(sessionKey: String, agentID: String?) -> String? {
guard Self.agentID(fromSessionKey: sessionKey) == nil else { return nil }
let normalized = agentID?.trimmingCharacters(in: .whitespacesAndNewlines).lowercased()
return normalized?.isEmpty == false ? normalized : nil
}
}