-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathextension.ts
271 lines (228 loc) · 8.42 KB
/
extension.ts
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 {
LanguageClient,
ServerOptions,
LanguageClientOptions,
StreamInfo,
RevealOutputChannelOn,
} from 'vscode-languageclient/node'
import { EvaluatableExpressionRequest } from './protocol'
import { spawn } from 'child_process'
import * as vscode from 'vscode'
import { join } from 'path'
import * as net from 'net'
import * as fs from 'fs'
const LanguageID = 'php'
let languageClient: LanguageClient
interface PhpactorConfig {
path: string
executablePath: string
enable: boolean
config: object
remote: {
enabled: boolean
host: string
port: number
}
launchServerArgs: string[]
}
export async function activate(context: vscode.ExtensionContext): Promise<void> {
if (!checkPlatform()) {
return
}
const workspaceConfig = vscode.workspace.getConfiguration()
const config = workspaceConfig.get<PhpactorConfig>('phpactor') || <PhpactorConfig>{}
const enable = config.enable
if (!config.path) {
config.path = context.asAbsolutePath(join('vendor', 'phpactor', 'phpactor', 'bin', 'phpactor'))
if (!fs.existsSync(config.path)) {
config.path = context.asAbsolutePath(join('phpactor.phar'))
}
}
if (!config.executablePath) {
const phpConfig = vscode.workspace.getConfiguration('php')
config.executablePath =
phpConfig.get<string>('executablePath') ||
phpConfig.get<string>('validate.executablePath') ||
(process.platform === 'win32' ? 'php.exe' : 'php')
}
if (enable === false) return
languageClient = createClient(config)
await languageClient.start()
context.subscriptions.push(
vscode.languages.registerEvaluatableExpressionProvider('php', {
async provideEvaluatableExpression(
document: vscode.TextDocument,
position: vscode.Position,
token: vscode.CancellationToken
): Promise<vscode.EvaluatableExpression | undefined> {
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
if (languageClient.initializeResult?.capabilities.experimental?.xevaluatableExpressionProvider) {
const eer = await languageClient.sendRequest(
EvaluatableExpressionRequest.type,
languageClient.code2ProtocolConverter.asTextDocumentPositionParams(document, position),
token
)
if (eer && eer.expression) {
return new vscode.EvaluatableExpression(eer.range, eer.expression)
}
}
return undefined
},
})
)
}
export function deactivate(): Promise<void> | undefined {
if (!languageClient) {
return undefined
}
return languageClient.stop()
}
function checkPlatform(): boolean {
if (process.platform === 'win32') {
void vscode.window.showWarningMessage('Phpactor support on Windows is experimental.')
}
return true
}
function getServerOptions(config: PhpactorConfig): ServerOptions {
let serverOptions
if (!config.remote.enabled && process.platform === 'win32') {
// PHP on windows has problems with STDIO so we need special handling
serverOptions = getWindowsServerOptions(config)
} else if (!config.remote.enabled) {
// launch language server via stdio
serverOptions = <ServerOptions>{
run: {
command: config.executablePath,
args: [config.path, 'language-server', ...config.launchServerArgs],
},
debug: {
command: config.executablePath,
args: ['-dxdebug.start_with_request=1', config.path, 'language-server', ...config.launchServerArgs],
options: {
env: {
...process.env,
XDEBUG_MODE: 'debug',
PHPACTOR_ALLOW_XDEBUG: '1',
},
},
},
}
} else {
// credits: https://github.com/itemis/xtext-languageserver-example/blob/master/vscode-extension/src/extension.ts
// launch language server via socket
serverOptions = () => {
const { host, port } = config.remote
const socket = net.connect({
host,
port,
})
const result = <StreamInfo>{
writer: socket,
reader: socket,
}
return Promise.resolve(result)
}
}
return serverOptions
}
function getWindowsServerOptions(config: PhpactorConfig): ServerOptions {
// Find a free port, start PHPActor and connect to it
const serverOptions = async () => {
const findPort = new Promise<number>(resolve => {
const server = net.createServer()
server.listen(0, '127.0.0.1', () => {
const freePort = (server.address()! as net.AddressInfo).port
server.close()
resolve(freePort)
})
})
const freePort = await findPort
const startServer = new Promise<void>((resolve, reject) => {
const childProcess = spawn(
config.executablePath,
[config.path, 'language-server', `--address=127.0.0.1:${freePort}`, ...config.launchServerArgs],
{
env: {
...process.env,
XDEBUG_MODE: 'debug',
PHPACTOR_ALLOW_XDEBUG: '1',
},
}
)
childProcess.stderr.on('data', (chunk: Buffer) => {
const str = chunk.toString()
languageClient.outputChannel.appendLine(str)
// when we get the first line, the server is running
resolve()
})
childProcess.on('exit', (code, signal) => {
languageClient.outputChannel.appendLine(
`Language server exited ` + (signal ? `from signal ${signal}` : `with exit code ${code}`)
)
if (code !== 0) {
languageClient.outputChannel.show()
}
reject(new Error('Language Server exited'))
})
})
await startServer
const socket = net.connect({
host: '127.0.0.1',
port: freePort,
})
const result = <StreamInfo>{
writer: socket,
reader: socket,
}
return result
}
return serverOptions
}
function createClient(config: PhpactorConfig): LanguageClient {
const serverOptions = getServerOptions(config)
const clientOptions: LanguageClientOptions = {
documentSelector: [
{ language: LanguageID, scheme: 'file' },
{ language: 'blade', scheme: 'file' },
{ language: LanguageID, scheme: 'untitled' },
],
initializationOptions: config.config,
revealOutputChannelOn: RevealOutputChannelOn.Never,
}
languageClient = new LanguageClient('phpactor', 'Phpactor Language Server', serverOptions, clientOptions)
vscode.commands.registerCommand('phpactor.reindex', reindex)
vscode.commands.registerCommand('phpactor.config.dump', dumpConfig)
vscode.commands.registerCommand('phpactor.services.list', servicesList)
vscode.commands.registerCommand('phpactor.status', status)
return languageClient
}
function reindex(): void {
if (!checkPlatform() || !languageClient) {
return
}
void languageClient.sendRequest('indexer/reindex')
}
async function dumpConfig(): Promise<void> {
if (!checkPlatform() || !languageClient) {
return
}
const channel = vscode.window.createOutputChannel('Phpactor Config')
const result = await languageClient.sendRequest<string>('phpactor/debug/config', { return: true })
channel.append(result)
channel.show()
}
function servicesList(): void {
if (!checkPlatform() || !languageClient) {
return
}
void languageClient.sendRequest('service/running')
}
async function status(): Promise<void> {
if (!checkPlatform() || !languageClient) {
return
}
const channel = vscode.window.createOutputChannel('Phpactor Status')
const result = await languageClient.sendRequest<string>('phpactor/status')
channel.append(result)
channel.show()
}