-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAutoScriptUtil.java
396 lines (357 loc) · 16.2 KB
/
AutoScriptUtil.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
package psdi.zebralabel.en;
import com.vdurmont.semver4j.Semver;
import com.vdurmont.semver4j.SemverException;
import psdi.configure.UpgConstants;
import psdi.configure.Util;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Objects;
/**
* Utility class that adds or updates an automation script to Maximo from the UpdateDB / DBC process.
*
* @author Jason VenHuizen
*/
public abstract class AutoScriptUtil {
/**
* Create a new script if it does not already exist.
*
* @param connection the database connection reference.
* @param scriptName the name of the script to create if it does not exist.
* @param scriptPath the path to the script source.
* @param description a description of the script.
* @param version the version of the script.
* @param dbIn the type of database.
* @throws Exception thrown if an error occurs creating the script.
*/
public static void createScriptIfNotExists(Connection connection, String scriptName, String scriptPath, String description, String version, int dbIn) throws Exception {
if (connection == null) {
throw new Exception("The connection parameter is required and cannot be null");
}
if (scriptName == null || scriptName.trim().isEmpty()) {
throw new Exception("The scriptName parameter is required and cannot be null or blank.");
}
PreparedStatement autoscriptCheck = connection.prepareStatement("select 1 from autoscript where autoscript = ?");
autoscriptCheck.setString(1, scriptName);
ResultSet resultSet = autoscriptCheck.executeQuery();
if (!resultSet.next()) {
createOrUpdateScript(connection, scriptName, scriptPath, description, version, dbIn);
}
}
/**
* Create a new script if it does not already exist.
*
* @param connection the database connection reference.
* @param scriptName the name of the script to create if it does not exist.
* @param launchPointName the name of the launch point
* @param description a description of the script.
* @param objectName the name of the object for the launch point.
* @param objectEvent the numeric representation for the event.
* @param dbIn the type of database.
* @throws Exception thrown if an error occurs creating the script.
*/
@SuppressWarnings("unused")
public static void createOrUpdateObjectLaunchPoint(Connection connection, String scriptName, String launchPointName, String description, String objectName, int objectEvent, int dbIn) throws Exception {
if (connection == null) {
throw new Exception("The connection parameter is required and cannot be null");
}
if (scriptName == null || scriptName.trim().isEmpty()) {
throw new Exception("The scriptName parameter is required and cannot be null or blank.");
}
if (launchPointName == null || launchPointName.trim().isEmpty()) {
throw new Exception("The launchPointName parameter is required and cannot be null or blank.");
}
if (description == null || description.trim().isEmpty()) {
throw new Exception("The scriptName parameter is required and cannot be null or blank.");
}
if (objectName == null || objectName.trim().isEmpty()) {
throw new Exception("The objectName parameter is required and cannot be null or blank.");
}
if (dbIn != UpgConstants.ORACLE && dbIn != UpgConstants.SQLSERVER && dbIn != UpgConstants.DB2) {
throw new Exception("The dbIn parameter must be 1 for Oracle, 2 for SQLServer, or 3 for DB2");
}
if (objectEvent <= 0) {
throw new Exception("The objectEvent parameter must be greater than 0");
}
Util util = new Util(connection, null, null, true);
PreparedStatement launchPointCheck = connection.prepareStatement("select 1 from scriptlaunchpoint where autoscript = ? and launchpointname = ?");
PreparedStatement autoScriptInsert;
if (dbIn == UpgConstants.SQLSERVER) {
autoScriptInsert = connection.prepareStatement("insert into scriptlaunchpoint(" +
"scriptlaunchpointid, " +
"launchpointname, " +
"autoscript, " +
"description, " +
"launchpointtype, " +
"objectname, " +
"objectevent, " +
"active) " +
"values(?, ?, ?, ?, ?, ?, ?, ?)");
} else {
autoScriptInsert = connection.prepareStatement("insert into scriptlaunchpoint(" +
"scriptlaunchpointid, " +
"launchpointname, " +
"autoscript, " +
"description, " +
"launchpointtype, " +
"objectname, " +
"objectevent, " +
"active, " +
"rowstamp) " +
"values(?, ?, ?, ?, ?, ?, ?, ?, ?)");
}
ResultSet resultSet = null;
try {
launchPointCheck.setString(1, scriptName);
launchPointCheck.setString(2, launchPointName);
resultSet = launchPointCheck.executeQuery();
if (!resultSet.next()) {
autoScriptInsert.setLong(1, getNextId(connection, "SCRIPTLAUNCHPOINTSEQ", dbIn, util));
autoScriptInsert.setString(2, launchPointName);
autoScriptInsert.setString(3, scriptName);
autoScriptInsert.setString(4, description);
autoScriptInsert.setString(5, "OBJECT");
autoScriptInsert.setString(6, objectName.toUpperCase());
autoScriptInsert.setInt(7, objectEvent);
autoScriptInsert.setString(8, util.getYes());
if (dbIn != UpgConstants.SQLSERVER) {
autoScriptInsert.setInt(9, 1);
}
autoScriptInsert.execute();
}
} finally {
close(resultSet);
close(launchPointCheck);
}
}
/**
* Create or update a script if it does not already exist.
*
* @param connection the database connection reference.
* @param scriptName the name of the script to create if it does not exist.
* @param scriptPath the path to the script source.
* @param description a description of the script.
* @param version the version of the script.
* @param dbIn the type of database.
* @throws Exception thrown if an error occurs creating the script.
*/
public static void createOrUpdateScript(Connection connection, String scriptName, String scriptPath, String description, String version, int dbIn) throws Exception {
if (connection == null) {
throw new Exception("The connection parameter is required and cannot be null");
}
if (scriptName == null || scriptName.trim().isEmpty()) {
throw new Exception("The scriptName parameter is required and cannot be null or blank.");
}
if (scriptPath == null || scriptPath.trim().isEmpty()) {
throw new Exception("The scriptPath parameter is required and cannot be null or blank.");
}
if (description == null || description.trim().isEmpty()) {
throw new Exception("The description parameter is required and cannot be null or blank.");
}
if (version == null || version.trim().isEmpty()) {
throw new Exception("The version parameter is required and cannot be null or blank.");
}
if (dbIn != UpgConstants.ORACLE && dbIn != UpgConstants.SQLSERVER && dbIn != UpgConstants.DB2) {
throw new Exception("The dbIn parameter must be 1 for Oracle, 2 for SQLServer, or 3 for DB2");
}
PreparedStatement autoScriptCheck = connection.prepareStatement("select version from autoscript where autoscript = ?");
PreparedStatement autoScriptUpdate;
autoScriptUpdate = connection.prepareStatement("update autoscript set source = ?, version = ?, description = ? where autoscript = ?");
BufferedReader reader = new BufferedReader(new InputStreamReader(Objects.requireNonNull(AutoScriptUtil.class.getClassLoader().getResourceAsStream(scriptPath))));
StringBuilder source = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
source.append(line).append("\n");
}
ResultSet resultSet = null;
try {
autoScriptCheck.setString(1, scriptName);
resultSet = autoScriptCheck.executeQuery();
if (resultSet.next()) {
try {
Semver semver = new Semver(version);
if (semver.isLowerThan(resultSet.getString(1))) {
System.out.println("The script " + scriptName + " with version " + version + " is older than the current version, " + resultSet.getString(1));
return;
}
} catch (SemverException e) {
System.out.println("The version new script version " + version + " or current script version " + resultSet.getString(1) + "is not a valid Semantic version, cannot perform comparison");
}
autoScriptUpdate.setString(1, source.toString());
autoScriptUpdate.setString(2, version);
autoScriptUpdate.setString(3, description);
autoScriptUpdate.setString(4, scriptName);
autoScriptUpdate.execute();
} else {
// insert the script.
addScript(connection, scriptName, description, version, source.toString(), dbIn);
}
} finally {
close(autoScriptCheck);
close(resultSet);
close(reader);
close(autoScriptUpdate);
}
}
private static void addScript(Connection connection, String scriptName, String description, String version, String source, int dbIn) throws Exception {
Util util = new Util(connection, null, null, true);
PreparedStatement autoScriptInsert;
if (dbIn == UpgConstants.SQLSERVER) {
autoScriptInsert = connection.prepareStatement("insert into autoscript(" +
"autoscript, " +
"status, " +
"description, " +
"source, " +
"createddate, " +
"statusdate, " +
"changedate, " +
"owner, " +
"createdby, " +
"changeby, " +
"hasld, " +
"langcode, " +
"scriptlanguage, " +
"userdefined, " +
"loglevel, " +
"interface, " +
"active, " +
"version, " +
"autoscriptid)" +
"values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
} else {
autoScriptInsert = connection.prepareStatement("insert into autoscript(" +
"autoscript, " +
"status, " +
"description, " +
"source, " +
"createddate, " +
"statusdate, " +
"changedate, " +
"owner, " +
"createdby, " +
"changeby, " +
"hasld, " +
"langcode, " +
"scriptlanguage, " +
"userdefined, " +
"loglevel, " +
"interface, " +
"active, " +
"version, " +
"autoscriptid, " +
"rowstamp)" +
"values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
}
try {
autoScriptInsert.setString(1, scriptName);
autoScriptInsert.setString(2, "Active");
autoScriptInsert.setString(3, description);
autoScriptInsert.setString(4, source);
autoScriptInsert.setDate(5, new java.sql.Date(System.currentTimeMillis()));
autoScriptInsert.setDate(6, new java.sql.Date(System.currentTimeMillis()));
autoScriptInsert.setDate(7, new java.sql.Date(System.currentTimeMillis()));
autoScriptInsert.setString(8, "MAXADMIN");
autoScriptInsert.setString(9, "MAXADMIN");
autoScriptInsert.setString(10, "MAXADMIN");
autoScriptInsert.setString(11, util.getNo());
autoScriptInsert.setString(12, "EN");
autoScriptInsert.setString(13, getVersion() > 7 ? "nashorn" : "javascript");
autoScriptInsert.setString(14, util.getYes());
autoScriptInsert.setString(15, "ERROR");
autoScriptInsert.setString(16, util.getNo());
autoScriptInsert.setString(17, util.getYes());
autoScriptInsert.setString(18, version);
autoScriptInsert.setLong(19, getNextId(connection, "AUTOSCRIPTSEQ", dbIn, util));
if (dbIn != UpgConstants.SQLSERVER) {
autoScriptInsert.setInt(20, 1);
}
autoScriptInsert.execute();
} finally {
close(autoScriptInsert);
}
}
private static long getNextId(Connection connection, String sequenceName, int dbIn, Util util) throws Exception {
if(!util.nativeSequenceExists(sequenceName)) {
return Long.parseLong(util.getNextSequenceValueForSqlServer(sequenceName));
} else {
String statement = dbIn == UpgConstants.SQLSERVER
? "select next value for " + sequenceName + " from dummy_table"
: "select " + sequenceName + ".nextval from dummy_table";
PreparedStatement nextIdStatement = null;
ResultSet resultSet = null;
try {
nextIdStatement = connection.prepareStatement(statement);
resultSet = nextIdStatement.executeQuery();
resultSet.next();
return resultSet.getLong(1);
} finally {
close(nextIdStatement);
close(resultSet);
}
}
}
/**
* Close the reader if it is not null and swallow any errors.
*
* @param reader the reader to close.
*/
private static void close(Reader reader) {
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
// do nothing as there is nothing to do.
}
}
}
/**
* Close the ResultSet if it is not null and swallow any errors.
*
* @param resultSet the ResultSet to close.
*/
private static void close(ResultSet resultSet) {
if (resultSet != null) {
try {
resultSet.close();
} catch (SQLException e) {
// do nothing as there is nothing to do.
}
}
}
/**
* Close the PreparedStatement if it is not null and swallow any errors.
*
* @param statement the PreparedStatement to close.
*/
private static void close(PreparedStatement statement) {
if (statement != null) {
try {
statement.close();
} catch (SQLException e) {
// do nothing as there is nothing to do.
}
}
}
/**
* Gets the version Java version.
*
* @return the Java version as an integer.
*/
private static int getVersion() {
String version = System.getProperty("java.version");
if (version.startsWith("1.")) {
version = version.substring(2, 3);
} else {
int dot = version.indexOf(".");
if (dot != -1) {
version = version.substring(0, dot);
}
}
return Integer.parseInt(version);
}
}