forked from phpactor/vscode-phpactor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.ts
More file actions
213 lines (178 loc) · 6 KB
/
extension.ts
File metadata and controls
213 lines (178 loc) · 6 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
import {
LanguageClient,
ServerOptions,
LanguageClientOptions,
StreamInfo,
RevealOutputChannelOn
} from "vscode-languageclient";
import * as vscode from "vscode";
import { spawn } from "child_process";
import { existsSync, mkdir, mkdirSync } from "fs";
import { basename, dirname } from "path";
import * as net from 'net';
const LanguageID = 'php';
let languageClient: LanguageClient;
export async function activate(context: vscode.ExtensionContext): Promise<void> {
let workspaceConfig = vscode.workspace.getConfiguration();
const config = workspaceConfig.get("phpactor") as any;
const enable = config.enable;
if (!config.path) {
config.path = await installPhpactor(context.globalStoragePath)
}
if (enable === false) return;
languageClient = createClient(config);
languageClient.start();
}
export function deactivate() {
if (!languageClient) {
return undefined;
}
return languageClient.stop();
}
function getServerOptions(config): ServerOptions
{
let serverOptions;
if(!config.remote.enabled)
{
// launch language server via stdio
serverOptions = {
run: {
command: config.path,
args: [
"language-server",
...config.launchServerArgs
]
},
debug: {
command: "phpactor",
args: [
"language-server",
...config.launchServerArgs
]
},
};
}
else{
// credits: https://github.com/itemis/xtext-languageserver-example/blob/master/vscode-extension/src/extension.ts
// launch language server via socket
serverOptions = () => {
let {host,port} = config.remote;
let socket = net.connect({
host,
port
});
let result = <StreamInfo>{
writer:socket,
reader:socket
};
return Promise.resolve(result);
}
}
return serverOptions;
}
function createClient(config: any): LanguageClient {
let serverOptions = getServerOptions(config);
let {verbosity} = config.trace.server;
let trace = {
"off" : RevealOutputChannelOn.Never,
"message" : RevealOutputChannelOn.Warn,
"verbose" : RevealOutputChannelOn.Info
}
let clientOptions: LanguageClientOptions = {
documentSelector: [
{ language: LanguageID, scheme: 'file' },
{ language: 'blade', scheme: 'file' },
{ language: LanguageID, scheme: 'untitled' }
],
initializationOptions: config.config,
revealOutputChannelOn: trace[verbosity]
};
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);
const updateConfig = {cwd: dirname(dirname(config.path))}
vscode.commands.registerCommand('phpactor.update', updatePhpactor, updateConfig);
return languageClient;
}
function reindex(): void {
if(!languageClient) {
return;
}
languageClient.sendRequest('indexer/reindex');
}
async function dumpConfig(): Promise<void> {
if(!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(!languageClient) {
return;
}
languageClient.sendRequest('service/running');
}
async function status(): Promise<any> {
if(!languageClient) {
return;
}
const channel = vscode.window.createOutputChannel('Phpactor Status')
const result = await languageClient.sendRequest<string>('phpactor/status');
channel.append(result)
channel.show()
}
async function installPhpactor(storagePath: string): Promise<string> {
if (!existsSync(storagePath)) {
mkdirSync(storagePath)
}
const path = `${storagePath}/phpactor`
if (!existsSync(path)) {
const channel = vscode.window.createOutputChannel("Phpactor Installation")
vscode.window.showInformationMessage("Installing Phpactor")
await exec(channel, 'git', ['clone', 'https://github.com/phpactor/phpactor', '--depth=1'], storagePath)
await exec(channel, 'composer', ['install', '--no-dev'], path)
vscode.window.showInformationMessage(`Phpactor installed at ${path}`)
}
return `${storagePath}/phpactor/bin/phpactor`
}
export async function updatePhpactor(): Promise<void> {
const channel = vscode.window.createOutputChannel('Phpactor Update')
channel.appendLine(this.cwd)
await exec(channel, 'git', ['pull'], this.cwd)
await exec(channel, 'composer', ['install', '--no-dev'], this.cwd)
channel.appendLine("Phpactor updated")
vscode.window.showInformationMessage("Phpactor updated")
}
function exec(channel: vscode.OutputChannel, command: string, args: string[], cwd: string): Promise<void> {
return new Promise(function (resolve, reject) {
const child = spawn(command, args, {
cwd: cwd,
timeout: 30000,
})
child.stdout.on('data', function (data) {
channel.append(data.toString('utf8'))
})
child.stderr.on('data', function (data) {
channel.append(data.toString('utf8'))
})
child.on('close', function (code) {
if (code !== 0) {
reject(`Expected git to exit with code 0 got "${code}"`)
}
resolve()
});
child.on('error', function (err) {
reject(err)
});
})
}