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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
博客园 - 司徒正美
J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
D
Docker
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
腾讯CDC
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
C
Check Point Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
I
InfoQ
雷峰网
雷峰网
The Cloudflare Blog
美团技术团队
Engineering at Meta
Engineering at Meta

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(ios): improve live activity lifecycle (#83597) · open...
ngutman · 2026-05-18 · via Recent Commits to openclaw:main

@@ -8,6 +8,8 @@ final class LiveActivityManager {

88

static let shared = LiveActivityManager()

991010

private let logger = Logger(subsystem: "ai.openclaw.ios", category: "LiveActivity")

11+

private let connectingStaleSeconds: TimeInterval = 120

12+

private let hydrationStaleSeconds: TimeInterval = 300

1113

private var currentActivity: Activity<OpenClawActivityAttributes>?

1214

private var activityStartDate: Date = .now

1315

@@ -24,11 +26,11 @@ final class LiveActivityManager {

2426

return true

2527

}

262827-

func startActivity(agentName: String, sessionKey: String) {

29+

func showConnecting(statusText: String = "Connecting...", agentName: String, sessionKey: String) {

2830

self.hydrateCurrentAndPruneDuplicates()

29313032

if self.currentActivity != nil {

31-

self.handleConnecting()

33+

self.handleConnecting(statusText: statusText)

3234

return

3335

}

3436

@@ -40,11 +42,14 @@ final class LiveActivityManager {

40424143

self.activityStartDate = .now

4244

let attributes = OpenClawActivityAttributes(agentName: agentName, sessionKey: sessionKey)

45+

let state = self.connectingState(statusText: statusText)

43464447

do {

4548

let activity = try Activity.request(

4649

attributes: attributes,

47-

content: ActivityContent(state: self.connectingState(), staleDate: nil),

50+

content: ActivityContent(

51+

state: state,

52+

staleDate: Date().addingTimeInterval(self.connectingStaleSeconds)),

4853

pushType: nil)

4954

self.currentActivity = activity

5055

self.logger.info("started live activity id=\(activity.id, privacy: .public)")

@@ -53,16 +58,57 @@ final class LiveActivityManager {

5358

}

5459

}

556056-

func handleConnecting() {

57-

self.updateCurrent(state: self.connectingState())

61+

func showAttention(statusText: String, agentName: String, sessionKey: String) {

62+

self.hydrateCurrentAndPruneDuplicates()

63+64+

if self.currentActivity == nil {

65+

let authInfo = ActivityAuthorizationInfo()

66+

guard authInfo.areActivitiesEnabled else {

67+

self.logger.info("Live Activities disabled; skipping attention state")

68+

return

69+

}

70+

self.activityStartDate = .now

71+

let attributes = OpenClawActivityAttributes(agentName: agentName, sessionKey: sessionKey)

72+

do {

73+

let activity = try Activity.request(

74+

attributes: attributes,

75+

content: ActivityContent(state: self.attentionState(statusText: statusText), staleDate: nil),

76+

pushType: nil)

77+

self.currentActivity = activity

78+

self.logger.info("started attention live activity id=\(activity.id, privacy: .public)")

79+

} catch {

80+

self.logger.error(

81+

"failed to start attention live activity: \(error.localizedDescription, privacy: .public)")

82+

}

83+

return

84+

}

85+86+

self.updateCurrent(state: self.attentionState(statusText: statusText), staleDate: nil)

87+

}

88+89+

func handleConnecting(statusText: String = "Connecting...") {

90+

self.updateCurrent(

91+

state: self.connectingState(statusText: statusText),

92+

staleDate: Date().addingTimeInterval(self.connectingStaleSeconds))

5893

}

59946095

func handleReconnect() {

61-

self.updateCurrent(state: self.idleState())

96+

self.endActivity(reason: "connected")

6297

}

63986499

func handleDisconnect() {

65-

self.updateCurrent(state: self.disconnectedState())

100+

self.endActivity(reason: "disconnected")

101+

}

102+103+

func endActivity(reason: String) {

104+

guard let activity = self.currentActivity else { return }

105+

self.currentActivity = nil

106+

self.logger.info("ending live activity reason=\(reason, privacy: .public)")

107+

Task {

108+

await activity.end(

109+

ActivityContent(state: self.disconnectedState(), staleDate: nil),

110+

dismissalPolicy: .immediate)

111+

}

66112

}

6711368114

private func hydrateCurrentAndPruneDuplicates() {

@@ -72,39 +118,71 @@ final class LiveActivityManager {

72118

return

73119

}

7412075-

let keeper = active.max { lhs, rhs in

121+

let now = Date()

122+

let candidates = active.filter { activity in

123+

let state = activity.content.state

124+

guard activity.activityState == .active else { return false }

125+

guard !state.isIdle, !state.isDisconnected else { return false }

126+

return now.timeIntervalSince(state.startedAt) < self.hydrationStaleSeconds

127+

}

128+129+

guard !candidates.isEmpty else {

130+

self.currentActivity = nil

131+

for activity in active {

132+

self.end(activity: activity)

133+

}

134+

return

135+

}

136+137+

let keeper = candidates.max { lhs, rhs in

76138

lhs.content.state.startedAt < rhs.content.state.startedAt

77-

} ?? active[0]

139+

} ?? candidates[0]

7814079141

self.currentActivity = keeper

80142

self.activityStartDate = keeper.content.state.startedAt

8114382144

let stale = active.filter { $0.id != keeper.id }

83145

for activity in stale {

84-

Task {

85-

await activity.end(

86-

ActivityContent(state: self.disconnectedState(), staleDate: nil),

87-

dismissalPolicy: .immediate)

88-

}

146+

self.end(activity: activity)

89147

}

90148

}

9114992-

private func updateCurrent(state: OpenClawActivityAttributes.ContentState) {

93-

guard let activity = self.currentActivity else { return }

150+

private func updateCurrent(state: OpenClawActivityAttributes.ContentState, staleDate: Date? = nil) {

151+

guard let activity = self.currentActivity, activity.activityState == .active else {

152+

self.currentActivity = nil

153+

return

154+

}

155+

Task {

156+

await activity.update(ActivityContent(state: state, staleDate: staleDate))

157+

}

158+

}

159+160+

private func end(activity: Activity<OpenClawActivityAttributes>) {

94161

Task {

95-

await activity.update(ActivityContent(state: state, staleDate: nil))

162+

await activity.end(

163+

ActivityContent(state: self.disconnectedState(), staleDate: nil),

164+

dismissalPolicy: .immediate)

96165

}

97166

}

9816799-

private func connectingState() -> OpenClawActivityAttributes.ContentState {

168+

private func connectingState(statusText: String = "Connecting...") -> OpenClawActivityAttributes.ContentState {

100169

OpenClawActivityAttributes.ContentState(

101-

statusText: "Connecting...",

170+

statusText: statusText,

102171

isIdle: false,

103172

isDisconnected: false,

104173

isConnecting: true,

105174

startedAt: self.activityStartDate)

106175

}

107176177+

private func attentionState(statusText: String) -> OpenClawActivityAttributes.ContentState {

178+

OpenClawActivityAttributes.ContentState(

179+

statusText: statusText,

180+

isIdle: false,

181+

isDisconnected: false,

182+

isConnecting: false,

183+

startedAt: self.activityStartDate)

184+

}

185+108186

private func idleState() -> OpenClawActivityAttributes.ContentState {

109187

OpenClawActivityAttributes.ContentState(

110188

statusText: "Idle",