-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathstate-store.ts
More file actions
389 lines (341 loc) · 10 KB
/
Copy pathstate-store.ts
File metadata and controls
389 lines (341 loc) · 10 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
/**
* State Store
*
* This module manages the client's internal state, including:
* - The clineMessages array (source of truth for agent state)
* - The computed agent state info
* - Any extension state we want to cache
*
* The store is designed to be:
* - Immutable: State updates create new objects, not mutations
* - Observable: Changes trigger notifications
* - Queryable: Current state is always accessible
*/
import { ClineMessage, ExtensionState } from "@roo-code/types"
import { detectAgentState, AgentStateInfo, AgentLoopState } from "./agent-state.js"
import { Observable } from "./events.js"
// =============================================================================
// Store State Interface
// =============================================================================
/**
* The complete state managed by the store.
*/
export interface StoreState {
/**
* The array of messages from the extension.
* This is the primary data used to compute agent state.
*/
messages: ClineMessage[]
/**
* The computed agent state info.
* Updated automatically when messages change.
*/
agentState: AgentStateInfo
/**
* Whether we have received any state from the extension.
* Useful to distinguish "no task" from "not yet connected".
*/
isInitialized: boolean
/**
* The last time state was updated.
*/
lastUpdatedAt: number
/**
* The current mode (e.g., "code", "architect", "ask").
* Tracked from state messages received from the extension.
*/
currentMode: string | undefined
/**
* Optional: Cache of extension state fields we might need.
* This is a subset of the full ExtensionState.
*/
extensionState?: Partial<ExtensionState>
}
/**
* Create the initial store state.
*/
function createInitialState(): StoreState {
return {
messages: [],
agentState: detectAgentState([]),
isInitialized: false,
lastUpdatedAt: Date.now(),
currentMode: undefined,
}
}
// =============================================================================
// State Store Class
// =============================================================================
/**
* StateStore manages all client state and provides reactive updates.
*
* Key features:
* - Stores the clineMessages array
* - Automatically computes agent state when messages change
* - Provides observable pattern for state changes
* - Tracks state history for debugging (optional)
*
* Usage:
* ```typescript
* const store = new StateStore()
*
* // Subscribe to state changes
* store.subscribe((state) => {
* console.log('New state:', state.agentState.state)
* })
*
* // Update messages
* store.setMessages(newMessages)
*
* // Query current state
* const currentState = store.getState()
* ```
*/
export class StateStore {
private state: StoreState
private stateObservable: Observable<StoreState>
private agentStateObservable: Observable<AgentStateInfo>
/**
* Optional: Track state history for debugging.
* Set maxHistorySize to enable.
*/
private stateHistory: StoreState[] = []
private maxHistorySize: number
constructor(options: { maxHistorySize?: number } = {}) {
this.state = createInitialState()
this.stateObservable = new Observable<StoreState>(this.state)
this.agentStateObservable = new Observable<AgentStateInfo>(this.state.agentState)
this.maxHistorySize = options.maxHistorySize ?? 0
}
// ===========================================================================
// State Queries
// ===========================================================================
/**
* Get the current complete state.
*/
getState(): StoreState {
return this.state
}
/**
* Get just the agent state info.
* This is a convenience method for the most common query.
*/
getAgentState(): AgentStateInfo {
return this.state.agentState
}
/**
* Get the current messages array.
*/
getMessages(): ClineMessage[] {
return this.state.messages
}
/**
* Get the last message, if any.
*/
getLastMessage(): ClineMessage | undefined {
return this.state.messages[this.state.messages.length - 1]
}
/**
* Check if the store has been initialized with extension state.
*/
isInitialized(): boolean {
return this.state.isInitialized
}
/**
* Quick check: Is the agent currently waiting for input?
*/
isWaitingForInput(): boolean {
return this.state.agentState.isWaitingForInput
}
/**
* Quick check: Is the agent currently running?
*/
isRunning(): boolean {
return this.state.agentState.isRunning
}
/**
* Quick check: Is content currently streaming?
*/
isStreaming(): boolean {
return this.state.agentState.isStreaming
}
/**
* Get the current agent loop state enum value.
*/
getCurrentState(): AgentLoopState {
return this.state.agentState.state
}
/**
* Get the current mode (e.g., "code", "architect", "ask").
*/
getCurrentMode(): string | undefined {
return this.state.currentMode
}
// ===========================================================================
// State Updates
// ===========================================================================
/**
* Set the complete messages array.
* This is typically called when receiving a full state update from the extension.
*
* @param messages - The new messages array
* @returns The previous agent state (for comparison)
*/
setMessages(messages: ClineMessage[]): AgentStateInfo {
const previousAgentState = this.state.agentState
const newAgentState = detectAgentState(messages)
this.updateState({
messages,
agentState: newAgentState,
isInitialized: true,
lastUpdatedAt: Date.now(),
currentMode: this.state.currentMode, // Preserve mode across message updates
})
return previousAgentState
}
/**
* Add a single message to the end of the messages array.
* Useful when receiving incremental updates.
*
* @param message - The message to add
* @returns The previous agent state
*/
addMessage(message: ClineMessage): AgentStateInfo {
const newMessages = [...this.state.messages, message]
return this.setMessages(newMessages)
}
/**
* Update a message in place (e.g., when partial becomes complete).
* Finds the message by timestamp and replaces it.
*
* @param message - The updated message
* @returns The previous agent state, or undefined if message not found
*/
updateMessage(message: ClineMessage): AgentStateInfo | undefined {
const index = this.state.messages.findIndex((m) => m.ts === message.ts)
if (index === -1) {
// Message not found, add it instead
return this.addMessage(message)
}
const newMessages = [...this.state.messages]
newMessages[index] = message
return this.setMessages(newMessages)
}
/**
* Clear all messages and reset to initial state.
* Called when a task is cleared/cancelled.
*/
clear(): void {
this.updateState({
messages: [],
agentState: detectAgentState([]),
isInitialized: true, // Still initialized, just empty
lastUpdatedAt: Date.now(),
currentMode: this.state.currentMode, // Preserve mode when clearing task
extensionState: undefined,
})
}
/**
* Set the current mode.
* Called when mode changes are detected from extension state messages.
*
* @param mode - The new mode value
*/
setCurrentMode(mode: string | undefined): void {
if (this.state.currentMode !== mode) {
this.updateState({
...this.state,
currentMode: mode,
lastUpdatedAt: Date.now(),
})
}
}
/**
* Reset to completely uninitialized state.
* Called on disconnect or reset.
*/
reset(): void {
this.state = createInitialState()
this.stateHistory = []
// Don't notify on reset - we're starting fresh
}
/**
* Update cached extension state.
* This stores any additional extension state fields we might need.
*
* @param extensionState - The extension state to cache
*/
setExtensionState(extensionState: Partial<ExtensionState>): void {
// Extract and store messages if present
if (extensionState.clineMessages) {
this.setMessages(extensionState.clineMessages)
}
// Store the rest of the extension state
this.updateState({
...this.state,
extensionState: {
...this.state.extensionState,
...extensionState,
},
})
}
// ===========================================================================
// Subscriptions
// ===========================================================================
/**
* Subscribe to all state changes.
*
* @param observer - Callback function receiving the new state
* @returns Unsubscribe function
*/
subscribe(observer: (state: StoreState) => void): () => void {
return this.stateObservable.subscribe(observer)
}
/**
* Subscribe to agent state changes only.
* This is more efficient if you only care about agent state.
*
* @param observer - Callback function receiving the new agent state
* @returns Unsubscribe function
*/
subscribeToAgentState(observer: (state: AgentStateInfo) => void): () => void {
return this.agentStateObservable.subscribe(observer)
}
// ===========================================================================
// History (for debugging)
// ===========================================================================
/**
* Get the state history (if enabled).
*/
getHistory(): StoreState[] {
return [...this.stateHistory]
}
/**
* Clear the state history.
*/
clearHistory(): void {
this.stateHistory = []
}
// ===========================================================================
// Private Methods
// ===========================================================================
/**
* Internal method to update state and notify observers.
*/
private updateState(newState: StoreState): void {
// Track history if enabled
if (this.maxHistorySize > 0) {
this.stateHistory.push(this.state)
if (this.stateHistory.length > this.maxHistorySize) {
this.stateHistory.shift()
}
}
this.state = newState
// Notify observers
this.stateObservable.next(this.state)
this.agentStateObservable.next(this.state.agentState)
}
}
// =============================================================================
// Singleton Store (optional convenience)
// =============================================================================