forked from mybatis/mybatis-dynamic-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeleteDSL.java
150 lines (125 loc) · 5.06 KB
/
DeleteDSL.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*
* Copyright 2016-2025 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.jspecify.annotations.Nullable;
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.where.AbstractWhereFinisher;
import org.mybatis.dynamic.sql.where.AbstractWhereStarter;
import org.mybatis.dynamic.sql.where.EmbeddedWhereModel;
public class DeleteDSL<R> implements AbstractWhereStarter<DeleteDSL<R>.DeleteWhereBuilder, DeleteDSL<R>>,
Buildable<R> {
private final Function<DeleteModel, R> adapterFunction;
private final SqlTable table;
private final @Nullable String tableAlias;
private @Nullable DeleteWhereBuilder whereBuilder;
private final StatementConfiguration statementConfiguration = new StatementConfiguration();
private @Nullable Long limit;
private @Nullable OrderByModel orderByModel;
private DeleteDSL(SqlTable table, @Nullable String tableAlias, Function<DeleteModel, R> adapterFunction) {
this.table = Objects.requireNonNull(table);
this.tableAlias = tableAlias;
this.adapterFunction = Objects.requireNonNull(adapterFunction);
}
@Override
public DeleteWhereBuilder where() {
whereBuilder = Objects.requireNonNullElseGet(whereBuilder, DeleteWhereBuilder::new);
return whereBuilder;
}
public DeleteDSL<R> limit(long limit) {
return limitWhenPresent(limit);
}
public DeleteDSL<R> limitWhenPresent(@Nullable Long limit) {
this.limit = limit;
return this;
}
public DeleteDSL<R> orderBy(SortSpecification... columns) {
return orderBy(Arrays.asList(columns));
}
public DeleteDSL<R> orderBy(Collection<? extends SortSpecification> 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
*/
@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<R> configureStatement(Consumer<StatementConfiguration> consumer) {
consumer.accept(statementConfiguration);
return this;
}
public static <R> DeleteDSL<R> deleteFrom(Function<DeleteModel, R> adapterFunction, SqlTable table,
@Nullable String tableAlias) {
return new DeleteDSL<>(table, tableAlias, adapterFunction);
}
public static DeleteDSL<DeleteModel> deleteFrom(SqlTable table) {
return deleteFrom(Function.identity(), table, null);
}
public static DeleteDSL<DeleteModel> deleteFrom(SqlTable table, String tableAlias) {
return deleteFrom(Function.identity(), table, tableAlias);
}
public class DeleteWhereBuilder extends AbstractWhereFinisher<DeleteWhereBuilder> implements Buildable<R> {
private DeleteWhereBuilder() {
super(DeleteDSL.this);
}
public DeleteDSL<R> limit(long limit) {
return limitWhenPresent(limit);
}
public DeleteDSL<R> limitWhenPresent(Long limit) {
return DeleteDSL.this.limitWhenPresent(limit);
}
public DeleteDSL<R> orderBy(SortSpecification... columns) {
return orderBy(Arrays.asList(columns));
}
public DeleteDSL<R> orderBy(Collection<? extends SortSpecification> columns) {
orderByModel = OrderByModel.of(columns);
return DeleteDSL.this;
}
@Override
public R build() {
return DeleteDSL.this.build();
}
@Override
protected DeleteWhereBuilder getThis() {
return this;
}
protected EmbeddedWhereModel buildWhereModel() {
return buildModel();
}
}
}