mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-11 02:32:35 -05:00
* Merge from vscode 37cb23d3dd4f9433d56d4ba5ea3203580719a0bd * fix issues with merges * bump node version in azpipe * replace license headers * remove duplicate launch task * fix build errors * fix build errors * fix tslint issues * working through package and linux build issues * more work * wip * fix packaged builds * working through linux build errors * wip * wip * wip * fix mac and linux file limits * iterate linux pipeline * disable editor typing * revert series to parallel * remove optimize vscode from linux * fix linting issues * revert testing change * add work round for new node * readd packaging for extensions * fix issue with angular not resolving decorator dependencies
347 lines
9.6 KiB
TypeScript
347 lines
9.6 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { isNonEmptyArray } from 'vs/base/common/arrays';
|
|
import { MenuRegistry } from 'vs/platform/actions/common/actions';
|
|
import { CommandsRegistry, ICommandHandlerDescription } from 'vs/platform/commands/common/commands';
|
|
import { ContextKeyAndExpr, ContextKeyExpr, IContext } from 'vs/platform/contextkey/common/contextkey';
|
|
import { ResolvedKeybindingItem } from 'vs/platform/keybinding/common/resolvedKeybindingItem';
|
|
|
|
export interface IResolveResult {
|
|
enterChord: boolean;
|
|
commandId: string | null;
|
|
commandArgs: any;
|
|
bubble: boolean;
|
|
}
|
|
|
|
export class KeybindingResolver {
|
|
private readonly _defaultKeybindings: ResolvedKeybindingItem[];
|
|
private readonly _keybindings: ResolvedKeybindingItem[];
|
|
private readonly _defaultBoundCommands: Map<string, boolean>;
|
|
private readonly _map: Map<string, ResolvedKeybindingItem[]>;
|
|
private readonly _lookupMap: Map<string, ResolvedKeybindingItem[]>;
|
|
|
|
constructor(defaultKeybindings: ResolvedKeybindingItem[], overrides: ResolvedKeybindingItem[]) {
|
|
this._defaultKeybindings = defaultKeybindings;
|
|
|
|
this._defaultBoundCommands = new Map<string, boolean>();
|
|
for (let i = 0, len = defaultKeybindings.length; i < len; i++) {
|
|
const command = defaultKeybindings[i].command;
|
|
if (command) {
|
|
this._defaultBoundCommands.set(command, true);
|
|
}
|
|
}
|
|
|
|
this._map = new Map<string, ResolvedKeybindingItem[]>();
|
|
this._lookupMap = new Map<string, ResolvedKeybindingItem[]>();
|
|
|
|
this._keybindings = KeybindingResolver.combine(defaultKeybindings, overrides);
|
|
for (let i = 0, len = this._keybindings.length; i < len; i++) {
|
|
let k = this._keybindings[i];
|
|
if (k.keypressParts.length === 0) {
|
|
// unbound
|
|
continue;
|
|
}
|
|
|
|
// TODO@chords
|
|
this._addKeyPress(k.keypressParts[0], k);
|
|
}
|
|
}
|
|
|
|
private static _isTargetedForRemoval(defaultKb: ResolvedKeybindingItem, keypressFirstPart: string | null, keypressChordPart: string | null, command: string, when: ContextKeyExpr | null): boolean {
|
|
if (defaultKb.command !== command) {
|
|
return false;
|
|
}
|
|
// TODO@chords
|
|
if (keypressFirstPart && defaultKb.keypressParts[0] !== keypressFirstPart) {
|
|
return false;
|
|
}
|
|
// TODO@chords
|
|
if (keypressChordPart && defaultKb.keypressParts[1] !== keypressChordPart) {
|
|
return false;
|
|
}
|
|
if (when) {
|
|
if (!defaultKb.when) {
|
|
return false;
|
|
}
|
|
if (!when.equals(defaultKb.when)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
|
|
}
|
|
|
|
/**
|
|
* Looks for rules containing -command in `overrides` and removes them directly from `defaults`.
|
|
*/
|
|
public static combine(defaults: ResolvedKeybindingItem[], rawOverrides: ResolvedKeybindingItem[]): ResolvedKeybindingItem[] {
|
|
defaults = defaults.slice(0);
|
|
let overrides: ResolvedKeybindingItem[] = [];
|
|
for (const override of rawOverrides) {
|
|
if (!override.command || override.command.length === 0 || override.command.charAt(0) !== '-') {
|
|
overrides.push(override);
|
|
continue;
|
|
}
|
|
|
|
const command = override.command.substr(1);
|
|
// TODO@chords
|
|
const keypressFirstPart = override.keypressParts[0];
|
|
const keypressChordPart = override.keypressParts[1];
|
|
const when = override.when;
|
|
for (let j = defaults.length - 1; j >= 0; j--) {
|
|
if (this._isTargetedForRemoval(defaults[j], keypressFirstPart, keypressChordPart, command, when)) {
|
|
defaults.splice(j, 1);
|
|
}
|
|
}
|
|
}
|
|
return defaults.concat(overrides);
|
|
}
|
|
|
|
private _addKeyPress(keypress: string, item: ResolvedKeybindingItem): void {
|
|
|
|
const conflicts = this._map.get(keypress);
|
|
|
|
if (typeof conflicts === 'undefined') {
|
|
// There is no conflict so far
|
|
this._map.set(keypress, [item]);
|
|
this._addToLookupMap(item);
|
|
return;
|
|
}
|
|
|
|
for (let i = conflicts.length - 1; i >= 0; i--) {
|
|
let conflict = conflicts[i];
|
|
|
|
if (conflict.command === item.command) {
|
|
continue;
|
|
}
|
|
|
|
const conflictIsChord = (conflict.keypressParts.length > 1);
|
|
const itemIsChord = (item.keypressParts.length > 1);
|
|
|
|
// TODO@chords
|
|
if (conflictIsChord && itemIsChord && conflict.keypressParts[1] !== item.keypressParts[1]) {
|
|
// The conflict only shares the chord start with this command
|
|
continue;
|
|
}
|
|
|
|
if (KeybindingResolver.whenIsEntirelyIncluded(conflict.when, item.when)) {
|
|
// `item` completely overwrites `conflict`
|
|
// Remove conflict from the lookupMap
|
|
this._removeFromLookupMap(conflict);
|
|
}
|
|
}
|
|
|
|
conflicts.push(item);
|
|
this._addToLookupMap(item);
|
|
}
|
|
|
|
private _addToLookupMap(item: ResolvedKeybindingItem): void {
|
|
if (!item.command) {
|
|
return;
|
|
}
|
|
|
|
let arr = this._lookupMap.get(item.command);
|
|
if (typeof arr === 'undefined') {
|
|
arr = [item];
|
|
this._lookupMap.set(item.command, arr);
|
|
} else {
|
|
arr.push(item);
|
|
}
|
|
}
|
|
|
|
private _removeFromLookupMap(item: ResolvedKeybindingItem): void {
|
|
if (!item.command) {
|
|
return;
|
|
}
|
|
let arr = this._lookupMap.get(item.command);
|
|
if (typeof arr === 'undefined') {
|
|
return;
|
|
}
|
|
for (let i = 0, len = arr.length; i < len; i++) {
|
|
if (arr[i] === item) {
|
|
arr.splice(i, 1);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns true if it is provable `a` implies `b`.
|
|
* **Precondition**: Assumes `a` and `b` are normalized!
|
|
*/
|
|
public static whenIsEntirelyIncluded(a: ContextKeyExpr | null, b: ContextKeyExpr | null): boolean {
|
|
if (!b) {
|
|
return true;
|
|
}
|
|
if (!a) {
|
|
return false;
|
|
}
|
|
|
|
const aExpressions: ContextKeyExpr[] = ((a instanceof ContextKeyAndExpr) ? a.expr : [a]);
|
|
const bExpressions: ContextKeyExpr[] = ((b instanceof ContextKeyAndExpr) ? b.expr : [b]);
|
|
|
|
let aIndex = 0;
|
|
for (const bExpr of bExpressions) {
|
|
let bExprMatched = false;
|
|
while (!bExprMatched && aIndex < aExpressions.length) {
|
|
let aExpr = aExpressions[aIndex];
|
|
if (aExpr.equals(bExpr)) {
|
|
bExprMatched = true;
|
|
}
|
|
aIndex++;
|
|
}
|
|
|
|
if (!bExprMatched) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public getDefaultBoundCommands(): Map<string, boolean> {
|
|
return this._defaultBoundCommands;
|
|
}
|
|
|
|
public getDefaultKeybindings(): ResolvedKeybindingItem[] {
|
|
return this._defaultKeybindings;
|
|
}
|
|
|
|
public getKeybindings(): ResolvedKeybindingItem[] {
|
|
return this._keybindings;
|
|
}
|
|
|
|
public lookupKeybindings(commandId: string): ResolvedKeybindingItem[] {
|
|
let items = this._lookupMap.get(commandId);
|
|
if (typeof items === 'undefined' || items.length === 0) {
|
|
return [];
|
|
}
|
|
|
|
// Reverse to get the most specific item first
|
|
let result: ResolvedKeybindingItem[] = [], resultLen = 0;
|
|
for (let i = items.length - 1; i >= 0; i--) {
|
|
result[resultLen++] = items[i];
|
|
}
|
|
return result;
|
|
}
|
|
|
|
public lookupPrimaryKeybinding(commandId: string): ResolvedKeybindingItem | null {
|
|
let items = this._lookupMap.get(commandId);
|
|
if (typeof items === 'undefined' || items.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return items[items.length - 1];
|
|
}
|
|
|
|
public resolve(context: IContext, currentChord: string | null, keypress: string): IResolveResult | null {
|
|
let lookupMap: ResolvedKeybindingItem[] | null = null;
|
|
|
|
if (currentChord !== null) {
|
|
// Fetch all chord bindings for `currentChord`
|
|
|
|
const candidates = this._map.get(currentChord);
|
|
if (typeof candidates === 'undefined') {
|
|
// No chords starting with `currentChord`
|
|
return null;
|
|
}
|
|
|
|
lookupMap = [];
|
|
for (let i = 0, len = candidates.length; i < len; i++) {
|
|
let candidate = candidates[i];
|
|
// TODO@chords
|
|
if (candidate.keypressParts[1] === keypress) {
|
|
lookupMap.push(candidate);
|
|
}
|
|
}
|
|
} else {
|
|
const candidates = this._map.get(keypress);
|
|
if (typeof candidates === 'undefined') {
|
|
// No bindings with `keypress`
|
|
return null;
|
|
}
|
|
|
|
lookupMap = candidates;
|
|
}
|
|
|
|
let result = this._findCommand(context, lookupMap);
|
|
if (!result) {
|
|
return null;
|
|
}
|
|
|
|
// TODO@chords
|
|
if (currentChord === null && result.keypressParts.length > 1 && result.keypressParts[1] !== null) {
|
|
return {
|
|
enterChord: true,
|
|
commandId: null,
|
|
commandArgs: null,
|
|
bubble: false
|
|
};
|
|
}
|
|
|
|
return {
|
|
enterChord: false,
|
|
commandId: result.command,
|
|
commandArgs: result.commandArgs,
|
|
bubble: result.bubble
|
|
};
|
|
}
|
|
|
|
private _findCommand(context: IContext, matches: ResolvedKeybindingItem[]): ResolvedKeybindingItem | null {
|
|
for (let i = matches.length - 1; i >= 0; i--) {
|
|
let k = matches[i];
|
|
|
|
if (!KeybindingResolver.contextMatchesRules(context, k.when)) {
|
|
continue;
|
|
}
|
|
|
|
return k;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public static contextMatchesRules(context: IContext, rules: ContextKeyExpr | null): boolean {
|
|
if (!rules) {
|
|
return true;
|
|
}
|
|
return rules.evaluate(context);
|
|
}
|
|
|
|
public static getAllUnboundCommands(boundCommands: Map<string, boolean>): string[] {
|
|
const unboundCommands: string[] = [];
|
|
const seenMap: Map<string, boolean> = new Map<string, boolean>();
|
|
const addCommand = (id: string, includeCommandWithArgs: boolean) => {
|
|
if (seenMap.has(id)) {
|
|
return;
|
|
}
|
|
seenMap.set(id, true);
|
|
if (id[0] === '_' || id.indexOf('vscode.') === 0) { // private command
|
|
return;
|
|
}
|
|
if (boundCommands.get(id) === true) {
|
|
return;
|
|
}
|
|
if (!includeCommandWithArgs) {
|
|
const command = CommandsRegistry.getCommand(id);
|
|
if (command && typeof command.description === 'object'
|
|
&& isNonEmptyArray((<ICommandHandlerDescription>command.description).args)) { // command with args
|
|
return;
|
|
}
|
|
}
|
|
unboundCommands.push(id);
|
|
};
|
|
for (const id in MenuRegistry.getCommands()) {
|
|
addCommand(id, true);
|
|
}
|
|
for (const id in CommandsRegistry.getCommands()) {
|
|
addCommand(id, false);
|
|
}
|
|
|
|
return unboundCommands;
|
|
}
|
|
}
|