-
Notifications
You must be signed in to change notification settings - Fork 252
/
Copy pathActionRequestHandler.swift
201 lines (170 loc) · 7.45 KB
/
ActionRequestHandler.swift
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
//
// ActionRequestHandler.swift
// extension
//
// Created by Ken Chung on 22/2/2021.
//
import CoreServices
import SwiftWS
func installNotificationObserver(){
let notificationName = "com.thebaselab.code.node.stop" as CFString
let notificationCenter = CFNotificationCenterGetDarwinNotifyCenter()
CFNotificationCenterAddObserver(notificationCenter, nil,
{ (
center: CFNotificationCenter?,
observer: UnsafeMutableRawPointer?,
name: CFNotificationName?,
object: UnsafeRawPointer?,
userInfo: CFDictionary?
) in
exit(0)
},
notificationName,
nil,
CFNotificationSuspensionBehavior.deliverImmediately)
}
class BinaryExecutor {
let listener = OutputListener()
let frameAdaptor = LSPFrameAdaptor()
var needFrameAdaptor: Bool = false
let constants = [
"${JAVA_LSP_FAT_JAR_PATH}": Resources.javaLSP
]
func writeToStdin(data: String){
if needFrameAdaptor {
frameAdaptor.receiveWebSocket(data: data)
}else {
listener.write(text: data)
}
}
func executeBinary(
args: [String],
workingDirectory: URL,
sharedFrameworksDirectory: URL,
pythonLibraryDirectory: URL?,
redirectStderr: Bool,
ws: SwiftWS.WebSocket,
isLanguageService: Bool
){
atexit {
// Allow stdout to properly print before exit
fflush(stdout)
usleep(200000) // 0.2 seconds
}
var args = args
args = args.map {
if let replacement = constants[$0] {
return replacement
}else {
return $0
}
}
guard let executable = args.first else {
return
}
self.needFrameAdaptor = isLanguageService
frameAdaptor.onSendToWebSocket = { data in
DispatchQueue.global(qos: .utility).async {
ws.send(data)
}
}
frameAdaptor.onWriteToStdin = { [weak self] data in
self?.listener.write(text: data)
}
DispatchQueue.main.sync {
FileManager.default.changeCurrentDirectoryPath(workingDirectory.path)
self.listener.openConsolePipe()
self.listener.onStdout = { text in
if self.needFrameAdaptor {
self.frameAdaptor.receiveStdout(data: text)
}else {
DispatchQueue.global(qos: .utility).async {
ws.send(text)
}
}
}
if !redirectStderr { return }
self.listener.onStderr = { text in
DispatchQueue.global(qos: .utility).async {
ws.send(text)
}
}
}
DispatchQueue.global(qos: isLanguageService ? .utility : .default).async {
switch executable {
case "java", "javac":
JavaLauncher.shared.launchJava(args: args, frameworkDirectory: sharedFrameworksDirectory, currentDirectory: workingDirectory)
case "node":
NodeLauncher.shared.launchNode(args: args)
default:
SystemCommandLauncher.shared.launchSystemCommand(args: args, pythonLibraryDirectoryURL: pythonLibraryDirectory)
}
DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
self.listener.onStdout = nil
self.listener.closeConsolePipe()
ws.close(code: 1000, reason: "finished")
}
}
}
}
class ActionRequestHandler: NSObject, NSExtensionRequestHandling {
var wss: SwiftWS? = nil
let queue = DispatchQueue(label: "extension.wss")
var executing: Bool = false
func beginRequest(with context: NSExtensionContext) {
installNotificationObserver()
guard wss == nil else {
context.cancelRequest(withError: AppExtensionError.serverAlreadyStarted)
return
}
var isStale = false
guard let item = context.inputItems.first as? NSExtensionItem,
let serverPort = item.userInfo?["port"] as? Int,
let frameworkDirectoryBookmarkData = item.userInfo?["frameworksDirectoryBookmark"] as? Data,
let frameworkDirectoryURL = try? URL(resolvingBookmarkData: frameworkDirectoryBookmarkData, bookmarkDataIsStale: &isStale)
else {
context.cancelRequest(withError: AppExtensionError.missingServerConfiguration)
return
}
let pythonLibraryDirectoryBookmarkData = item.userInfo?["pythonLibraryDirectoryBookmark"] as? Data
var pythonLibraryDirectoryURL: URL? = nil
if let pythonLibraryDirectoryBookmarkData {
pythonLibraryDirectoryURL = try? URL(resolvingBookmarkData: pythonLibraryDirectoryBookmarkData, bookmarkDataIsStale: &isStale)
}
_ = frameworkDirectoryURL.startAccessingSecurityScopedResource()
_ = pythonLibraryDirectoryURL?.startAccessingSecurityScopedResource()
let wss = SwiftWS(port: serverPort, queue: queue)
self.wss = wss
let binaryExecutor = BinaryExecutor()
wss.onConnection { ws, head in
if self.executing {
ws.send("extension service busy")
ws.close(code: 4000, reason: "server busy")
}
ws.onMessage { message in
if self.executing {
binaryExecutor.writeToStdin(data: message.data)
}else {
let jsonData = message.data.data(using: .utf8)!
guard let request: ExecutionRequestFrame = try? JSONDecoder().decode(ExecutionRequestFrame.self, from: jsonData) else {
ws.send("malformed message")
return
}
self.executing = true
var workingDirectoryUrl: URL = URL(fileURLWithPath: FileManager.default.currentDirectoryPath)
if let workingDirectoryBookmark = request.workingDirectoryBookmark,
let workingDirectoryURL = try? URL(resolvingBookmarkData: workingDirectoryBookmark, bookmarkDataIsStale: &isStale){
_ = workingDirectoryURL.startAccessingSecurityScopedResource()
workingDirectoryUrl = workingDirectoryURL
}
binaryExecutor.executeBinary(args: request.args, workingDirectory: workingDirectoryUrl, sharedFrameworksDirectory: frameworkDirectoryURL,
pythonLibraryDirectory: pythonLibraryDirectoryURL ,redirectStderr: request.redirectStderr, ws: message.target, isLanguageService: request.isLanguageService)
}
}
ws.onClose { _ in
wss.close()
exit(0)
}
}
}
}