mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-11 02:32:35 -05:00
324 lines
9.6 KiB
TypeScript
324 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.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
|
|
import { onUnexpectedError } from 'vs/base/common/errors';
|
|
import * as mime from 'vs/base/common/mime';
|
|
import * as strings from 'vs/base/common/strings';
|
|
import { Registry } from 'vs/platform/registry/common/platform';
|
|
import { ModesRegistry } from 'vs/editor/common/modes/modesRegistry';
|
|
import { ILanguageExtensionPoint } from 'vs/editor/common/services/modeService';
|
|
import { LanguageId, LanguageIdentifier } from 'vs/editor/common/modes';
|
|
import { NULL_MODE_ID, NULL_LANGUAGE_IDENTIFIER } from 'vs/editor/common/modes/nullMode';
|
|
import { IConfigurationRegistry, Extensions } from 'vs/platform/configuration/common/configurationRegistry';
|
|
|
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
|
|
export interface IResolvedLanguage {
|
|
identifier: LanguageIdentifier;
|
|
name: string;
|
|
mimetypes: string[];
|
|
aliases: string[];
|
|
extensions: string[];
|
|
filenames: string[];
|
|
configurationFiles: string[];
|
|
}
|
|
|
|
export class LanguagesRegistry {
|
|
|
|
private _nextLanguageId: number;
|
|
private _languages: { [id: string]: IResolvedLanguage; };
|
|
private _languageIds: string[];
|
|
|
|
private _mimeTypesMap: { [mimeType: string]: LanguageIdentifier; };
|
|
private _nameMap: { [name: string]: LanguageIdentifier; };
|
|
private _lowercaseNameMap: { [name: string]: LanguageIdentifier; };
|
|
|
|
private _warnOnOverwrite: boolean;
|
|
|
|
constructor(useModesRegistry = true, warnOnOverwrite = false) {
|
|
this._nextLanguageId = 1;
|
|
this._languages = {};
|
|
this._mimeTypesMap = {};
|
|
this._nameMap = {};
|
|
this._lowercaseNameMap = {};
|
|
this._languageIds = [];
|
|
this._warnOnOverwrite = warnOnOverwrite;
|
|
|
|
if (useModesRegistry) {
|
|
this._registerLanguages(ModesRegistry.getLanguages());
|
|
ModesRegistry.onDidAddLanguages((m) => this._registerLanguages(m));
|
|
}
|
|
}
|
|
|
|
_registerLanguages(desc: ILanguageExtensionPoint[]): void {
|
|
if (desc.length === 0) {
|
|
return;
|
|
}
|
|
|
|
for (let i = 0; i < desc.length; i++) {
|
|
this._registerLanguage(desc[i]);
|
|
}
|
|
|
|
// Rebuild fast path maps
|
|
this._mimeTypesMap = {};
|
|
this._nameMap = {};
|
|
this._lowercaseNameMap = {};
|
|
Object.keys(this._languages).forEach((langId) => {
|
|
let language = this._languages[langId];
|
|
if (language.name) {
|
|
this._nameMap[language.name] = language.identifier;
|
|
}
|
|
language.aliases.forEach((alias) => {
|
|
this._lowercaseNameMap[alias.toLowerCase()] = language.identifier;
|
|
});
|
|
language.mimetypes.forEach((mimetype) => {
|
|
this._mimeTypesMap[mimetype] = language.identifier;
|
|
});
|
|
});
|
|
|
|
Registry.as<IConfigurationRegistry>(Extensions.Configuration).registerOverrideIdentifiers(ModesRegistry.getLanguages().map(language => language.id));
|
|
}
|
|
|
|
private _registerLanguage(lang: ILanguageExtensionPoint): void {
|
|
const langId = lang.id;
|
|
|
|
let resolvedLanguage: IResolvedLanguage = null;
|
|
if (hasOwnProperty.call(this._languages, langId)) {
|
|
resolvedLanguage = this._languages[langId];
|
|
} else {
|
|
let languageId = this._nextLanguageId++;
|
|
resolvedLanguage = {
|
|
identifier: new LanguageIdentifier(langId, languageId),
|
|
name: null,
|
|
mimetypes: [],
|
|
aliases: [],
|
|
extensions: [],
|
|
filenames: [],
|
|
configurationFiles: []
|
|
};
|
|
this._languageIds[languageId] = langId;
|
|
this._languages[langId] = resolvedLanguage;
|
|
}
|
|
|
|
this._mergeLanguage(resolvedLanguage, lang);
|
|
}
|
|
|
|
private _mergeLanguage(resolvedLanguage: IResolvedLanguage, lang: ILanguageExtensionPoint): void {
|
|
const langId = lang.id;
|
|
|
|
let primaryMime: string = null;
|
|
|
|
if (typeof lang.mimetypes !== 'undefined' && Array.isArray(lang.mimetypes)) {
|
|
for (let i = 0; i < lang.mimetypes.length; i++) {
|
|
if (!primaryMime) {
|
|
primaryMime = lang.mimetypes[i];
|
|
}
|
|
resolvedLanguage.mimetypes.push(lang.mimetypes[i]);
|
|
}
|
|
}
|
|
|
|
if (!primaryMime) {
|
|
primaryMime = `text/x-${langId}`;
|
|
resolvedLanguage.mimetypes.push(primaryMime);
|
|
}
|
|
|
|
if (Array.isArray(lang.extensions)) {
|
|
for (let extension of lang.extensions) {
|
|
mime.registerTextMime({ id: langId, mime: primaryMime, extension: extension }, this._warnOnOverwrite);
|
|
if (!resolvedLanguage.extensions.includes(extension)){
|
|
resolvedLanguage.extensions.push(extension);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (Array.isArray(lang.filenames)) {
|
|
for (let filename of lang.filenames) {
|
|
mime.registerTextMime({ id: langId, mime: primaryMime, filename: filename }, this._warnOnOverwrite);
|
|
resolvedLanguage.filenames.push(filename);
|
|
}
|
|
}
|
|
|
|
if (Array.isArray(lang.filenamePatterns)) {
|
|
for (let filenamePattern of lang.filenamePatterns) {
|
|
mime.registerTextMime({ id: langId, mime: primaryMime, filepattern: filenamePattern }, this._warnOnOverwrite);
|
|
}
|
|
}
|
|
|
|
if (typeof lang.firstLine === 'string' && lang.firstLine.length > 0) {
|
|
let firstLineRegexStr = lang.firstLine;
|
|
if (firstLineRegexStr.charAt(0) !== '^') {
|
|
firstLineRegexStr = '^' + firstLineRegexStr;
|
|
}
|
|
try {
|
|
let firstLineRegex = new RegExp(firstLineRegexStr);
|
|
if (!strings.regExpLeadsToEndlessLoop(firstLineRegex)) {
|
|
mime.registerTextMime({ id: langId, mime: primaryMime, firstline: firstLineRegex }, this._warnOnOverwrite);
|
|
}
|
|
} catch (err) {
|
|
// Most likely, the regex was bad
|
|
onUnexpectedError(err);
|
|
}
|
|
}
|
|
|
|
resolvedLanguage.aliases.push(langId);
|
|
|
|
let langAliases: string[] = null;
|
|
if (typeof lang.aliases !== 'undefined' && Array.isArray(lang.aliases)) {
|
|
if (lang.aliases.length === 0) {
|
|
// signal that this language should not get a name
|
|
langAliases = [null];
|
|
} else {
|
|
langAliases = lang.aliases;
|
|
}
|
|
}
|
|
|
|
if (langAliases !== null) {
|
|
for (let i = 0; i < langAliases.length; i++) {
|
|
if (!langAliases[i] || langAliases[i].length === 0) {
|
|
continue;
|
|
}
|
|
resolvedLanguage.aliases.push(langAliases[i]);
|
|
}
|
|
}
|
|
|
|
let containsAliases = (langAliases !== null && langAliases.length > 0);
|
|
if (containsAliases && langAliases[0] === null) {
|
|
// signal that this language should not get a name
|
|
} else {
|
|
let bestName = (containsAliases ? langAliases[0] : null) || langId;
|
|
if (containsAliases || !resolvedLanguage.name) {
|
|
resolvedLanguage.name = bestName;
|
|
}
|
|
}
|
|
|
|
if (typeof lang.configuration === 'string') {
|
|
resolvedLanguage.configurationFiles.push(lang.configuration);
|
|
}
|
|
}
|
|
|
|
public isRegisteredMode(mimetypeOrModeId: string): boolean {
|
|
// Is this a known mime type ?
|
|
if (hasOwnProperty.call(this._mimeTypesMap, mimetypeOrModeId)) {
|
|
return true;
|
|
}
|
|
// Is this a known mode id ?
|
|
return hasOwnProperty.call(this._languages, mimetypeOrModeId);
|
|
}
|
|
|
|
public getRegisteredModes(): string[] {
|
|
return Object.keys(this._languages);
|
|
}
|
|
|
|
public getRegisteredLanguageNames(): string[] {
|
|
return Object.keys(this._nameMap);
|
|
}
|
|
|
|
public getLanguageName(modeId: string): string {
|
|
if (!hasOwnProperty.call(this._languages, modeId)) {
|
|
return null;
|
|
}
|
|
return this._languages[modeId].name;
|
|
}
|
|
|
|
public getModeIdForLanguageNameLowercase(languageNameLower: string): string {
|
|
if (!hasOwnProperty.call(this._lowercaseNameMap, languageNameLower)) {
|
|
return null;
|
|
}
|
|
return this._lowercaseNameMap[languageNameLower].language;
|
|
}
|
|
|
|
public getConfigurationFiles(modeId: string): string[] {
|
|
if (!hasOwnProperty.call(this._languages, modeId)) {
|
|
return [];
|
|
}
|
|
return this._languages[modeId].configurationFiles || [];
|
|
}
|
|
|
|
public getMimeForMode(modeId: string): string {
|
|
if (!hasOwnProperty.call(this._languages, modeId)) {
|
|
return null;
|
|
}
|
|
const language = this._languages[modeId];
|
|
return (language.mimetypes[0] || null);
|
|
}
|
|
|
|
public extractModeIds(commaSeparatedMimetypesOrCommaSeparatedIds: string): string[] {
|
|
if (!commaSeparatedMimetypesOrCommaSeparatedIds) {
|
|
return [];
|
|
}
|
|
|
|
return (
|
|
commaSeparatedMimetypesOrCommaSeparatedIds.
|
|
split(',').
|
|
map((mimeTypeOrId) => mimeTypeOrId.trim()).
|
|
map((mimeTypeOrId) => {
|
|
if (hasOwnProperty.call(this._mimeTypesMap, mimeTypeOrId)) {
|
|
return this._mimeTypesMap[mimeTypeOrId].language;
|
|
}
|
|
return mimeTypeOrId;
|
|
}).
|
|
filter((modeId) => {
|
|
return hasOwnProperty.call(this._languages, modeId);
|
|
})
|
|
);
|
|
}
|
|
|
|
public getLanguageIdentifier(_modeId: string | LanguageId): LanguageIdentifier {
|
|
if (_modeId === NULL_MODE_ID || _modeId === LanguageId.Null) {
|
|
return NULL_LANGUAGE_IDENTIFIER;
|
|
}
|
|
|
|
let modeId: string;
|
|
if (typeof _modeId === 'string') {
|
|
modeId = _modeId;
|
|
} else {
|
|
modeId = this._languageIds[_modeId];
|
|
if (!modeId) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
if (!hasOwnProperty.call(this._languages, modeId)) {
|
|
return null;
|
|
}
|
|
return this._languages[modeId].identifier;
|
|
}
|
|
|
|
public getModeIdsFromLanguageName(languageName: string): string[] {
|
|
if (!languageName) {
|
|
return [];
|
|
}
|
|
if (hasOwnProperty.call(this._nameMap, languageName)) {
|
|
return [this._nameMap[languageName].language];
|
|
}
|
|
return [];
|
|
}
|
|
|
|
public getModeIdsFromFilenameOrFirstLine(filename: string, firstLine?: string): string[] {
|
|
if (!filename && !firstLine) {
|
|
return [];
|
|
}
|
|
var mimeTypes = mime.guessMimeTypes(filename, firstLine);
|
|
return this.extractModeIds(mimeTypes.join(','));
|
|
}
|
|
|
|
public getExtensions(languageName: string): string[] {
|
|
if (!hasOwnProperty.call(this._nameMap, languageName)) {
|
|
return [];
|
|
}
|
|
const languageId = this._nameMap[languageName];
|
|
return this._languages[languageId.language].extensions;
|
|
}
|
|
|
|
public getFilenames(languageName: string): string[] {
|
|
if (!hasOwnProperty.call(this._nameMap, languageName)) {
|
|
return [];
|
|
}
|
|
const languageId = this._nameMap[languageName];
|
|
return this._languages[languageId.language].filenames;
|
|
}
|
|
}
|