-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathContentView+ForkAgentConversation.swift
More file actions
457 lines (426 loc) · 18.5 KB
/
Copy pathContentView+ForkAgentConversation.swift
File metadata and controls
457 lines (426 loc) · 18.5 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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
import AppKit
import Bonsplit
import CmuxPanes
import Foundation
extension ContentView {
func forkFocusedAgentConversationRight() {
forkFocusedAgentConversation(.right)
}
func forkFocusedAgentConversationLeft() {
forkFocusedAgentConversation(.left)
}
func forkFocusedAgentConversationTop() {
forkFocusedAgentConversation(.top)
}
func forkFocusedAgentConversationBottom() {
forkFocusedAgentConversation(.bottom)
}
func forkFocusedAgentConversationToNewTab() {
forkFocusedAgentConversation(.newTab)
}
func forkFocusedAgentConversationToNewWorkspace() {
forkFocusedAgentConversation(.newWorkspace)
}
private func forkFocusedAgentConversation(_ destination: AgentConversationForkDestination) {
guard let currentContext = focusedPanelContext,
currentContext.panel.panelType == .terminal else {
NSSound.beep()
return
}
let workspaceId = currentContext.workspace.id
let panelId = currentContext.panelId
let panelKey = Self.commandPaletteForkableAgentPanelKey(
workspaceId: workspaceId,
panelId: panelId
)
let allowsAgentContinuation = currentContext.workspace.allowsAgentContinuation(forPanelId: panelId)
let fallbackSnapshot = currentContext.workspace.restoredAgentSnapshotForContinuation(panelId: panelId)
let isRemoteContext = currentContext.workspace.isRemoteTerminalSurface(panelId)
let selection = Self.commandPaletteImmediateForkExecutionSnapshotSelection(
workspaceId: workspaceId,
panelId: panelId,
isRemoteTerminal: isRemoteContext,
supportedPanelKeys: commandPaletteForkableAgentSupportedPanelKeys,
supportedRemoteContextsByPanelKey: commandPaletteForkableAgentRemoteContextsByPanelKey,
snapshotFingerprintsByPanelKey: commandPaletteForkableAgentSnapshotFingerprintsByPanelKey,
fallbackSnapshot: fallbackSnapshot,
cachedSnapshot: commandPaletteForkableAgentSnapshotsByPanelKey[panelKey],
allowsAgentContinuation: allowsAgentContinuation
)
guard let selection else {
clearCommandPaletteForkableAgentCache(panelKey: panelKey)
NSSound.beep()
return
}
let snapshot = selection.snapshot
let fallbackFingerprint = fallbackSnapshot.map(Self.commandPaletteForkSnapshotFingerprint)
commandPaletteForkableAgentSupportedPanelKeys.insert(panelKey)
commandPaletteForkableAgentSnapshotsByPanelKey[panelKey] = snapshot
commandPaletteForkableAgentSnapshotFingerprintsByPanelKey[panelKey] = Self.commandPaletteForkCacheFingerprint(
snapshot: snapshot,
fallbackFingerprint: fallbackFingerprint
)
commandPaletteForkableAgentRemoteContextsByPanelKey[panelKey] = isRemoteContext
commandPaletteForkableAgentResultHadFallbackByPanelKey[panelKey] = selection.usedFallbackSnapshot
let didFork: Bool
if let direction = destination.splitDirection {
didFork = currentContext.workspace.forkAgentConversation(
fromPanelId: panelId,
snapshot: snapshot,
direction: direction
) != nil
} else {
switch destination {
case .newTab:
guard let anchorTabId = currentContext.workspace.surfaceIdFromPanelId(panelId),
let paneId = currentContext.workspace.paneId(forPanelId: panelId) else {
clearCommandPaletteForkableAgentCache(panelKey: panelKey)
NSSound.beep()
return
}
didFork = currentContext.workspace.forkAgentConversationToNewTab(
fromPanelId: panelId,
snapshot: snapshot,
anchorTabId: anchorTabId,
paneId: paneId
) != nil
case .newWorkspace:
guard let launch = currentContext.workspace.forkAgentWorkspaceLaunch(
fromPanelId: panelId,
snapshot: snapshot
) else {
clearCommandPaletteForkableAgentCache(panelKey: panelKey)
NSSound.beep()
return
}
let forkWorkspace = tabManager.addWorkspace(
workingDirectory: launch.terminalWorkingDirectory,
initialTerminalCommand: launch.initialTerminalCommand,
initialTerminalInput: launch.initialTerminalInput,
initialTerminalEnvironment: launch.initialTerminalEnvironment,
inheritWorkingDirectory: launch.terminalWorkingDirectory != nil,
autoWelcomeIfNeeded: false
)
if let remoteConfiguration = launch.remoteConfiguration {
forkWorkspace.configureRemoteConnection(
remoteConfiguration,
autoConnect: launch.autoConnectRemoteConfiguration
)
}
if let workingDirectory = launch.workingDirectory,
launch.terminalWorkingDirectory == nil,
let forkPanelId = forkWorkspace.focusedPanelId {
forkWorkspace.updatePanelDirectory(panelId: forkPanelId, directory: workingDirectory)
}
didFork = true
case .right, .left, .top, .bottom:
didFork = false
}
}
guard didFork else {
clearCommandPaletteForkableAgentCache(panelKey: panelKey)
NSSound.beep()
return
}
}
private func clearCommandPaletteForkableAgentCache(panelKey: String) {
commandPaletteForkableAgentSupportedPanelKeys.remove(panelKey)
commandPaletteForkableAgentSnapshotsByPanelKey.removeValue(forKey: panelKey)
commandPaletteForkableAgentSnapshotFingerprintsByPanelKey.removeValue(forKey: panelKey)
commandPaletteForkableAgentRemoteContextsByPanelKey.removeValue(forKey: panelKey)
commandPaletteForkableAgentResultHadFallbackByPanelKey.removeValue(forKey: panelKey)
}
}
extension ContentView {
struct CommandPaletteForkSnapshotSelection {
let snapshot: SessionRestorableAgentSnapshot
let usedFallbackSnapshot: Bool
}
static func commandPalettePanelHasForkableAgent(
workspaceId: UUID,
panelId: UUID,
supportedPanelKeys: Set<String>,
supportedRemoteContextsByPanelKey: [String: Bool] = [:],
fallbackSnapshot: SessionRestorableAgentSnapshot?,
isRemoteTerminal: Bool = false,
allowsAgentContinuation: Bool = true
) -> Bool {
guard allowsAgentContinuation else { return false }
let panelKey = commandPaletteForkableAgentPanelKey(
workspaceId: workspaceId,
panelId: panelId
)
if supportedPanelKeys.contains(panelKey) {
if let supportedRemoteContext = supportedRemoteContextsByPanelKey[panelKey],
supportedRemoteContext != isRemoteTerminal {
return false
}
if let fallbackSnapshot {
return commandPaletteSnapshotForkAvailability(
fallbackSnapshot,
isRemoteTerminal: isRemoteTerminal
) != .unsupported
}
return true
}
return false
}
static func commandPaletteImmediateForkExecutionSnapshot(
workspaceId: UUID,
panelId: UUID,
isRemoteTerminal: Bool,
supportedPanelKeys: Set<String>,
supportedRemoteContextsByPanelKey: [String: Bool],
snapshotFingerprintsByPanelKey: [String: String],
fallbackSnapshot: SessionRestorableAgentSnapshot?,
cachedSnapshot: SessionRestorableAgentSnapshot?,
allowsAgentContinuation: Bool = true
) -> SessionRestorableAgentSnapshot? {
commandPaletteImmediateForkExecutionSnapshotSelection(
workspaceId: workspaceId,
panelId: panelId,
isRemoteTerminal: isRemoteTerminal,
supportedPanelKeys: supportedPanelKeys,
supportedRemoteContextsByPanelKey: supportedRemoteContextsByPanelKey,
snapshotFingerprintsByPanelKey: snapshotFingerprintsByPanelKey,
fallbackSnapshot: fallbackSnapshot,
cachedSnapshot: cachedSnapshot,
allowsAgentContinuation: allowsAgentContinuation
)?.snapshot
}
static func commandPaletteImmediateForkExecutionSnapshotSelection(
workspaceId: UUID,
panelId: UUID,
isRemoteTerminal: Bool,
supportedPanelKeys: Set<String>,
supportedRemoteContextsByPanelKey: [String: Bool],
snapshotFingerprintsByPanelKey: [String: String],
fallbackSnapshot: SessionRestorableAgentSnapshot?,
cachedSnapshot: SessionRestorableAgentSnapshot?,
allowsAgentContinuation: Bool = true
) -> CommandPaletteForkSnapshotSelection? {
guard allowsAgentContinuation else { return nil }
let panelKey = commandPaletteForkableAgentPanelKey(
workspaceId: workspaceId,
panelId: panelId
)
func verifiedCachedSnapshot(expectedFingerprint: String?) -> SessionRestorableAgentSnapshot? {
guard let cachedSnapshot,
supportedPanelKeys.contains(panelKey),
supportedRemoteContextsByPanelKey[panelKey] == isRemoteTerminal else {
return nil
}
if let expectedFingerprint,
snapshotFingerprintsByPanelKey[panelKey] != expectedFingerprint {
return nil
}
guard commandPaletteSnapshotForkAvailability(
cachedSnapshot,
isRemoteTerminal: isRemoteTerminal
) != .unsupported else {
return nil
}
return cachedSnapshot
}
if let fallbackSnapshot {
let fallbackFingerprint = commandPaletteForkSnapshotFingerprint(fallbackSnapshot)
switch commandPaletteSnapshotForkAvailability(
fallbackSnapshot,
isRemoteTerminal: isRemoteTerminal
) {
case .supportedWithoutProbe:
guard commandPaletteForkableAgentProbeResultMatches(
panelKey: panelKey,
supportedPanelKeys: supportedPanelKeys,
supportedRemoteContextsByPanelKey: supportedRemoteContextsByPanelKey,
snapshotFingerprintsByPanelKey: snapshotFingerprintsByPanelKey,
expectedSnapshotFingerprint: fallbackFingerprint,
isRemoteTerminal: isRemoteTerminal
) else {
return nil
}
if let cachedSnapshot = verifiedCachedSnapshot(expectedFingerprint: fallbackFingerprint) {
return CommandPaletteForkSnapshotSelection(
snapshot: cachedSnapshot,
usedFallbackSnapshot: false
)
}
return CommandPaletteForkSnapshotSelection(
snapshot: fallbackSnapshot,
usedFallbackSnapshot: true
)
case .unsupported:
return nil
case .requiresProbe:
guard commandPaletteForkableAgentProbeResultMatches(
panelKey: panelKey,
supportedPanelKeys: supportedPanelKeys,
supportedRemoteContextsByPanelKey: supportedRemoteContextsByPanelKey,
snapshotFingerprintsByPanelKey: snapshotFingerprintsByPanelKey,
expectedSnapshotFingerprint: fallbackFingerprint,
isRemoteTerminal: isRemoteTerminal
) else {
return nil
}
if let cachedSnapshot = verifiedCachedSnapshot(expectedFingerprint: fallbackFingerprint) {
return CommandPaletteForkSnapshotSelection(
snapshot: cachedSnapshot,
usedFallbackSnapshot: false
)
}
return CommandPaletteForkSnapshotSelection(
snapshot: fallbackSnapshot,
usedFallbackSnapshot: true
)
}
}
guard let cachedSnapshot = verifiedCachedSnapshot(expectedFingerprint: nil) else {
return nil
}
switch commandPaletteSnapshotForkAvailability(
cachedSnapshot,
isRemoteTerminal: isRemoteTerminal
) {
case .supportedWithoutProbe, .requiresProbe:
return CommandPaletteForkSnapshotSelection(
snapshot: cachedSnapshot,
usedFallbackSnapshot: false
)
case .unsupported:
return nil
}
}
}
enum AgentConversationForkDestination: String, CaseIterable, Identifiable, Sendable {
case right
case left
case top
case bottom
case newTab
case newWorkspace
var id: String { rawValue }
static let defaultDestination: AgentConversationForkDestination = .right
init(tabContextAction: TabContextAction) {
switch tabContextAction {
case .forkConversationLeft:
self = .left
case .forkConversationTop:
self = .top
case .forkConversationBottom:
self = .bottom
case .forkConversationNewTab:
self = .newTab
case .forkConversationNewWorkspace:
self = .newWorkspace
case .forkConversationRight:
self = .right
default:
self = .defaultDestination
}
}
var tabContextAction: TabContextAction {
switch self {
case .right:
return .forkConversationRight
case .left:
return .forkConversationLeft
case .top:
return .forkConversationTop
case .bottom:
return .forkConversationBottom
case .newTab:
return .forkConversationNewTab
case .newWorkspace:
return .forkConversationNewWorkspace
}
}
var commandPaletteCommandId: String {
switch self {
case .right:
return "palette.forkAgentConversationRight"
case .left:
return "palette.forkAgentConversationLeft"
case .top:
return "palette.forkAgentConversationTop"
case .bottom:
return "palette.forkAgentConversationBottom"
case .newTab:
return "palette.forkAgentConversationNewTab"
case .newWorkspace:
return "palette.forkAgentConversationNewWorkspace"
}
}
var title: String {
switch self {
case .right:
return String(localized: "command.forkAgentConversationRight.title", defaultValue: "Fork Conversation to the Right")
case .left:
return String(localized: "command.forkAgentConversationLeft.title", defaultValue: "Fork Conversation to the Left")
case .top:
return String(localized: "command.forkAgentConversationTop.title", defaultValue: "Fork Conversation to the Top")
case .bottom:
return String(localized: "command.forkAgentConversationBottom.title", defaultValue: "Fork Conversation to the Bottom")
case .newTab:
return String(localized: "command.forkAgentConversationNewTab.title", defaultValue: "Fork Conversation to New Tab")
case .newWorkspace:
return String(localized: "command.forkAgentConversationNewWorkspace.title", defaultValue: "Fork Conversation to New Workspace")
}
}
var settingsTitle: String {
switch self {
case .right:
return String(localized: "forkConversation.destination.right", defaultValue: "Right Split")
case .left:
return String(localized: "forkConversation.destination.left", defaultValue: "Left Split")
case .top:
return String(localized: "forkConversation.destination.top", defaultValue: "Top Split")
case .bottom:
return String(localized: "forkConversation.destination.bottom", defaultValue: "Bottom Split")
case .newTab:
return String(localized: "forkConversation.destination.newTab", defaultValue: "New Tab")
case .newWorkspace:
return String(localized: "forkConversation.destination.newWorkspace", defaultValue: "New Workspace")
}
}
var settingsDescription: String {
switch self {
case .right:
return String(localized: "forkConversation.destination.right.description", defaultValue: "Right-click Fork Conversation creates a split to the right.")
case .left:
return String(localized: "forkConversation.destination.left.description", defaultValue: "Right-click Fork Conversation creates a split to the left.")
case .top:
return String(localized: "forkConversation.destination.top.description", defaultValue: "Right-click Fork Conversation creates a split above the current pane.")
case .bottom:
return String(localized: "forkConversation.destination.bottom.description", defaultValue: "Right-click Fork Conversation creates a split below the current pane.")
case .newTab:
return String(localized: "forkConversation.destination.newTab.description", defaultValue: "Right-click Fork Conversation creates a sibling tab in the current pane.")
case .newWorkspace:
return String(localized: "forkConversation.destination.newWorkspace.description", defaultValue: "Right-click Fork Conversation creates a new workspace.")
}
}
var splitDirection: SplitDirection? {
switch self {
case .right:
return .right
case .left:
return .left
case .top:
return .up
case .bottom:
return .down
case .newTab, .newWorkspace:
return nil
}
}
}
enum AgentConversationForkDefaultSettings {
static let key = "agentConversationForkDefaultDestination"
static let defaultDestination = AgentConversationForkDestination.defaultDestination
static func current(defaults: UserDefaults = .standard) -> AgentConversationForkDestination {
guard let raw = defaults.string(forKey: key),
let destination = AgentConversationForkDestination(rawValue: raw) else {
return defaultDestination
}
return destination
}
}