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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
|
/*
Copyright (c) 2008 Health Market Science, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA
You can contact Health Market Science at info@healthmarketscience.com
or at the following address:
Health Market Science
2700 Horizon Drive
Suite 200
King of Prussia, PA 19406
*/
package com.healthmarketscience.jackcess.query;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import static com.healthmarketscience.jackcess.query.QueryFormat.*;
/**
* Base class for classes which encapsulate information about an Access query.
* The {@link #toSQLString()} method can be used to convert this object into
* the actual SQL string which this query data represents.
*
* @author James Ahlborn
*/
public abstract class Query
{
protected static final Log LOG = LogFactory.getLog(Query.class);
private static final Row EMPTY_ROW =
new Row(Collections.<String,Object>emptyMap());
public enum Type
{
SELECT(SELECT_QUERY_OBJECT_FLAG, 1),
MAKE_TABLE(MAKE_TABLE_QUERY_OBJECT_FLAG, 2),
APPEND(APPEND_QUERY_OBJECT_FLAG, 3),
UPDATE(UPDATE_QUERY_OBJECT_FLAG, 4),
DELETE(DELETE_QUERY_OBJECT_FLAG, 5),
CROSS_TAB(CROSS_TAB_QUERY_OBJECT_FLAG, 6),
DATA_DEFINITION(DATA_DEF_QUERY_OBJECT_FLAG, 7),
PASSTHROUGH(PASSTHROUGH_QUERY_OBJECT_FLAG, 8),
UNION(UNION_QUERY_OBJECT_FLAG, 9),
UNKNOWN(-1, -1);
private final int _objectFlag;
private final short _value;
private Type(int objectFlag, int value) {
_objectFlag = objectFlag;
_value = (short)value;
}
public int getObjectFlag() {
return _objectFlag;
}
public short getValue() {
return _value;
}
}
private final String _name;
private final List<Row> _rows;
private final int _objectId;
private final Type _type;
protected Query(String name, List<Row> rows, int objectId, Type type) {
_name = name;
_rows = rows;
_objectId = objectId;
_type = type;
if(type != Type.UNKNOWN) {
short foundType = getShortValue(getQueryType(rows),
_type.getValue());
if(foundType != _type.getValue()) {
throw new IllegalStateException("Unexpected query type " + foundType);
}
}
}
/**
* Returns the name of the query.
*/
public String getName() {
return _name;
}
/**
* Returns the type of the query.
*/
public Type getType() {
return _type;
}
/**
* Returns the unique object id of the query.
*/
public int getObjectId() {
return _objectId;
}
public int getObjectFlag() {
return getType().getObjectFlag();
}
/**
* Returns the rows from the system query table from which the query
* information was derived.
*/
public List<Row> getRows() {
return _rows;
}
protected List<Row> getRowsByAttribute(Byte attribute) {
return getRowsByAttribute(getRows(), attribute);
}
protected Row getRowByAttribute(Byte attribute) {
return getUniqueRow(getRowsByAttribute(getRows(), attribute));
}
protected Row getTypeRow() {
return getRowByAttribute(TYPE_ATTRIBUTE);
}
protected List<Row> getParameterRows() {
return getRowsByAttribute(PARAMETER_ATTRIBUTE);
}
protected Row getFlagRow() {
return getRowByAttribute(FLAG_ATTRIBUTE);
}
protected Row getRemoteDatabaseRow() {
return getRowByAttribute(REMOTEDB_ATTRIBUTE);
}
protected List<Row> getTableRows() {
return getRowsByAttribute(TABLE_ATTRIBUTE);
}
protected List<Row> getColumnRows() {
return getRowsByAttribute(COLUMN_ATTRIBUTE);
}
protected List<Row> getJoinRows() {
return getRowsByAttribute(JOIN_ATTRIBUTE);
}
protected Row getWhereRow() {
return getRowByAttribute(WHERE_ATTRIBUTE);
}
protected List<Row> getGroupByRows() {
return getRowsByAttribute(GROUPBY_ATTRIBUTE);
}
protected Row getHavingRow() {
return getRowByAttribute(HAVING_ATTRIBUTE);
}
protected List<Row> getOrderByRows() {
return getRowsByAttribute(ORDERBY_ATTRIBUTE);
}
protected abstract void toSQLString(StringBuilder builder);
protected void toSQLParameterString(StringBuilder builder) {
// handle any parameters
List<String> params = getParameters();
if(!params.isEmpty()) {
builder.append("PARAMETERS ").append(params)
.append(';').append(NEWLINE);
}
}
public List<String> getParameters()
{
return (new RowFormatter(getParameterRows()) {
@Override protected void format(StringBuilder builder, Row row) {
String typeName = PARAM_TYPE_MAP.get(row.flag);
if(typeName == null) {
throw new IllegalStateException("Unknown param type " + row.flag);
}
builder.append(row.name1).append(' ').append(typeName);
if((TEXT_FLAG.equals(row.flag)) && (getIntValue(row.extra, 0) > 0)) {
builder.append('(').append(row.extra).append(')');
}
}
}).format();
}
protected List<String> getFromTables()
{
List<Join> joinExprs = new ArrayList<Join>();
for(Row table : getTableRows()) {
StringBuilder builder = new StringBuilder();
if(table.expression != null) {
toQuotedExpr(builder, table.expression).append(IDENTIFIER_SEP_CHAR);
}
if(table.name1 != null) {
toOptionalQuotedExpr(builder, table.name1, true);
}
toAlias(builder, table.name2);
String key = ((table.name2 != null) ? table.name2 : table.name1);
joinExprs.add(new Join(key, builder.toString()));
}
List<Row> joins = getJoinRows();
if(!joins.isEmpty()) {
// combine any multi-column joins
Collection<List<Row>> comboJoins = combineJoins(joins);
for(List<Row> comboJoin : comboJoins) {
Row join = comboJoin.get(0);
String joinExpr = join.expression;
if(comboJoin.size() > 1) {
// combine all the join expressions with "AND"
AppendableList<String> comboExprs = new AppendableList<String>() {
private static final long serialVersionUID = 0L;
@Override
protected String getSeparator() {
return ") AND (";
}
};
for(Row tmpJoin : comboJoin) {
comboExprs.add(tmpJoin.expression);
}
joinExpr = new StringBuilder().append("(")
.append(comboExprs).append(")").toString();
}
String fromTable = join.name1;
String toTable = join.name2;
Join fromExpr = getJoinExpr(fromTable, joinExprs);
Join toExpr = getJoinExpr(toTable, joinExprs);
String joinType = JOIN_TYPE_MAP.get(join.flag);
if(joinType == null) {
throw new IllegalStateException("Unknown join type " + join.flag);
}
String expr = new StringBuilder().append(fromExpr)
.append(joinType).append(toExpr).append(" ON ")
.append(joinExpr).toString();
fromExpr.join(toExpr, expr);
joinExprs.add(fromExpr);
}
}
List<String> result = new AppendableList<String>();
for(Join joinExpr : joinExprs) {
result.add(joinExpr.expression);
}
return result;
}
private Join getJoinExpr(String table, List<Join> joinExprs)
{
for(Iterator<Join> iter = joinExprs.iterator(); iter.hasNext(); ) {
Join joinExpr = iter.next();
if(joinExpr.tables.contains(table)) {
iter.remove();
return joinExpr;
}
}
throw new IllegalStateException("Cannot find join table " + table);
}
private Collection<List<Row>> combineJoins(List<Row> joins)
{
// combine joins with the same to/from tables
Map<List<String>,List<Row>> comboJoinMap =
new LinkedHashMap<List<String>,List<Row>>();
for(Row join : joins) {
List<String> key = Arrays.asList(join.name1, join.name2);
List<Row> comboJoins = comboJoinMap.get(key);
if(comboJoins == null) {
comboJoins = new ArrayList<Row>();
comboJoinMap.put(key, comboJoins);
} else {
if(comboJoins.get(0).flag != join.flag) {
throw new IllegalStateException(
"Mismatched join flags for combo joins");
}
}
comboJoins.add(join);
}
return comboJoinMap.values();
}
protected String getFromRemoteDbPath()
{
return getRemoteDatabaseRow().name1;
}
protected String getFromRemoteDbType()
{
return getRemoteDatabaseRow().expression;
}
protected String getWhereExpression()
{
return getWhereRow().expression;
}
protected List<String> getOrderings()
{
return (new RowFormatter(getOrderByRows()) {
@Override protected void format(StringBuilder builder, Row row) {
builder.append(row.expression);
if(DESCENDING_FLAG.equalsIgnoreCase(row.name1)) {
builder.append(" DESC");
}
}
}).format();
}
public String getOwnerAccessType() {
return(hasFlag(OWNER_ACCESS_SELECT_TYPE) ?
"WITH OWNERACCESS OPTION" : DEFAULT_TYPE);
}
protected boolean hasFlag(int flagMask)
{
return hasFlag(getFlagRow(), flagMask);
}
protected boolean supportsStandardClauses() {
return true;
}
/**
* Returns the actual SQL string which this query data represents.
*/
public String toSQLString()
{
StringBuilder builder = new StringBuilder();
if(supportsStandardClauses()) {
toSQLParameterString(builder);
}
toSQLString(builder);
if(supportsStandardClauses()) {
String accessType = getOwnerAccessType();
if(!DEFAULT_TYPE.equals(accessType)) {
builder.append(NEWLINE).append(accessType);
}
builder.append(';');
}
return builder.toString();
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
/**
* Creates a concrete Query instance from the given query data.
*
* @param objectFlag the flag indicating the type of the query
* @param name the name of the query
* @param rows the rows from the system query table containing the data
* describing this query
* @param objectId the unique object id of this query
*
* @return a Query instance for the given query data
*/
public static Query create(int objectFlag, String name, List<Row> rows,
int objectId)
{
try {
switch(objectFlag) {
case SELECT_QUERY_OBJECT_FLAG:
return new SelectQuery(name, rows, objectId);
case MAKE_TABLE_QUERY_OBJECT_FLAG:
return new MakeTableQuery(name, rows, objectId);
case APPEND_QUERY_OBJECT_FLAG:
return new AppendQuery(name, rows, objectId);
case UPDATE_QUERY_OBJECT_FLAG:
return new UpdateQuery(name, rows, objectId);
case DELETE_QUERY_OBJECT_FLAG:
return new DeleteQuery(name, rows, objectId);
case CROSS_TAB_QUERY_OBJECT_FLAG:
return new CrossTabQuery(name, rows, objectId);
case DATA_DEF_QUERY_OBJECT_FLAG:
return new DataDefinitionQuery(name, rows, objectId);
case PASSTHROUGH_QUERY_OBJECT_FLAG:
return new PassthroughQuery(name, rows, objectId);
case UNION_QUERY_OBJECT_FLAG:
return new UnionQuery(name, rows, objectId);
default:
// unknown querytype
throw new IllegalStateException(
"unknown query object flag " + objectFlag);
}
} catch(IllegalStateException e) {
LOG.warn("Failed parsing query", e);
}
// return unknown query
return new UnknownQuery(name, rows, objectId, objectFlag);
}
private static Short getQueryType(List<Row> rows)
{
return getUniqueRow(getRowsByAttribute(rows, TYPE_ATTRIBUTE)).flag;
}
private static List<Row> getRowsByAttribute(List<Row> rows, Byte attribute) {
List<Row> result = new ArrayList<Row>();
for(Row row : rows) {
if(attribute.equals(row.attribute)) {
result.add(row);
}
}
return result;
}
protected static Row getUniqueRow(List<Row> rows) {
if(rows.size() == 1) {
return rows.get(0);
}
if(rows.isEmpty()) {
return EMPTY_ROW;
}
throw new IllegalStateException("Unexpected number of rows for" + rows);
}
protected static List<Row> filterRowsByFlag(
List<Row> rows, final short flag)
{
return new RowFilter() {
@Override protected boolean keep(Row row) {
return hasFlag(row, flag);
}
}.filter(rows);
}
protected static List<Row> filterRowsByNotFlag(
List<Row> rows, final short flag)
{
return new RowFilter() {
@Override protected boolean keep(Row row) {
return !hasFlag(row, flag);
}
}.filter(rows);
}
protected static boolean hasFlag(Row row, int flagMask)
{
return((getShortValue(row.flag, 0) & flagMask) != 0);
}
protected static short getShortValue(Short s, int def) {
return ((s != null) ? (short)s : (short)def);
}
protected static int getIntValue(Integer i, int def) {
return ((i != null) ? (int)i : def);
}
protected static StringBuilder toOptionalQuotedExpr(StringBuilder builder,
String fullExpr,
boolean isIdentifier)
{
String[] exprs = (isIdentifier ?
IDENTIFIER_SEP_PAT.split(fullExpr) :
new String[]{fullExpr});
for(int i = 0; i < exprs.length; ++i) {
String expr = exprs[i];
if(QUOTABLE_CHAR_PAT.matcher(expr).find()) {
toQuotedExpr(builder, expr);
} else {
builder.append(expr);
}
if(i < (exprs.length - 1)) {
builder.append(IDENTIFIER_SEP_CHAR);
}
}
return builder;
}
protected static StringBuilder toQuotedExpr(StringBuilder builder,
String expr)
{
return builder.append('[').append(expr).append(']');
}
protected static StringBuilder toRemoteDb(StringBuilder builder,
String remoteDbPath,
String remoteDbType) {
if((remoteDbPath != null) || (remoteDbType != null)) {
// note, always include path string, even if empty
builder.append(" IN '");
if(remoteDbPath != null) {
builder.append(remoteDbPath);
}
builder.append('\'');
if(remoteDbType != null) {
builder.append(" [").append(remoteDbType).append(']');
}
}
return builder;
}
protected static StringBuilder toAlias(StringBuilder builder,
String alias) {
if(alias != null) {
toOptionalQuotedExpr(builder.append(" AS "), alias, false);
}
return builder;
}
private static final class UnknownQuery extends Query
{
private final int _objectFlag;
private UnknownQuery(String name, List<Row> rows, int objectId,
int objectFlag)
{
super(name, rows, objectId, Type.UNKNOWN);
_objectFlag = objectFlag;
}
@Override
public int getObjectFlag() {
return _objectFlag;
}
@Override
protected void toSQLString(StringBuilder builder) {
throw new UnsupportedOperationException();
}
}
/**
* Struct containing the information from a single row of the system query
* table.
*/
public static final class Row
{
public final Byte attribute;
public final String expression;
public final Short flag;
public final Integer extra;
public final String name1;
public final String name2;
public final Integer objectId;
public final byte[] order;
public Row(Map<String,Object> tableRow) {
this((Byte)tableRow.get(COL_ATTRIBUTE),
(String)tableRow.get(COL_EXPRESSION),
(Short)tableRow.get(COL_FLAG),
(Integer)tableRow.get(COL_EXTRA),
(String)tableRow.get(COL_NAME1),
(String)tableRow.get(COL_NAME2),
(Integer)tableRow.get(COL_OBJECTID),
(byte[])tableRow.get(COL_ORDER));
}
public Row(Byte attribute, String expression, Short flag,
Integer extra, String name1, String name2,
Integer objectId, byte[] order)
{
this.attribute = attribute;
this.expression = expression;
this.flag = flag;
this.extra = extra;
this.name1 = name1;
this.name2= name2;
this.objectId = objectId;
this.order = order;
}
public Map<String,Object> toTableRow()
{
Map<String,Object> tableRow = new LinkedHashMap<String,Object>();
tableRow.put(COL_ATTRIBUTE, attribute);
tableRow.put(COL_EXPRESSION, expression);
tableRow.put(COL_FLAG, flag);
tableRow.put(COL_EXTRA, extra);
tableRow.put(COL_NAME1, name1);
tableRow.put(COL_NAME2, name2);
tableRow.put(COL_OBJECTID, objectId);
tableRow.put(COL_ORDER, order);
return tableRow;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
}
protected static abstract class RowFormatter
{
private final List<Row> _list;
protected RowFormatter(List<Row> list) {
_list = list;
}
public List<String> format() {
return format(new AppendableList<String>());
}
public List<String> format(List<String> strs) {
for(Row row : _list) {
StringBuilder builder = new StringBuilder();
format(builder, row);
strs.add(builder.toString());
}
return strs;
}
protected abstract void format(StringBuilder builder, Row row);
}
protected static abstract class RowFilter
{
protected RowFilter() {
}
public List<Row> filter(List<Row> list) {
for(Iterator<Row> iter = list.iterator(); iter.hasNext(); ) {
if(!keep(iter.next())) {
iter.remove();
}
}
return list;
}
protected abstract boolean keep(Row row);
}
protected static class AppendableList<E> extends ArrayList<E>
{
private static final long serialVersionUID = 0L;
protected AppendableList() {
}
protected AppendableList(Collection<? extends E> c) {
super(c);
}
protected String getSeparator() {
return ", ";
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
for(Iterator<E> iter = iterator(); iter.hasNext(); ) {
builder.append(iter.next().toString());
if(iter.hasNext()) {
builder.append(getSeparator());
}
}
return builder.toString();
}
}
private static final class Join
{
public final List<String> tables = new ArrayList<String>();
public boolean isJoin;
public String expression;
private Join(String table, String expr) {
tables.add(table);
expression = expr;
}
public void join(Join other, String newExpr) {
tables.addAll(other.tables);
isJoin = true;
expression = newExpr;
}
@Override
public String toString() {
return (isJoin ? ("(" + expression + ")") : expression);
}
}
}
|