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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
|
/*
Copyright (c) 2011 James Ahlborn
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 com.healthmarketscience.jackcess.impl;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.EnumSet;
import java.util.HashSet;
import java.util.IdentityHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.healthmarketscience.jackcess.ColumnBuilder;
import com.healthmarketscience.jackcess.DataType;
import com.healthmarketscience.jackcess.IndexBuilder;
import com.healthmarketscience.jackcess.PropertyMap;
import com.healthmarketscience.jackcess.TableBuilder;
/**
* Helper class used to maintain state during table creation.
*
* @author James Ahlborn
* @usage _advanced_class_
*/
public class TableCreator extends TableMutator
{
private String _name;
private List<ColumnBuilder> _columns;
private List<IndexBuilder> _indexes;
private final List<IndexDataState> _indexDataStates =
new ArrayList<IndexDataState>();
private final Map<ColumnBuilder,ColumnState> _columnStates =
new IdentityHashMap<ColumnBuilder,ColumnState>();
private final List<ColumnBuilder> _lvalCols = new ArrayList<ColumnBuilder>();
private int _tdefPageNumber = PageChannel.INVALID_PAGE_NUMBER;
private int _umapPageNumber = PageChannel.INVALID_PAGE_NUMBER;
private int _indexCount;
private int _logicalIndexCount;
public TableCreator(DatabaseImpl database) {
super(database);
}
public String getName() {
return _name;
}
@Override
String getTableName() {
return getName();
}
@Override
public int getTdefPageNumber() {
return _tdefPageNumber;
}
public int getUmapPageNumber() {
return _umapPageNumber;
}
public List<ColumnBuilder> getColumns() {
return _columns;
}
public List<IndexBuilder> getIndexes() {
return _indexes;
}
public boolean hasIndexes() {
return !_indexes.isEmpty();
}
public int getIndexCount() {
return _indexCount;
}
public int getLogicalIndexCount() {
return _logicalIndexCount;
}
@Override
public IndexDataState getIndexDataState(IndexBuilder idx) {
for(IndexDataState idxDataState : _indexDataStates) {
for(IndexBuilder curIdx : idxDataState.getIndexes()) {
if(idx == curIdx) {
return idxDataState;
}
}
}
throw new IllegalStateException(withErrorContext(
"could not find state for index"));
}
public List<IndexDataState> getIndexDataStates() {
return _indexDataStates;
}
@Override
public ColumnState getColumnState(ColumnBuilder col) {
return _columnStates.get(col);
}
public List<ColumnBuilder> getLongValueColumns() {
return _lvalCols;
}
@Override
short getColumnNumber(String colName) {
for(ColumnBuilder col : _columns) {
if(col.getName().equalsIgnoreCase(colName)) {
return col.getColumnNumber();
}
}
return IndexData.COLUMN_UNUSED;
}
/**
* @return The number of variable length columns which are not long values
* found in the list
* @usage _advanced_method_
*/
public short countNonLongVariableLength() {
short rtn = 0;
for (ColumnBuilder col : _columns) {
if (col.isVariableLength() && !col.getType().isLongValue()) {
rtn++;
}
}
return rtn;
}
/**
* Creates the table in the database.
* @usage _advanced_method_
*/
public TableImpl createTable(TableBuilder table) throws IOException {
_name = table.getName();
_columns = table.getColumns();
_indexes = table.getIndexes();
if(_indexes == null) {
_indexes = Collections.<IndexBuilder>emptyList();
}
validate();
// assign column numbers and do some assorted column bookkeeping
short columnNumber = (short) 0;
for(ColumnBuilder col : _columns) {
col.setColumnNumber(columnNumber++);
if(col.getType().isLongValue()) {
_lvalCols.add(col);
// only lval columns need extra state
_columnStates.put(col, new ColumnState());
}
}
if(hasIndexes()) {
// sort out index numbers (and backing index data).
for(IndexBuilder idx : _indexes) {
idx.setIndexNumber(_logicalIndexCount++);
findIndexDataState(idx);
}
}
getPageChannel().startExclusiveWrite();
try {
// reserve some pages
_tdefPageNumber = reservePageNumber();
_umapPageNumber = reservePageNumber();
//Write the tdef page to disk.
TableImpl.writeTableDefinition(this);
// update the database with the new table info
getDatabase().addNewTable(_name, _tdefPageNumber, DatabaseImpl.TYPE_TABLE,
null, null);
TableImpl newTable = getDatabase().getTable(_name);
// add any table properties
boolean addedProps = false;
Map<String,PropertyMap.Property> props = table.getProperties();
if(props != null) {
newTable.getProperties().putAll(props.values());
addedProps = true;
}
for(ColumnBuilder cb : _columns) {
Map<String,PropertyMap.Property> colProps = cb.getProperties();
if(colProps != null) {
newTable.getColumn(cb.getName()).getProperties()
.putAll(colProps.values());
addedProps = true;
}
}
// all table and column props are saved together
if(addedProps) {
newTable.getProperties().save();
}
return newTable;
} finally {
getPageChannel().finishWrite();
}
}
private IndexDataState findIndexDataState(IndexBuilder idx) {
// search for an index which matches the given index (in terms of the
// backing data)
for(IndexDataState idxDataState : _indexDataStates) {
if(sameIndexData(idxDataState.getFirstIndex(), idx)) {
idxDataState.addIndex(idx);
return idxDataState;
}
}
// no matches found, need new index data state
IndexDataState idxDataState = new IndexDataState();
idxDataState.setIndexDataNumber(_indexCount++);
idxDataState.addIndex(idx);
_indexDataStates.add(idxDataState);
return idxDataState;
}
/**
* Validates the new table information before attempting creation.
*/
private void validate() throws IOException {
getDatabase().validateNewTableName(_name);
if((_columns == null) || _columns.isEmpty()) {
throw new IllegalArgumentException(withErrorContext(
"Cannot create table with no columns"));
}
if(_columns.size() > getFormat().MAX_COLUMNS_PER_TABLE) {
throw new IllegalArgumentException(withErrorContext(
"Cannot create table with more than " +
getFormat().MAX_COLUMNS_PER_TABLE + " columns"));
}
Set<String> colNames = new HashSet<String>();
// next, validate the column definitions
for(ColumnBuilder column : _columns) {
validateColumn(colNames, column);
}
List<ColumnBuilder> autoCols = getAutoNumberColumns();
if(autoCols.size() > 1) {
// for most autonumber types, we can only have one of each type
Set<DataType> autoTypes = EnumSet.noneOf(DataType.class);
for(ColumnBuilder c : autoCols) {
validateAutoNumberColumn(autoTypes, c);
}
}
if(hasIndexes()) {
if(_indexes.size() > getFormat().MAX_INDEXES_PER_TABLE) {
throw new IllegalArgumentException(withErrorContext(
"Cannot create table with more than " +
getFormat().MAX_INDEXES_PER_TABLE + " indexes"));
}
// now, validate the indexes
Set<String> idxNames = new HashSet<String>();
boolean foundPk[] = new boolean[1];
for(IndexBuilder index : _indexes) {
validateIndex(colNames, idxNames, foundPk, index);
}
}
}
private List<ColumnBuilder> getAutoNumberColumns()
{
List<ColumnBuilder> autoCols = new ArrayList<ColumnBuilder>(1);
for(ColumnBuilder c : _columns) {
if(c.isAutoNumber()) {
autoCols.add(c);
}
}
return autoCols;
}
private static boolean sameIndexData(IndexBuilder idx1, IndexBuilder idx2) {
// index data can be combined if flags match and columns (and col flags)
// match
if(idx1.getFlags() != idx2.getFlags()) {
return false;
}
if(idx1.getColumns().size() != idx2.getColumns().size()) {
return false;
}
for(int i = 0; i < idx1.getColumns().size(); ++i) {
IndexBuilder.Column col1 = idx1.getColumns().get(i);
IndexBuilder.Column col2 = idx2.getColumns().get(i);
if(!sameIndexData(col1, col2)) {
return false;
}
}
return true;
}
private static boolean sameIndexData(
IndexBuilder.Column col1, IndexBuilder.Column col2) {
return (col1.getName().equals(col2.getName()) &&
(col1.getFlags() == col2.getFlags()));
}
@Override
protected String withErrorContext(String msg) {
return msg + "(Table=" + getName() + ")";
}
}
|