org.eclipse.ditto.placeholders.PipelineFunctionSubstringAfter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ditto-placeholders Show documentation
Show all versions of ditto-placeholders Show documentation
Eclipse Ditto is a framework for creating and managing digital twins in the IoT.
The newest version!
/*
* Copyright (c) 2021 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.eclipse.ditto.placeholders;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
import javax.annotation.concurrent.Immutable;
/**
* Provides the {@code fn:substring-after('...')} function implementation.
*/
@Immutable
final class PipelineFunctionSubstringAfter implements PipelineFunction {
private static final String FUNCTION_NAME = "substring-after";
@Override
public String getName() {
return FUNCTION_NAME;
}
@Override
public Signature getSignature() {
return SubstringAfterFunctionSignature.INSTANCE;
}
@Override
public PipelineElement apply(final PipelineElement value, final String paramsIncludingParentheses,
final ExpressionResolver expressionResolver) {
final PipelineElement resolved = parseAndResolve(paramsIncludingParentheses, expressionResolver);
return value.onResolved(previousStage -> PipelineElement.resolved(resolved.toStream()
.filter(previousStage::contains)
.map(splitValue -> previousStage.substring(previousStage.indexOf(splitValue) +
splitValue.length()))
.collect(Collectors.toList())));
}
private PipelineElement parseAndResolve(final String paramsIncludingParentheses,
final ExpressionResolver expressionResolver) {
return PipelineFunctionParameterResolverFactory.forStringParameter()
.apply(paramsIncludingParentheses, expressionResolver, this);
}
/**
* Describes the signature of the {@code substring-after('givenString')} function.
*/
private static final class SubstringAfterFunctionSignature implements Signature {
private static final SubstringAfterFunctionSignature INSTANCE = new SubstringAfterFunctionSignature();
private final ParameterDefinition givenStringDescription;
private SubstringAfterFunctionSignature() {
givenStringDescription = new GivenStringParam();
}
@Override
public List> getParameterDefinitions() {
return Collections.singletonList(givenStringDescription);
}
@Override
public String toString() {
return renderSignature();
}
}
/**
* Describes the only param of the {@code substring-after('givenString')} function.
*/
private static final class GivenStringParam implements ParameterDefinition {
private GivenStringParam() {
}
@Override
public String getName() {
return "givenString";
}
@Override
public Class getType() {
return String.class;
}
@Override
public String getDescription() {
return "Specifies the string to use in order to determine the substring after the first occurrence of that given string";
}
}
}