Fix #2471: Send json/schemaAssociations notification (#2474)

The VS Code's JSON language server expects a 'json/schemaAssociations'
notification to associate JSON files to JSON schemas. This activates
capabilities like code completion, validation and hover without the need
to add a '$schema' key.

This change implements an extension of the JsonBasedLanguageServer that
registers as ServerInitializerObserver and sends the
'json/schemaAssociations' notification on the 'onServerInitialized'
event.

Signed-off-by: Kaloyan Raev <kaloyan.r@zend.com>
6.19.x
Kaloyan Raev 2016-10-10 11:41:32 +03:00 committed by Vitalii Parfonov
parent 3309540dfc
commit fbac7eaacc
4 changed files with 66 additions and 1 deletions

View File

@ -32,6 +32,10 @@
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-multibindings</artifactId>
</dependency>
<dependency>
<groupId>io.typefox.lsapi</groupId>
<artifactId>io.typefox.lsapi</artifactId>
</dependency>
<dependency>
<groupId>io.typefox.lsapi</groupId>
<artifactId>io.typefox.lsapi.services</artifactId>

View File

@ -0,0 +1,57 @@
/*******************************************************************************
* Copyright (c) 2012-2016 Codenvy, S.A.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Codenvy, S.A. - initial API and implementation
*******************************************************************************/
package org.eclipse.che.plugin.json.languageserver;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.che.api.languageserver.registry.ServerInitializerObserver;
import org.eclipse.che.api.languageserver.shared.model.LanguageDescription;
import io.typefox.lsapi.ServerCapabilities;
import io.typefox.lsapi.services.LanguageServer;
import io.typefox.lsapi.services.json.JsonBasedLanguageServer;
/**
* Implements the specifics related to the JSON language server.
*
* After the Initialize Request the client must send a 'json/schemaAssociations'
* notification in order to associate JSON schemas to popular JSON files. This
* automatically enables code completion, validation, hover, etc. capabilities
* for these files without the need of adding a "$schema" key.
*
* @author Kaloyan Raev
*/
public class JsonLanguageServer extends JsonBasedLanguageServer implements ServerInitializerObserver {
private final static String JSON_SCHEMA_ASSOCIATIONS = "json/schemaAssociations";
@Override
public void onServerInitialized(LanguageServer server, ServerCapabilities capabilities,
LanguageDescription languageDescription, String projectPath) {
registerSchemaAssociations();
}
private void registerSchemaAssociations() {
Map<String, String[]> associations = new HashMap<>();
associations.put("/*.schema.json", new String[] { "http://json-schema.org/draft-04/schema#" });
associations.put("/bower.json", new String[] { "http://json.schemastore.org/bower" });
associations.put("/.bower.json", new String[] { "http://json.schemastore.org/bower" });
associations.put("/.bowerrc", new String[] { "http://json.schemastore.org/bowerrc" });
associations.put("/composer.json", new String[] { "https://getcomposer.org/schema.json" });
associations.put("/package.json", new String[] { "http://json.schemastore.org/package" });
associations.put("/jsconfig.json", new String[] { "http://json.schemastore.org/jsconfig" });
associations.put("/tsconfig.json", new String[] { "http://json.schemastore.org/tsconfig" });
sendNotification(JSON_SCHEMA_ASSOCIATIONS, associations);
}
}

View File

@ -64,7 +64,7 @@ public class JsonLanguageServerLauncher extends LanguageServerLauncherTemplate {
}
protected JsonBasedLanguageServer connectToLanguageServer(Process languageServerProcess) {
JsonBasedLanguageServer languageServer = new JsonBasedLanguageServer();
JsonBasedLanguageServer languageServer = new JsonLanguageServer();
languageServer.connect(languageServerProcess.getInputStream(), languageServerProcess.getOutputStream());
return languageServer;
}

View File

@ -139,6 +139,10 @@ public class ServerInitializerImpl implements ServerInitializer {
server.getTextDocumentService().onPublishDiagnostics(publishDiagnosticsParamsMessenger::onEvent);
server.getWindowService().onLogMessage(messageParams -> LOG.error(messageParams.getType() + " " + messageParams.getMessage()));
server.onTelemetryEvent(o -> LOG.error(o.toString()));
if (server instanceof ServerInitializerObserver) {
addObserver((ServerInitializerObserver) server);
}
}
protected InitializeParamsImpl prepareInitializeParams(String projectPath) {