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

推荐订阅源

D
Docker
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
D
DataBreaches.Net
B
Blog RSS Feed
博客园_首页
The GitHub Blog
The GitHub Blog
I
InfoQ
L
LangChain Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
美团技术团队
腾讯CDC
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗

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): clear stale context usage snapshots · openc...
Tosko4 · 2026-06-15 · via Recent Commits to openclaw:main

File tree

    • main/java/ai/openclaw/app/chat

    • test/java/ai/openclaw/app/chat

Original file line numberDiff line numberDiff line change

@@ -685,6 +685,10 @@ class ChatController(

685685

totalTokens = obj["totalTokens"].asLongOrNull(),

686686

totalTokensFresh = obj["totalTokensFresh"].asBooleanOrNull(),

687687

contextTokens = obj["contextTokens"].asLongOrNull(),

688+

hasContextUsageMetadata =

689+

"totalTokens" in obj ||

690+

"totalTokensFresh" in obj ||

691+

"contextTokens" in obj,

688692

)

689693

}

690694

@@ -698,7 +702,7 @@ class ChatController(

698702

val index = current.indexOfFirst { it.key == entry.key }

699703

_sessions.value =

700704

if (index >= 0) {

701-

current.toMutableList().also { it[index] = mergeSessionEntry(it[index], entry) }

705+

current.toMutableList().also { it[index] = mergeChatSessionEntry(it[index], entry) }

702706

} else {

703707

listOf(entry) + current

704708

}

@@ -709,18 +713,6 @@ class ChatController(

709713

_sessions.value = _sessions.value.filterNot { it.key == key }

710714

}

711715
712-

private fun mergeSessionEntry(

713-

existing: ChatSessionEntry,

714-

next: ChatSessionEntry,

715-

): ChatSessionEntry =

716-

existing.copy(

717-

updatedAtMs = next.updatedAtMs ?: existing.updatedAtMs,

718-

displayName = next.displayName ?: existing.displayName,

719-

totalTokens = next.totalTokens ?: existing.totalTokens,

720-

totalTokensFresh = next.totalTokensFresh ?: existing.totalTokensFresh,

721-

contextTokens = next.contextTokens ?: existing.contextTokens,

722-

)

723-
724716

private fun parseRunId(resJson: String): String? =

725717

try {

726718

json

@@ -946,3 +938,16 @@ private fun JsonElement?.asBooleanOrNull(): Boolean? =

946938

is JsonPrimitive -> content.toBooleanStrictOrNull()

947939

else -> null

948940

}

941+
942+

internal fun mergeChatSessionEntry(

943+

existing: ChatSessionEntry,

944+

next: ChatSessionEntry,

945+

): ChatSessionEntry =

946+

existing.copy(

947+

updatedAtMs = next.updatedAtMs ?: existing.updatedAtMs,

948+

displayName = next.displayName ?: existing.displayName,

949+

totalTokens = if (next.hasContextUsageMetadata) next.totalTokens else null,

950+

totalTokensFresh = if (next.hasContextUsageMetadata) next.totalTokensFresh else null,

951+

contextTokens = if (next.hasContextUsageMetadata) next.contextTokens else null,

952+

hasContextUsageMetadata = next.hasContextUsageMetadata,

953+

)

Original file line numberDiff line numberDiff line change

@@ -43,6 +43,7 @@ data class ChatSessionEntry(

4343

val totalTokens: Long? = null,

4444

val totalTokensFresh: Boolean? = null,

4545

val contextTokens: Long? = null,

46+

val hasContextUsageMetadata: Boolean = totalTokens != null || totalTokensFresh != null || contextTokens != null,

4647

)

4748
4849

/**

Original file line numberDiff line numberDiff line change

@@ -59,4 +59,61 @@ class ChatControllerSessionPolicyTest {

5959

),

6060

)

6161

}

62+
63+

@Test

64+

fun sessionMergeClearsUsageWhenNewSnapshotOmitsUsageMetadata() {

65+

val existing =

66+

ChatSessionEntry(

67+

key = "agent:main:phone",

68+

updatedAtMs = 1L,

69+

displayName = "Phone",

70+

totalTokens = 41_000L,

71+

totalTokensFresh = true,

72+

contextTokens = 100_000L,

73+

)

74+

val next =

75+

ChatSessionEntry(

76+

key = "agent:main:phone",

77+

updatedAtMs = 2L,

78+

displayName = "Phone renamed",

79+

hasContextUsageMetadata = false,

80+

)

81+
82+

val merged = mergeChatSessionEntry(existing, next)

83+
84+

assertEquals("agent:main:phone", merged.key)

85+

assertEquals(2L, merged.updatedAtMs)

86+

assertEquals("Phone renamed", merged.displayName)

87+

assertEquals(null, merged.totalTokens)

88+

assertEquals(null, merged.totalTokensFresh)

89+

assertEquals(null, merged.contextTokens)

90+

assertFalse(merged.hasContextUsageMetadata)

91+

}

92+
93+

@Test

94+

fun sessionMergeAppliesExplicitStaleUsageMetadata() {

95+

val existing =

96+

ChatSessionEntry(

97+

key = "agent:main:phone",

98+

updatedAtMs = 1L,

99+

totalTokens = 41_000L,

100+

totalTokensFresh = true,

101+

contextTokens = 100_000L,

102+

)

103+

val next =

104+

ChatSessionEntry(

105+

key = "agent:main:phone",

106+

updatedAtMs = 2L,

107+

totalTokens = 82_000L,

108+

totalTokensFresh = false,

109+

contextTokens = 100_000L,

110+

)

111+
112+

val merged = mergeChatSessionEntry(existing, next)

113+
114+

assertEquals(82_000L, merged.totalTokens)

115+

assertEquals(false, merged.totalTokensFresh)

116+

assertEquals(100_000L, merged.contextTokens)

117+

assertTrue(merged.hasContextUsageMetadata)

118+

}

62119

}