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

org.mybatis.dynamic.sql.select.CountDSL Maven / Gradle / Ivy

There is a newer version: 1.5.2
Show newest version
/**
 *    Copyright 2016-2019 the original author or authors.
 *
 *    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 org.mybatis.dynamic.sql.select;

import java.util.Objects;
import java.util.function.Function;

import org.mybatis.dynamic.sql.BindableColumn;
import org.mybatis.dynamic.sql.SqlBuilder;
import org.mybatis.dynamic.sql.SqlCriterion;
import org.mybatis.dynamic.sql.SqlTable;
import org.mybatis.dynamic.sql.VisitableCondition;
import org.mybatis.dynamic.sql.util.Buildable;
import org.mybatis.dynamic.sql.where.AbstractWhereDSL;
import org.mybatis.dynamic.sql.where.WhereApplier;
import org.mybatis.dynamic.sql.where.WhereModel;

/**
 * DSL for building count queries. Count queries are specializations of select queries. They have joins and where
 * clauses, but not the other parts of a select (group by, order by, etc.) Count queries always return
 * a long. If these restrictions are not acceptable, then use the Select DSL for an unrestricted select statement.
 *
 * @param  the type of model built by this Builder. Typically SelectModel.
 *
 * @author Jeff Butler
 */
public class CountDSL extends AbstractQueryExpressionDSL, R> implements Buildable {

    private Function adapterFunction;
    private CountWhereBuilder whereBuilder = new CountWhereBuilder();
    
    private CountDSL(SqlTable table, Function adapterFunction) {
        super(table);
        this.adapterFunction = Objects.requireNonNull(adapterFunction);
    }
    
    public CountWhereBuilder where() {
        return whereBuilder;
    }

    public  CountWhereBuilder where(BindableColumn column, VisitableCondition condition,
            SqlCriterion...subCriteria) {
        whereBuilder.where(column, condition, subCriteria);
        return whereBuilder;
    }

    public CountWhereBuilder applyWhere(WhereApplier whereApplier) {
        return whereBuilder.applyWhere(whereApplier);
    }

    @Override
    public R build() {
        return adapterFunction.apply(buildModel());
    }

    private SelectModel buildModel() {
        QueryExpressionModel.Builder b = new QueryExpressionModel.Builder()
                .withSelectColumn(SqlBuilder.count())
                .withTable(table())
                .withTableAliases(tableAliases)
                .withWhereModel(whereBuilder.buildWhereModel());
        
        buildJoinModel().ifPresent(b::withJoinModel);
        
        return new SelectModel.Builder()
                .withQueryExpression(b.build())
                .build();
    }
    
    public static CountDSL countFrom(SqlTable table) {
        return countFrom(Function.identity(), table);
    }
    
    public static  CountDSL countFrom(Function adapterFunction, SqlTable table) {
        return new CountDSL<>(table, adapterFunction);
    }
    
    @Override
    protected CountDSL getThis() {
        return this;
    }
    
    public class CountWhereBuilder extends AbstractWhereDSL
            implements Buildable {
        private  CountWhereBuilder() {}

        @Override
        public R build() {
            return CountDSL.this.build();
        }
        
        @Override
        protected CountWhereBuilder getThis() {
            return this;
        }

        @Override
        protected WhereModel buildWhereModel() {
            return super.internalBuild();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy