forked from intitni/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorkspace.swift
More file actions
234 lines (200 loc) · 7.67 KB
/
Workspace.swift
File metadata and controls
234 lines (200 loc) · 7.67 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
import CopilotModel
import CopilotService
import Environment
import Foundation
import Preferences
import SuggestionInjector
import XPCShared
@ServiceActor
final class Filespace {
struct Snapshot: Equatable {
var linesHash: Int
var cursorPosition: CursorPosition
}
let fileURL: URL
private(set) lazy var language: String = languageIdentifierFromFileURL(fileURL)?
.rawValue ?? "plaintext"
var suggestions: [CopilotCompletion] = [] {
didSet { lastSuggestionUpdateTime = Environment.now() }
}
// stored for pseudo command handler
var uti: String?
var tabSize: Int?
var indentSize: Int?
var usesTabsForIndentation: Bool?
// ---------------------------------
var suggestionIndex: Int = 0
var suggestionSourceSnapshot: Snapshot = .init(linesHash: -1, cursorPosition: .outOfScope)
var presentingSuggestion: CopilotCompletion? {
guard suggestions.endIndex > suggestionIndex, suggestionIndex >= 0 else { return nil }
return suggestions[suggestionIndex]
}
private(set) var lastSuggestionUpdateTime: Date = Environment.now()
var isExpired: Bool {
Environment.now().timeIntervalSince(lastSuggestionUpdateTime) > 60 * 60 * 8
}
init(fileURL: URL) {
self.fileURL = fileURL
}
func reset(resetSnapshot: Bool = true) {
suggestions = []
suggestionIndex = 0
if resetSnapshot {
suggestionSourceSnapshot = .init(linesHash: -1, cursorPosition: .outOfScope)
}
}
}
@ServiceActor
final class Workspace {
let projectRootURL: URL
var lastTriggerDate = Environment.now()
var isExpired: Bool {
Environment.now().timeIntervalSince(lastTriggerDate) > 60 * 60 * 8
}
private(set) var filespaces = [URL: Filespace]()
var isRealtimeSuggestionEnabled: Bool {
UserDefaults.shared.value(for: \.realtimeSuggestionToggle)
}
var realtimeSuggestionRequests = Set<Task<Void, Error>>()
private lazy var service: CopilotSuggestionServiceType = Environment
.createSuggestionService(projectRootURL)
init(projectRootURL: URL) {
self.projectRootURL = projectRootURL
}
func canAutoTriggerGetSuggestions(
forFileAt fileURL: URL,
lines: [String],
cursorPosition: CursorPosition
) -> Bool {
guard isRealtimeSuggestionEnabled else { return false }
guard let filespace = filespaces[fileURL] else { return true }
if lines.hashValue != filespace.suggestionSourceSnapshot.linesHash { return true }
if cursorPosition != filespace.suggestionSourceSnapshot.cursorPosition { return true }
return false
}
static func fetchOrCreateWorkspaceIfNeeded(fileURL: URL) async throws
-> (workspace: Workspace, filespace: Filespace)
{
let projectURL = try await Environment.fetchCurrentProjectRootURL(fileURL)
let workspaceURL = projectURL ?? fileURL
let workspace = workspaces[workspaceURL] ?? Workspace(projectRootURL: workspaceURL)
let filespace = workspace.filespaces[fileURL] ?? .init(fileURL: fileURL)
if workspace.filespaces[fileURL] == nil {
workspace.filespaces[fileURL] = filespace
}
workspaces[workspaceURL] = workspace
return (workspace, filespace)
}
}
extension Workspace {
@discardableResult
func generateSuggestions(
forFileAt fileURL: URL,
editor: EditorContent,
shouldcancelInFlightRealtimeSuggestionRequests: Bool = true
) async throws -> [CopilotCompletion] {
if shouldcancelInFlightRealtimeSuggestionRequests {
cancelInFlightRealtimeSuggestionRequests()
}
lastTriggerDate = Environment.now()
let filespace = filespaces[fileURL] ?? .init(fileURL: fileURL)
if filespaces[fileURL] == nil {
filespaces[fileURL] = filespace
}
filespace.uti = editor.uti
filespace.tabSize = editor.tabSize
filespace.indentSize = editor.indentSize
filespace.usesTabsForIndentation = editor.usesTabsForIndentation
let snapshot = Filespace.Snapshot(
linesHash: editor.lines.hashValue,
cursorPosition: editor.cursorPosition
)
filespace.suggestionSourceSnapshot = snapshot
let completions = try await service.getCompletions(
fileURL: fileURL,
content: editor.lines.joined(separator: ""),
cursorPosition: editor.cursorPosition,
tabSize: editor.tabSize,
indentSize: editor.indentSize,
usesTabsForIndentation: editor.usesTabsForIndentation,
ignoreSpaceOnlySuggestions: true
)
filespace.suggestions = completions
filespace.suggestionIndex = 0
return completions
}
func selectNextSuggestion(forFileAt fileURL: URL) {
cancelInFlightRealtimeSuggestionRequests()
lastTriggerDate = Environment.now()
guard let filespace = filespaces[fileURL],
filespace.suggestions.count > 1
else { return }
filespace.suggestionIndex += 1
if filespace.suggestionIndex >= filespace.suggestions.endIndex {
filespace.suggestionIndex = 0
}
}
func selectPreviousSuggestion(forFileAt fileURL: URL) {
cancelInFlightRealtimeSuggestionRequests()
lastTriggerDate = Environment.now()
guard let filespace = filespaces[fileURL],
filespace.suggestions.count > 1
else { return }
filespace.suggestionIndex -= 1
if filespace.suggestionIndex < 0 {
filespace.suggestionIndex = filespace.suggestions.endIndex - 1
}
}
func rejectSuggestion(forFileAt fileURL: URL, editor: EditorContent?) {
cancelInFlightRealtimeSuggestionRequests()
lastTriggerDate = Environment.now()
if let editor {
filespaces[fileURL]?.uti = editor.uti
filespaces[fileURL]?.tabSize = editor.tabSize
filespaces[fileURL]?.indentSize = editor.indentSize
filespaces[fileURL]?.usesTabsForIndentation = editor.usesTabsForIndentation
}
Task {
await service.notifyRejected(filespaces[fileURL]?.suggestions ?? [])
}
filespaces[fileURL]?.reset(resetSnapshot: false)
}
func acceptSuggestion(forFileAt fileURL: URL, editor: EditorContent?) -> CopilotCompletion? {
cancelInFlightRealtimeSuggestionRequests()
lastTriggerDate = Environment.now()
guard let filespace = filespaces[fileURL],
!filespace.suggestions.isEmpty,
filespace.suggestionIndex >= 0,
filespace.suggestionIndex < filespace.suggestions.endIndex
else { return nil }
if let editor {
filespaces[fileURL]?.uti = editor.uti
filespaces[fileURL]?.tabSize = editor.tabSize
filespaces[fileURL]?.indentSize = editor.indentSize
filespaces[fileURL]?.usesTabsForIndentation = editor.usesTabsForIndentation
}
var allSuggestions = filespace.suggestions
let suggestion = allSuggestions.remove(at: filespace.suggestionIndex)
Task {
await service.notifyAccepted(suggestion)
await service.notifyRejected(allSuggestions)
}
filespaces[fileURL]?.reset()
return suggestion
}
}
extension Workspace {
func cleanUp() {
for (fileURL, filespace) in filespaces {
if filespace.isExpired {
filespaces[fileURL] = nil
}
}
}
func cancelInFlightRealtimeSuggestionRequests() {
for task in realtimeSuggestionRequests {
task.cancel()
}
realtimeSuggestionRequests = []
}
}