Files
rust/editors/code/src/commands/expand_macro.ts

77 lines
2.1 KiB
TypeScript
Raw Normal View History

2019-11-18 02:47:50 +08:00
import * as vscode from 'vscode';
2019-12-30 19:30:30 +01:00
import * as lc from 'vscode-languageclient';
2019-11-18 02:47:50 +08:00
2019-12-30 19:30:30 +01:00
import { Ctx, Cmd } from '../ctx';
2019-11-20 01:06:10 +08:00
// Opens the virtual file that will show the syntax tree
//
// The contents of the file come from the `TextDocumentContentProvider`
2019-12-30 19:30:30 +01:00
export function expandMacro(ctx: Ctx): Cmd {
const tdcp = new TextDocumentContentProvider(ctx);
ctx.pushCleanup(
vscode.workspace.registerTextDocumentContentProvider(
'rust-analyzer',
tdcp,
),
);
2019-11-20 01:06:10 +08:00
2019-12-30 19:30:30 +01:00
return async () => {
const document = await vscode.workspace.openTextDocument(tdcp.uri);
tdcp.eventEmitter.fire(tdcp.uri);
2019-11-20 01:06:10 +08:00
return vscode.window.showTextDocument(
document,
vscode.ViewColumn.Two,
2019-12-09 20:57:55 +02:00
true,
2019-11-20 01:06:10 +08:00
);
};
2019-11-18 02:47:50 +08:00
}
2019-11-20 01:06:10 +08:00
interface ExpandedMacro {
name: string;
expansion: string;
}
function code_format(expanded: ExpandedMacro): string {
let result = `// Recursive expansion of ${expanded.name}! macro\n`;
2019-11-20 01:22:28 +08:00
result += '// ' + '='.repeat(result.length - 3);
2019-11-20 01:06:10 +08:00
result += '\n\n';
result += expanded.expansion;
return result;
}
2019-12-30 19:30:30 +01:00
class TextDocumentContentProvider
implements vscode.TextDocumentContentProvider {
private ctx: Ctx;
uri = vscode.Uri.parse('rust-analyzer://expandMacro/[EXPANSION].rs');
eventEmitter = new vscode.EventEmitter<vscode.Uri>();
constructor(ctx: Ctx) {
this.ctx = ctx;
}
async provideTextDocumentContent(_uri: vscode.Uri): Promise<string> {
const editor = vscode.window.activeTextEditor;
2019-12-31 18:14:00 +01:00
const client = this.ctx.client
if (!editor || !client) return '';
2019-12-30 19:30:30 +01:00
const position = editor.selection.active;
const request: lc.TextDocumentPositionParams = {
textDocument: { uri: editor.document.uri.toString() },
position,
};
2019-12-31 18:14:00 +01:00
const expanded = await client.sendRequest<ExpandedMacro>(
2019-12-30 19:30:30 +01:00
'rust-analyzer/expandMacro',
request,
);
if (expanded == null) return 'Not available';
return code_format(expanded);
}
get onDidChange(): vscode.Event<vscode.Uri> {
return this.eventEmitter.event;
}
}