forked from mybatis/mybatis-dynamic-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSqlColumn.java
156 lines (130 loc) · 4.37 KB
/
SqlColumn.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
154
155
156
/**
* 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;
import java.sql.JDBCType;
import java.util.Objects;
import java.util.Optional;
import org.mybatis.dynamic.sql.render.TableAliasCalculator;
public class SqlColumn<T> implements BindableColumn<T>, SortSpecification {
protected String name;
protected SqlTable table;
protected JDBCType jdbcType;
protected boolean isDescending = false;
protected String alias;
protected String typeHandler;
private SqlColumn(Builder builder) {
name = Objects.requireNonNull(builder.name);
jdbcType = builder.jdbcType;
table = Objects.requireNonNull(builder.table);
typeHandler = builder.typeHandler;
}
protected SqlColumn(SqlColumn<?> sqlColumn) {
name = sqlColumn.name;
table = sqlColumn.table;
jdbcType = sqlColumn.jdbcType;
isDescending = sqlColumn.isDescending;
alias = sqlColumn.alias;
typeHandler = sqlColumn.typeHandler;
}
public String name() {
return name;
}
@Override
public Optional<JDBCType> jdbcType() {
return Optional.ofNullable(jdbcType);
}
@Override
public Optional<String> alias() {
return Optional.ofNullable(alias);
}
@Override
public Optional<String> typeHandler() {
return Optional.ofNullable(typeHandler);
}
@Override
public SortSpecification descending() {
SqlColumn<T> column = new SqlColumn<>(this);
column.isDescending = true;
return column;
}
@Override
public SqlColumn<T> as(String alias) {
SqlColumn<T> column = new SqlColumn<>(this);
column.alias = alias;
return column;
}
@Override
public boolean isDescending() {
return isDescending;
}
@Override
public String aliasOrName() {
return alias().orElse(name);
}
@Override
public String renderWithTableAlias(TableAliasCalculator tableAliasCalculator) {
return tableAliasCalculator.aliasForColumn(table)
.map(this::applyTableAlias)
.orElseGet(this::name);
}
public <S> SqlColumn<S> withTypeHandler(String typeHandler) {
SqlColumn<S> column = new SqlColumn<>(this);
column.typeHandler = typeHandler;
return column;
}
private String applyTableAlias(String tableAlias) {
return tableAlias + "." + name(); //$NON-NLS-1$
}
public static <T> SqlColumn<T> of(String name, SqlTable table) {
return SqlColumn.withName(name)
.withTable(table)
.build();
}
public static <T> SqlColumn<T> of(String name, SqlTable table, JDBCType jdbcType) {
return SqlColumn.withName(name)
.withTable(table)
.withJdbcType(jdbcType)
.build();
}
public static Builder withName(String name) {
return new Builder().withName(name);
}
public static class Builder {
private SqlTable table;
private String name;
private JDBCType jdbcType;
private String typeHandler;
public Builder withTable(SqlTable table) {
this.table = table;
return this;
}
public Builder withName(String name) {
this.name = name;
return this;
}
public Builder withJdbcType(JDBCType jdbcType) {
this.jdbcType = jdbcType;
return this;
}
public Builder withTypeHandler(String typeHandler) {
this.typeHandler = typeHandler;
return this;
}
public <T> SqlColumn<T> build() {
return new SqlColumn<>(this);
}
}
}