mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 22:33:57 +00:00
* feat(ios): read-only offline cache for chat sessions and transcripts Cache-first cold open for the iOS chat tab: the last known transcript and session list render immediately from a local SQLite cache, then live gateway history replaces them wholesale through the existing reconciliation path. When the gateway is unreachable, recent sessions and transcripts stay browsable read-only; sending remains gated by the existing connection state. - New OpenClawChatTranscriptCache protocol seam plus SQLite-backed store in OpenClawChatUI (raw SQLite3, no new dependencies), scoped per gateway stableID so transcripts never leak across paired gateways. - Bounds: 50 sessions, 50 transcripts, 200 messages per session; text rows only (attachment/binary payloads and tool arguments are stripped). - Disposable cache: schema versioned via user_version; any open/schema/decode mismatch drops and rebuilds silently. File protection completeUntilFirstUserAuthentication on iOS. - View model pre-paints from cache only until a live response applies (hasAppliedLiveHistory/hasAppliedLiveSessions guards); write-through is chained and off the render path. - iOS wiring keys the chat view model identity on transport mode plus cache gateway ID so switching paired gateways rebuilds the view model. Part of #100194 * fix(ios): harden offline transcript cache * fix(ios): expose offline cached sessions * fix(ios): isolate transcript caches by gateway * chore(i18n): sync native inventory * fix(ios): allow cache extension to replace messages
356 lines
14 KiB
Swift
356 lines
14 KiB
Swift
import Foundation
|
|
import OpenClawKit
|
|
import Testing
|
|
@testable import OpenClawChatUI
|
|
|
|
private func cachedMessage(role: String, text: String, timestamp: Double) -> OpenClawChatMessage {
|
|
OpenClawChatMessage(
|
|
role: role,
|
|
content: [
|
|
OpenClawChatMessageContent(
|
|
type: "text",
|
|
text: text,
|
|
mimeType: nil,
|
|
fileName: nil,
|
|
content: nil),
|
|
],
|
|
timestamp: timestamp)
|
|
}
|
|
|
|
private func liveHistoryMessage(role: String, text: String, timestamp: Double) -> AnyCodable {
|
|
AnyCodable([
|
|
"role": role,
|
|
"content": [["type": "text", "text": text]],
|
|
"timestamp": timestamp,
|
|
] as [String: Any])
|
|
}
|
|
|
|
private func visibleTexts(_ vm: OpenClawChatViewModel) async -> [String] {
|
|
await MainActor.run { vm.messages.map { $0.content.compactMap(\.text).joined() } }
|
|
}
|
|
|
|
private func cachedSessionEntry(key: String, updatedAt: Double) -> OpenClawChatSessionEntry {
|
|
OpenClawChatSessionEntry(
|
|
key: key,
|
|
kind: nil,
|
|
displayName: nil,
|
|
surface: nil,
|
|
subject: nil,
|
|
room: nil,
|
|
space: nil,
|
|
updatedAt: updatedAt,
|
|
sessionId: nil,
|
|
systemSent: nil,
|
|
abortedLastRun: nil,
|
|
thinkingLevel: nil,
|
|
verboseLevel: nil,
|
|
inputTokens: nil,
|
|
outputTokens: nil,
|
|
totalTokens: nil,
|
|
modelProvider: nil,
|
|
model: nil,
|
|
contextTokens: nil)
|
|
}
|
|
|
|
/// In-memory per-instance stub matching the cache seam.
|
|
private actor TestTranscriptCache: OpenClawChatTranscriptCache {
|
|
private var transcripts: [String: [OpenClawChatMessage]]
|
|
private var sessions: [OpenClawChatSessionEntry]
|
|
private let loadSessionsHook: (@Sendable () async -> Void)?
|
|
private(set) var storedTranscriptSessionKeys: [String] = []
|
|
private(set) var storedTranscripts: [[OpenClawChatMessage]] = []
|
|
private(set) var storedSessionsCallCount = 0
|
|
|
|
init(
|
|
transcripts: [String: [OpenClawChatMessage]] = [:],
|
|
sessions: [OpenClawChatSessionEntry] = [],
|
|
loadSessionsHook: (@Sendable () async -> Void)? = nil)
|
|
{
|
|
self.transcripts = transcripts
|
|
self.sessions = sessions
|
|
self.loadSessionsHook = loadSessionsHook
|
|
}
|
|
|
|
func loadSessions() async -> [OpenClawChatSessionEntry] {
|
|
await self.loadSessionsHook?()
|
|
return self.sessions
|
|
}
|
|
|
|
func loadTranscript(sessionKey: String) async -> [OpenClawChatMessage] {
|
|
self.transcripts[sessionKey] ?? []
|
|
}
|
|
|
|
func storeSessions(_ sessions: [OpenClawChatSessionEntry]) async {
|
|
self.sessions = sessions
|
|
self.storedSessionsCallCount += 1
|
|
}
|
|
|
|
func storeTranscript(sessionKey: String, messages: [OpenClawChatMessage]) async {
|
|
self.transcripts[sessionKey] = messages
|
|
self.storedTranscriptSessionKeys.append(sessionKey)
|
|
self.storedTranscripts.append(messages)
|
|
}
|
|
}
|
|
|
|
/// Minimal FIFO scripted transport; history responses can be gated to model a
|
|
/// slow or unreachable gateway during cold open.
|
|
private final class GatedHistoryChatTransport: @unchecked Sendable, OpenClawChatTransport {
|
|
private let historyGate: AsyncStream<Void>.Continuation?
|
|
private let historyGateStream: AsyncStream<Void>?
|
|
private let historyResult: @Sendable (String, Int) throws -> OpenClawChatHistoryPayload
|
|
private let historyRequestLock = NSLock()
|
|
private var historyRequestCount = 0
|
|
private let stream: AsyncStream<OpenClawChatTransportEvent>
|
|
private let continuation: AsyncStream<OpenClawChatTransportEvent>.Continuation
|
|
|
|
init(
|
|
gated: Bool,
|
|
historyResult: @escaping @Sendable (String, Int) throws -> OpenClawChatHistoryPayload)
|
|
{
|
|
self.historyResult = historyResult
|
|
if gated {
|
|
var cont: AsyncStream<Void>.Continuation!
|
|
self.historyGateStream = AsyncStream { c in cont = c }
|
|
self.historyGate = cont
|
|
} else {
|
|
self.historyGateStream = nil
|
|
self.historyGate = nil
|
|
}
|
|
var eventCont: AsyncStream<OpenClawChatTransportEvent>.Continuation!
|
|
self.stream = AsyncStream { c in eventCont = c }
|
|
self.continuation = eventCont
|
|
}
|
|
|
|
func releaseHistory() {
|
|
self.historyGate?.yield(())
|
|
}
|
|
|
|
func requestHistory(sessionKey: String) async throws -> OpenClawChatHistoryPayload {
|
|
if let historyGateStream {
|
|
var iterator = historyGateStream.makeAsyncIterator()
|
|
_ = await iterator.next()
|
|
}
|
|
let requestNumber = self.historyRequestLock.withLock {
|
|
self.historyRequestCount += 1
|
|
return self.historyRequestCount
|
|
}
|
|
return try self.historyResult(sessionKey, requestNumber)
|
|
}
|
|
|
|
func observedHistoryRequestCount() -> Int {
|
|
self.historyRequestLock.withLock { self.historyRequestCount }
|
|
}
|
|
|
|
func sendMessage(
|
|
sessionKey _: String,
|
|
message _: String,
|
|
thinking _: String,
|
|
idempotencyKey: String,
|
|
attachments _: [OpenClawChatAttachmentPayload]) async throws -> OpenClawChatSendResponse
|
|
{
|
|
OpenClawChatSendResponse(runId: idempotencyKey, status: "accepted")
|
|
}
|
|
|
|
func listSessions(limit _: Int?) async throws -> OpenClawChatSessionsListResponse {
|
|
OpenClawChatSessionsListResponse(ts: nil, path: nil, count: 0, defaults: nil, sessions: [])
|
|
}
|
|
|
|
func requestHealth(timeoutMs _: Int) async throws -> Bool {
|
|
true
|
|
}
|
|
|
|
func events() -> AsyncStream<OpenClawChatTransportEvent> {
|
|
self.stream
|
|
}
|
|
}
|
|
|
|
private struct TransportOfflineError: Error {}
|
|
|
|
struct ChatViewModelTranscriptCacheTests {
|
|
@Test func `cold open paints cached transcript then live history replaces it`() async throws {
|
|
let cache = TestTranscriptCache(
|
|
transcripts: [
|
|
"main": [
|
|
cachedMessage(role: "user", text: "cached question", timestamp: 1000),
|
|
cachedMessage(role: "assistant", text: "cached answer", timestamp: 2000),
|
|
],
|
|
])
|
|
let transport = GatedHistoryChatTransport(gated: true) { sessionKey, _ in
|
|
OpenClawChatHistoryPayload(
|
|
sessionKey: sessionKey,
|
|
sessionId: "sess-live",
|
|
messages: [
|
|
liveHistoryMessage(role: "user", text: "cached question", timestamp: 1000),
|
|
liveHistoryMessage(role: "assistant", text: "live answer", timestamp: 2000),
|
|
liveHistoryMessage(role: "user", text: "newer turn", timestamp: 3000),
|
|
],
|
|
thinkingLevel: "off")
|
|
}
|
|
let vm = await MainActor.run {
|
|
OpenClawChatViewModel(sessionKey: "main", transport: transport, transcriptCache: cache)
|
|
}
|
|
|
|
await MainActor.run { vm.load() }
|
|
|
|
// Cache pre-paint lands while live history is still gated.
|
|
try await waitUntil("cached transcript painted") {
|
|
await MainActor.run { vm.isShowingCachedTranscript && vm.messages.count == 2 }
|
|
}
|
|
#expect(await visibleTexts(vm) == ["cached question", "cached answer"])
|
|
|
|
transport.releaseHistory()
|
|
|
|
// Live history replaces the cached rows wholesale and clears the marker.
|
|
try await waitUntil("live history applied") {
|
|
await MainActor.run { vm.sessionId == "sess-live" }
|
|
}
|
|
#expect(await visibleTexts(vm) == ["cached question", "live answer", "newer turn"])
|
|
#expect(await MainActor.run { !vm.isShowingCachedTranscript })
|
|
}
|
|
|
|
@Test func `offline cold open keeps cached transcript browsable`() async throws {
|
|
let cache = TestTranscriptCache(
|
|
transcripts: [
|
|
"main": [cachedMessage(role: "assistant", text: "offline answer", timestamp: 1000)],
|
|
])
|
|
let transport = GatedHistoryChatTransport(gated: false) { _, _ in
|
|
throw TransportOfflineError()
|
|
}
|
|
let vm = await MainActor.run {
|
|
OpenClawChatViewModel(sessionKey: "main", transport: transport, transcriptCache: cache)
|
|
}
|
|
|
|
await MainActor.run { vm.load() }
|
|
|
|
try await waitUntil("cached transcript painted") {
|
|
await MainActor.run { vm.isShowingCachedTranscript && !vm.messages.isEmpty }
|
|
}
|
|
try await waitUntil("bootstrap finished") {
|
|
await MainActor.run { !vm.isLoading }
|
|
}
|
|
// The failed live request must not clear the cached transcript.
|
|
#expect(await visibleTexts(vm) == ["offline answer"])
|
|
#expect(await MainActor.run { vm.isShowingCachedTranscript })
|
|
}
|
|
|
|
@Test func `live history is written through to cache`() async throws {
|
|
let cache = TestTranscriptCache()
|
|
let transport = GatedHistoryChatTransport(gated: false) { sessionKey, _ in
|
|
OpenClawChatHistoryPayload(
|
|
sessionKey: sessionKey,
|
|
sessionId: "sess-live",
|
|
messages: [liveHistoryMessage(role: "assistant", text: "hello", timestamp: 1000)],
|
|
thinkingLevel: "off")
|
|
}
|
|
let vm = await MainActor.run {
|
|
OpenClawChatViewModel(sessionKey: "main", transport: transport, transcriptCache: cache)
|
|
}
|
|
|
|
await MainActor.run { vm.load() }
|
|
|
|
try await waitUntil("write-through stored transcript") {
|
|
await cache.storedTranscriptSessionKeys.contains("main")
|
|
}
|
|
let stored = await cache.loadTranscript(sessionKey: "main")
|
|
#expect(stored.map { $0.content.compactMap(\.text).joined() } == ["hello"])
|
|
_ = vm
|
|
}
|
|
|
|
@Test func `optimistic echo is not written through as canonical history`() async throws {
|
|
let cache = TestTranscriptCache()
|
|
let transport = GatedHistoryChatTransport(gated: false) { sessionKey, requestNumber in
|
|
OpenClawChatHistoryPayload(
|
|
sessionKey: sessionKey,
|
|
sessionId: "sess-live",
|
|
messages: requestNumber == 1
|
|
? [liveHistoryMessage(role: "assistant", text: "canonical answer", timestamp: 1000)]
|
|
: [],
|
|
thinkingLevel: "off")
|
|
}
|
|
let vm = await MainActor.run {
|
|
OpenClawChatViewModel(sessionKey: "main", transport: transport, transcriptCache: cache)
|
|
}
|
|
|
|
await MainActor.run { vm.load() }
|
|
try await waitUntil("bootstrap finished") {
|
|
await MainActor.run { vm.sessionId == "sess-live" && !vm.isLoading }
|
|
}
|
|
await MainActor.run {
|
|
vm.input = "optimistic only"
|
|
vm.send()
|
|
}
|
|
try await waitUntil("post-send history refreshed") {
|
|
transport.observedHistoryRequestCount() >= 2
|
|
}
|
|
|
|
#expect(await visibleTexts(vm) == ["canonical answer", "optimistic only"])
|
|
#expect(await cache.storedTranscripts.count == 1)
|
|
#expect(await cache.storedTranscripts.last?.count == 1)
|
|
#expect(
|
|
await cache.loadTranscript(sessionKey: "main")
|
|
.flatMap { $0.content.compactMap(\.text) } == ["canonical answer"])
|
|
}
|
|
|
|
@Test func `stale cached sessions never overwrite live empty session list`() async throws {
|
|
// The live sessions.list response is authoritative even when empty; a
|
|
// cache read that resolves afterwards must not repaint stale sessions.
|
|
var releaseSessions: AsyncStream<Void>.Continuation!
|
|
let sessionsGate = AsyncStream<Void> { releaseSessions = $0 }
|
|
let release = try #require(releaseSessions)
|
|
let cache = TestTranscriptCache(
|
|
sessions: [cachedSessionEntry(key: "stale-session", updatedAt: 1000)],
|
|
loadSessionsHook: {
|
|
var iterator = sessionsGate.makeAsyncIterator()
|
|
_ = await iterator.next()
|
|
})
|
|
let transport = GatedHistoryChatTransport(gated: false) { sessionKey, _ in
|
|
OpenClawChatHistoryPayload(
|
|
sessionKey: sessionKey,
|
|
sessionId: "sess-live",
|
|
messages: [],
|
|
thinkingLevel: "off")
|
|
}
|
|
let vm = await MainActor.run {
|
|
OpenClawChatViewModel(sessionKey: "main", transport: transport, transcriptCache: cache)
|
|
}
|
|
|
|
await MainActor.run { vm.load() }
|
|
// Bootstrap completes with a live empty session list while the cache
|
|
// read is still gated.
|
|
try await waitUntil("bootstrap finished") {
|
|
await MainActor.run { vm.sessionId == "sess-live" && !vm.isLoading }
|
|
}
|
|
release.yield(())
|
|
try await Task.sleep(nanoseconds: 100_000_000)
|
|
#expect(await MainActor.run { vm.sessions.isEmpty })
|
|
}
|
|
|
|
@Test func `empty live history wins over cached transcript`() async throws {
|
|
// Whichever order the cache pre-paint and the live (empty) history
|
|
// land in, live history is authoritative and the cached rows must go.
|
|
let cache = TestTranscriptCache(
|
|
transcripts: [
|
|
"main": [cachedMessage(role: "assistant", text: "stale cached", timestamp: 500)],
|
|
])
|
|
let transport = GatedHistoryChatTransport(gated: false) { sessionKey, _ in
|
|
OpenClawChatHistoryPayload(
|
|
sessionKey: sessionKey,
|
|
sessionId: "sess-live",
|
|
messages: [],
|
|
thinkingLevel: "off")
|
|
}
|
|
let vm = await MainActor.run {
|
|
OpenClawChatViewModel(sessionKey: "main", transport: transport, transcriptCache: cache)
|
|
}
|
|
|
|
await MainActor.run { vm.load() }
|
|
try await waitUntil("live history applied") {
|
|
await MainActor.run { vm.sessionId == "sess-live" && !vm.isLoading }
|
|
}
|
|
// Give any straggling cache paint a chance to (incorrectly) land.
|
|
try await Task.sleep(nanoseconds: 100_000_000)
|
|
#expect(await MainActor.run { vm.messages.isEmpty })
|
|
#expect(await MainActor.run { !vm.isShowingCachedTranscript })
|
|
}
|
|
}
|