forked from intitni/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeiumLanguageServer.swift
More file actions
405 lines (350 loc) · 13 KB
/
CodeiumLanguageServer.swift
File metadata and controls
405 lines (350 loc) · 13 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
import Foundation
import JSONRPC
import LanguageClient
import LanguageServerProtocol
import Logger
import Preferences
import XcodeInspector
protocol CodeiumLSP {
func sendRequest<E: CodeiumRequestType>(_ endpoint: E) async throws -> E.Response
func updateIndexing() async
func terminate()
}
final class CodeiumLanguageServer {
let languageServerExecutableURL: URL
let managerDirectoryURL: URL
let supportURL: URL
let process: Process
let transport: IOTransport
var terminationHandler: (() -> Void)?
var launchHandler: (() -> Void)?
var port: String?
var heartbeatTask: Task<Void, Error>?
var projectPaths: [String]
init(
languageServerExecutableURL: URL,
managerDirectoryURL: URL,
supportURL: URL,
terminationHandler: (() -> Void)? = nil,
launchHandler: (() -> Void)? = nil
) {
self.languageServerExecutableURL = languageServerExecutableURL
self.managerDirectoryURL = managerDirectoryURL
self.supportURL = supportURL
self.terminationHandler = terminationHandler
self.launchHandler = launchHandler
projectPaths = []
process = Process()
transport = IOTransport()
process.standardInput = transport.stdinPipe
process.standardOutput = transport.stdoutPipe
process.standardError = transport.stderrPipe
process.executableURL = languageServerExecutableURL
let isEnterpriseMode = UserDefaults.shared.value(for: \.codeiumEnterpriseMode)
var apiServerUrl = "https://server.codeium.com"
if isEnterpriseMode, UserDefaults.shared.value(for: \.codeiumApiUrl) != "" {
apiServerUrl = UserDefaults.shared.value(for: \.codeiumApiUrl)
}
process.arguments = [
"--api_server_url",
apiServerUrl,
"--manager_dir",
managerDirectoryURL.path,
"--enable_chat_web_server",
"--enable_chat_client",
]
if isEnterpriseMode {
process.arguments?.append("--enterprise_mode")
process.arguments?.append("--portal_url")
process.arguments?.append(UserDefaults.shared.value(for: \.codeiumPortalUrl))
}
let indexEnabled = UserDefaults.shared.value(for: \.codeiumIndexEnabled)
if indexEnabled {
let indexingMaxFileSize = UserDefaults.shared.value(for: \.codeiumIndexingMaxFileSize)
if indexEnabled {
process.arguments?.append("--enable_local_search")
process.arguments?.append("--enable_index_service")
process.arguments?.append("--search_max_workspace_file_count")
process.arguments?.append("\(indexingMaxFileSize)")
Logger.codeium.info("Indexing Enabled")
}
}
process.currentDirectoryURL = supportURL
process.terminationHandler = { [weak self] task in
self?.processTerminated(task)
}
}
func start() {
guard !process.isRunning else { return }
do {
try process.run()
Task { @MainActor in
func findPort() -> String? {
// find a file in managerDirectoryURL whose name looks like a port, return the
// name if found
let fileManager = FileManager.default
guard let filePaths = try? fileManager
.contentsOfDirectory(atPath: managerDirectoryURL.path) else { return nil }
for path in filePaths {
let filename = URL(fileURLWithPath: path).lastPathComponent
if filename.range(
of: #"^\d+$"#,
options: .regularExpression
) != nil {
return filename
}
}
return nil
}
try await Task.sleep(nanoseconds: 2_000_000)
var waited = 0
while true {
waited += 1
if let port = findPort() {
finishStarting(port: port)
return
}
if waited >= 60 {
process.terminate()
return
}
try await Task.sleep(nanoseconds: 1_000_000_000)
}
}
} catch {
Logger.codeium.error(error.localizedDescription)
processTerminated(process)
}
}
deinit {
process.terminationHandler = nil
if process.isRunning {
process.terminate()
}
transport.close()
}
private func processTerminated(_: Process) {
transport.close()
terminationHandler?()
}
private func finishStarting(port: String) {
Logger.codeium.info("Language server started.")
self.port = port
launchHandler?()
}
func terminate() {
process.terminationHandler = nil
if process.isRunning {
process.terminate()
}
transport.close()
}
}
extension CodeiumLanguageServer: CodeiumLSP {
func sendRequest<E>(_ request: E) async throws -> E.Response where E: CodeiumRequestType {
guard let port else { throw CancellationError() }
let request = request.makeURLRequest(server: "http://127.0.0.1:\(port)")
let (data, response) = try await URLSession.shared.data(for: request)
if (response as? HTTPURLResponse)?.statusCode == 200 {
do {
let response = try JSONDecoder().decode(E.Response.self, from: data)
return response
} catch {
if UserDefaults.shared.value(for: \.codeiumVerboseLog) {
dump(error)
Logger.codeium.error(error.localizedDescription)
}
throw error
}
} else {
do {
let error = try JSONDecoder().decode(CodeiumResponseError.self, from: data)
if error.code == "aborted" {
if error.message.contains("is too old") {
throw CodeiumError.languageServerOutdated
}
throw error
}
throw CancellationError()
} catch {
if UserDefaults.shared.value(for: \.codeiumVerboseLog) {
Logger.codeium.error(error.localizedDescription)
}
throw error
}
}
}
func updateIndexing() async {
let indexEnabled = UserDefaults.shared.value(for: \.codeiumIndexEnabled)
if !indexEnabled {
return
}
let currentProjectPaths = await getProjectPaths()
// Add all workspaces that are in the currentProjectPaths but not in the previous project
// paths
for currentProjectPath in currentProjectPaths {
if !projectPaths.contains(currentProjectPath) && FileManager.default
.fileExists(atPath: currentProjectPath)
{
_ = try? await sendRequest(CodeiumRequest.AddTrackedWorkspace(requestBody: .init(
workspace: currentProjectPath
)))
}
}
// Remove all workspaces that are in previous project paths but not in the
// currentProjectPaths
for projectPath in projectPaths {
if !currentProjectPaths.contains(projectPath) && FileManager.default
.fileExists(atPath: projectPath)
{
_ = try? await sendRequest(CodeiumRequest.RemoveTrackedWorkspace(requestBody: .init(
workspace: projectPath
)))
}
}
// These should be identical now
projectPaths = currentProjectPaths
}
}
final class IOTransport {
public let stdinPipe: Pipe
public let stdoutPipe: Pipe
public let stderrPipe: Pipe
private var closed: Bool
private var queue: DispatchQueue
public init() {
stdinPipe = Pipe()
stdoutPipe = Pipe()
stderrPipe = Pipe()
closed = false
queue = DispatchQueue(label: "com.intii.CopilotForXcode.IOTransport")
setupFileHandleHandlers()
}
public func write(_ data: Data) {
if closed {
return
}
let fileHandle = stdinPipe.fileHandleForWriting
queue.async {
fileHandle.write(data)
}
}
public func close() {
queue.sync {
if self.closed {
return
}
self.closed = true
[stdoutPipe, stderrPipe, stdinPipe].forEach { pipe in
pipe.fileHandleForWriting.closeFile()
pipe.fileHandleForReading.closeFile()
}
}
}
private func setupFileHandleHandlers() {
stdoutPipe.fileHandleForReading.readabilityHandler = { [weak self] handle in
let data = handle.availableData
guard !data.isEmpty else {
return
}
if UserDefaults.shared.value(for: \.codeiumVerboseLog) {
self?.forwardDataToHandler(data)
}
}
stderrPipe.fileHandleForReading.readabilityHandler = { [weak self] handle in
let data = handle.availableData
guard !data.isEmpty else {
return
}
if UserDefaults.shared.value(for: \.codeiumVerboseLog) {
self?.forwardErrorDataToHandler(data)
}
}
}
private func forwardDataToHandler(_ data: Data) {
queue.async { [weak self] in
guard let self = self else { return }
if self.closed {
return
}
if let string = String(bytes: data, encoding: .utf8) {
Logger.codeium.info("stdout: \(string)")
}
}
}
private func forwardErrorDataToHandler(_ data: Data) {
queue.async {
if let string = String(bytes: data, encoding: .utf8) {
Logger.codeium.error("stderr: \(string)")
}
}
}
}
class WorkspaceParser: NSObject, XMLParserDelegate {
var projectPaths: [String] = []
var workspaceFileURL: URL
var workspaceBaseURL: URL
init(workspaceFileURL: URL, workspaceBaseURL: URL) {
self.workspaceFileURL = workspaceFileURL
self.workspaceBaseURL = workspaceBaseURL
}
func parse() -> [String] {
guard let parser = XMLParser(contentsOf: workspaceFileURL) else {
print("Failed to create XML parser for file: \(workspaceFileURL.path)")
return []
}
parser.delegate = self
parser.parse()
return projectPaths
}
// XMLParserDelegate methods
func parser(
_ parser: XMLParser,
didStartElement elementName: String,
namespaceURI: String?,
qualifiedName qName: String?,
attributes attributeDict: [String: String]
) {
if elementName == "FileRef", let location = attributeDict["location"] {
var project_path: String
if location.starts(with: "group:") && pathEndsWithXcodeproj(location) {
let curr_path = String(location.dropFirst("group:".count))
guard let relative_project_url = URL(string: curr_path) else {
return
}
let relative_base_path = relative_project_url.deletingLastPathComponent()
project_path = (
workspaceBaseURL
.appendingPathComponent(relative_base_path.relativePath)
).standardized.path
} else if location.starts(with: "absolute:") && pathEndsWithXcodeproj(location) {
let abs_url = URL(fileURLWithPath: String(location.dropFirst("absolute:".count)))
project_path = abs_url.deletingLastPathComponent().standardized.path
} else {
return
}
if FileManager.default.fileExists(atPath: project_path) {
projectPaths.append(project_path)
}
}
}
func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
print("Failed to parse XML: \(parseError.localizedDescription)")
}
func pathEndsWithXcodeproj(_ path: String) -> Bool {
return path.hasSuffix(".xcodeproj")
}
}
public func getProjectPaths() async -> [String] {
guard let workspaceURL = XcodeInspector.shared.realtimeActiveWorkspaceURL else {
return []
}
let workspacebaseURL = workspaceURL.deletingLastPathComponent()
let workspaceContentsURL = workspaceURL.appendingPathComponent("contents.xcworkspacedata")
let parser = WorkspaceParser(
workspaceFileURL: workspaceContentsURL,
workspaceBaseURL: workspacebaseURL
)
let absolutePaths = parser.parse()
return absolutePaths
}