-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #2471: Send json/schemaAssociations notification
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 <[email protected]>
- Loading branch information
1 parent
5fb212f
commit fbdc363
Showing
3 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
...c/main/java/org/eclipse/che/plugin/languageserver/server/launcher/JsonLanguageServer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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.languageserver.server.launcher; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
import org.eclipse.che.plugin.languageserver.server.registry.ServerInitializerObserver; | ||
import org.eclipse.che.plugin.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); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters