forked from intitni/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTerminalChatPlugin.swift
More file actions
118 lines (103 loc) · 3.77 KB
/
TerminalChatPlugin.swift
File metadata and controls
118 lines (103 loc) · 3.77 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
import Environment
import Foundation
import OpenAIService
import Terminal
public actor TerminalChatPlugin: ChatPlugin {
public static var command: String { "run" }
public nonisolated var name: String { "Terminal" }
let chatGPTService: any ChatGPTServiceType
var terminal: TerminalType = Terminal()
var isCancelled = false
weak var delegate: ChatPluginDelegate?
public init(inside chatGPTService: any ChatGPTServiceType, delegate: ChatPluginDelegate) {
self.chatGPTService = chatGPTService
self.delegate = delegate
}
public func send(content: String, originalMessage: String) async {
delegate?.pluginDidStart(self)
delegate?.pluginDidStartResponding(self)
let id = "\(Self.command)-\(UUID().uuidString)"
var message = ChatMessage(id: id, role: .assistant, content: "")
var outputContent = "" {
didSet {
message.content = """
```
\(outputContent)
```
"""
}
}
do {
let fileURL = try await Environment.fetchCurrentFileURL()
let projectURL = try await {
if let url = try await Environment.fetchCurrentProjectRootURLFromXcode() {
return url
}
return try await Environment.guessProjectRootURLForFile(fileURL)
}()
await chatGPTService.memory.mutateHistory { history in
history.append(
.init(
role: .user,
content: originalMessage
)
)
}
if isCancelled { throw CancellationError() }
let env = ProcessInfo.processInfo.environment
let shell = env["SHELL"] ?? "/bin/bash"
let output = terminal.streamCommand(
shell,
arguments: ["-i", "-l", "-c", content],
currentDirectoryPath: projectURL.path,
environment: [
"PROJECT_ROOT": projectURL.path,
"FILE_PATH": fileURL.path,
]
)
for try await content in output {
if isCancelled { throw CancellationError() }
await chatGPTService.memory.mutateHistory { history in
if history.last?.id == id {
history.removeLast()
}
outputContent += content
history.append(message)
}
}
outputContent += "\n[finished]"
await chatGPTService.memory.mutateHistory { history in
if history.last?.id == id {
history.removeLast()
}
history.append(message)
}
} catch let error as Terminal.TerminationError {
outputContent += "\n[error: \(error.status)]"
await chatGPTService.memory.mutateHistory { history in
if history.last?.id == id {
history.removeLast()
}
history.append(message)
}
} catch {
outputContent += "\n[error: \(error.localizedDescription)]"
await chatGPTService.memory.mutateHistory { history in
if history.last?.id == id {
history.removeLast()
}
history.append(message)
}
}
delegate?.pluginDidEndResponding(self)
delegate?.pluginDidEnd(self)
}
public func cancel() async {
isCancelled = true
await terminal.terminate()
}
public func stopResponding() async {
isCancelled = true
await terminal.terminate()
}
}