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

org.eclipse.ditto.placeholders.PipelineFunctionSubstringBefore Maven / Gradle / Ivy

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 javax.annotation.concurrent.Immutable;

/**
 * Provides the {@code fn:substring-before('...')} function implementation.
 */
@Immutable
final class PipelineFunctionSubstringBefore implements PipelineFunction {

    private static final String FUNCTION_NAME = "substring-before";

    private final PipelineFunctionParameterResolverFactory.SingleParameterResolver parameterResolver =
            PipelineFunctionParameterResolverFactory.forStringParameter();

    @Override
    public String getName() {
        return FUNCTION_NAME;
    }

    @Override
    public Signature getSignature() {
        return SubstringBeforeFunctionSignature.INSTANCE;
    }

    @Override
    public PipelineElement apply(final PipelineElement value, final String paramsIncludingParentheses,
            final ExpressionResolver expressionResolver) {

        final String splitValue = parseAndResolve(paramsIncludingParentheses, expressionResolver);

        return value.onResolved(previousStage -> {
            if (previousStage.contains(splitValue)) {
                return PipelineElement.resolved(previousStage.substring(0, previousStage.indexOf(splitValue)));
            } else {
                return PipelineElement.unresolved();
            }
        });
    }

    private String parseAndResolve(final String paramsIncludingParentheses,
            final ExpressionResolver expressionResolver) {

        return parameterResolver.apply(paramsIncludingParentheses, expressionResolver, this)
                .findFirst()
                .orElseThrow(
                        () -> PlaceholderFunctionSignatureInvalidException.newBuilder(paramsIncludingParentheses, this)
                                .build());
    }

    /**
     * Describes the signature of the {@code substring-before('givenString')} function.
     */
    private static final class SubstringBeforeFunctionSignature implements PipelineFunction.Signature {

        private static final SubstringBeforeFunctionSignature INSTANCE = new SubstringBeforeFunctionSignature();

        private final PipelineFunction.ParameterDefinition givenStringDescription;

        private SubstringBeforeFunctionSignature() {
            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-before('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 before the first occurrence of that given string";
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy