/** ****************************************************************************** * Copyright (C) 2018 Ericsson and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. * * This Source Code may also be made available under the following Secondary * Licenses when the conditions for such availability set forth in the Eclipse * Public License v. 2.0 are satisfied: GNU General Public License, version 2 * with the GNU Classpath Exception which is available at * https://www.gnu.org/software/classpath/license.html. * * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ // Some code copied and modified from https://github.com/eclipse-theia/theia/tree/v1.14.0/packages/monaco/src/browser/textmate/textmate-registry.ts import { IGrammarConfiguration } from 'vscode-textmate'; import { Injectable } from '@opensumi/di'; import { URI, getDebugLogger } from '@opensumi/ide-core-common'; import { TokenizerOption } from './textmate-tokenizer'; export interface TextmateGrammarConfiguration extends IGrammarConfiguration { /** * Optional options to further refine the tokenization of the grammar. */ readonly tokenizerOption?: TokenizerOption; } export interface GrammarDefinitionProvider { getGrammarDefinition(): Promise; getInjections?(scopeName: string): string[]; } export interface GrammarDefinition { format: 'json' | 'plist'; content?: object | string; location: URI; } @Injectable() export class TextmateRegistry { readonly scopeToProvider = new Map(); readonly languageToConfig = new Map TextmateGrammarConfiguration>(); readonly languageIdToScope = new Map(); // 将语法定义描述绑定到某一个Scope:source.json.comments registerTextmateGrammarScope(scope: string, description: GrammarDefinitionProvider) { if (this.scopeToProvider.has(scope)) { getDebugLogger().warn(new Error(`a registered grammar provider for '${scope}' scope is overridden`)); } this.scopeToProvider.set(scope, description); return () => { this.scopeToProvider.delete(scope); }; } getProvider(scope: string): GrammarDefinitionProvider | undefined { return this.scopeToProvider.get(scope); } mapLanguageIdToTextmateGrammar(languageId: string, scope: string) { const existingScope = this.getScope(languageId); if (typeof existingScope === 'string') { getDebugLogger().warn( new Error(`'${languageId}' language is remapped from '${existingScope}' to '${scope}' scope`), ); } this.languageIdToScope.set(languageId, scope); return () => { this.languageIdToScope.delete(languageId); }; } getScope(languageId: string): string | undefined { return this.languageIdToScope.get(languageId); } getLanguageId(scope: string): string | undefined { for (const key of this.languageIdToScope.keys()) { if (this.languageIdToScope.get(key) === scope) { return key; } } return undefined; } registerGrammarConfiguration(languageId: string, getConfig: () => TextmateGrammarConfiguration) { if (this.languageToConfig.has(languageId)) { // console.warn(new Error(`a registered grammar configuration for '${languageId}' language is overridden`)); } this.languageToConfig.set(languageId, getConfig); return () => { this.languageToConfig.delete(languageId); }; } getGrammarConfiguration(languageId: string): () => TextmateGrammarConfiguration { return this.languageToConfig.get(languageId) || (() => ({})); } }