mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 01:25:37 -05:00
237 lines
7.4 KiB
TypeScript
237 lines
7.4 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
|
|
import { validateConstraint } from 'vs/base/common/types';
|
|
import { ICommandHandlerDescription } from 'vs/platform/commands/common/commands';
|
|
import * as extHostTypes from 'vs/workbench/api/node/extHostTypes';
|
|
import * as extHostTypeConverter from 'vs/workbench/api/node/extHostTypeConverters';
|
|
import { cloneAndChange } from 'vs/base/common/objects';
|
|
import { MainContext, MainThreadCommandsShape, ExtHostCommandsShape, ObjectIdentifier, IMainContext } from './extHost.protocol';
|
|
import { ExtHostHeapService } from 'vs/workbench/api/node/extHostHeapService';
|
|
import { isFalsyOrEmpty } from 'vs/base/common/arrays';
|
|
import * as modes from 'vs/editor/common/modes';
|
|
import * as vscode from 'vscode';
|
|
import { ILogService } from 'vs/platform/log/common/log';
|
|
import { revive } from 'vs/base/common/marshalling';
|
|
|
|
interface CommandHandler {
|
|
callback: Function;
|
|
thisArg: any;
|
|
description: ICommandHandlerDescription;
|
|
}
|
|
|
|
export interface ArgumentProcessor {
|
|
processArgument(arg: any): any;
|
|
}
|
|
|
|
export class ExtHostCommands implements ExtHostCommandsShape {
|
|
|
|
private readonly _commands = new Map<string, CommandHandler>();
|
|
private readonly _proxy: MainThreadCommandsShape;
|
|
private readonly _converter: CommandsConverter;
|
|
private readonly _logService: ILogService;
|
|
private readonly _argumentProcessors: ArgumentProcessor[];
|
|
|
|
constructor(
|
|
mainContext: IMainContext,
|
|
heapService: ExtHostHeapService,
|
|
logService: ILogService
|
|
) {
|
|
this._proxy = mainContext.getProxy(MainContext.MainThreadCommands);
|
|
this._logService = logService;
|
|
this._converter = new CommandsConverter(this, heapService);
|
|
this._argumentProcessors = [{ processArgument(a) { return revive(a, 0); } }];
|
|
}
|
|
|
|
get converter(): CommandsConverter {
|
|
return this._converter;
|
|
}
|
|
|
|
registerArgumentProcessor(processor: ArgumentProcessor): void {
|
|
this._argumentProcessors.push(processor);
|
|
}
|
|
|
|
registerCommand(global: boolean, id: string, callback: <T>(...args: any[]) => T | Thenable<T>, thisArg?: any, description?: ICommandHandlerDescription): extHostTypes.Disposable {
|
|
this._logService.trace('ExtHostCommands#registerCommand', id);
|
|
|
|
if (!id.trim().length) {
|
|
throw new Error('invalid id');
|
|
}
|
|
|
|
if (this._commands.has(id)) {
|
|
throw new Error(`command '${id}' already exists`);
|
|
}
|
|
|
|
this._commands.set(id, { callback, thisArg, description });
|
|
if (global) {
|
|
this._proxy.$registerCommand(id);
|
|
}
|
|
|
|
return new extHostTypes.Disposable(() => {
|
|
if (this._commands.delete(id)) {
|
|
if (global) {
|
|
this._proxy.$unregisterCommand(id);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
executeCommand<T>(id: string, ...args: any[]): Thenable<T> {
|
|
this._logService.trace('ExtHostCommands#executeCommand', id);
|
|
|
|
if (this._commands.has(id)) {
|
|
// we stay inside the extension host and support
|
|
// to pass any kind of parameters around
|
|
return this._executeContributedCommand<T>(id, args);
|
|
|
|
} else {
|
|
// automagically convert some argument types
|
|
|
|
args = cloneAndChange(args, function (value) {
|
|
if (value instanceof extHostTypes.Position) {
|
|
return extHostTypeConverter.fromPosition(value);
|
|
}
|
|
if (value instanceof extHostTypes.Range) {
|
|
return extHostTypeConverter.fromRange(value);
|
|
}
|
|
if (value instanceof extHostTypes.Location) {
|
|
return extHostTypeConverter.location.from(value);
|
|
}
|
|
if (!Array.isArray(value)) {
|
|
return value;
|
|
}
|
|
});
|
|
|
|
return this._proxy.$executeCommand<T>(id, args).then(result => revive(result, 0));
|
|
}
|
|
}
|
|
|
|
private _executeContributedCommand<T>(id: string, args: any[]): Thenable<T> {
|
|
let { callback, thisArg, description } = this._commands.get(id);
|
|
if (description) {
|
|
for (let i = 0; i < description.args.length; i++) {
|
|
try {
|
|
validateConstraint(args[i], description.args[i].constraint);
|
|
} catch (err) {
|
|
// {{ SQL CARBON EDIT }} - Add type assertion to fix build break
|
|
return <any>Promise.reject(new Error(`Running the contributed command:'${id}' failed. Illegal argument '${description.args[i].name}' - ${description.args[i].description}`));
|
|
}
|
|
}
|
|
}
|
|
|
|
try {
|
|
let result = callback.apply(thisArg, args);
|
|
return Promise.resolve(result);
|
|
} catch (err) {
|
|
this._logService.error(err, id);
|
|
// {{ SQL CARBON EDIT }} - Add type assertion to fix build break
|
|
return <any>Promise.reject(new Error(`Running the contributed command:'${id}' failed.`));
|
|
}
|
|
}
|
|
|
|
$executeContributedCommand<T>(id: string, ...args: any[]): Thenable<T> {
|
|
if (!this._commands.has(id)) {
|
|
// {{ SQL CARBON EDIT }} - Add type assertion to fix build break
|
|
return <any>Promise.reject(new Error(`Contributed command '${id}' does not exist.`));
|
|
} else {
|
|
args = args.map(arg => this._argumentProcessors.reduce((r, p) => p.processArgument(r), arg));
|
|
return this._executeContributedCommand(id, args);
|
|
}
|
|
}
|
|
|
|
getCommands(filterUnderscoreCommands: boolean = false): Thenable<string[]> {
|
|
this._logService.trace('ExtHostCommands#getCommands', filterUnderscoreCommands);
|
|
|
|
return this._proxy.$getCommands().then(result => {
|
|
if (filterUnderscoreCommands) {
|
|
result = result.filter(command => command[0] !== '_');
|
|
}
|
|
return result;
|
|
});
|
|
}
|
|
|
|
$getContributedCommandHandlerDescriptions(): Thenable<{ [id: string]: string | ICommandHandlerDescription }> {
|
|
const result: { [id: string]: string | ICommandHandlerDescription } = Object.create(null);
|
|
this._commands.forEach((command, id) => {
|
|
let { description } = command;
|
|
if (description) {
|
|
result[id] = description;
|
|
}
|
|
});
|
|
return Promise.resolve(result);
|
|
}
|
|
}
|
|
|
|
|
|
export class CommandsConverter {
|
|
|
|
private readonly _delegatingCommandId: string;
|
|
private _commands: ExtHostCommands;
|
|
private _heap: ExtHostHeapService;
|
|
|
|
// --- conversion between internal and api commands
|
|
constructor(commands: ExtHostCommands, heap: ExtHostHeapService) {
|
|
this._delegatingCommandId = `_internal_command_delegation_${Date.now()}`;
|
|
this._commands = commands;
|
|
this._heap = heap;
|
|
this._commands.registerCommand(true, this._delegatingCommandId, this._executeConvertedCommand, this);
|
|
}
|
|
|
|
toInternal(command: vscode.Command): modes.Command {
|
|
|
|
if (!command) {
|
|
return undefined;
|
|
}
|
|
|
|
const result: modes.Command = {
|
|
id: command.command,
|
|
title: command.title
|
|
};
|
|
|
|
if (command.command && !isFalsyOrEmpty(command.arguments)) {
|
|
// we have a contributed command with arguments. that
|
|
// means we don't want to send the arguments around
|
|
|
|
const id = this._heap.keep(command);
|
|
ObjectIdentifier.mixin(result, id);
|
|
|
|
result.id = this._delegatingCommandId;
|
|
result.arguments = [id];
|
|
}
|
|
|
|
if (command.tooltip) {
|
|
result.tooltip = command.tooltip;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
fromInternal(command: modes.Command): vscode.Command {
|
|
|
|
if (!command) {
|
|
return undefined;
|
|
}
|
|
|
|
const id = ObjectIdentifier.of(command);
|
|
if (typeof id === 'number') {
|
|
return this._heap.get<vscode.Command>(id);
|
|
|
|
} else {
|
|
return {
|
|
command: command.id,
|
|
title: command.title,
|
|
arguments: command.arguments
|
|
};
|
|
}
|
|
}
|
|
|
|
private _executeConvertedCommand<R>(...args: any[]): Thenable<R> {
|
|
const actualCmd = this._heap.get<vscode.Command>(args[0]);
|
|
return this._commands.executeCommand(actualCmd.command, ...actualCmd.arguments);
|
|
}
|
|
|
|
}
|