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
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
|
/*
* Copyright 2014 James Moger.
*
* 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.iciql;
import java.lang.annotation.Annotation;
import java.lang.reflect.Array;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.lang.reflect.Proxy;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import java.util.concurrent.ConcurrentHashMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import com.iciql.Iciql.DataTypeAdapter;
import com.iciql.Iciql.TypeAdapter;
import com.iciql.util.JdbcUtils;
import com.iciql.util.StringUtils;
import com.iciql.util.Utils;
/**
* DaoProxy creates a dynamic instance of the provided Dao interface.
*
* @author James Moger
*
* @param <X>
*/
final class DaoProxy<X extends Dao> implements InvocationHandler, Dao {
private final Db db;
private final Class<X> daoInterface;
private final char bindingDelimiter = ':';
private final Map<Method, IndexedSql> indexedSqlCache;
DaoProxy(Db db, Class<X> daoInterface) {
this.db = db;
this.daoInterface = daoInterface;
this.indexedSqlCache = new ConcurrentHashMap<Method, IndexedSql>();
}
/**
* Builds a proxy object for the DAO interface.
*
* @return a proxy object
*/
@SuppressWarnings("unchecked")
X build() {
if (!daoInterface.isInterface()) {
throw new IciqlException("Dao {0} must be an interface!", daoInterface.getName());
}
ClassLoader classLoader = db.getClass().getClassLoader();
Set<Class<?>> interfaces = new HashSet<Class<?>>();
interfaces.add(Dao.class);
interfaces.add(daoInterface);
for (Class<?> clazz : daoInterface.getInterfaces()) {
interfaces.add(clazz);
}
Class<?>[] constructorParams = { InvocationHandler.class };
Class<?>[] allInterfaces = interfaces.toArray(new Class<?>[interfaces.size()]);
try {
Class<?> proxyClass = Proxy.getProxyClass(classLoader, allInterfaces);
Constructor<?> proxyConstructor = proxyClass.getConstructor(constructorParams);
return (X) proxyConstructor.newInstance(new Object[] { this });
} catch (Exception e) {
throw new IciqlException(e);
}
}
/**
* Invoke intercepts method calls and delegates execution to the appropriate object.
*/
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
try {
if (method.getDeclaringClass() == Dao.class) {
return method.invoke(this, args);
} else if (method.isAnnotationPresent(SqlQuery.class)) {
String sql = method.getAnnotation(SqlQuery.class).value();
String statement = db.getDaoStatementProvider().getStatement(sql, db.getMode());
return executeQuery(method, args, statement);
} else if (method.isAnnotationPresent(SqlStatement.class)) {
String sql = method.getAnnotation(SqlStatement.class).value();
String statement = db.getDaoStatementProvider().getStatement(sql, db.getMode());
return executeStatement(method, args, statement);
} else {
throw new IciqlException("Can not invoke non-dao method {0}.{1}",
method.getDeclaringClass().getSimpleName(), method.getName());
}
} catch (InvocationTargetException te) {
throw te.getCause();
}
}
/**
* Execute a query.
*
* @param method
* @param methodArgs
* @param sql
* @return the result
*/
private Object executeQuery(Method method, Object[] methodArgs, String sql) {
/*
* Determine and validate the return type
*/
Class<?> returnType = method.getReturnType();
if (void.class == returnType) {
throw new IciqlException("You must specify a return type for @{0} {1}.{2}!",
SqlQuery.class.getSimpleName(), method.getDeclaringClass().getSimpleName(), method.getName());
}
if (Collection.class.isAssignableFrom(returnType)) {
throw new IciqlException("You may not return a collection for an @{0} method, please change the return type of {1}.{2} to YourClass[]!",
SqlQuery.class.getSimpleName(), method.getDeclaringClass().getSimpleName(), method.getName());
}
boolean isArray = false;
if (returnType.isArray()) {
isArray = true;
returnType = returnType.getComponentType();
}
boolean isJavaType = returnType.isEnum()
|| returnType.isPrimitive()
|| java.lang.Boolean.class.isAssignableFrom(returnType)
|| java.lang.Number.class.isAssignableFrom(returnType)
|| java.lang.String.class.isAssignableFrom(returnType)
|| java.util.Date.class.isAssignableFrom(returnType)
|| byte[].class.isAssignableFrom(returnType);
// determine the return type adapter, if any
DataTypeAdapter<?> adapter = null;
for (Annotation annotation : method.getAnnotations()) {
if (annotation.annotationType() == TypeAdapter.class) {
TypeAdapter typeAdapter = (TypeAdapter) annotation;
adapter = db.getDialect().getAdapter(typeAdapter.value());
break;
} else if (annotation.annotationType().isAnnotationPresent(TypeAdapter.class)) {
TypeAdapter typeAdapter = annotation.annotationType().getAnnotation(TypeAdapter.class);
adapter = db.getDialect().getAdapter(typeAdapter.value());
break;
}
}
/*
* Prepare & execute sql
*/
PreparedSql preparedSql = prepareSql(method, methodArgs, sql);
List<Object> objects;
if (!isJavaType && adapter == null) {
// query of an Iciql model
objects = db.executeQuery(returnType, preparedSql.sql, preparedSql.parameters);
} else {
// query of (array of) standard Java type or a DataTypeAdapter type
objects = Utils.newArrayList();
ResultSet rs = db.executeQuery(preparedSql.sql, preparedSql.parameters);
try {
while (rs.next()) {
Object o = rs.getObject(1);
Object value;
if (adapter == null) {
// use internal Iciql type conversion
value = Utils.convert(o, returnType);
} else {
// use the type adapter to convert the JDBC object to a domain type
value = adapter.deserialize(o);
}
objects.add(value);
if (!isArray) {
// we are not returning an array so we break
// the loop and return the first result
break;
}
}
} catch (SQLException e) {
throw new IciqlException(e);
} finally {
JdbcUtils.closeSilently(rs);
}
}
/*
* Return the results
*/
if (objects == null || objects.isEmpty()) {
// no results
if (isArray) {
// return an empty array
return Array.newInstance(returnType, 0);
}
// nothing to return!
return null;
} else if (isArray) {
// return an array of object results
Object array = Array.newInstance(returnType, objects.size());
for (int i = 0; i < objects.size(); i++) {
Array.set(array, i, objects.get(i));
}
return array;
}
// return first element
return objects.get(0);
}
/**
* Execute a statement.
*
* @param method
* @param methodArgs
* @param sql
* @return the result
*/
private Object executeStatement(Method method, Object[] methodArgs, String sql) {
/*
* Determine and validate the return type
*/
Class<?> returnType = method.getReturnType();
if (void.class != returnType && boolean.class != returnType && int.class != returnType) {
throw new IciqlException("Invalid return type '{0}' for @{1} {2}.{3}!",
returnType.getSimpleName(), SqlQuery.class.getSimpleName(),
method.getDeclaringClass().getSimpleName(), method.getName());
}
/*
* Prepare & execute sql
*/
PreparedSql preparedSql = prepareSql(method, methodArgs, sql);
int rows = db.executeUpdate(preparedSql.sql, preparedSql.parameters);
/*
* Return the results
*/
if (void.class == returnType) {
// return nothing
return null;
} else if (boolean.class == returnType) {
// return true if any rows were affected
return rows > 0;
} else {
// return number of rows
return rows;
}
}
/**
* Prepares an sql statement and execution parameters based on the supplied
* method and it's arguments.
*
* @param method
* @param methodArgs
* @param sql
* @return a prepared sql statement and arguments
*/
private PreparedSql prepareSql(Method method, Object[] methodArgs, String sql) {
if (methodArgs == null || methodArgs.length == 0) {
// no method arguments
return new PreparedSql(sql, null);
}
IndexedSql indexedSql = indexedSqlCache.get(method);
if (indexedSql == null) {
// index the sql and method args
indexedSql = indexSql(method, sql);
// cache the indexed sql for re-use
indexedSqlCache.put(method, indexedSql);
}
final PreparedSql preparedSql = indexedSql.prepareSql(db, methodArgs);
return preparedSql;
}
/**
* Indexes an sql statement and method args based on the supplied
* method and it's arguments.
*
* @param method
* @param sql
* @return an indexed sql statement and arguments
*/
private IndexedSql indexSql(Method method, String sql) {
Map<String, IndexedArgument> parameterIndex = buildParameterIndex(method);
// build a regex to extract parameter names from the sql statement
StringBuilder sb = new StringBuilder();
sb.append(bindingDelimiter);
sb.append("{1}(\\?");
for (String name : parameterIndex.keySet()) {
sb.append("|");
// strip binding delimeter from name
sb.append(name);
}
sb.append(')');
// identify parameters, replace with the '?' PreparedStatement
// delimiter and build the PreparedStatement parameters array
final String regex = sb.toString();
final Pattern p = Pattern.compile(regex);
final Matcher m = p.matcher(sql);
final StringBuffer buffer = new StringBuffer();
List<IndexedArgument> indexedArgs = Utils.newArrayList();
int count = 0;
while (m.find()) {
String binding = m.group(1);
m.appendReplacement(buffer, "?");
IndexedArgument indexedArg;
if ("?".equals(binding)) {
// standard ? JDBC placeholder
indexedArg = parameterIndex.get("arg" + count);
} else {
// named placeholder
indexedArg = parameterIndex.get(binding);
}
if (indexedArg == null) {
throw new IciqlException("Unbound SQL parameter '{0}' in {1}.{2}",
binding, method.getDeclaringClass().getSimpleName(), method.getName());
}
indexedArgs.add(indexedArg);
count++;
}
m.appendTail(buffer);
final String statement = buffer.toString();
// create an IndexedSql container for the statement and indexes
return new IndexedSql(statement, Collections.unmodifiableList(indexedArgs));
}
/**
* Builds an index of parameter name->(position,typeAdapter) from the method arguments
* array. This index is calculated once per method.
*
* @param method
* @return a bindings map of ("name", IndexedArgument) pairs
*/
private Map<String, IndexedArgument> buildParameterIndex(Method method) {
Map<String, IndexedArgument> index = new TreeMap<String, IndexedArgument>();
Annotation [][] annotationsMatrix = method.getParameterAnnotations();
for (int i = 0; i < annotationsMatrix.length; i++) {
Annotation [] annotations = annotationsMatrix[i];
/*
* Conditionally map the bean properties of the method argument
* class to Method and Field instances.
*/
BindBean bean = getAnnotation(BindBean.class, annotations);
if (bean != null) {
final String prefix = bean.value();
final Class<?> argumentClass = method.getParameterTypes()[i];
Map<String, IndexedArgument> beanIndex = buildBeanIndex(i, prefix, argumentClass);
index.putAll(beanIndex);
}
Class<? extends DataTypeAdapter<?>> typeAdapter = Utils.getDataTypeAdapter(annotations);
final IndexedArgument indexedArgument = new IndexedArgument(i, typeAdapter);
// :N - 1-indexed, like JDBC ResultSet
index.put("" + (i + 1), indexedArgument);
// argN - 0-indexed, like Reflection
index.put("arg" + i, indexedArgument);
// Bound name
Bind binding = getAnnotation(Bind.class, annotations);
if (binding!= null && !binding.value().isEmpty()) {
index.put(binding.value(), indexedArgument);
}
// try mapping Java 8 argument names, may overwrite argN
try {
Class<?> nullArgs = null;
Method getParameters = method.getClass().getMethod("getParameters", nullArgs);
if (getParameters != null) {
Object [] parameters = (Object []) getParameters.invoke(method, nullArgs);
if (parameters != null) {
Object o = parameters[i];
Method getName = o.getClass().getMethod("getName", nullArgs);
String j8name = getName.invoke(o, nullArgs).toString();
if (!j8name.isEmpty()) {
index.put(j8name, indexedArgument);
}
}
}
} catch (Throwable t) {
}
}
return index;
}
/**
* Builds an index of parameter name->(position,method) from the method arguments
* array. This index is calculated once per method.
*
* @param argumentIndex
* @param prefix
* @param beanClass
* @return a bindings map of ("prefix.property", IndexedArgument) pairs
*/
private Map<String, IndexedArgument> buildBeanIndex(int argumentIndex, String prefix, Class<?> beanClass) {
final String beanPrefix = StringUtils.isNullOrEmpty(prefix) ? "" : (prefix + ".");
final Map<String, IndexedArgument> index = new TreeMap<String, IndexedArgument>();
// map JavaBean property getters
for (Method method : beanClass.getMethods()) {
if (Modifier.isStatic(method.getModifiers())
|| method.getReturnType() == void.class
|| method.getParameterTypes().length > 0
|| method.getDeclaringClass() == Object.class) {
// not a JavaBean property
continue;
}
final String propertyName;
final String name = method.getName();
if (name.startsWith("get")) {
propertyName = method.getName().substring(3);
} else if (name.startsWith("is")) {
propertyName = method.getName().substring(2);
} else {
propertyName = null;
}
if (propertyName == null) {
// not a conventional JavaBean property
continue;
}
final String binding = beanPrefix + preparePropertyName(propertyName);
final IndexedArgument indexedArg = new IndexedArgument(argumentIndex, method);
index.put(binding, indexedArg);
}
// map public instance fields
for (Field field : beanClass.getFields()) {
if (Modifier.isStatic(field.getModifiers())) {
// not a JavaBean property
continue;
}
final String binding = beanPrefix + preparePropertyName(field.getName());
final IndexedArgument indexedArg = new IndexedArgument(argumentIndex, field);
index.put(binding, indexedArg);
}
return index;
}
@SuppressWarnings("unchecked")
private <T> T getAnnotation(Class<T> annotationClass, Annotation [] annotations) {
if (annotations != null) {
for (Annotation annotation : annotations) {
if (annotation.annotationType() == annotationClass) {
return (T) annotation;
}
}
}
return null;
}
private String preparePropertyName(String value) {
return Character.toLowerCase(value.charAt(0)) + value.substring(1);
}
/*
*
* Standard Dao method implementations delegate to the underlying Db
*
*/
@Override
public final Db db() {
return db;
}
@Override
public final <T> boolean insert(T t) {
return db.insert(t);
}
@Override
public final <T> void insertAll(List<T> t) {
db.insertAll(t);
}
@Override
public final <T> long insertAndGetKey(T t) {
return db.insertAndGetKey(t);
}
@Override
public final <T> List<Long> insertAllAndGetKeys(List<T> t) {
return db.insertAllAndGetKeys(t);
}
@Override
public final <T> boolean update(T t) {
return db.update(t);
}
@Override
public final <T> void updateAll(List<T> t) {
db.updateAll(t);
}
@Override
public final <T> void merge(T t) {
db.merge(t);
}
@Override
public final <T> boolean delete(T t) {
return db.delete(t);
}
@Override
public final <T> void deleteAll(List<T> t) {
db.deleteAll(t);
}
@Override
public final void close() {
db.close();
}
/**
* Container class to hold the prepared JDBC SQL statement and execution
* parameters.
*/
private class PreparedSql {
final String sql;
final Object [] parameters;
PreparedSql(String sql, Object [] parameters) {
this.sql = sql;
this.parameters = parameters;
}
@Override
public String toString() {
return sql;
}
}
/**
* Container class to hold a parsed JDBC SQL statement and
* IndexedParameters.
* <p>
* Instances of this class are cached because they are functional processing
* containers as they contain Method and Field references for binding beans
* and matching to method arguments.
* </p>
*/
private class IndexedSql {
final String sql;
final List<IndexedArgument> indexedArgs;
IndexedSql(String sql, List<IndexedArgument> indexedArgs) {
this.sql = sql;
this.indexedArgs = indexedArgs;
}
/**
* Prepares the method arguments for statement execution.
*
* @param db
* @param methodArgs
* @return the prepared sql statement and parameters
*/
PreparedSql prepareSql(Db db, Object [] methodArgs) {
Object [] parameters = new Object[indexedArgs.size()];
for (int i = 0; i < indexedArgs.size(); i++) {
IndexedArgument indexedArg = indexedArgs.get(i);
Object methodArg = methodArgs[indexedArg.index];
Object value = methodArg;
Class<? extends DataTypeAdapter<?>> typeAdapter = indexedArg.typeAdapter;
if (indexedArg.method != null) {
// execute the bean method
try {
value = indexedArg.method.invoke(methodArg);
typeAdapter = Utils.getDataTypeAdapter(indexedArg.method.getAnnotations());
} catch (Exception e) {
throw new IciqlException(e);
}
} else if (indexedArg.field != null) {
// extract the field value
try {
value = indexedArg.field.get(methodArg);
typeAdapter = Utils.getDataTypeAdapter(indexedArg.field.getAnnotations());
} catch (Exception e) {
throw new IciqlException(e);
}
} else if (typeAdapter == null) {
// identify the type adapter for the argument class
typeAdapter = Utils.getDataTypeAdapter(methodArg.getClass().getAnnotations());
}
// prepare the parameter
parameters[i] = prepareParameter(db, value, typeAdapter);
}
return new PreparedSql(sql, parameters);
}
/**
* Prepares a method argument to an sql parameter for transmission to a
* database.
*
* @param db
* @param arg
* @param typeAdapter
* @return a prepared parameter
*/
private Object prepareParameter(Db db, Object arg, Class<? extends DataTypeAdapter<?>> typeAdapter) {
if (typeAdapter != null) {
// use a type adapter to serialize the method argument
Object o = db.getDialect().serialize(arg, typeAdapter);
return o;
} else {
// use the method argument
return arg;
}
}
@Override
public String toString() {
return sql;
}
}
/**
* IndexedArgument holds cached information about how to process an method
* argument by it's index in the method arguments array.
* <p>
* An argument may be passed-through, might be bound to a bean property,
* might be transformed with a type adapter, or a combination of these.
* </p>
*/
private class IndexedArgument {
final int index;
final Class<? extends DataTypeAdapter<?>> typeAdapter;
final Method method;
final Field field;
IndexedArgument(int index, Class<? extends DataTypeAdapter<?>> typeAdapter) {
this.index = index;
this.typeAdapter = typeAdapter;
this.method = null;
this.field = null;
}
IndexedArgument(int methodArgIndex, Method method) {
this.index = methodArgIndex;
this.typeAdapter = null;
this.method = method;
this.field = null;
}
IndexedArgument(int methodArgIndex, Field field) {
this.index = methodArgIndex;
this.typeAdapter = null;
this.method = null;
this.field = field;
}
@Override
public String toString() {
String accessor;
if (method != null) {
accessor = "M:" + method.getDeclaringClass().getSimpleName() + "." + method.getName();
} else if (field != null) {
accessor = "F:" + field.getDeclaringClass().getSimpleName() + "." + field.getName();
} else {
accessor = "A:arg";
}
return index + ":" + accessor + (typeAdapter == null ? "" : (":" + typeAdapter.getSimpleName()));
}
}
}
|