forked from mybatis/mybatis-dynamic-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCountDSL.java
149 lines (125 loc) · 5.34 KB
/
CountDSL.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
/*
* 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.select;
import java.util.Objects;
import java.util.function.Consumer;
import java.util.function.Function;
import org.jspecify.annotations.Nullable;
import org.mybatis.dynamic.sql.BasicColumn;
import org.mybatis.dynamic.sql.SqlBuilder;
import org.mybatis.dynamic.sql.SqlTable;
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.EmbeddedWhereModel;
/**
* 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 <R> the type of model built by this Builder. Typically, SelectModel.
*
* @author Jeff Butler
*/
public class CountDSL<R> extends AbstractQueryExpressionDSL<CountDSL<R>.CountWhereBuilder, CountDSL<R>>
implements Buildable<R> {
private final Function<SelectModel, R> adapterFunction;
private @Nullable CountWhereBuilder whereBuilder;
private final BasicColumn countColumn;
private final StatementConfiguration statementConfiguration = new StatementConfiguration();
private CountDSL(BasicColumn countColumn, SqlTable table, Function<SelectModel, R> adapterFunction) {
super(table);
this.countColumn = Objects.requireNonNull(countColumn);
this.adapterFunction = Objects.requireNonNull(adapterFunction);
}
@Override
public CountWhereBuilder where() {
whereBuilder = Objects.requireNonNullElseGet(whereBuilder, CountWhereBuilder::new);
return whereBuilder;
}
@Override
public R build() {
return adapterFunction.apply(buildModel());
}
@Override
public CountDSL<R> configureStatement(Consumer<StatementConfiguration> consumer) {
consumer.accept(statementConfiguration);
return this;
}
private SelectModel buildModel() {
QueryExpressionModel queryExpressionModel = new QueryExpressionModel.Builder()
.withSelectColumn(countColumn)
.withTable(table())
.withTableAliases(tableAliases())
.withJoinModel(buildJoinModel().orElse(null))
.withWhereModel(whereBuilder == null ? null : whereBuilder.buildWhereModel())
.build();
return new SelectModel.Builder()
.withQueryExpression(queryExpressionModel)
.withStatementConfiguration(statementConfiguration)
.build();
}
public static CountDSL<SelectModel> countFrom(SqlTable table) {
return countFrom(Function.identity(), table);
}
public static <R> CountDSL<R> countFrom(Function<SelectModel, R> adapterFunction, SqlTable table) {
return new CountDSL<>(SqlBuilder.count(), table, adapterFunction);
}
public static FromGatherer<SelectModel> count(BasicColumn column) {
return count(Function.identity(), column);
}
public static <R> FromGatherer<R> count(Function<SelectModel, R> adapterFunction, BasicColumn column) {
return new FromGatherer<>(adapterFunction, SqlBuilder.count(column));
}
public static FromGatherer<SelectModel> countDistinct(BasicColumn column) {
return countDistinct(Function.identity(), column);
}
public static <R> FromGatherer<R> countDistinct(Function<SelectModel, R> adapterFunction, BasicColumn column) {
return new FromGatherer<>(adapterFunction, SqlBuilder.countDistinct(column));
}
@Override
protected CountDSL<R> getThis() {
return this;
}
public static class FromGatherer<R> {
private final BasicColumn column;
private final Function<SelectModel, R> adapterFunction;
public FromGatherer(Function<SelectModel, R> adapterFunction, BasicColumn column) {
this.adapterFunction = adapterFunction;
this.column = column;
}
public CountDSL<R> from(SqlTable table) {
return new CountDSL<>(column, table, adapterFunction);
}
}
public class CountWhereBuilder extends AbstractWhereFinisher<CountWhereBuilder>
implements Buildable<R> {
private CountWhereBuilder() {
super(CountDSL.this);
}
@Override
public R build() {
return CountDSL.this.build();
}
@Override
protected CountWhereBuilder getThis() {
return this;
}
protected EmbeddedWhereModel buildWhereModel() {
return super.buildModel();
}
}
}