All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.cameltooling.lsp.internal.completion.CamelOptionNamesCompletionsFuture Maven / Gradle / Ivy

There is a newer version: 1.27.0
Show newest version
/**
 * 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.completion;

import java.util.List;
import java.util.Map.Entry;
import java.util.Optional;
import java.util.Set;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;

import org.apache.camel.catalog.CamelCatalog;
import org.apache.camel.v1.kameletspec.Definition;
import org.apache.camel.v1.kameletspec.definition.Properties;
import org.eclipse.lsp4j.CompletionItem;
import org.eclipse.lsp4j.CompletionItemKind;

import com.github.cameltooling.lsp.internal.catalog.model.BaseOptionModel;
import com.github.cameltooling.lsp.internal.catalog.model.ComponentModel;
import com.github.cameltooling.lsp.internal.catalog.model.EndpointOptionModel;
import com.github.cameltooling.lsp.internal.catalog.util.KameletsCatalogManager;
import com.github.cameltooling.lsp.internal.catalog.util.ModelHelper;
import com.github.cameltooling.lsp.internal.instancemodel.CamelUriElementInstance;
import com.github.cameltooling.lsp.internal.instancemodel.ComponentNameConstants;
import com.github.cameltooling.lsp.internal.instancemodel.OptionParamKeyURIInstance;
import com.github.cameltooling.lsp.internal.instancemodel.OptionParamURIInstance;
import com.github.cameltooling.lsp.internal.instancemodel.PathParamURIInstance;

import io.fabric8.kubernetes.api.model.AnyType;

public class CamelOptionNamesCompletionsFuture implements Function>  {

	private CamelUriElementInstance uriElement;
	private String camelComponentName;
	private boolean isProducer;
	private String filterString;
	private int positionInCamelURI;
	private Set alreadyDefinedOptions;
	private KameletsCatalogManager kameletsCatalogManager;

	public CamelOptionNamesCompletionsFuture(CamelUriElementInstance uriElement, String camelComponentName, boolean isProducer, String filterText, int positionInCamelURI, Set alreadyDefinedOptions, KameletsCatalogManager kameletsCatalogManager) {
		this.uriElement = uriElement;
		this.camelComponentName = camelComponentName;
		this.isProducer = isProducer;
		this.filterString = filterText;
		this.positionInCamelURI = positionInCamelURI;
		this.alreadyDefinedOptions = alreadyDefinedOptions;
		this.kameletsCatalogManager = kameletsCatalogManager;
	}

	@Override
	public List apply(CamelCatalog catalog) {
		ComponentModel componentModel = ModelHelper.generateComponentModel(catalog.componentJSonSchema(camelComponentName), true);
		List endpointOptions = componentModel.getEndpointOptions();
		Stream endpointOptionsFiltered = initialFilter(endpointOptions).map(createCompletionItem(CompletionItemKind.Property));
		
		List availableApiProperties = uriElement.findAvailableApiProperties(componentModel);
		Stream availableApiPropertiesFiltered = initialFilter(availableApiProperties).map(createCompletionItem(CompletionItemKind.Variable));
		
		
		Stream kameletProperties = retrieveKameletProperties();
		
		return Stream.concat(Stream.concat(endpointOptionsFiltered, availableApiPropertiesFiltered), kameletProperties)
				// filter duplicated uri options
				.filter(FilterPredicateUtils.removeDuplicatedOptions(alreadyDefinedOptions, positionInCamelURI))
				.filter(FilterPredicateUtils.matchesCompletionFilter(filterString))
				.collect(Collectors.toList());
	}

	private Stream retrieveKameletProperties() {
		Stream kameletProperties = Stream.empty();
		if(ComponentNameConstants.COMPONENT_NAME_KAMELET.equals(camelComponentName)) {
			Optional kameletTemplateId = uriElement.getCamelUriInstance()
					.getComponentAndPathUriElementInstance()
					.getPathParams()
					.stream()
					.filter(pathParam -> pathParam.getPathParamIndex() == 0)
					.map(PathParamURIInstance::getValue)
					.findAny();
			if(kameletTemplateId.isPresent()) {
				Definition kameletDefinition = kameletsCatalogManager.getCatalog().getKameletDefinition(kameletTemplateId.get());
				if(kameletDefinition != null) {
					kameletProperties = kameletDefinition.getProperties().entrySet().stream().map(this::createCompletionItem);
				}
			}
		}
		return kameletProperties;
	}

	private CompletionItem createCompletionItem(Entry property) {
		String propertyName = property.getKey();
		CompletionItem completionItem = new CompletionItem(propertyName);
		Properties schema = property.getValue();
		String insertText = computeInsertText(propertyName, schema);
		completionItem.setInsertText(insertText);
		completionItem.setDocumentation(schema.getDescription());
		String type = schema.getType();
		if (type != null) {
			completionItem.setDetail(type);
		}
		CompletionResolverUtils.applyTextEditToCompletionItem(uriElement, completionItem);
		return completionItem;
	}

	private String computeInsertText(String propertyName, Properties schema) {
		AnyType defaultValue = schema.get_default();
		String insertText = propertyName + "=";
		if(defaultValue != null && defaultValue.getValue() != null) {
			insertText += defaultValue.getValue().toString();
		}
		return insertText;
	}

	private Stream initialFilter(List endpointOptions) {
		return endpointOptions.stream()
				.filter(endpoint -> "parameter".equals(endpoint.getKind()))
				// filter wrong option groups
				.filter(FilterPredicateUtils.matchesProducerConsumerGroups(isProducer));
	}

	private Function createCompletionItem(CompletionItemKind kind) {
		return parameter -> {
			CompletionItem completionItem = new CompletionItem(parameter.getName());
			String insertText = parameter.getName();
			
			boolean hasValue = false;
			if (uriElement instanceof OptionParamKeyURIInstance) {
				OptionParamKeyURIInstance param = (OptionParamKeyURIInstance)uriElement;
				hasValue = param.getOptionParamURIInstance().getValue() != null;
			}
			
			if(!hasValue && parameter.getDefaultValue() != null) {
				insertText += String.format("=%s", parameter.getDefaultValue());
			}
			completionItem.setInsertText(insertText);
			completionItem.setDocumentation(parameter.getDescription());
			completionItem.setDetail(parameter.getJavaType());
			completionItem.setKind(kind);
			configureSortTextToHaveApiBasedOptionsBefore(kind, completionItem, insertText);
			CompletionResolverUtils.applyDeprecation(completionItem, parameter.isDeprecated());
			CompletionResolverUtils.applyTextEditToCompletionItem(uriElement, completionItem);
			return completionItem;
		};
	}

	private void configureSortTextToHaveApiBasedOptionsBefore(CompletionItemKind kind, CompletionItem completionItem, String insertText) {
		if(CompletionItemKind.Variable.equals(kind)) {
			completionItem.setSortText("1-"+insertText);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy