惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
博客园_首页
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
美团技术团队
D
Docker
WordPress大学
WordPress大学
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
Y
Y Combinator Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
S
SegmentFault 最新的问题
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(android): prevent stale chat during session switches ...
obviyus · 2026-05-25 · via Recent Commits to openclaw:main

@@ -17,6 +17,7 @@ import kotlinx.serialization.json.JsonPrimitive

1717

import kotlinx.serialization.json.buildJsonObject

1818

import java.util.UUID

1919

import java.util.concurrent.ConcurrentHashMap

20+

import java.util.concurrent.atomic.AtomicLong

20212122

class ChatController(

2223

private val scope: CoroutineScope,

@@ -33,6 +34,9 @@ class ChatController(

3334

private val _messages = MutableStateFlow<List<ChatMessage>>(emptyList())

3435

val messages: StateFlow<List<ChatMessage>> = _messages.asStateFlow()

353637+

private val _historyLoading = MutableStateFlow(false)

38+

val historyLoading: StateFlow<Boolean> = _historyLoading.asStateFlow()

39+3640

private val _errorText = MutableStateFlow<String?>(null)

3741

val errorText: StateFlow<String?> = _errorText.asStateFlow()

3842

@@ -59,25 +63,27 @@ class ChatController(

5963

private val pendingRunTimeoutJobs = ConcurrentHashMap<String, Job>()

6064

private val optimisticMessagesByRunId = LinkedHashMap<String, ChatMessage>()

6165

private val pendingRunTimeoutMs = 120_000L

66+

private val historyLoadGeneration = AtomicLong(0)

62676368

private var lastHealthPollAtMs: Long? = null

64696570

fun onDisconnected(message: String) {

6671

_healthOk.value = false

67-

// Not an error; keep connection status in the UI pill.

6872

_errorText.value = null

6973

clearPendingRuns()

7074

pendingToolCallsById.clear()

7175

publishPendingToolCalls()

7276

_streamingAssistantText.value = null

77+

_historyLoading.value = false

7378

_sessionId.value = null

7479

}

75807681

fun load(sessionKey: String) {

7782

val key = normalizeRequestedSessionKey(sessionKey)

78-

_sessionKey.value = key

79-

optimisticMessagesByRunId.clear()

80-

scope.launch { bootstrap(forceHealth = true, refreshSessions = true) }

83+

val generation = beginHistoryLoad(key, clearMessages = key != _sessionKey.value)

84+

scope.launch {

85+

bootstrap(sessionKey = key, generation = generation, forceHealth = true, refreshSessions = true)

86+

}

8187

}

82888389

fun applyMainSessionKey(mainSessionKey: String) {

@@ -91,12 +97,23 @@ class ChatController(

9197

)

9298

appliedMainSessionKey = nextState.appliedMainSessionKey

9399

if (_sessionKey.value == nextState.currentSessionKey) return

94-

_sessionKey.value = nextState.currentSessionKey

95-

scope.launch { bootstrap(forceHealth = true, refreshSessions = true) }

100+

val generation = beginHistoryLoad(nextState.currentSessionKey, clearMessages = true)

101+

scope.launch {

102+

bootstrap(

103+

sessionKey = nextState.currentSessionKey,

104+

generation = generation,

105+

forceHealth = true,

106+

refreshSessions = true,

107+

)

108+

}

96109

}

9711098111

fun refresh() {

99-

scope.launch { bootstrap(forceHealth = true, refreshSessions = true) }

112+

val key = normalizeRequestedSessionKey(_sessionKey.value)

113+

val generation = beginHistoryLoad(key, clearMessages = false)

114+

scope.launch {

115+

bootstrap(sessionKey = key, generation = generation, forceHealth = true, refreshSessions = true)

116+

}

100117

}

101118102119

fun refreshSessions(limit: Int? = null) {

@@ -113,11 +130,30 @@ class ChatController(

113130

val key = normalizeRequestedSessionKey(sessionKey)

114131

if (key.isEmpty()) return

115132

if (key == _sessionKey.value) return

133+

val generation = beginHistoryLoad(key, clearMessages = true)

134+

scope.launch {

135+

bootstrap(sessionKey = key, generation = generation, forceHealth = true, refreshSessions = false)

136+

}

137+

}

138+139+

private fun beginHistoryLoad(

140+

key: String,

141+

clearMessages: Boolean,

142+

): Long {

143+

val generation = historyLoadGeneration.incrementAndGet()

116144

_sessionKey.value = key

117-

optimisticMessagesByRunId.clear()

118-

// Keep the thread switch path lean: history + health are needed immediately,

119-

// but the session list is usually unchanged and can refresh on explicit pull-to-refresh.

120-

scope.launch { bootstrap(forceHealth = true, refreshSessions = false) }

145+

_errorText.value = null

146+

_healthOk.value = false

147+

clearPendingRuns()

148+

pendingToolCallsById.clear()

149+

publishPendingToolCalls()

150+

_streamingAssistantText.value = null

151+

_sessionId.value = null

152+

_historyLoading.value = true

153+

if (clearMessages) {

154+

_messages.value = emptyList()

155+

}

156+

return generation

121157

}

122158123159

private fun normalizeRequestedSessionKey(sessionKey: String): String {

@@ -288,23 +324,22 @@ class ChatController(

288324

}

289325290326

private suspend fun bootstrap(

327+

sessionKey: String,

328+

generation: Long,

291329

forceHealth: Boolean,

292330

refreshSessions: Boolean,

293331

) {

294-

_errorText.value = null

295-

_healthOk.value = false

296-

clearPendingRuns()

297-

pendingToolCallsById.clear()

298-

publishPendingToolCalls()

299-

_streamingAssistantText.value = null

300-

_sessionId.value = null

301-302-

val key = _sessionKey.value

303332

try {

304-

val historyJson = session.request("chat.history", """{"sessionKey":"$key"}""")

305-

val history = parseHistory(historyJson, sessionKey = key, previousMessages = _messages.value)

333+

val historyJson =

334+

session.request(

335+

"chat.history",

336+

buildJsonObject { put("sessionKey", JsonPrimitive(sessionKey)) }.toString(),

337+

)

338+

if (!isCurrentHistoryLoad(sessionKey, _sessionKey.value, generation, historyLoadGeneration.get())) return

339+

val history = parseHistory(historyJson, sessionKey = sessionKey, previousMessages = _messages.value)

306340

_messages.value = mergeOptimisticMessages(incoming = history.messages, optimistic = optimisticMessagesByRunId.values)

307341

_sessionId.value = history.sessionId

342+

_historyLoading.value = false

308343

history.thinkingLevel

309344

?.trim()

310345

?.takeIf { it.isNotEmpty() }

@@ -315,7 +350,9 @@ class ChatController(

315350

fetchSessions(limit = 50)

316351

}

317352

} catch (err: Throwable) {

353+

if (!isCurrentHistoryLoad(sessionKey, _sessionKey.value, generation, historyLoadGeneration.get())) return

318354

_errorText.value = err.message

355+

_historyLoading.value = false

319356

}

320357

}

321358

@@ -382,9 +419,29 @@ class ChatController(

382419

_streamingAssistantText.value = null

383420

scope.launch {

384421

try {

422+

val currentSessionKey = _sessionKey.value

423+

val currentGeneration = historyLoadGeneration.get()

385424

val historyJson =

386-

session.request("chat.history", """{"sessionKey":"${_sessionKey.value}"}""")

387-

val history = parseHistory(historyJson, sessionKey = _sessionKey.value, previousMessages = _messages.value)

425+

session.request(

426+

"chat.history",

427+

buildJsonObject { put("sessionKey", JsonPrimitive(currentSessionKey)) }.toString(),

428+

)

429+

if (

430+

!isCurrentHistoryLoad(

431+

currentSessionKey,

432+

_sessionKey.value,

433+

currentGeneration,

434+

historyLoadGeneration.get(),

435+

)

436+

) {

437+

return@launch

438+

}

439+

val history =

440+

parseHistory(

441+

historyJson,

442+

sessionKey = currentSessionKey,

443+

previousMessages = _messages.value,

444+

)

388445

_messages.value = mergeOptimisticMessages(incoming = history.messages, optimistic = optimisticMessagesByRunId.values)

389446

_sessionId.value = history.sessionId

390447

history.thinkingLevel

@@ -573,6 +630,13 @@ class ChatController(

573630

}

574631

}

575632633+

internal fun isCurrentHistoryLoad(

634+

requestedSessionKey: String,

635+

currentSessionKey: String,

636+

requestGeneration: Long,

637+

activeGeneration: Long,

638+

): Boolean = requestedSessionKey == currentSessionKey && requestGeneration == activeGeneration

639+576640

internal fun parseChatMessageContent(el: JsonElement): ChatMessageContent? {

577641

val obj = el.asObjectOrNull() ?: return null

578642

return when (obj["type"].asStringOrNull() ?: "text") {