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

org.mybatis.dynamic.sql.delete.DeleteDSL Maven / Gradle / Ivy

The newest version!
/*
 *    Copyright 2016-2024 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
 *
 *       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 org.mybatis.dynamic.sql.delete;

import java.util.Arrays;
import java.util.Collection;
import java.util.Objects;
import java.util.function.Consumer;
import java.util.function.Function;

import org.jetbrains.annotations.NotNull;
import org.mybatis.dynamic.sql.SortSpecification;
import org.mybatis.dynamic.sql.SqlTable;
import org.mybatis.dynamic.sql.common.OrderByModel;
import org.mybatis.dynamic.sql.configuration.StatementConfiguration;
import org.mybatis.dynamic.sql.util.Buildable;
import org.mybatis.dynamic.sql.util.Utilities;
import org.mybatis.dynamic.sql.where.AbstractWhereFinisher;
import org.mybatis.dynamic.sql.where.AbstractWhereStarter;
import org.mybatis.dynamic.sql.where.EmbeddedWhereModel;

public class DeleteDSL extends AbstractWhereStarter.DeleteWhereBuilder, DeleteDSL>
        implements Buildable {

    private final Function adapterFunction;
    private final SqlTable table;
    private final String tableAlias;
    private DeleteWhereBuilder whereBuilder;
    private final StatementConfiguration statementConfiguration = new StatementConfiguration();
    private Long limit;
    private OrderByModel orderByModel;

    private DeleteDSL(SqlTable table, String tableAlias, Function adapterFunction) {
        this.table = Objects.requireNonNull(table);
        this.tableAlias = tableAlias;
        this.adapterFunction = Objects.requireNonNull(adapterFunction);
    }

    @Override
    public DeleteWhereBuilder where() {
        whereBuilder = Utilities.buildIfNecessary(whereBuilder, DeleteWhereBuilder::new);
        return whereBuilder;
    }

    public DeleteDSL limit(long limit) {
        this.limit = limit;
        return this;
    }

    public DeleteDSL orderBy(SortSpecification... columns) {
        return orderBy(Arrays.asList(columns));
    }

    public DeleteDSL orderBy(Collection columns) {
        orderByModel = OrderByModel.of(columns);
        return this;
    }

    /**
     * WARNING! Calling this method could result in a delete statement that deletes
     * all rows in a table.
     *
     * @return the model class
     */
    @NotNull
    @Override
    public R build() {
        DeleteModel deleteModel = DeleteModel.withTable(table)
                .withTableAlias(tableAlias)
                .withLimit(limit)
                .withOrderByModel(orderByModel)
                .withWhereModel(whereBuilder == null ? null : whereBuilder.buildWhereModel())
                .withStatementConfiguration(statementConfiguration)
                .build();

        return adapterFunction.apply(deleteModel);
    }

    @Override
    public DeleteDSL configureStatement(Consumer consumer) {
        consumer.accept(statementConfiguration);
        return this;
    }

    public static  DeleteDSL deleteFrom(Function adapterFunction, SqlTable table,
            String tableAlias) {
        return new DeleteDSL<>(table, tableAlias, adapterFunction);
    }

    public static DeleteDSL deleteFrom(SqlTable table) {
        return deleteFrom(Function.identity(), table, null);
    }

    public static DeleteDSL deleteFrom(SqlTable table, String tableAlias) {
        return deleteFrom(Function.identity(), table, tableAlias);
    }

    public class DeleteWhereBuilder extends AbstractWhereFinisher implements Buildable {

        private DeleteWhereBuilder() {
            super(DeleteDSL.this);
        }

        public DeleteDSL limit(long limit) {
            return DeleteDSL.this.limit(limit);
        }

        public DeleteDSL orderBy(SortSpecification... columns) {
            return orderBy(Arrays.asList(columns));
        }

        public DeleteDSL orderBy(Collection columns) {
            orderByModel = OrderByModel.of(columns);
            return DeleteDSL.this;
        }

        @NotNull
        @Override
        public R build() {
            return DeleteDSL.this.build();
        }

        @Override
        protected DeleteWhereBuilder getThis() {
            return this;
        }

        protected EmbeddedWhereModel buildWhereModel() {
            return buildModel();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy