Repository URL to install this package:
|
Version:
1.3.1-1468329898 ▾
|
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
var vscode_languageserver_1 = require('vscode-languageserver');
var request_light_1 = require('request-light');
var path = require('path');
var fs = require('fs');
var uri_1 = require('./utils/uri');
var URL = require('url');
var Strings = require('./utils/strings');
var vscode_json_languageservice_1 = require('vscode-json-languageservice');
var projectJSONContribution_1 = require('./jsoncontributions/projectJSONContribution');
var globPatternContribution_1 = require('./jsoncontributions/globPatternContribution');
var fileAssociationContribution_1 = require('./jsoncontributions/fileAssociationContribution');
var languageModelCache_1 = require('./languageModelCache');
var nls = require('vscode-nls');
nls.config(process.env['VSCODE_NLS_CONFIG']);
var SchemaAssociationNotification;
(function (SchemaAssociationNotification) {
SchemaAssociationNotification.type = { get method() { return 'json/schemaAssociations'; } };
})(SchemaAssociationNotification || (SchemaAssociationNotification = {}));
var VSCodeContentRequest;
(function (VSCodeContentRequest) {
VSCodeContentRequest.type = { get method() { return 'vscode/content'; } };
})(VSCodeContentRequest || (VSCodeContentRequest = {}));
// Create a connection for the server
var connection = vscode_languageserver_1.createConnection(new vscode_languageserver_1.IPCMessageReader(process), new vscode_languageserver_1.IPCMessageWriter(process));
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
var documents = new vscode_languageserver_1.TextDocuments();
// Make the text document manager listen on the connection
// for open, change and close text document events
documents.listen(connection);
var filesAssociationContribution = new fileAssociationContribution_1.FileAssociationContribution();
// 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.
var workspaceRoot;
connection.onInitialize(function (params) {
workspaceRoot = uri_1.default.parse(params.rootPath);
filesAssociationContribution.setLanguageIds(params.initializationOptions.languageIds);
return {
capabilities: {
// Tell the client that the server works in FULL text document sync mode
textDocumentSync: documents.syncKind,
completionProvider: { resolveProvider: true },
hoverProvider: true,
documentSymbolProvider: true,
documentRangeFormattingProvider: true,
documentFormattingProvider: true
}
};
});
var workspaceContext = {
resolveRelativePath: function (relativePath, resource) {
return URL.resolve(resource, relativePath);
}
};
var schemaRequestService = function (uri) {
if (Strings.startsWith(uri, 'file://')) {
var fsPath_1 = uri_1.default.parse(uri).fsPath;
return new Promise(function (c, e) {
fs.readFile(fsPath_1, 'UTF-8', function (err, result) {
err ? e('') : c(result.toString());
});
});
}
else if (Strings.startsWith(uri, 'vscode://')) {
return connection.sendRequest(VSCodeContentRequest.type, uri).then(function (responseText) {
return responseText;
}, function (error) {
return error.message;
});
}
if (uri.indexOf('//schema.management.azure.com/') !== -1) {
connection.telemetry.logEvent({
key: 'json.schema',
value: {
schemaURL: uri
}
});
}
return request_light_1.xhr({ url: uri, followRedirects: 5 }).then(function (response) {
return response.responseText;
}, function (error) {
return error.responseText || request_light_1.getErrorStatusDescription(error.status) || error.toString();
});
};
// create the JSON language service
var languageService = vscode_json_languageservice_1.getLanguageService({
schemaRequestService: schemaRequestService,
workspaceContext: workspaceContext,
contributions: [
new projectJSONContribution_1.ProjectJSONContribution(),
new globPatternContribution_1.GlobPatternContribution(),
filesAssociationContribution
]
});
var jsonConfigurationSettings = void 0;
var schemaAssociations = void 0;
// The settings have changed. Is send on server activation as well.
connection.onDidChangeConfiguration(function (change) {
var settings = change.settings;
request_light_1.configure(settings.http && settings.http.proxy, settings.http && settings.http.proxyStrictSSL);
jsonConfigurationSettings = settings.json && settings.json.schemas;
updateConfiguration();
});
// The jsonValidation extension configuration has changed
connection.onNotification(SchemaAssociationNotification.type, function (associations) {
schemaAssociations = associations;
updateConfiguration();
});
function updateConfiguration() {
var languageSettings = {
validate: true,
allowComments: true,
schemas: []
};
if (schemaAssociations) {
for (var pattern in schemaAssociations) {
var association = schemaAssociations[pattern];
if (Array.isArray(association)) {
association.forEach(function (uri) {
languageSettings.schemas.push({ uri: uri, fileMatch: [pattern] });
});
}
}
}
if (jsonConfigurationSettings) {
jsonConfigurationSettings.forEach(function (schema) {
if (schema.fileMatch) {
var uri = schema.url;
if (!uri && schema.schema) {
uri = schema.schema.id;
if (!uri) {
uri = 'vscode://schemas/custom/' + encodeURIComponent(schema.fileMatch.join('&'));
}
}
if (Strings.startsWith(uri, '.') && workspaceRoot) {
// workspace relative path
uri = uri_1.default.file(path.normalize(path.join(workspaceRoot.fsPath, uri))).toString();
}
if (uri) {
languageSettings.schemas.push({ uri: uri, fileMatch: schema.fileMatch, schema: schema.schema });
}
}
});
}
languageService.configure(languageSettings);
// Revalidate any open text documents
documents.all().forEach(triggerValidation);
}
// 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(function (change) {
triggerValidation(change.document);
});
// a document has closed: clear all diagnostics
documents.onDidClose(function (event) {
cleanPendingValidation(event.document);
connection.sendDiagnostics({ uri: event.document.uri, diagnostics: [] });
});
var pendingValidationRequests = {};
var validationDelayMs = 200;
function cleanPendingValidation(textDocument) {
var request = pendingValidationRequests[textDocument.uri];
if (request) {
clearTimeout(request);
delete pendingValidationRequests[textDocument.uri];
}
}
function triggerValidation(textDocument) {
cleanPendingValidation(textDocument);
pendingValidationRequests[textDocument.uri] = setTimeout(function () {
delete pendingValidationRequests[textDocument.uri];
validateTextDocument(textDocument);
}, validationDelayMs);
}
function validateTextDocument(textDocument) {
if (textDocument.getText().length === 0) {
// ignore empty documents
connection.sendDiagnostics({ uri: textDocument.uri, diagnostics: [] });
return;
}
var jsonDocument = getJSONDocument(textDocument);
languageService.doValidation(textDocument, jsonDocument).then(function (diagnostics) {
// Send the computed diagnostics to VSCode.
connection.sendDiagnostics({ uri: textDocument.uri, diagnostics: diagnostics });
});
}
connection.onDidChangeWatchedFiles(function (change) {
// Monitored files have changed in VSCode
var hasChanges = false;
change.changes.forEach(function (c) {
if (languageService.resetSchema(c.uri)) {
hasChanges = true;
}
});
if (hasChanges) {
documents.all().forEach(validateTextDocument);
}
});
var jsonDocuments = languageModelCache_1.getLanguageModelCache(10, 60, function (document) { return languageService.parseJSONDocument(document); });
function getJSONDocument(document) {
return jsonDocuments.get(document);
}
connection.onCompletion(function (textDocumentPosition) {
var document = documents.get(textDocumentPosition.textDocument.uri);
var jsonDocument = getJSONDocument(document);
return languageService.doComplete(document, textDocumentPosition.position, jsonDocument);
});
connection.onCompletionResolve(function (completionItem) {
return languageService.doResolve(completionItem);
});
connection.onHover(function (textDocumentPositionParams) {
var document = documents.get(textDocumentPositionParams.textDocument.uri);
var jsonDocument = getJSONDocument(document);
return languageService.doHover(document, textDocumentPositionParams.position, jsonDocument);
});
connection.onDocumentSymbol(function (documentSymbolParams) {
var document = documents.get(documentSymbolParams.textDocument.uri);
var jsonDocument = getJSONDocument(document);
return languageService.findDocumentSymbols(document, jsonDocument);
});
connection.onDocumentFormatting(function (formatParams) {
var document = documents.get(formatParams.textDocument.uri);
return languageService.format(document, null, formatParams.options);
});
connection.onDocumentRangeFormatting(function (formatParams) {
var document = documents.get(formatParams.textDocument.uri);
return languageService.format(document, formatParams.range, formatParams.options);
});
// Listen on the connection
connection.listen();
//# sourceMappingURL=jsonServerMain.js.map