-
-
Notifications
You must be signed in to change notification settings - Fork 426
Expand file tree
/
Copy pathPromptToCodePanel.swift
More file actions
364 lines (317 loc) · 14.8 KB
/
PromptToCodePanel.swift
File metadata and controls
364 lines (317 loc) · 14.8 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
import AppKit
import ChatBasic
import ComposableArchitecture
import CustomAsyncAlgorithms
import Dependencies
import Foundation
import ModificationBasic
import Preferences
import PromptToCodeCustomization
import PromptToCodeService
import SuggestionBasic
import XcodeInspector
@Reducer
public struct PromptToCodePanel {
@ObservableState
public struct State: Identifiable {
public enum FocusField: Equatable {
case textField
}
public enum ClickedButton: Equatable {
case accept
case acceptAndContinue
}
@Shared public var promptToCodeState: ModificationState
@ObservationStateIgnored
public var contextInputController: PromptToCodeContextInputController
public var id: URL { promptToCodeState.source.documentURL }
public var commandName: String?
public var isContinuous: Bool
public var focusedField: FocusField? = .textField
public var filename: String {
promptToCodeState.source.documentURL.lastPathComponent
}
public var canRevert: Bool { !promptToCodeState.history.isEmpty }
public var generateDescriptionRequirement: Bool
public var clickedButton: ClickedButton?
public var isActiveDocument: Bool = false
public var snippetPanels: IdentifiedArrayOf<PromptToCodeSnippetPanel.State> {
get {
IdentifiedArrayOf(
uniqueElements: promptToCodeState.snippets.map {
PromptToCodeSnippetPanel.State(snippet: $0)
}
)
}
set {
promptToCodeState.snippets = IdentifiedArrayOf(
uniqueElements: newValue.map(\.snippet)
)
}
}
public init(
promptToCodeState: Shared<ModificationState>,
instruction: String?,
commandName: String? = nil,
isContinuous: Bool = false,
generateDescriptionRequirement: Bool = UserDefaults.shared
.value(for: \.promptToCodeGenerateDescription)
) {
_promptToCodeState = promptToCodeState
self.isContinuous = isContinuous
self.generateDescriptionRequirement = generateDescriptionRequirement
self.commandName = commandName
contextInputController = PromptToCodeCustomization
.contextInputControllerFactory(promptToCodeState)
focusedField = .textField
contextInputController.instruction = instruction
.map(NSAttributedString.init(string:)) ?? .init()
}
}
public enum Action: BindableAction {
case binding(BindingAction<State>)
case focusOnTextField
case selectionRangeToggleTapped
case modifyCodeButtonTapped
case revertButtonTapped
case stopRespondingButtonTapped
case modifyCodeFinished
case modifyCodeCancelled
case cancelButtonTapped
case acceptButtonTapped
case acceptAndContinueButtonTapped
case revealFileButtonClicked
case statusUpdated([String])
case referencesUpdated([ChatMessage.Reference])
case snippetPanel(IdentifiedActionOf<PromptToCodeSnippetPanel>)
}
@Dependency(\.commandHandler) var commandHandler
@Dependency(\.activateThisApp) var activateThisApp
@Dependency(\.activatePreviousActiveXcode) var activatePreviousActiveXcode
enum CancellationKey: Hashable {
case modifyCode(State.ID)
}
public var body: some ReducerOf<Self> {
BindingReducer()
Reduce { state, action in
switch action {
case .binding:
return .none
case .snippetPanel:
return .none
case .focusOnTextField:
state.focusedField = .textField
return .none
case .selectionRangeToggleTapped:
state.promptToCodeState.isAttachedToTarget.toggle()
return .none
case .modifyCodeButtonTapped:
guard !state.promptToCodeState.isGenerating else { return .none }
let copiedState = state
let contextInputController = state.contextInputController
state.promptToCodeState.isGenerating = true
state.promptToCodeState.pushHistory(instruction: .init(
attributedString: contextInputController.instruction
))
state.promptToCodeState.references = []
let snippets = state.promptToCodeState.snippets
return .run { send in
do {
let context = await contextInputController.resolveContext(
forDocumentURL: copiedState.promptToCodeState.source.documentURL,
onStatusChange: { await send(.statusUpdated($0)) }
)
await send(.referencesUpdated(context.references))
let agentFactory = context.agent ?? { SimpleModificationAgent() }
_ = try await withThrowingTaskGroup(of: Void.self) { group in
for (index, snippet) in snippets.enumerated() {
if index > 3 { // at most 3 at a time
_ = try await group.next()
}
group.addTask {
try await Task
.sleep(nanoseconds: UInt64.random(in: 0...1_000_000_000))
let agent = agentFactory()
let stream = agent.send(.init(
code: snippet.originalCode,
requirement: context.instruction,
source: .init(
language: copiedState.promptToCodeState.source.language,
documentURL: copiedState.promptToCodeState.source
.documentURL,
projectRootURL: copiedState.promptToCodeState.source
.projectRootURL,
content: copiedState.promptToCodeState.source.content,
lines: copiedState.promptToCodeState.source.lines
),
isDetached: !copiedState.promptToCodeState
.isAttachedToTarget,
extraSystemPrompt: copiedState.promptToCodeState
.extraSystemPrompt,
range: snippet.attachedRange,
references: context.references,
topics: context.topics
)).map {
switch $0 {
case let .code(code):
return (code: code, description: "")
case let .explanation(explanation):
return (code: "", description: explanation)
}
}.timedDebounce(for: 0.4) { lhs, rhs in
(
code: lhs.code + rhs.code,
description: lhs.description + rhs.description
)
}
do {
for try await response in stream {
try Task.checkCancellation()
await send(.snippetPanel(.element(
id: snippet.id,
action: .modifyCodeChunkReceived(
code: response.code,
description: response.description
)
)))
}
await send(.snippetPanel(.element(
id: snippet.id,
action: .modifyCodeFinished
)))
} catch is CancellationError {
await send(.snippetPanel(.element(
id: snippet.id,
action: .modifyCodeFinished
)))
throw CancellationError()
} catch {
if (error as NSError).code == NSURLErrorCancelled {
await send(.snippetPanel(.element(
id: snippet.id,
action: .modifyCodeFinished
)))
throw CancellationError()
}
await send(.snippetPanel(.element(
id: snippet.id,
action: .modifyCodeFailed(
error: error.localizedDescription
)
)))
}
}
}
try await group.waitForAll()
}
await send(.modifyCodeFinished)
} catch is CancellationError {
try Task.checkCancellation()
await send(.modifyCodeCancelled)
} catch {
await send(.modifyCodeFinished)
}
}.cancellable(id: CancellationKey.modifyCode(state.id), cancelInFlight: true)
case .revertButtonTapped:
if let instruction = state.promptToCodeState.popHistory() {
state.contextInputController.instruction = instruction
}
return .none
case .stopRespondingButtonTapped:
state.promptToCodeState.isGenerating = false
state.promptToCodeState.status = []
return .cancel(id: CancellationKey.modifyCode(state.id))
case .modifyCodeFinished:
state.contextInputController.instruction = .init("")
state.promptToCodeState.isGenerating = false
state.promptToCodeState.status = []
if state.promptToCodeState.snippets.allSatisfy({ snippet in
snippet.modifiedCode.isEmpty && snippet.description.isEmpty && snippet
.error == nil
}) {
// if both code and description are empty, we treat it as failed
return .run { send in
await send(.revertButtonTapped)
}
}
return .none
case .modifyCodeCancelled:
state.promptToCodeState.isGenerating = false
return .none
case .cancelButtonTapped:
return .cancel(id: CancellationKey.modifyCode(state.id))
case .acceptButtonTapped:
state.clickedButton = .accept
return .run { _ in
await commandHandler.acceptModification()
activatePreviousActiveXcode()
}
case .acceptAndContinueButtonTapped:
state.clickedButton = .acceptAndContinue
return .run { _ in
await commandHandler.acceptModification()
activateThisApp()
}
case .revealFileButtonClicked:
let url = state.promptToCodeState.source.documentURL
let startLine = state.snippetPanels.first?.snippet.attachedRange.start.line ?? 0
return .run { _ in
await commandHandler.presentFile(at: url, line: startLine)
}
case let .statusUpdated(status):
state.promptToCodeState.status = status
return .none
case let .referencesUpdated(references):
state.promptToCodeState.references = references
return .none
}
}
Reduce { _, _ in .none }.forEach(\.snippetPanels, action: \.snippetPanel) {
PromptToCodeSnippetPanel()
}
}
}
@Reducer
public struct PromptToCodeSnippetPanel {
@ObservableState
public struct State: Identifiable {
public var id: UUID { snippet.id }
var snippet: ModificationSnippet
}
public enum Action {
case modifyCodeFinished
case modifyCodeChunkReceived(code: String, description: String)
case modifyCodeFailed(error: String)
case copyCodeButtonTapped
}
public var body: some ReducerOf<Self> {
Reduce { state, action in
switch action {
case .modifyCodeFinished:
return .none
case let .modifyCodeChunkReceived(code, description):
state.snippet.modifiedCode += code
state.snippet.description += description
return .none
case let .modifyCodeFailed(error):
state.snippet.error = error
return .none
case .copyCodeButtonTapped:
NSPasteboard.general.clearContents()
NSPasteboard.general.setString(state.snippet.modifiedCode, forType: .string)
return .none
}
}
}
}
final class DefaultPromptToCodeContextInputControllerDelegate: PromptToCodeContextInputControllerDelegate {
let store: StoreOf<PromptToCodePanel>
init(store: StoreOf<PromptToCodePanel>) {
self.store = store
}
func modifyCodeButtonClicked() {
Task {
await store.send(.modifyCodeButtonTapped)
}
}
}