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

com.blazebit.persistence.parser.PrefixingAndAliasReplacementQueryGenerator Maven / Gradle / Ivy

There is a newer version: 1.6.12
Show newest version
/*
 * Copyright 2014 - 2019 Blazebit.
 *
 * Licensed 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
 *
 *      http://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.blazebit.persistence.parser;

import com.blazebit.persistence.parser.expression.PathElementExpression;
import com.blazebit.persistence.parser.expression.PathExpression;
import com.blazebit.persistence.parser.expression.PropertyExpression;

import java.util.List;

/**
 *
 * @author Christian Beikov
 * @since 1.2.0
 */
public class PrefixingAndAliasReplacementQueryGenerator extends SimpleQueryGenerator {

    private final String prefix;
    private final String substitute;
    private final String alias;
    private final String aliasToSkip;
    private final boolean skipPrefix;
    private final boolean requiresSinglePathElement;

    public PrefixingAndAliasReplacementQueryGenerator(String prefix, String substitute, String alias, String aliasToSkip, boolean skipPrefix) {
        this.prefix = prefix;
        this.substitute = substitute;
        this.alias = alias;
        this.aliasToSkip = aliasToSkip;
        this.skipPrefix = skipPrefix;
        this.requiresSinglePathElement = substitute.charAt(0) == ':';
    }

    @Override
    public void visit(PathExpression expression) {
        List expressions = expression.getExpressions();
        int size = expressions.size();
        if (size == 0) {
            sb.append(prefix);
        } else {
            PathElementExpression elementExpression = expressions.get(0);
            if (elementExpression instanceof PropertyExpression && (!requiresSinglePathElement || expressions.size() == 1)) {
                String property = ((PropertyExpression) elementExpression).getProperty();
                if (alias.equals(property)) {
                    sb.append(substitute);
                    for (int i = 1; i < size; i++) {
                        sb.append(".");
                        expressions.get(i).accept(this);
                    }
                    return;
                }
                if (skipPrefix && prefix.equals(property)) {
                    super.visit(expression);
                    return;
                }
            }
            if (aliasToSkip != null) {
                if (elementExpression instanceof PropertyExpression) {
                    if (aliasToSkip.equals(((PropertyExpression) elementExpression).getProperty())) {
                        super.visit(expression);
                        return;
                    }
                }
            }
            sb.append(prefix);
            sb.append('.');
            super.visit(expression);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy