com.github.cameltooling.lsp.internal.modelinemodel.CamelKModelineLocalResourceRelatedOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-lsp-server Show documentation
Show all versions of camel-lsp-server Show documentation
Server Implementation of the Language Server Protocol for Apache Camel
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.cameltooling.lsp.internal.modelinemodel;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import org.apache.camel.catalog.CamelCatalog;
import org.eclipse.lsp4j.CompletionItem;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.github.cameltooling.lsp.internal.completion.CompletionResolverUtils;
public abstract class CamelKModelineLocalResourceRelatedOption implements ICamelKModelineOptionValue {
private static final String IDE_CONFIG_FOLDER_THEIA = ".theia";
private static final String IDE_CONFIG_FOLDER_ECLIPSE_DESKTOP = ".settings";
private static final String IDE_CONFIG_FOLDER_VSCODE = ".vscode";
private static final Logger LOGGER = LoggerFactory.getLogger(CamelKModelineLocalResourceRelatedOption.class);
private String value;
private int startPosition;
private String documentItemUri;
private int line;
protected CamelKModelineLocalResourceRelatedOption(String value, int startPosition, String documentItemUri, int line) {
this.value = value;
this.startPosition = startPosition;
this.documentItemUri = documentItemUri;
this.line = line;
}
public int getLine() {
return line;
}
@Override
public int getStartPositionInLine() {
return startPosition;
}
@Override
public int getEndPositionInLine() {
return getStartPositionInLine() + value.length();
}
@Override
public String getValueAsString() {
return value;
}
protected abstract String getPropertyName();
protected abstract Predicate getFilter();
@Override
public CompletableFuture> getCompletions(int position, CompletableFuture camelCatalog) {
try {
Path documentUriPath = Paths.get(new URI(documentItemUri));
if(documentUriPath != null && documentUriPath.toFile().exists()) {
Path documentUriParentPath = documentUriPath.getParent();
if(documentUriParentPath != null && documentUriParentPath.toFile().exists()) {
return CompletableFuture.completedFuture(retrieveCompletionItemsForPotentialFiles(documentUriPath, documentUriParentPath));
}
}
} catch (URISyntaxException | IllegalArgumentException | IOException exception) {
LOGGER.debug("Cannot provide completion for " + getPropertyName() + " parameter", exception);
}
return ICamelKModelineOptionValue.super.getCompletions(position, camelCatalog);
}
private List retrieveCompletionItemsForPotentialFiles(Path documentUriPath, Path documentUriParentPath) throws IOException {
try (Stream pathStream = Files.walk(documentUriParentPath)){
return pathStream
.filter(Files::isRegularFile)
.filter(path -> !path.equals(documentUriPath))
.filter(this::isOutsideOfIDEConfigFolder)
.filter(getFilter())
.map(documentUriParentPath::relativize)
.map(Path::toString)
.map(CompletionItem::new)
.map(completionItem -> {
CompletionResolverUtils.applyTextEditToCompletionItem(this, completionItem);
return completionItem;
})
.collect(Collectors.toList());
}
}
private boolean isOutsideOfIDEConfigFolder(Path path) {
String absolutePath = path.toAbsolutePath().toString();
return !absolutePath.contains(IDE_CONFIG_FOLDER_VSCODE)
&& !absolutePath.contains(IDE_CONFIG_FOLDER_ECLIPSE_DESKTOP)
&& !absolutePath.contains(IDE_CONFIG_FOLDER_THEIA);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy