-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathide-server.ts
More file actions
39 lines (37 loc) · 1.29 KB
/
ide-server.ts
File metadata and controls
39 lines (37 loc) · 1.29 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
import { ProgressLocation, window } from "vscode";
import { StreamInfo } from "vscode-languageclient/node";
import * as cli from "./cli";
import { QueryServerConfig } from "./config";
import { ideServerLogger } from "./logging";
/**
* Managing the language server for CodeQL.
*/
/** Starts a new CodeQL language server process, sending progress messages to the status bar. */
export async function spawnIdeServer(
config: QueryServerConfig,
): Promise<StreamInfo> {
return window.withProgress(
{ title: "CodeQL language server", location: ProgressLocation.Window },
async (progressReporter, _) => {
const args = ["--check-errors", "ON_CHANGE"];
if (cli.shouldDebugIdeServer()) {
args.push(
"-J=-agentlib:jdwp=transport=dt_socket,address=localhost:9009,server=y,suspend=n,quiet=y",
);
}
const child = cli.spawnServer(
config.codeQlPath,
"CodeQL language server",
["execute", "language-server"],
args,
ideServerLogger,
(data) =>
ideServerLogger.log(data.toString(), { trailingNewline: false }),
(data) =>
ideServerLogger.log(data.toString(), { trailingNewline: false }),
progressReporter,
);
return { writer: child.stdin!, reader: child.stdout! };
},
);
}