forked from mybatis/mybatis-dynamic-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueryExpressionModel.java
153 lines (128 loc) · 4.91 KB
/
QueryExpressionModel.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
151
152
153
/**
* 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 static org.mybatis.dynamic.sql.util.StringUtilities.spaceBefore;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.function.Function;
import java.util.stream.Stream;
import org.mybatis.dynamic.sql.BasicColumn;
import org.mybatis.dynamic.sql.SqlTable;
import org.mybatis.dynamic.sql.render.GuaranteedTableAliasCalculator;
import org.mybatis.dynamic.sql.render.TableAliasCalculator;
import org.mybatis.dynamic.sql.select.join.JoinModel;
import org.mybatis.dynamic.sql.where.WhereModel;
public class QueryExpressionModel {
private String connector;
private boolean isDistinct;
private List<BasicColumn> selectList;
private SqlTable table;
private JoinModel joinModel;
private TableAliasCalculator tableAliasCalculator;
private WhereModel whereModel;
private GroupByModel groupByModel;
private QueryExpressionModel(Builder builder) {
connector = builder.connector;
isDistinct = builder.isDistinct;
selectList = Objects.requireNonNull(builder.selectList);
table = Objects.requireNonNull(builder.table);
joinModel = builder.joinModel;
tableAliasCalculator = joinModel().map(jm -> GuaranteedTableAliasCalculator.of(builder.tableAliases))
.orElseGet(() -> TableAliasCalculator.of(builder.tableAliases));
whereModel = builder.whereModel;
groupByModel = builder.groupByModel;
}
public Optional<String> connector() {
return Optional.ofNullable(connector);
}
public boolean isDistinct() {
return isDistinct;
}
public <R> Stream<R> mapColumns(Function<BasicColumn, R> mapper) {
return selectList.stream().map(mapper);
}
public SqlTable table() {
return table;
}
public TableAliasCalculator tableAliasCalculator() {
return tableAliasCalculator;
}
public Optional<WhereModel> whereModel() {
return Optional.ofNullable(whereModel);
}
public Optional<JoinModel> joinModel() {
return Optional.ofNullable(joinModel);
}
public Optional<GroupByModel> groupByModel() {
return Optional.ofNullable(groupByModel);
}
public String calculateTableNameIncludingAlias(SqlTable table) {
return table.tableNameAtRuntime()
+ spaceBefore(tableAliasCalculator.aliasForTable(table));
}
public static Builder withSelectList(List<BasicColumn> columnList) {
return new Builder().withSelectList(columnList);
}
public static class Builder {
private String connector;
private boolean isDistinct;
private List<BasicColumn> selectList = new ArrayList<>();
private SqlTable table;
private Map<SqlTable, String> tableAliases = new HashMap<>();
private WhereModel whereModel;
private JoinModel joinModel;
private GroupByModel groupByModel;
public Builder withConnector(String connector) {
this.connector = connector;
return this;
}
public Builder withTable(SqlTable table) {
this.table = table;
return this;
}
public Builder isDistinct(boolean isDistinct) {
this.isDistinct = isDistinct;
return this;
}
public Builder withSelectList(List<BasicColumn> selectList) {
this.selectList.addAll(selectList);
return this;
}
public Builder withTableAliases(Map<SqlTable, String> tableAliases) {
this.tableAliases.putAll(tableAliases);
return this;
}
public Builder withWhereModel(WhereModel whereModel) {
this.whereModel = whereModel;
return this;
}
public Builder withJoinModel(JoinModel joinModel) {
this.joinModel = joinModel;
return this;
}
public Builder withGroupByModel(GroupByModel groupByModel) {
this.groupByModel = groupByModel;
return this;
}
public QueryExpressionModel build() {
return new QueryExpressionModel(this);
}
}
}