mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-24 19:56:38 +00:00
399 lines
14 KiB
TypeScript
399 lines
14 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
|
|
import { createConnection, IConnection, TextDocuments, InitializeParams, InitializeResult, RequestType, DocumentRangeFormattingRequest, Disposable, DocumentSelector, TextDocumentPositionParams, ServerCapabilities, Position } from 'vscode-languageserver';
|
|
import { DocumentContext } from 'vscode-html-languageservice';
|
|
import { TextDocument, Diagnostic, DocumentLink, SymbolInformation } from 'vscode-languageserver-types';
|
|
import { getLanguageModes, LanguageModes, Settings } from './modes/languageModes';
|
|
|
|
import { ConfigurationRequest, ConfigurationParams } from 'vscode-languageserver-protocol/lib/protocol.configuration.proposed';
|
|
import { DocumentColorRequest, ServerCapabilities as CPServerCapabilities, ColorInformation, ColorPresentationRequest } from 'vscode-languageserver-protocol/lib/protocol.colorProvider.proposed';
|
|
import { DidChangeWorkspaceFoldersNotification, WorkspaceFolder } from 'vscode-languageserver-protocol/lib/protocol.workspaceFolders.proposed';
|
|
|
|
import { format } from './modes/formatting';
|
|
import { pushAll } from './utils/arrays';
|
|
import { endsWith, startsWith } from './utils/strings';
|
|
|
|
import * as url from 'url';
|
|
import * as path from 'path';
|
|
import uri from 'vscode-uri';
|
|
|
|
import * as nls from 'vscode-nls';
|
|
nls.config(process.env['VSCODE_NLS_CONFIG']);
|
|
|
|
namespace TagCloseRequest {
|
|
export const type: RequestType<TextDocumentPositionParams, string | null, any, any> = new RequestType('html/tag');
|
|
}
|
|
|
|
// Create a connection for the server
|
|
let connection: IConnection = createConnection();
|
|
|
|
console.log = connection.console.log.bind(connection.console);
|
|
console.error = connection.console.error.bind(connection.console);
|
|
|
|
// Create a simple text document manager. The text document manager
|
|
// supports full document sync only
|
|
let documents: TextDocuments = new TextDocuments();
|
|
// Make the text document manager listen on the connection
|
|
// for open, change and close text document events
|
|
documents.listen(connection);
|
|
|
|
let workspacePath: string | undefined | null;
|
|
let workspaceFolders: WorkspaceFolder[] | undefined;
|
|
|
|
var languageModes: LanguageModes;
|
|
|
|
let clientSnippetSupport = false;
|
|
let clientDynamicRegisterSupport = false;
|
|
let scopedSettingsSupport = false;
|
|
let workspaceFoldersSupport = false;
|
|
|
|
var globalSettings: Settings = {};
|
|
let documentSettings: { [key: string]: Thenable<Settings> } = {};
|
|
// remove document settings on close
|
|
documents.onDidClose(e => {
|
|
delete documentSettings[e.document.uri];
|
|
});
|
|
|
|
function getDocumentSettings(textDocument: TextDocument, needsDocumentSettings: () => boolean): Thenable<Settings | undefined> {
|
|
if (scopedSettingsSupport && needsDocumentSettings()) {
|
|
let promise = documentSettings[textDocument.uri];
|
|
if (!promise) {
|
|
let scopeUri = textDocument.uri;
|
|
let configRequestParam: ConfigurationParams = { items: [{ scopeUri, section: 'css' }, { scopeUri, section: 'html' }, { scopeUri, section: 'javascript' }] };
|
|
promise = connection.sendRequest(ConfigurationRequest.type, configRequestParam).then(s => ({ css: s[0], html: s[1], javascript: s[2] }));
|
|
documentSettings[textDocument.uri] = promise;
|
|
}
|
|
return promise;
|
|
}
|
|
return Promise.resolve(void 0);
|
|
}
|
|
|
|
// After the server has started the client sends an initilize request. The server receives
|
|
// in the passed params the rootPath of the workspace plus the client capabilites
|
|
connection.onInitialize((params: InitializeParams): InitializeResult => {
|
|
let initializationOptions = params.initializationOptions;
|
|
|
|
workspacePath = params.rootPath;
|
|
workspaceFolders = (<any>params).workspaceFolders;
|
|
|
|
languageModes = getLanguageModes(initializationOptions ? initializationOptions.embeddedLanguages : { css: true, javascript: true });
|
|
documents.onDidClose(e => {
|
|
languageModes.onDocumentRemoved(e.document);
|
|
});
|
|
connection.onShutdown(() => {
|
|
languageModes.dispose();
|
|
});
|
|
|
|
function hasClientCapability(...keys: string[]) {
|
|
let c = <any>params.capabilities;
|
|
for (let i = 0; c && i < keys.length; i++) {
|
|
c = c[keys[i]];
|
|
}
|
|
return !!c;
|
|
}
|
|
|
|
clientSnippetSupport = hasClientCapability('textDocument', 'completion', 'completionItem', 'snippetSupport');
|
|
clientDynamicRegisterSupport = hasClientCapability('workspace', 'symbol', 'dynamicRegistration');
|
|
scopedSettingsSupport = hasClientCapability('workspace', 'configuration');
|
|
workspaceFoldersSupport = hasClientCapability('workspace', 'workspaceFolders');
|
|
let capabilities: ServerCapabilities & CPServerCapabilities = {
|
|
// Tell the client that the server works in FULL text document sync mode
|
|
textDocumentSync: documents.syncKind,
|
|
completionProvider: clientSnippetSupport ? { resolveProvider: true, triggerCharacters: ['.', ':', '<', '"', '=', '/'] } : undefined,
|
|
hoverProvider: true,
|
|
documentHighlightProvider: true,
|
|
documentRangeFormattingProvider: false,
|
|
documentLinkProvider: { resolveProvider: false },
|
|
documentSymbolProvider: true,
|
|
definitionProvider: true,
|
|
signatureHelpProvider: { triggerCharacters: ['('] },
|
|
referencesProvider: true,
|
|
colorProvider: true
|
|
};
|
|
return { capabilities };
|
|
});
|
|
|
|
connection.onInitialized((p) => {
|
|
if (workspaceFoldersSupport) {
|
|
connection.client.register(DidChangeWorkspaceFoldersNotification.type);
|
|
|
|
connection.onNotification(DidChangeWorkspaceFoldersNotification.type, e => {
|
|
let toAdd = e.event.added;
|
|
let toRemove = e.event.removed;
|
|
let updatedFolders = [];
|
|
if (workspaceFolders) {
|
|
for (let folder of workspaceFolders) {
|
|
if (!toRemove.some(r => r.uri === folder.uri) && !toAdd.some(r => r.uri === folder.uri)) {
|
|
updatedFolders.push(folder);
|
|
}
|
|
}
|
|
}
|
|
workspaceFolders = updatedFolders.concat(toAdd);
|
|
});
|
|
}
|
|
});
|
|
|
|
let formatterRegistration: Thenable<Disposable> | null = null;
|
|
|
|
// The settings have changed. Is send on server activation as well.
|
|
connection.onDidChangeConfiguration((change) => {
|
|
globalSettings = change.settings;
|
|
|
|
documentSettings = {}; // reset all document settings
|
|
languageModes.getAllModes().forEach(m => {
|
|
if (m.configure) {
|
|
m.configure(change.settings);
|
|
}
|
|
});
|
|
documents.all().forEach(triggerValidation);
|
|
|
|
// dynamically enable & disable the formatter
|
|
if (clientDynamicRegisterSupport) {
|
|
let enableFormatter = globalSettings && globalSettings.html && globalSettings.html.format && globalSettings.html.format.enable;
|
|
if (enableFormatter) {
|
|
if (!formatterRegistration) {
|
|
let documentSelector: DocumentSelector = [{ language: 'html' }, { language: 'handlebars' }]; // don't register razor, the formatter does more harm than good
|
|
formatterRegistration = connection.client.register(DocumentRangeFormattingRequest.type, { documentSelector });
|
|
}
|
|
} else if (formatterRegistration) {
|
|
formatterRegistration.then(r => r.dispose());
|
|
formatterRegistration = null;
|
|
}
|
|
}
|
|
|
|
});
|
|
|
|
let pendingValidationRequests: { [uri: string]: NodeJS.Timer } = {};
|
|
const validationDelayMs = 500;
|
|
|
|
// The content of a text document has changed. This event is emitted
|
|
// when the text document first opened or when its content has changed.
|
|
documents.onDidChangeContent(change => {
|
|
triggerValidation(change.document);
|
|
});
|
|
|
|
// a document has closed: clear all diagnostics
|
|
documents.onDidClose(event => {
|
|
cleanPendingValidation(event.document);
|
|
connection.sendDiagnostics({ uri: event.document.uri, diagnostics: [] });
|
|
});
|
|
|
|
function cleanPendingValidation(textDocument: TextDocument): void {
|
|
let request = pendingValidationRequests[textDocument.uri];
|
|
if (request) {
|
|
clearTimeout(request);
|
|
delete pendingValidationRequests[textDocument.uri];
|
|
}
|
|
}
|
|
|
|
function triggerValidation(textDocument: TextDocument): void {
|
|
cleanPendingValidation(textDocument);
|
|
pendingValidationRequests[textDocument.uri] = setTimeout(() => {
|
|
delete pendingValidationRequests[textDocument.uri];
|
|
validateTextDocument(textDocument);
|
|
}, validationDelayMs);
|
|
}
|
|
|
|
function isValidationEnabled(languageId: string, settings: Settings = globalSettings) {
|
|
let validationSettings = settings && settings.html && settings.html.validate;
|
|
if (validationSettings) {
|
|
return languageId === 'css' && validationSettings.styles !== false || languageId === 'javascript' && validationSettings.scripts !== false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
async function validateTextDocument(textDocument: TextDocument) {
|
|
let diagnostics: Diagnostic[] = [];
|
|
if (textDocument.languageId === 'html') {
|
|
let modes = languageModes.getAllModesInDocument(textDocument);
|
|
let settings = await getDocumentSettings(textDocument, () => modes.some(m => !!m.doValidation));
|
|
modes.forEach(mode => {
|
|
if (mode.doValidation && isValidationEnabled(mode.getId(), settings)) {
|
|
pushAll(diagnostics, mode.doValidation(textDocument, settings));
|
|
}
|
|
});
|
|
}
|
|
connection.sendDiagnostics({ uri: textDocument.uri, diagnostics });
|
|
}
|
|
|
|
connection.onCompletion(async textDocumentPosition => {
|
|
let document = documents.get(textDocumentPosition.textDocument.uri);
|
|
let mode = languageModes.getModeAtPosition(document, textDocumentPosition.position);
|
|
if (mode && mode.doComplete) {
|
|
let doComplete = mode.doComplete;
|
|
if (mode.getId() !== 'html') {
|
|
connection.telemetry.logEvent({ key: 'html.embbedded.complete', value: { languageId: mode.getId() } });
|
|
}
|
|
let settings = await getDocumentSettings(document, () => doComplete.length > 2);
|
|
return doComplete(document, textDocumentPosition.position, settings);
|
|
}
|
|
return { isIncomplete: true, items: [] };
|
|
});
|
|
|
|
connection.onCompletionResolve(item => {
|
|
let data = item.data;
|
|
if (data && data.languageId && data.uri) {
|
|
let mode = languageModes.getMode(data.languageId);
|
|
let document = documents.get(data.uri);
|
|
if (mode && mode.doResolve && document) {
|
|
return mode.doResolve(document, item);
|
|
}
|
|
}
|
|
return item;
|
|
});
|
|
|
|
connection.onHover(textDocumentPosition => {
|
|
let document = documents.get(textDocumentPosition.textDocument.uri);
|
|
let mode = languageModes.getModeAtPosition(document, textDocumentPosition.position);
|
|
if (mode && mode.doHover) {
|
|
return mode.doHover(document, textDocumentPosition.position);
|
|
}
|
|
return null;
|
|
});
|
|
|
|
connection.onDocumentHighlight(documentHighlightParams => {
|
|
let document = documents.get(documentHighlightParams.textDocument.uri);
|
|
let mode = languageModes.getModeAtPosition(document, documentHighlightParams.position);
|
|
if (mode && mode.findDocumentHighlight) {
|
|
return mode.findDocumentHighlight(document, documentHighlightParams.position);
|
|
}
|
|
return [];
|
|
});
|
|
|
|
connection.onDefinition(definitionParams => {
|
|
let document = documents.get(definitionParams.textDocument.uri);
|
|
let mode = languageModes.getModeAtPosition(document, definitionParams.position);
|
|
if (mode && mode.findDefinition) {
|
|
return mode.findDefinition(document, definitionParams.position);
|
|
}
|
|
return [];
|
|
});
|
|
|
|
connection.onReferences(referenceParams => {
|
|
let document = documents.get(referenceParams.textDocument.uri);
|
|
let mode = languageModes.getModeAtPosition(document, referenceParams.position);
|
|
if (mode && mode.findReferences) {
|
|
return mode.findReferences(document, referenceParams.position);
|
|
}
|
|
return [];
|
|
});
|
|
|
|
connection.onSignatureHelp(signatureHelpParms => {
|
|
let document = documents.get(signatureHelpParms.textDocument.uri);
|
|
let mode = languageModes.getModeAtPosition(document, signatureHelpParms.position);
|
|
if (mode && mode.doSignatureHelp) {
|
|
return mode.doSignatureHelp(document, signatureHelpParms.position);
|
|
}
|
|
return null;
|
|
});
|
|
|
|
connection.onDocumentRangeFormatting(async formatParams => {
|
|
let document = documents.get(formatParams.textDocument.uri);
|
|
let settings = await getDocumentSettings(document, () => true);
|
|
if (!settings) {
|
|
settings = globalSettings;
|
|
}
|
|
let unformattedTags: string = settings && settings.html && settings.html.format && settings.html.format.unformatted || '';
|
|
let enabledModes = { css: !unformattedTags.match(/\bstyle\b/), javascript: !unformattedTags.match(/\bscript\b/) };
|
|
|
|
return format(languageModes, document, formatParams.range, formatParams.options, settings, enabledModes);
|
|
});
|
|
|
|
connection.onDocumentLinks(documentLinkParam => {
|
|
let document = documents.get(documentLinkParam.textDocument.uri);
|
|
let documentContext: DocumentContext = {
|
|
resolveReference: (ref, base) => {
|
|
if (base) {
|
|
ref = url.resolve(base, ref);
|
|
}
|
|
if (ref[0] === '/') {
|
|
let root = getRootFolder(document.uri);
|
|
if (root) {
|
|
return uri.file(path.join(root, ref)).toString();
|
|
}
|
|
}
|
|
return url.resolve(document.uri, ref);
|
|
},
|
|
|
|
};
|
|
let links: DocumentLink[] = [];
|
|
languageModes.getAllModesInDocument(document).forEach(m => {
|
|
if (m.findDocumentLinks) {
|
|
pushAll(links, m.findDocumentLinks(document, documentContext));
|
|
}
|
|
});
|
|
return links;
|
|
});
|
|
|
|
function getRootFolder(docUri: string): string | undefined | null {
|
|
if (workspaceFolders) {
|
|
for (let folder of workspaceFolders) {
|
|
let folderURI = folder.uri;
|
|
if (!endsWith(folderURI, '/')) {
|
|
folderURI = folderURI + '/';
|
|
}
|
|
if (startsWith(docUri, folderURI)) {
|
|
return folderURI;
|
|
}
|
|
}
|
|
return void 0;
|
|
}
|
|
return workspacePath;
|
|
}
|
|
|
|
connection.onDocumentSymbol(documentSymbolParms => {
|
|
let document = documents.get(documentSymbolParms.textDocument.uri);
|
|
let symbols: SymbolInformation[] = [];
|
|
languageModes.getAllModesInDocument(document).forEach(m => {
|
|
if (m.findDocumentSymbols) {
|
|
pushAll(symbols, m.findDocumentSymbols(document));
|
|
}
|
|
});
|
|
return symbols;
|
|
});
|
|
|
|
connection.onRequest(DocumentColorRequest.type, params => {
|
|
let infos: ColorInformation[] = [];
|
|
let document = documents.get(params.textDocument.uri);
|
|
if (document) {
|
|
languageModes.getAllModesInDocument(document).forEach(m => {
|
|
if (m.findDocumentColors) {
|
|
pushAll(infos, m.findDocumentColors(document));
|
|
}
|
|
});
|
|
}
|
|
return infos;
|
|
});
|
|
|
|
connection.onRequest(ColorPresentationRequest.type, params => {
|
|
let document = documents.get(params.textDocument.uri);
|
|
if (document) {
|
|
let mode = languageModes.getModeAtPosition(document, params.range.start);
|
|
if (mode && mode.getColorPresentations) {
|
|
return mode.getColorPresentations(document, params.color, params.range);
|
|
}
|
|
}
|
|
return [];
|
|
});
|
|
|
|
connection.onRequest(TagCloseRequest.type, params => {
|
|
let document = documents.get(params.textDocument.uri);
|
|
if (document) {
|
|
let pos = params.position;
|
|
if (pos.character > 0) {
|
|
let mode = languageModes.getModeAtPosition(document, Position.create(pos.line, pos.character - 1));
|
|
if (mode && mode.doAutoClose) {
|
|
return mode.doAutoClose(document, pos);
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
});
|
|
|
|
|
|
// Listen on the connection
|
|
connection.listen(); |