TableConfig.java
8.23 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/*
* Copyright (c) 2013, OpenCloudDB/MyCAT and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software;Designed and Developed mainly by many Chinese
* opensource volunteers. you can redistribute it and/or modify it under the
* terms of the GNU General Public License version 2 only, as published by the
* Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Any questions about this component can be directed to it's project Web address
* https://code.google.com/p/opencloudb/.
*
*/
package io.mycat.config.model;
import java.util.*;
import java.util.concurrent.locks.ReentrantLock;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import com.alibaba.druid.sql.ast.SQLDataType;
import com.alibaba.druid.sql.ast.statement.SQLTableElement;
import io.mycat.config.model.rule.RuleConfig;
import io.mycat.util.SplitUtil;
/**
* @author mycat
*/
public class TableConfig {
public static final int TYPE_GLOBAL_TABLE = 1;
public static final int TYPE_GLOBAL_DEFAULT = 0;
private final String name;
private final String primaryKey;
private final boolean autoIncrement;
private final boolean needAddLimit;
private final Set<String> dbTypes;
private final int tableType;
private final ArrayList<String> dataNodes;
private final ArrayList<String> distTables;
private final RuleConfig rule;
private final String partitionColumn;
private final boolean ruleRequired;
private final TableConfig parentTC;
private final boolean childTable;
private final String joinKey;
private final String parentKey;
private final String locateRTableKeySql;
// only has one level of parent
private final boolean secondLevel;
private final boolean partionKeyIsPrimaryKey;
private final Random rand = new Random();
private volatile List<SQLTableElement> tableElementList;
private volatile String tableStructureSQL;
private volatile Map<String,List<String>> dataNodeTableStructureSQLMap;
private ReentrantReadWriteLock reentrantReadWriteLock = new ReentrantReadWriteLock(false);
public TableConfig(String name, String primaryKey, boolean autoIncrement,boolean needAddLimit, int tableType,
String dataNode,Set<String> dbType, RuleConfig rule, boolean ruleRequired,
TableConfig parentTC, boolean isChildTable, String joinKey,
String parentKey,String subTables) {
if (name == null) {
throw new IllegalArgumentException("table name is null");
} else if (dataNode == null) {
throw new IllegalArgumentException("dataNode name is null");
}
this.primaryKey = primaryKey;
this.autoIncrement = autoIncrement;
this.needAddLimit=needAddLimit;
this.tableType = tableType;
this.dbTypes=dbType;
if (ruleRequired && rule == null) {
throw new IllegalArgumentException("ruleRequired but rule is null");
}
this.name = name.toUpperCase();
String theDataNodes[] = SplitUtil.split(dataNode, ',', '$', '-');
if (theDataNodes == null || theDataNodes.length <= 0) {
throw new IllegalArgumentException("invalid table dataNodes: " + dataNode);
}
dataNodes = new ArrayList<String>(theDataNodes.length);
for (String dn : theDataNodes) {
dataNodes.add(dn);
}
if(subTables!=null && !subTables.equals("")){
String sTables[] = SplitUtil.split(subTables, ',', '$', '-');
if (sTables == null || sTables.length <= 0) {
throw new IllegalArgumentException("invalid table subTables");
}
this.distTables = new ArrayList<String>(sTables.length);
for (String table : sTables) {
distTables.add(table);
}
}else{
this.distTables = new ArrayList<String>();
}
this.rule = rule;
this.partitionColumn = (rule == null) ? null : rule.getColumn();
partionKeyIsPrimaryKey=(partitionColumn==null)?primaryKey==null:partitionColumn.equals(primaryKey);
this.ruleRequired = ruleRequired;
this.childTable = isChildTable;
this.parentTC = parentTC;
this.joinKey = joinKey;
this.parentKey = parentKey;
if (parentTC != null) {
locateRTableKeySql = genLocateRootParentSQL();
secondLevel = (parentTC.parentTC == null);
} else {
locateRTableKeySql = null;
secondLevel = false;
}
}
public String getPrimaryKey() {
return primaryKey;
}
public Set<String> getDbTypes()
{
return dbTypes;
}
public boolean isAutoIncrement() {
return autoIncrement;
}
public boolean isNeedAddLimit() {
return needAddLimit;
}
public boolean isSecondLevel() {
return secondLevel;
}
public String getLocateRTableKeySql() {
return locateRTableKeySql;
}
public boolean isGlobalTable() {
return this.tableType == TableConfig.TYPE_GLOBAL_TABLE;
}
public String genLocateRootParentSQL() {
TableConfig tb = this;
StringBuilder tableSb = new StringBuilder();
StringBuilder condition = new StringBuilder();
TableConfig prevTC = null;
int level = 0;
String latestCond = null;
while (tb.parentTC != null) {
tableSb.append(tb.parentTC.name).append(',');
String relation = null;
if (level == 0) {
latestCond = " " + tb.parentTC.getName() + '.' + tb.parentKey
+ "=";
} else {
relation = tb.parentTC.getName() + '.' + tb.parentKey + '='
+ tb.name + '.' + tb.joinKey;
condition.append(relation).append(" AND ");
}
level++;
prevTC = tb;
tb = tb.parentTC;
}
String sql = "SELECT "
+ prevTC.parentTC.name
+ '.'
+ prevTC.parentKey
+ " FROM "
+ tableSb.substring(0, tableSb.length() - 1)
+ " WHERE "
+ ((level < 2) ? latestCond : condition.toString() + latestCond);
// System.out.println(this.name+" sql " + sql);
return sql;
}
public String getPartitionColumn() {
return partitionColumn;
}
public int getTableType() {
return tableType;
}
/**
* get root parent
*
* @return
*/
public TableConfig getRootParent() {
if (parentTC == null) {
return null;
}
TableConfig preParent = parentTC;
TableConfig parent = preParent.getParentTC();
while (parent != null) {
preParent = parent;
parent = parent.getParentTC();
}
return preParent;
}
public TableConfig getParentTC() {
return parentTC;
}
public boolean isChildTable() {
return childTable;
}
public String getJoinKey() {
return joinKey;
}
public String getParentKey() {
return parentKey;
}
/**
* @return upper-case
*/
public String getName() {
return name;
}
public ArrayList<String> getDataNodes() {
return dataNodes;
}
public String getRandomDataNode() {
int index = Math.abs(rand.nextInt(Integer.MAX_VALUE)) % dataNodes.size();
return dataNodes.get(index);
}
public boolean isRuleRequired() {
return ruleRequired;
}
public RuleConfig getRule() {
return rule;
}
public boolean primaryKeyIsPartionKey() {
return partionKeyIsPrimaryKey;
}
public ArrayList<String> getDistTables() {
return this.distTables;
}
public boolean isDistTable(){
if(this.distTables!=null && !this.distTables.isEmpty() ){
return true;
}
return false;
}
public List<SQLTableElement> getTableElementList() {
return tableElementList;
}
public void setTableElementList(List<SQLTableElement> tableElementList) {
this.tableElementList = tableElementList;
}
public ReentrantReadWriteLock getReentrantReadWriteLock() {
return reentrantReadWriteLock;
}
public void setReentrantReadWriteLock(ReentrantReadWriteLock reentrantReadWriteLock) {
this.reentrantReadWriteLock = reentrantReadWriteLock;
}
public String getTableStructureSQL() {
return tableStructureSQL;
}
public void setTableStructureSQL(String tableStructureSQL) {
this.tableStructureSQL = tableStructureSQL;
}
public Map<String, List<String>> getDataNodeTableStructureSQLMap() {
return dataNodeTableStructureSQLMap;
}
public void setDataNodeTableStructureSQLMap(Map<String, List<String>> dataNodeTableStructureSQLMap) {
this.dataNodeTableStructureSQLMap = dataNodeTableStructureSQLMap;
}
}