-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInsertOnUpdateSelectivePlugin.java
554 lines (478 loc) · 31.4 KB
/
InsertOnUpdateSelectivePlugin.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
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
package com.revengemission.plugins.mybatis;
import org.mybatis.generator.api.IntrospectedColumn;
import org.mybatis.generator.api.IntrospectedTable;
import org.mybatis.generator.api.dom.java.FullyQualifiedJavaType;
import org.mybatis.generator.api.dom.java.Interface;
import org.mybatis.generator.api.dom.java.Method;
import org.mybatis.generator.api.dom.java.Parameter;
import org.mybatis.generator.api.dom.xml.Attribute;
import org.mybatis.generator.api.dom.xml.Document;
import org.mybatis.generator.api.dom.xml.TextElement;
import org.mybatis.generator.api.dom.xml.VisitableElement;
import org.mybatis.generator.api.dom.xml.XmlElement;
import org.slf4j.LoggerFactory;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* 插入数据时,重复键更新
*/
public class InsertOnUpdateSelectivePlugin extends AbstractXmbgPlugin {
private static final org.slf4j.Logger log = LoggerFactory.getLogger(InsertOnUpdateSelectivePlugin.class);
private static final String CLIENT_METHOD_NAME_SINGLE = "insertOnUpdateSelective";
private static final String CLIENT_METHOD_NAME_SINGLE2 = "insertOnUpdateIgnoreFields";
private static final String CLIENT_METHOD_NAME_SINGLE3 = "insertOnUpdateSelectiveAndIgnoreFields";
private static final String CLIENT_METHOD_NAME_BATCH = "batchInsertOnUpdateSelective";
private static final String CLIENT_METHOD_NAME_BATCH2 = "batchInsertOnUpdateIgnoreFields";
private static final String CLIENT_METHOD_NAME_BATCH3 = "batchInsertOnUpdateSelectiveAndIgnoreFields";
private static final String PROPERTY_PREFIX = "item.";
@Override
public void initialized(IntrospectedTable introspectedTable) {
// log.info("enter initialized {}", getTableName(introspectedTable));
}
@Override
public boolean validate(List<String> list) {
log.info("enter validate {}", list == null ? 0 : list.size());
return true;
}
@Override
public boolean clientGenerated(Interface interfaze, IntrospectedTable introspectedTable) {
String currentTableName = getTableName(introspectedTable);
log.info("enter clientGenerated table {}", currentTableName);
properties.forEach((k, v) -> {
if (currentTableName.equalsIgnoreCase(k.toString().trim())) {
String objectName = getEntityName(introspectedTable);
{
Method methodSingle = new Method(CLIENT_METHOD_NAME_SINGLE);
methodSingle.setAbstract(true);
methodSingle.addParameter(new Parameter(new FullyQualifiedJavaType(objectName), "row"));
methodSingle.setReturnType(FullyQualifiedJavaType.getIntInstance());
interfaze.addMethod(methodSingle);
}
{
Method methodSingle = new Method(CLIENT_METHOD_NAME_SINGLE2);
methodSingle.setAbstract(true);
methodSingle.addParameter(new Parameter(new FullyQualifiedJavaType(objectName), "row"));
methodSingle.setReturnType(FullyQualifiedJavaType.getIntInstance());
interfaze.addMethod(methodSingle);
}
{
Method methodSingle = new Method(CLIENT_METHOD_NAME_SINGLE3);
methodSingle.setAbstract(true);
methodSingle.addParameter(new Parameter(new FullyQualifiedJavaType(objectName), "row"));
methodSingle.setReturnType(FullyQualifiedJavaType.getIntInstance());
interfaze.addMethod(methodSingle);
}
{
Method methodBatch = new Method(CLIENT_METHOD_NAME_BATCH);
methodBatch.setAbstract(true);
FullyQualifiedJavaType type = new FullyQualifiedJavaType("java.util.List<" + objectName + ">");
methodBatch.addParameter(new Parameter(type, "list"));
methodBatch.setReturnType(FullyQualifiedJavaType.getIntInstance());
interfaze.addMethod(methodBatch);
}
{
Method methodBatch = new Method(CLIENT_METHOD_NAME_BATCH2);
methodBatch.setAbstract(true);
FullyQualifiedJavaType type = new FullyQualifiedJavaType("java.util.List<" + objectName + ">");
methodBatch.addParameter(new Parameter(type, "list"));
methodBatch.setReturnType(FullyQualifiedJavaType.getIntInstance());
interfaze.addMethod(methodBatch);
}
{
Method methodBatch = new Method(CLIENT_METHOD_NAME_BATCH3);
methodBatch.setAbstract(true);
FullyQualifiedJavaType type = new FullyQualifiedJavaType("java.util.List<" + objectName + ">");
methodBatch.addParameter(new Parameter(type, "list"));
methodBatch.setReturnType(FullyQualifiedJavaType.getIntInstance());
interfaze.addMethod(methodBatch);
}
}
});
return true;
}
//uniqueFields=a,b;updateFields=c,d,e,f
protected Set<String> getUniqueFields(String value) {
Set<String> uniqueFields = new LinkedHashSet<>();
String[] strings = value.trim().split(";");
for (String s : strings) {
if (s.startsWith("uniqueFields")) {
String[] fields = s.split("=");
if (fields.length == 2) {
String[] fieldsArray = fields[1].split(",");
for (String field : fieldsArray) {
uniqueFields.add(field.trim());
}
}
}
}
return uniqueFields;
}
//uniqueFields=a,b;updateFields=c,d,e,f
protected Set<String> getUpdateIgnoreFields(String value) {
Set<String> updateIgnoreFields = new LinkedHashSet<>();
String[] strings = value.trim().split(";");
for (String s : strings) {
if (s.startsWith("updateIgnoreFields")) {
String[] fields = s.split("=");
if (fields.length == 2) {
String[] fieldsArray = fields[1].split(",");
for (String field : fieldsArray) {
updateIgnoreFields.add(field.trim());
}
}
}
}
if (updateIgnoreFields.isEmpty()) {
updateIgnoreFields.add("id");
updateIgnoreFields.add("deleted");
updateIgnoreFields.add("record_status");
updateIgnoreFields.add("sort_priority");
updateIgnoreFields.add("remark");
updateIgnoreFields.add("date_created");
}
return updateIgnoreFields;
}
@Override
public boolean sqlMapDocumentGenerated(Document document, IntrospectedTable introspectedTable) {
String currentTableName = getTableName(introspectedTable);
log.info("enter sqlMapDocumentGenerated table {}", currentTableName);
for (Map.Entry<Object, Object> entry : properties.entrySet()) {
Object k = entry.getKey();
Object v = entry.getValue();
if (currentTableName.equalsIgnoreCase(k.toString().trim())) {
List<IntrospectedColumn> notAutoIncrementColumnList = introspectedTable.getAllColumns().stream().filter(introspectedColumn -> !introspectedColumn.isAutoIncrement()).toList();
TextElement onMysqlUpdateElement = new TextElement("ON DUPLICATE KEY UPDATE");
Set<String> uniqueFields = getUniqueFields((String) v);
TextElement postgresqlOnConflictElement = new TextElement("ON CONFLICT (" + String.join(", ", uniqueFields) + ")");
{
XmlElement insertXmlElement = new XmlElement("insert");
insertXmlElement.addAttribute(new Attribute("id", CLIENT_METHOD_NAME_SINGLE));
List<String> primaryKeys = getPrimaryKeys(introspectedTable);
if (primaryKeys.size() == 1) {
insertXmlElement.addAttribute(new Attribute("keyColumn", primaryKeys.get(0)));
insertXmlElement.addAttribute(new Attribute("keyProperty", primaryKeys.get(0)));
insertXmlElement.addAttribute(new Attribute("useGeneratedKeys", "true"));
}
insertXmlElement.addAttribute(new Attribute("parameterType", context.getJavaModelGeneratorConfiguration().getTargetPackage() + "." + getEntityName(introspectedTable)));
generateTextBlockAppendTableName("insert into ", introspectedTable, insertXmlElement);
generateActualColumnNamesWithParenthesis(notAutoIncrementColumnList, insertXmlElement);
insertXmlElement.addElement(new TextElement("values "));
generateParametersSeparateByCommaWithParenthesis("", notAutoIncrementColumnList, insertXmlElement);
/// mysql
XmlElement mysqlIfElement = new XmlElement("if");
mysqlIfElement.addAttribute(new Attribute("test", "_databaseId == 'mysql'"));
///mysqlIfElement.addElement(new TextElement("AS newRowValue (" + getFieldsString(notAutoIncrementColumnList, "_new") + ")"));
mysqlIfElement.addElement(new TextElement("AS newRowValue"));
mysqlIfElement.addElement(onMysqlUpdateElement);
mysqlIfElement.addElement(getMysqlUpdateSelectiveClauseText(introspectedTable));
insertXmlElement.addElement(mysqlIfElement);
/// postgresql
XmlElement postgresqlIfElement = new XmlElement("if");
postgresqlIfElement.addAttribute(new Attribute("test", "_databaseId == 'postgresql' or _databaseId == 'sqlite'"));
postgresqlIfElement.addElement(postgresqlOnConflictElement);
postgresqlIfElement.addElement(new TextElement("DO UPDATE SET"));
postgresqlIfElement.addElement(getPostgresqlUpdateSelectiveClauseText(introspectedTable));
insertXmlElement.addElement(postgresqlIfElement);
document.getRootElement().addElement(insertXmlElement);
}
{
XmlElement insertXmlElement = new XmlElement("insert");
insertXmlElement.addAttribute(new Attribute("id", CLIENT_METHOD_NAME_SINGLE2));
List<String> primaryKeys = getPrimaryKeys(introspectedTable);
if (primaryKeys.size() == 1) {
insertXmlElement.addAttribute(new Attribute("keyColumn", primaryKeys.get(0)));
insertXmlElement.addAttribute(new Attribute("keyProperty", primaryKeys.get(0)));
insertXmlElement.addAttribute(new Attribute("useGeneratedKeys", "true"));
}
insertXmlElement.addAttribute(new Attribute("parameterType", context.getJavaModelGeneratorConfiguration().getTargetPackage() + "." + getEntityName(introspectedTable)));
generateTextBlockAppendTableName("insert into ", introspectedTable, insertXmlElement);
generateActualColumnNamesWithParenthesis(notAutoIncrementColumnList, insertXmlElement);
insertXmlElement.addElement(new TextElement("values "));
generateParametersSeparateByCommaWithParenthesis("", notAutoIncrementColumnList, insertXmlElement);
/// mysql
XmlElement mysqlIfElement = new XmlElement("if");
mysqlIfElement.addAttribute(new Attribute("test", "_databaseId == 'mysql'"));
///mysqlIfElement.addElement(new TextElement("AS newRowValue (" + getFieldsString(notAutoIncrementColumnList, "_new") + ")"));
mysqlIfElement.addElement(new TextElement("AS newRowValue"));
mysqlIfElement.addElement(onMysqlUpdateElement);
mysqlIfElement.addElement(getMysqlUpdateIgnoreClauseText(v.toString(), introspectedTable));
insertXmlElement.addElement(mysqlIfElement);
/// posrgresql
XmlElement postgresqlIfElement = new XmlElement("if");
postgresqlIfElement.addAttribute(new Attribute("test", "_databaseId == 'postgresql' or _databaseId == 'sqlite'"));
postgresqlIfElement.addElement(postgresqlOnConflictElement);
postgresqlIfElement.addElement(new TextElement("DO UPDATE SET"));
postgresqlIfElement.addElement(getPostgresqlUpdateIgnoreClauseText(v.toString(), introspectedTable));
insertXmlElement.addElement(postgresqlIfElement);
document.getRootElement().addElement(insertXmlElement);
}
{
XmlElement insertXmlElement = new XmlElement("insert");
insertXmlElement.addAttribute(new Attribute("id", CLIENT_METHOD_NAME_SINGLE3));
List<String> primaryKeys = getPrimaryKeys(introspectedTable);
if (primaryKeys.size() == 1) {
insertXmlElement.addAttribute(new Attribute("keyColumn", primaryKeys.get(0)));
insertXmlElement.addAttribute(new Attribute("keyProperty", primaryKeys.get(0)));
insertXmlElement.addAttribute(new Attribute("useGeneratedKeys", "true"));
}
insertXmlElement.addAttribute(new Attribute("parameterType", context.getJavaModelGeneratorConfiguration().getTargetPackage() + "." + getEntityName(introspectedTable)));
generateTextBlockAppendTableName("insert into ", introspectedTable, insertXmlElement);
generateActualColumnNamesWithParenthesis(notAutoIncrementColumnList, insertXmlElement);
insertXmlElement.addElement(new TextElement("values "));
generateParametersSeparateByCommaWithParenthesis("", notAutoIncrementColumnList, insertXmlElement);
/// mysql
XmlElement mysqlIfElement = new XmlElement("if");
mysqlIfElement.addAttribute(new Attribute("test", "_databaseId == 'mysql'"));
///mysqlIfElement.addElement(new TextElement("AS newRowValue (" + getFieldsString(notAutoIncrementColumnList, "_new") + ")"));
mysqlIfElement.addElement(new TextElement("AS newRowValue"));
mysqlIfElement.addElement(onMysqlUpdateElement);
VisitableElement elementList = getMysqlUpdateSelectiveAndIgnoreClauseText(v.toString(), introspectedTable);
mysqlIfElement.addElement(elementList);
insertXmlElement.addElement(mysqlIfElement);
/// posrgresql
XmlElement postgresqlIfElement = new XmlElement("if");
postgresqlIfElement.addAttribute(new Attribute("test", "_databaseId == 'postgresql' or _databaseId == 'sqlite'"));
postgresqlIfElement.addElement(postgresqlOnConflictElement);
postgresqlIfElement.addElement(new TextElement("DO UPDATE SET"));
postgresqlIfElement.addElement(getPostgresqlUpdateSelectiveAndIgnoreClauseText(v.toString(), introspectedTable));
insertXmlElement.addElement(postgresqlIfElement);
document.getRootElement().addElement(insertXmlElement);
}
{
XmlElement batchInsertXmlElement = new XmlElement("insert");
batchInsertXmlElement.addAttribute(new Attribute("id", CLIENT_METHOD_NAME_BATCH));
FullyQualifiedJavaType parameterType = new FullyQualifiedJavaType("java.util.List");
batchInsertXmlElement.addAttribute(new Attribute("parameterType", parameterType.getFullyQualifiedName()));
XmlElement ifListElement = new XmlElement("if");
ifListElement.addAttribute(new Attribute("test", "list != null and list.size() > 0"));
generateTextBlockAppendTableName("insert into ", introspectedTable, ifListElement);
generateActualColumnNamesWithParenthesis(notAutoIncrementColumnList, ifListElement);
ifListElement.addElement(new TextElement("values "));
XmlElement foreach = new XmlElement("foreach");
foreach.addAttribute(new Attribute("collection", "list"));
foreach.addAttribute(new Attribute("item", "item"));
foreach.addAttribute(new Attribute("index", "index"));
foreach.addAttribute(new Attribute("separator", ","));
generateParametersSeparateByCommaWithParenthesis(PROPERTY_PREFIX, notAutoIncrementColumnList, foreach);
ifListElement.addElement(foreach);
/// mysql
XmlElement mysqlIfElement = new XmlElement("if");
mysqlIfElement.addAttribute(new Attribute("test", "_databaseId == 'mysql'"));
///mysqlIfElement.addElement(new TextElement("AS newRowValue (" + getFieldsString(notAutoIncrementColumnList, "_new") + ")"));
mysqlIfElement.addElement(new TextElement("AS newRowValue"));
mysqlIfElement.addElement(onMysqlUpdateElement);
VisitableElement elementList = getMysqlUpdateSelectiveClauseText(introspectedTable);
mysqlIfElement.addElement(elementList);
ifListElement.addElement(mysqlIfElement);
/// postgresql
XmlElement postgresqlIfElement = new XmlElement("if");
postgresqlIfElement.addAttribute(new Attribute("test", "_databaseId == 'postgresql' or _databaseId == 'sqlite'"));
postgresqlIfElement.addElement(postgresqlOnConflictElement);
postgresqlIfElement.addElement(new TextElement("DO UPDATE SET"));
VisitableElement postgresqlElementList = getPostgresqlUpdateSelectiveClauseText(introspectedTable);
postgresqlIfElement.addElement(postgresqlElementList);
ifListElement.addElement(postgresqlIfElement);
batchInsertXmlElement.addElement(ifListElement);
XmlElement ifNullElement = new XmlElement("if");
ifNullElement.addAttribute(new Attribute("test", "list == null or list.size() == 0"));
ifNullElement.addElement(new TextElement("select 0"));
batchInsertXmlElement.addElement(ifNullElement);
document.getRootElement().addElement(batchInsertXmlElement);
}
{
XmlElement batchInsertXmlElement = new XmlElement("insert");
batchInsertXmlElement.addAttribute(new Attribute("id", CLIENT_METHOD_NAME_BATCH2));
FullyQualifiedJavaType parameterType = new FullyQualifiedJavaType("java.util.List");
batchInsertXmlElement.addAttribute(new Attribute("parameterType", parameterType.getFullyQualifiedName()));
XmlElement ifListElement = new XmlElement("if");
ifListElement.addAttribute(new Attribute("test", "list != null and list.size() > 0"));
generateTextBlockAppendTableName("insert into ", introspectedTable, ifListElement);
generateActualColumnNamesWithParenthesis(notAutoIncrementColumnList, ifListElement);
ifListElement.addElement(new TextElement("values "));
XmlElement foreach = new XmlElement("foreach");
foreach.addAttribute(new Attribute("collection", "list"));
foreach.addAttribute(new Attribute("item", "item"));
foreach.addAttribute(new Attribute("index", "index"));
foreach.addAttribute(new Attribute("separator", ","));
generateParametersSeparateByCommaWithParenthesis(PROPERTY_PREFIX, notAutoIncrementColumnList, foreach);
ifListElement.addElement(foreach);
/// mysql
XmlElement mysqlIfElement = new XmlElement("if");
mysqlIfElement.addAttribute(new Attribute("test", "_databaseId == 'mysql'"));
///mysqlIfElement.addElement(new TextElement("AS newRowValue (" + getFieldsString(notAutoIncrementColumnList, "_new") + ")"));
mysqlIfElement.addElement(new TextElement("AS newRowValue"));
mysqlIfElement.addElement(onMysqlUpdateElement);
mysqlIfElement.addElement(getMysqlUpdateIgnoreClauseText(v.toString(), introspectedTable));
ifListElement.addElement(mysqlIfElement);
/// postgresql
XmlElement postgresqlIfElement = new XmlElement("if");
postgresqlIfElement.addAttribute(new Attribute("test", "_databaseId == 'postgresql' or _databaseId == 'sqlite'"));
postgresqlIfElement.addElement(postgresqlOnConflictElement);
postgresqlIfElement.addElement(new TextElement("DO UPDATE SET"));
VisitableElement postgresqlElementList = getPostgresqlUpdateIgnoreClauseText(v.toString(), introspectedTable);
postgresqlIfElement.addElement(postgresqlElementList);
ifListElement.addElement(postgresqlIfElement);
batchInsertXmlElement.addElement(ifListElement);
XmlElement ifNullElement = new XmlElement("if");
ifNullElement.addAttribute(new Attribute("test", "list == null or list.size() == 0"));
ifNullElement.addElement(new TextElement("select 0"));
batchInsertXmlElement.addElement(ifNullElement);
document.getRootElement().addElement(batchInsertXmlElement);
}
{
XmlElement batchInsertXmlElement = new XmlElement("insert");
batchInsertXmlElement.addAttribute(new Attribute("id", CLIENT_METHOD_NAME_BATCH3));
FullyQualifiedJavaType parameterType = new FullyQualifiedJavaType("java.util.List");
batchInsertXmlElement.addAttribute(new Attribute("parameterType", parameterType.getFullyQualifiedName()));
XmlElement ifListElement = new XmlElement("if");
ifListElement.addAttribute(new Attribute("test", "list != null and list.size() > 0"));
generateTextBlockAppendTableName("insert into ", introspectedTable, ifListElement);
generateActualColumnNamesWithParenthesis(notAutoIncrementColumnList, ifListElement);
ifListElement.addElement(new TextElement("values "));
XmlElement foreach = new XmlElement("foreach");
foreach.addAttribute(new Attribute("collection", "list"));
foreach.addAttribute(new Attribute("item", "item"));
foreach.addAttribute(new Attribute("index", "index"));
foreach.addAttribute(new Attribute("separator", ","));
generateParametersSeparateByCommaWithParenthesis(PROPERTY_PREFIX, notAutoIncrementColumnList, foreach);
ifListElement.addElement(foreach);
/// mysql
XmlElement mysqlIfElement = new XmlElement("if");
mysqlIfElement.addAttribute(new Attribute("test", "_databaseId == 'mysql'"));
///mysqlIfElement.addElement(new TextElement("AS newRowValue (" + getFieldsString(notAutoIncrementColumnList, "_new") + ")"));
mysqlIfElement.addElement(new TextElement("AS newRowValue"));
mysqlIfElement.addElement(onMysqlUpdateElement);
mysqlIfElement.addElement(getMysqlUpdateSelectiveAndIgnoreClauseText(v.toString(), introspectedTable));
ifListElement.addElement(mysqlIfElement);
/// postgresql
XmlElement postgresqlIfElement = new XmlElement("if");
postgresqlIfElement.addAttribute(new Attribute("test", "_databaseId == 'postgresql' or _databaseId == 'sqlite'"));
postgresqlIfElement.addElement(postgresqlOnConflictElement);
postgresqlIfElement.addElement(new TextElement("DO UPDATE SET"));
VisitableElement postgresqlElementList = getPostgresqlUpdateSelectiveAndIgnoreClauseText(v.toString(), introspectedTable);
postgresqlIfElement.addElement(postgresqlElementList);
ifListElement.addElement(postgresqlIfElement);
batchInsertXmlElement.addElement(ifListElement);
XmlElement ifNullElement = new XmlElement("if");
ifNullElement.addAttribute(new Attribute("test", "list == null or list.size() == 0"));
ifNullElement.addElement(new TextElement("select 0"));
batchInsertXmlElement.addElement(ifNullElement);
document.getRootElement().addElement(batchInsertXmlElement);
}
}
}
return true;
}
private VisitableElement getMysqlUpdateSelectiveClauseText(IntrospectedTable introspectedTable) {
XmlElement trimElement = new XmlElement("trim");
trimElement.addAttribute(new Attribute("suffixOverrides", ","));
introspectedTable.getAllColumns().forEach(introspectedColumn -> {
if (!introspectedColumn.isAutoIncrement()) {
String columnName = introspectedColumn.getActualColumnName();
trimElement.addElement(new TextElement(columnName + " = IF(newRowValue." + columnName + " is null, " + columnName + ", newRowValue." + columnName + "),"));
}
});
return trimElement;
}
private VisitableElement getPostgresqlUpdateSelectiveClauseText(IntrospectedTable introspectedTable) {
XmlElement trimElement = new XmlElement("trim");
trimElement.addAttribute(new Attribute("suffixOverrides", ","));
introspectedTable.getAllColumns().forEach(introspectedColumn -> {
if (!introspectedColumn.isAutoIncrement()) {
String columnName = introspectedColumn.getActualColumnName();
trimElement.addElement(new TextElement(columnName + " = IF(EXCLUDED." + columnName + " is null, " + columnName + ", EXCLUDED." + columnName + "),"));
}
});
return trimElement;
}
private VisitableElement getMysqlUpdateIgnoreClauseText(String value, IntrospectedTable introspectedTable) {
String tableName = getTableName(introspectedTable);
Set<String> igonreSet = getUpdateIgnoreFields(value);
XmlElement trimElement = new XmlElement("trim");
trimElement.addAttribute(new Attribute("suffixOverrides", ","));
for (IntrospectedColumn introspectedColumn : introspectedTable.getAllColumns()) {
if (introspectedColumn.isAutoIncrement()) {
continue;
}
String columnName = introspectedColumn.getActualColumnName();
if (!igonreSet.contains(columnName)) {
if ("version".equals(columnName)) {
trimElement.addElement(new TextElement("version = " + tableName + ".version + 1,"));
} else if ("last_modified".equals(columnName)) {
trimElement.addElement(new TextElement("last_modified = now(),"));
} else {
trimElement.addElement(new TextElement(columnName + " = newRowValue." + columnName + ","));
}
}
}
return trimElement;
}
private VisitableElement getPostgresqlUpdateIgnoreClauseText(String value, IntrospectedTable introspectedTable) {
String tableName = getTableName(introspectedTable);
Set<String> igonreSet = getUpdateIgnoreFields(value);
XmlElement trimElement = new XmlElement("trim");
trimElement.addAttribute(new Attribute("suffixOverrides", ","));
for (IntrospectedColumn introspectedColumn : introspectedTable.getAllColumns()) {
if (introspectedColumn.isAutoIncrement()) {
continue;
}
String columnName = introspectedColumn.getActualColumnName();
if (!igonreSet.contains(columnName)) {
if ("version".equals(columnName)) {
trimElement.addElement(new TextElement("version = " + tableName + ".version + 1,"));
} else if ("last_modified".equals(columnName)) {
trimElement.addElement(new TextElement("last_modified = now(),"));
} else {
trimElement.addElement(new TextElement(columnName + " = EXCLUDED." + columnName + ","));
}
}
}
return trimElement;
}
private VisitableElement getMysqlUpdateSelectiveAndIgnoreClauseText(String value, IntrospectedTable introspectedTable) {
String tableName = getTableName(introspectedTable);
Set<String> igonreSet = getUpdateIgnoreFields(value);
XmlElement trimElement = new XmlElement("trim");
trimElement.addAttribute(new Attribute("suffixOverrides", ","));
for (IntrospectedColumn introspectedColumn : introspectedTable.getAllColumns()) {
if (introspectedColumn.isAutoIncrement()) {
continue;
}
String columnName = introspectedColumn.getActualColumnName();
if (!igonreSet.contains(columnName)) {
if ("version".equals(columnName)) {
trimElement.addElement(new TextElement("version = " + tableName + ".version + 1,"));
} else if ("last_modified".equals(columnName)) {
trimElement.addElement(new TextElement("last_modified = now(),"));
} else {
trimElement.addElement(new TextElement(columnName + " = IF(newRowValue." + columnName + " is null, " + columnName + ", newRowValue." + columnName + "),"));
}
}
}
return trimElement;
}
private VisitableElement getPostgresqlUpdateSelectiveAndIgnoreClauseText(String value, IntrospectedTable introspectedTable) {
String tableName = getTableName(introspectedTable);
Set<String> igonreSet = getUpdateIgnoreFields(value);
XmlElement trimElement = new XmlElement("trim");
trimElement.addAttribute(new Attribute("suffixOverrides", ","));
for (IntrospectedColumn introspectedColumn : introspectedTable.getAllColumns()) {
if (introspectedColumn.isAutoIncrement()) {
continue;
}
String columnName = introspectedColumn.getActualColumnName();
if (!igonreSet.contains(columnName)) {
if ("version".equals(columnName)) {
trimElement.addElement(new TextElement("version = " + tableName + ".version + 1,"));
} else if ("last_modified".equals(columnName)) {
trimElement.addElement(new TextElement("last_modified = now(),"));
} else {
trimElement.addElement(new TextElement(columnName + " = IF(EXCLUDED." + columnName + " is null, " + columnName + ", EXCLUDED." + columnName + "),"));
}
}
}
return trimElement;
}
}