-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Параметры inlay hints, поддержка inlayhint/refresh
- Loading branch information
Showing
8 changed files
with
277 additions
and
4 deletions.
There are no files selected for viewing
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
50 changes: 50 additions & 0 deletions
50
.../com/github/_1c_syntax/bsl/languageserver/configuration/inlayhints/InlayHintsOptions.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,50 @@ | ||
/* | ||
* This file is a part of BSL Language Server. | ||
* | ||
* Copyright (c) 2018-2023 | ||
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors | ||
* | ||
* SPDX-License-Identifier: LGPL-3.0-or-later | ||
* | ||
* BSL Language Server is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3.0 of the License, or (at your option) any later version. | ||
* | ||
* BSL Language Server is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with BSL Language Server. | ||
*/ | ||
package com.github._1c_syntax.bsl.languageserver.configuration.inlayhints; | ||
|
||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import com.fasterxml.jackson.databind.annotation.JsonDeserialize; | ||
import com.github._1c_syntax.bsl.languageserver.configuration.databind.ParametersDeserializer; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
import org.eclipse.lsp4j.jsonrpc.messages.Either; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
/** | ||
* Корневой класс для настройки {@link com.github._1c_syntax.bsl.languageserver.providers.InlayHintProvider} | ||
*/ | ||
@Data | ||
@AllArgsConstructor(onConstructor = @__({@JsonCreator(mode = JsonCreator.Mode.DISABLED)})) | ||
@NoArgsConstructor | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public class InlayHintsOptions { | ||
|
||
/** | ||
* Параметры сапплаеров inlay hints. | ||
*/ | ||
@JsonDeserialize(using = ParametersDeserializer.class) | ||
private Map<String, Either<Boolean, Map<String, Object>>> parameters = new HashMap<>(); | ||
} |
29 changes: 29 additions & 0 deletions
29
.../java/com/github/_1c_syntax/bsl/languageserver/configuration/inlayhints/package-info.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,29 @@ | ||
/* | ||
* This file is a part of BSL Language Server. | ||
* | ||
* Copyright (c) 2018-2023 | ||
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors | ||
* | ||
* SPDX-License-Identifier: LGPL-3.0-or-later | ||
* | ||
* BSL Language Server is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3.0 of the License, or (at your option) any later version. | ||
* | ||
* BSL Language Server is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with BSL Language Server. | ||
*/ | ||
/** | ||
* Пакет содержит настройки {@link com.github._1c_syntax.bsl.languageserver.providers.InlayHintProvider} | ||
*/ | ||
@DefaultAnnotation(NonNull.class) | ||
package com.github._1c_syntax.bsl.languageserver.configuration.inlayhints; | ||
|
||
import edu.umd.cs.findbugs.annotations.DefaultAnnotation; | ||
import edu.umd.cs.findbugs.annotations.NonNull; |
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
87 changes: 87 additions & 0 deletions
87
...thub/_1c_syntax/bsl/languageserver/inlayhints/infrastructure/InlayHintsConfiguration.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,87 @@ | ||
/* | ||
* This file is a part of BSL Language Server. | ||
* | ||
* Copyright (c) 2018-2023 | ||
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors | ||
* | ||
* SPDX-License-Identifier: LGPL-3.0-or-later | ||
* | ||
* BSL Language Server is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3.0 of the License, or (at your option) any later version. | ||
* | ||
* BSL Language Server is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with BSL Language Server. | ||
*/ | ||
package com.github._1c_syntax.bsl.languageserver.inlayhints.infrastructure; | ||
|
||
import com.github._1c_syntax.bsl.languageserver.configuration.LanguageServerConfiguration; | ||
import com.github._1c_syntax.bsl.languageserver.inlayhints.InlayHintSupplier; | ||
import org.eclipse.lsp4j.jsonrpc.messages.Either; | ||
import org.springframework.beans.factory.annotation.Qualifier; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.Scope; | ||
|
||
import java.util.Collection; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.function.Function; | ||
import java.util.stream.Collectors; | ||
|
||
import static org.springframework.beans.factory.config.BeanDefinition.SCOPE_PROTOTYPE; | ||
|
||
/** | ||
* Spring-конфигурация для определения бинов | ||
* пакета {@link com.github._1c_syntax.bsl.languageserver.inlayhints}. | ||
*/ | ||
@Configuration | ||
public class InlayHintsConfiguration { | ||
|
||
/** | ||
* Получить список сапплаеров inlay hints в разрезе их идентификаторов. | ||
* | ||
* @param inlayHintSuppliers Плоский список сапплаеров. | ||
* @return Список сапплаеров inlay hints в разрезе их идентификаторов. | ||
*/ | ||
@Bean | ||
public Map<String, InlayHintSupplier> inlayHintSuppliersById( | ||
Collection<InlayHintSupplier> inlayHintSuppliers | ||
) { | ||
return inlayHintSuppliers.stream() | ||
.collect(Collectors.toMap(InlayHintSupplier::getId, Function.identity())); | ||
} | ||
|
||
/** | ||
* Получить список активированных в данный момент сапплаеров inlay hints. | ||
* | ||
* @param configuration Конфигурация сервера. | ||
* @param inlayHintSuppliersById Список сапплаеров inlay hints в разрезе из идентификаторов. | ||
* @return Список активированных в данный момент сапплаеров inlay hints. | ||
*/ | ||
@Bean | ||
@Scope(SCOPE_PROTOTYPE) | ||
public List<InlayHintSupplier> enabledInlayHintSuppliers( | ||
LanguageServerConfiguration configuration, | ||
@Qualifier("inlayHintSuppliersById") Map<String, InlayHintSupplier> inlayHintSuppliersById | ||
) { | ||
var parameters = configuration.getInlayHintsOptions().getParameters(); | ||
return inlayHintSuppliersById.values().stream() | ||
.filter(supplier -> supplierIsEnabled(supplier.getId(), parameters)) | ||
.collect(Collectors.toList()); | ||
} | ||
|
||
private static boolean supplierIsEnabled( | ||
String supplierId, | ||
Map<String, Either<Boolean, Map<String, Object>>> parameters | ||
) { | ||
var supplierConfig = parameters.getOrDefault(supplierId, Either.forLeft(true)); | ||
return supplierConfig.isRight() || supplierConfig.getLeft(); | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
...java/com/github/_1c_syntax/bsl/languageserver/inlayhints/infrastructure/package-info.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,30 @@ | ||
/* | ||
* This file is a part of BSL Language Server. | ||
* | ||
* Copyright (c) 2018-2023 | ||
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors | ||
* | ||
* SPDX-License-Identifier: LGPL-3.0-or-later | ||
* | ||
* BSL Language Server is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3.0 of the License, or (at your option) any later version. | ||
* | ||
* BSL Language Server is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with BSL Language Server. | ||
*/ | ||
/** | ||
* Spring-специфичные классы для настройки внутренней инфраструктуры | ||
* пакета {@link com.github._1c_syntax.bsl.languageserver.inlayhints}. | ||
*/ | ||
@DefaultAnnotation(NonNull.class) | ||
package com.github._1c_syntax.bsl.languageserver.inlayhints.infrastructure; | ||
|
||
import edu.umd.cs.findbugs.annotations.DefaultAnnotation; | ||
import edu.umd.cs.findbugs.annotations.NonNull; |
30 changes: 30 additions & 0 deletions
30
src/main/java/com/github/_1c_syntax/bsl/languageserver/inlayhints/package-info.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,30 @@ | ||
/* | ||
* This file is a part of BSL Language Server. | ||
* | ||
* Copyright (c) 2018-2023 | ||
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors | ||
* | ||
* SPDX-License-Identifier: LGPL-3.0-or-later | ||
* | ||
* BSL Language Server is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3.0 of the License, or (at your option) any later version. | ||
* | ||
* BSL Language Server is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with BSL Language Server. | ||
*/ | ||
/** | ||
* Пакет предназначен для реализации inlay hints, | ||
* предоставляемых {@link com.github._1c_syntax.bsl.languageserver.providers.InlayHintProvider}. | ||
*/ | ||
@DefaultAnnotation(NonNull.class) | ||
package com.github._1c_syntax.bsl.languageserver.inlayhints; | ||
|
||
import edu.umd.cs.findbugs.annotations.DefaultAnnotation; | ||
import edu.umd.cs.findbugs.annotations.NonNull; |
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