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
272 lines (232 loc) · 8 KB
/
CodeiumLanguageServer.swift
File metadata and controls
272 lines (232 loc) · 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
import Foundation
import JSONRPC
import LanguageClient
import LanguageServerProtocol
import Logger
import Preferences
protocol CodeiumLSP {
func sendRequest<E: CodeiumRequestType>(_ endpoint: E) async throws -> E.Response
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>?
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
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,
]
if isEnterpriseMode {
process.arguments?.append("--enterprise_mode")
}
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
}
}
}
}
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)")
}
}
}
}