Files
bf-server/client/src/extension.ts

75 lines
2.6 KiB
TypeScript
Raw Normal View History

2021-04-09 23:15:58 +05:30
/* --------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* ------------------------------------------------------------------------------------------ */
import * as path from 'path';
2024-01-02 15:45:31 +05:30
import { ExtensionContext,commands, window } from 'vscode';
2021-04-09 23:15:58 +05:30
import {
LanguageClient,
LanguageClientOptions,
ServerOptions,
TransportKind
} from 'vscode-languageclient';
2023-12-15 14:27:11 +05:30
import BranFlakesExecutorVisitor from './BranFlakesExecutorVisitor';
2024-01-02 15:45:31 +05:30
import { VSCodePromptInputStrategy } from './input/VSCodePromptInputStrategy';
2021-04-09 23:15:58 +05:30
let client: LanguageClient;
export function activate(context: ExtensionContext) {
// The server is implemented in node
let serverModule = context.asAbsolutePath(
path.join('server', 'dist', 'server.js')
2021-04-09 23:15:58 +05:30
);
// The debug options for the server
// --inspect=6009: runs the server in Node's Inspector mode so VS Code can attach to the server for debugging
let debugOptions = { execArgv: ['--nolazy', '--inspect=6009'] };
// If the extension is launched in debug mode then the debug server options are used
// Otherwise the run options are used
let serverOptions: ServerOptions = {
run: { module: serverModule, transport: TransportKind.ipc },
debug: {
module: serverModule,
transport: TransportKind.ipc,
options: debugOptions
}
};
// Options to control the language client
let clientOptions: LanguageClientOptions = {
// Register the server for plain text documents
2021-04-09 23:40:13 +05:30
documentSelector: [{ scheme: 'file', language: 'bf' }]
2021-04-09 23:15:58 +05:30
};
2021-04-17 23:03:40 +05:30
const command = 'bf.execute';
const commandHandler = async()=>{
const text= window.activeTextEditor.document.getText();
const fn = window.activeTextEditor.document.fileName;
2024-01-02 15:45:31 +05:30
const inputStrategy = new VSCodePromptInputStrategy(window.showInputBox);
const output = await BranFlakesExecutorVisitor.run(text,fn,inputStrategy,window.showInformationMessage);
2021-04-17 23:03:40 +05:30
await window.showInformationMessage(`Output: ${output}`);
};
context.subscriptions.push(commands.registerCommand(command,commandHandler));
2021-04-09 23:15:58 +05:30
// Create the language client and start the client.
client = new LanguageClient(
'brainfucklanguageserver',
'Brainfuck Language Server',
serverOptions,
clientOptions
);
// Start the client. This will also launch the server
client.start();
}
export function deactivate(): Thenable<void> | undefined {
if (!client) {
return undefined;
}
return client.stop();
}