mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-15 10:58:31 -05:00
* Merge from vscode a348d103d1256a06a2c9b3f9b406298a9fef6898 * Fixes and cleanup * Distro * Fix hygiene yarn * delete no yarn lock changes file * Fix hygiene * Fix layer check * Fix CI * Skip lib checks * Remove tests deleted in vs code * Fix tests * Distro * Fix tests and add removed extension point * Skip failing notebook tests for now * Disable broken tests and cleanup build folder * Update yarn.lock and fix smoke tests * Bump sqlite * fix contributed actions and file spacing * Fix user data path * Update yarn.locks Co-authored-by: ADS Merger <karlb@microsoft.com>
112 lines
3.0 KiB
TypeScript
112 lines
3.0 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 { IRelativePattern, match as matchGlobPattern } from 'vs/base/common/glob';
|
|
import { URI } from 'vs/base/common/uri'; // TODO@Alex
|
|
import { normalize } from 'vs/base/common/path';
|
|
|
|
export interface LanguageFilter {
|
|
readonly language?: string;
|
|
readonly scheme?: string;
|
|
readonly pattern?: string | IRelativePattern;
|
|
/**
|
|
* This provider is implemented in the UI thread.
|
|
*/
|
|
readonly hasAccessToAllModels?: boolean;
|
|
readonly exclusive?: boolean;
|
|
}
|
|
|
|
export type LanguageSelector = string | LanguageFilter | ReadonlyArray<string | LanguageFilter>;
|
|
|
|
export function score(selector: LanguageSelector | undefined, candidateUri: URI, candidateLanguage: string, candidateIsSynchronized: boolean): number {
|
|
|
|
if (Array.isArray(selector)) {
|
|
// array -> take max individual value
|
|
let ret = 0;
|
|
for (const filter of selector) {
|
|
const value = score(filter, candidateUri, candidateLanguage, candidateIsSynchronized);
|
|
if (value === 10) {
|
|
return value; // already at the highest
|
|
}
|
|
if (value > ret) {
|
|
ret = value;
|
|
}
|
|
}
|
|
return ret;
|
|
|
|
} else if (typeof selector === 'string') {
|
|
|
|
if (!candidateIsSynchronized) {
|
|
return 0;
|
|
}
|
|
|
|
// short-hand notion, desugars to
|
|
// 'fooLang' -> { language: 'fooLang'}
|
|
// '*' -> { language: '*' }
|
|
if (selector === '*') {
|
|
return 5;
|
|
} else if (selector === candidateLanguage) {
|
|
return 10;
|
|
} else {
|
|
return 0;
|
|
}
|
|
|
|
} else if (selector) {
|
|
// filter -> select accordingly, use defaults for scheme
|
|
const { language, pattern, scheme, hasAccessToAllModels } = selector as LanguageFilter; // TODO: microsoft/TypeScript#42768
|
|
|
|
if (!candidateIsSynchronized && !hasAccessToAllModels) {
|
|
return 0;
|
|
}
|
|
|
|
let ret = 0;
|
|
|
|
if (scheme) {
|
|
if (scheme === candidateUri.scheme) {
|
|
ret = 10;
|
|
} else if (scheme === '*') {
|
|
ret = 5;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
if (language) {
|
|
if (language === candidateLanguage) {
|
|
ret = 10;
|
|
} else if (language === '*') {
|
|
ret = Math.max(ret, 5);
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
if (pattern) {
|
|
let normalizedPattern: string | IRelativePattern;
|
|
if (typeof pattern === 'string') {
|
|
normalizedPattern = pattern;
|
|
} else {
|
|
// Since this pattern has a `base` property, we need
|
|
// to normalize this path first before passing it on
|
|
// because we will compare it against `Uri.fsPath`
|
|
// which uses platform specific separators.
|
|
// Refs: https://github.com/microsoft/vscode/issues/99938
|
|
normalizedPattern = { ...pattern, base: normalize(pattern.base) };
|
|
}
|
|
|
|
if (normalizedPattern === candidateUri.fsPath || matchGlobPattern(normalizedPattern, candidateUri.fsPath)) {
|
|
ret = 10;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|