rust/code/src/extension.ts

267 lines
8.6 KiB
TypeScript
Raw Normal View History

2018-08-10 14:07:43 +02:00
'use strict';
import * as vscode from 'vscode';
2018-08-10 23:55:32 +02:00
import * as lc from 'vscode-languageclient'
2018-08-10 14:07:43 +02:00
2018-08-10 23:55:32 +02:00
let client: lc.LanguageClient;
2018-08-10 14:07:43 +02:00
let uris = {
syntaxTree: vscode.Uri.parse('libsyntax-rust://syntaxtree')
}
export function activate(context: vscode.ExtensionContext) {
2018-08-10 20:13:39 +02:00
let textDocumentContentProvider = new TextDocumentContentProvider()
2018-08-10 14:07:43 +02:00
let dispose = (disposable) => {
context.subscriptions.push(disposable);
}
let registerCommand = (name, f) => {
dispose(vscode.commands.registerCommand(name, f))
}
registerCommand('libsyntax-rust.syntaxTree', () => openDoc(uris.syntaxTree))
2018-08-10 20:13:39 +02:00
registerCommand('libsyntax-rust.extendSelection', async () => {
let editor = vscode.window.activeTextEditor
if (editor == null || editor.document.languageId != "rust") return
let request: ExtendSelectionParams = {
textDocument: { uri: editor.document.uri.toString() },
selections: editor.selections.map((s) => {
2018-08-11 15:10:34 +02:00
return client.code2ProtocolConverter.asRange(s)
2018-08-10 20:13:39 +02:00
})
}
let response = await client.sendRequest<ExtendSelectionResult>("m/extendSelection", request)
editor.selections = response.selections.map((range) => {
2018-08-11 15:10:34 +02:00
let r = client.protocol2CodeConverter.asRange(range)
return new vscode.Selection(r.start, r.end)
2018-08-10 20:13:39 +02:00
})
})
2018-08-15 23:23:22 +02:00
registerCommand('libsyntax-rust.matchingBrace', async () => {
let editor = vscode.window.activeTextEditor
if (editor == null || editor.document.languageId != "rust") return
let request: FindMatchingBraceParams = {
textDocument: { uri: editor.document.uri.toString() },
offsets: editor.selections.map((s) => {
return client.code2ProtocolConverter.asPosition(s.active)
})
}
let response = await client.sendRequest<lc.Position[]>("m/findMatchingBrace", request)
editor.selections = editor.selections.map((sel, idx) => {
let active = client.protocol2CodeConverter.asPosition(response[idx])
let anchor = sel.isEmpty ? active : sel.anchor
return new vscode.Selection(anchor, active)
})
})
2018-08-23 21:14:51 +02:00
registerCommand('libsyntax-rust.joinLines', async () => {
let editor = vscode.window.activeTextEditor
if (editor == null || editor.document.languageId != "rust") return
let request: JoinLinesParams = {
textDocument: { uri: editor.document.uri.toString() },
range: client.code2ProtocolConverter.asRange(editor.selection),
}
let response = await client.sendRequest<lc.TextEdit[]>("m/joinLines", request)
let edits = client.protocol2CodeConverter.asTextEdits(response)
let wsEdit = new vscode.WorkspaceEdit()
wsEdit.set(editor.document.uri, edits)
return vscode.workspace.applyEdit(wsEdit)
})
2018-08-22 09:18:58 +02:00
registerCommand('libsyntax-rust.parentModule', async () => {
let editor = vscode.window.activeTextEditor
if (editor == null || editor.document.languageId != "rust") return
let request: lc.TextDocumentIdentifier = {
uri: editor.document.uri.toString()
}
let response = await client.sendRequest<lc.TextDocumentIdentifier>("m/parentModule", request)
let loc: lc.Location = response[0]
if (loc == null) return
let uri = client.protocol2CodeConverter.asUri(loc.uri)
let range = client.protocol2CodeConverter.asRange(loc.range)
let doc = await vscode.workspace.openTextDocument(uri)
let e = await vscode.window.showTextDocument(doc)
e.revealRange(range, vscode.TextEditorRevealType.InCenter)
})
2018-08-10 20:13:39 +02:00
2018-08-10 14:07:43 +02:00
dispose(vscode.workspace.registerTextDocumentContentProvider(
'libsyntax-rust',
2018-08-10 20:13:39 +02:00
textDocumentContentProvider
2018-08-10 14:07:43 +02:00
))
startServer()
2018-08-10 20:13:39 +02:00
vscode.workspace.onDidChangeTextDocument((event: vscode.TextDocumentChangeEvent) => {
let doc = event.document
if (doc.languageId != "rust") return
2018-08-17 18:54:08 +02:00
afterLs(() => {
2018-08-10 20:13:39 +02:00
textDocumentContentProvider.eventEmitter.fire(uris.syntaxTree)
2018-08-17 18:54:08 +02:00
})
2018-08-10 20:13:39 +02:00
}, null, context.subscriptions)
2018-08-10 14:07:43 +02:00
}
2018-08-17 18:54:08 +02:00
// We need to order this after LS updates, but there's no API for that.
// Hence, good old setTimeout.
function afterLs(f) {
setTimeout(f, 10)
}
2018-08-10 14:07:43 +02:00
export function deactivate(): Thenable<void> {
if (!client) {
return undefined;
}
return client.stop();
}
function startServer() {
2018-08-10 23:55:32 +02:00
let run: lc.Executable = {
2018-08-13 14:35:53 +02:00
// command: "cargo",
// args: ["run", "--package", "m"],
command: "m",
2018-08-10 16:49:45 +02:00
options: { cwd: "." }
2018-08-10 14:07:43 +02:00
}
2018-08-10 23:55:32 +02:00
let serverOptions: lc.ServerOptions = {
2018-08-10 14:07:43 +02:00
run,
debug: run
};
2018-08-10 23:55:32 +02:00
let clientOptions: lc.LanguageClientOptions = {
2018-08-10 14:07:43 +02:00
documentSelector: [{ scheme: 'file', language: 'rust' }],
};
2018-08-10 23:55:32 +02:00
client = new lc.LanguageClient(
2018-08-10 14:07:43 +02:00
'm',
'm languge server',
serverOptions,
clientOptions,
);
2018-08-10 23:55:32 +02:00
client.onReady().then(() => {
client.onNotification(
new lc.NotificationType("m/publishDecorations"),
(params: PublishDecorationsParams) => {
let editor = vscode.window.visibleTextEditors.find(
(editor) => editor.document.uri.toString() == params.uri
)
if (editor == null) return;
setHighlights(
editor,
params.decorations,
)
}
)
2018-08-16 12:46:31 +02:00
client.onRequest(
new lc.RequestType<lc.Position, void, any, any>("m/moveCursor"),
(params: lc.Position, token: lc.CancellationToken) => {
let editor = vscode.window.activeTextEditor;
if (editor == null) return
if (!editor.selection.isEmpty) return
let position = client.protocol2CodeConverter.asPosition(params)
2018-08-17 18:54:08 +02:00
afterLs(() => {
editor.selection = new vscode.Selection(position, position)
})
2018-08-16 12:46:31 +02:00
}
)
2018-08-10 23:55:32 +02:00
})
2018-08-10 14:07:43 +02:00
client.start();
}
async function openDoc(uri: vscode.Uri) {
let document = await vscode.workspace.openTextDocument(uri)
return vscode.window.showTextDocument(document, vscode.ViewColumn.Two, true)
}
class TextDocumentContentProvider implements vscode.TextDocumentContentProvider {
public eventEmitter = new vscode.EventEmitter<vscode.Uri>()
public syntaxTree: string = "Not available"
public provideTextDocumentContent(uri: vscode.Uri): vscode.ProviderResult<string> {
let editor = vscode.window.activeTextEditor;
if (editor == null) return ""
2018-08-10 20:13:39 +02:00
let request: SyntaxTreeParams = {
textDocument: { uri: editor.document.uri.toString() }
};
return client.sendRequest<SyntaxTreeResult>("m/syntaxTree", request);
2018-08-10 14:07:43 +02:00
}
get onDidChange(): vscode.Event<vscode.Uri> {
return this.eventEmitter.event
}
}
2018-08-10 20:13:39 +02:00
2018-08-10 23:55:32 +02:00
const decorations = (() => {
const decor = (obj) => vscode.window.createTextEditorDecorationType({ color: obj })
return {
background: decor("#3F3F3F"),
error: vscode.window.createTextEditorDecorationType({
borderColor: "red",
borderStyle: "none none dashed none",
}),
comment: decor("#7F9F7F"),
string: decor("#CC9393"),
keyword: decor("#F0DFAF"),
function: decor("#93E0E3"),
parameter: decor("#94BFF3"),
builtin: decor("#DD6718"),
text: decor("#DCDCCC"),
attribute: decor("#BFEBBF"),
literal: decor("#DFAF8F"),
}
})()
function setHighlights(
editor: vscode.TextEditor,
highlihgs: Array<Decoration>
) {
let byTag = {}
for (let tag in decorations) {
byTag[tag] = []
}
for (let d of highlihgs) {
if (!byTag[d.tag]) {
console.log(`unknown tag ${d.tag}`)
continue
}
2018-08-11 15:10:34 +02:00
byTag[d.tag].push(
client.protocol2CodeConverter.asRange(d.range)
)
2018-08-10 23:55:32 +02:00
}
for (let tag in byTag) {
let dec = decorations[tag]
let ranges = byTag[tag]
editor.setDecorations(dec, ranges)
}
}
2018-08-10 20:13:39 +02:00
interface SyntaxTreeParams {
2018-08-10 23:55:32 +02:00
textDocument: lc.TextDocumentIdentifier;
2018-08-10 20:13:39 +02:00
}
type SyntaxTreeResult = string
interface ExtendSelectionParams {
2018-08-10 23:55:32 +02:00
textDocument: lc.TextDocumentIdentifier;
selections: lc.Range[];
2018-08-10 20:13:39 +02:00
}
interface ExtendSelectionResult {
2018-08-10 23:55:32 +02:00
selections: lc.Range[];
}
2018-08-15 23:23:22 +02:00
interface FindMatchingBraceParams {
textDocument: lc.TextDocumentIdentifier;
offsets: lc.Position[];
}
2018-08-23 21:14:51 +02:00
interface JoinLinesParams {
textDocument: lc.TextDocumentIdentifier;
range: lc.Range;
}
2018-08-10 23:55:32 +02:00
interface PublishDecorationsParams {
uri: string,
decorations: Decoration[],
}
interface Decoration {
range: lc.Range,
tag: string,
2018-08-10 20:13:39 +02:00
}