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
315 lines (271 loc) · 10.7 KB
/
Workspace.swift
File metadata and controls
315 lines (271 loc) · 10.7 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
import ChatService
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
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 {
class UserDefaultsObserver: NSObject {
var onChange: (() -> Void)?
override func observeValue(
forKeyPath keyPath: String?,
of object: Any?,
change: [NSKeyValueChangeKey: Any]?,
context: UnsafeMutableRawPointer?
) {
onChange?()
}
}
struct SuggestionFeatureDisabledError: Error, LocalizedError {
var errorDescription: String? {
"Suggestion feature is disabled for this project."
}
}
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>>()
let userDefaultsObserver = UserDefaultsObserver()
private var _copilotSuggestionService: CopilotSuggestionServiceType?
private var copilotSuggestionService: CopilotSuggestionServiceType? {
// Check if the workspace is disabled.
let isSuggestionDisabledGlobally = UserDefaults.shared
.value(for: \.disableSuggestionFeatureGlobally)
if isSuggestionDisabledGlobally {
let enabledList = UserDefaults.shared.value(for: \.suggestionFeatureEnabledProjectList)
if !enabledList.contains(where: { path in projectRootURL.path.hasPrefix(path) }) {
// If it's disable, remove the service
_copilotSuggestionService = nil
return nil
}
}
if _copilotSuggestionService == nil {
_copilotSuggestionService = Environment.createSuggestionService(projectRootURL)
}
return _copilotSuggestionService
}
var isSuggestionFeatureEnabled: Bool {
let isSuggestionDisabledGlobally = UserDefaults.shared
.value(for: \.disableSuggestionFeatureGlobally)
if isSuggestionDisabledGlobally {
let enabledList = UserDefaults.shared.value(for: \.suggestionFeatureEnabledProjectList)
if !enabledList.contains(where: { path in projectRootURL.path.hasPrefix(path) }) {
return false
}
}
return true
}
private init(projectRootURL: URL) {
self.projectRootURL = projectRootURL
Task {
userDefaultsObserver.onChange = { [weak self] in
guard let self else { return }
_ = self.copilotSuggestionService
}
UserDefaults.shared.addObserver(
userDefaultsObserver,
forKeyPath: UserDefaultPreferenceKeys().suggestionFeatureEnabledProjectList.key,
options: .new,
context: nil
)
UserDefaults.shared.addObserver(
userDefaultsObserver,
forKeyPath: UserDefaultPreferenceKeys().disableSuggestionFeatureGlobally.key,
options: .new,
context: nil
)
}
}
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)
{
// never create duplicated filespaces
for workspace in workspaces.values {
if let filespace = workspace.filespaces[fileURL] {
return (workspace, 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
}
if !editor.uti.isEmpty {
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
guard let copilotSuggestionService else { throw SuggestionFeatureDisabledError() }
let completions = try await copilotSuggestionService.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, !editor.uti.isEmpty {
filespaces[fileURL]?.uti = editor.uti
filespaces[fileURL]?.tabSize = editor.tabSize
filespaces[fileURL]?.indentSize = editor.indentSize
filespaces[fileURL]?.usesTabsForIndentation = editor.usesTabsForIndentation
}
Task {
await copilotSuggestionService?.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, !editor.uti.isEmpty {
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 copilotSuggestionService?.notifyAccepted(suggestion)
await copilotSuggestionService?.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 = []
}
}