2018-10-07 15:59:02 -05:00
|
|
|
import * as lc from 'vscode-languageclient';
|
2018-10-07 15:44:25 -05:00
|
|
|
|
2018-10-07 15:59:02 -05:00
|
|
|
import { Config } from './config';
|
2018-10-08 13:55:22 -05:00
|
|
|
import { Highlighter } from './highlighting';
|
2018-10-07 15:44:25 -05:00
|
|
|
|
|
|
|
export class Server {
|
2018-10-07 15:59:02 -05:00
|
|
|
public static highlighter = new Highlighter();
|
|
|
|
public static config = new Config();
|
|
|
|
public static client: lc.LanguageClient;
|
|
|
|
|
2018-10-08 16:38:33 -05:00
|
|
|
public static start(
|
|
|
|
notificationHandlers: Iterable<[string, lc.GenericNotificationHandler]>
|
|
|
|
) {
|
2018-10-07 15:59:02 -05:00
|
|
|
const run: lc.Executable = {
|
|
|
|
command: 'ra_lsp_server',
|
2018-10-08 16:38:33 -05:00
|
|
|
options: { cwd: '.' }
|
2018-10-07 15:59:02 -05:00
|
|
|
};
|
|
|
|
const serverOptions: lc.ServerOptions = {
|
2018-10-07 15:44:25 -05:00
|
|
|
run,
|
2018-10-08 16:38:33 -05:00
|
|
|
debug: run
|
2018-10-07 15:44:25 -05:00
|
|
|
};
|
2018-10-07 15:59:02 -05:00
|
|
|
const clientOptions: lc.LanguageClientOptions = {
|
2018-11-08 09:43:02 -06:00
|
|
|
documentSelector: [{ scheme: 'file', language: 'rust' }],
|
|
|
|
initializationOptions: {
|
|
|
|
publishDecorations: true,
|
|
|
|
}
|
2018-10-07 15:44:25 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
Server.client = new lc.LanguageClient(
|
|
|
|
'ra-lsp',
|
2018-10-21 14:39:50 -05:00
|
|
|
'rust-analyzer language server',
|
2018-10-07 15:44:25 -05:00
|
|
|
serverOptions,
|
2018-10-08 16:38:33 -05:00
|
|
|
clientOptions
|
2018-10-07 15:44:25 -05:00
|
|
|
);
|
|
|
|
Server.client.onReady().then(() => {
|
2018-10-08 13:55:22 -05:00
|
|
|
for (const [type, handler] of notificationHandlers) {
|
|
|
|
Server.client.onNotification(type, handler);
|
|
|
|
}
|
2018-10-07 15:59:02 -05:00
|
|
|
});
|
2018-10-07 15:44:25 -05:00
|
|
|
Server.client.start();
|
|
|
|
}
|
|
|
|
}
|