This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFunctionsRepositoryDAO.java
447 lines (380 loc) · 14.9 KB
/
FunctionsRepositoryDAO.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
package databases.mysql.daos;
import databases.mysql.CloudEntityData;
import databases.mysql.DAO;
import databases.mysql.FunctionalityURL;
import databases.mysql.MySQLConnect;
import utility.PropertiesManager;
import java.sql.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
/**
* Data Access Object for serverless function related information
*/
@SuppressWarnings({"DuplicatedCode", "SqlResolve", "RedundantSuppression"})
public class FunctionsRepositoryDAO extends DAO {
/**
* Queries
*/
private static final String CREATE_GOOGLE_FUNCTIONS_TABLE = "CREATE TABLE IF NOT EXISTS " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".google_serverless_functions (" +
"function_name varchar(50) NOT NULL, " +
"url varchar(100) NOT NULL, " +
"region varchar(15) NOT NULL, " +
"PRIMARY KEY (function_name)" +
")";
private static final String CREATE_AMAZON_FUNCTIONS_TABLE = "CREATE TABLE IF NOT EXISTS " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".amazon_serverless_functions (" +
"function_name varchar(50) NOT NULL, " +
"url varchar(100) NOT NULL, " +
"api_id varchar(50) NOT NULL, " +
"region varchar(15) NOT NULL, " +
"PRIMARY KEY (function_name)" +
")";
private static final String CREATE_OPENWHISK_FUNCTIONS_TABLE = "CREATE TABLE IF NOT EXISTS " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) +
".openwhisk_serverless_functions (" +
"function_name varchar(50) NOT NULL, " +
"url varchar(100) NOT NULL, " +
"PRIMARY KEY (function_name)" +
")";
private static final String INSERT_GOOGLE_FUNCTION = "INSERT INTO " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".google_serverless_functions " +
"(function_name, url, region) " + "VALUES (?, ?, ?) " +
"ON DUPLICATE KEY UPDATE function_name=VALUES(function_name), url=VALUES(url), region=VALUES(region)";
private static final String INSERT_AMAZON_FUNCTION = "INSERT INTO " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".amazon_serverless_functions " +
"(function_name, url, api_id, region) " + "VALUES (?, ?, ?, ?) " +
"ON DUPLICATE KEY UPDATE function_name=VALUES(function_name), url=VALUES(url), api_id=VALUES(api_id), " +
"region=VALUES(region)";
private static final String INSERT_OPENWHISK_FUNCTION = "INSERT INTO " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) +
".openwhisk_serverless_functions " +
"(function_name, url) " + "VALUES (?, ?) " +
"ON DUPLICATE KEY UPDATE function_name=VALUES(function_name), url=VALUES(url)";
private static final String SELECT_GOOGLE_FUNCTIONS_INFO = "SELECT function_name, region FROM " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".google_serverless_functions";
private static final String SELECT_AMAZON_FUNCTIONS_INFO = "SELECT function_name, api_id, region FROM " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".amazon_serverless_functions";
private static final String SELECT_OPENWHISK_FUNCTIONS_INFO = "SELECT function_name FROM " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".openwhisk_serverless_functions";
private static final String SELECT_GOOGLE_FUNCTIONS_URL = "SELECT function_name, url FROM " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".google_serverless_functions";
private static final String SELECT_AMAZON_FUNCTIONS_URL = "SELECT function_name, url FROM " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".amazon_serverless_functions";
private static final String SELECT_OPENWHISK_FUNCTIONS_URL = "SELECT function_name, url FROM " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".openwhisk_serverless_functions";
private static final String DROP_GOOGLE_FUNCTIONS = "DROP TABLE IF EXISTS " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".google_serverless_functions";
private static final String DROP_AMAZON_FUNCTIONS = "DROP TABLE IF EXISTS " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".amazon_serverless_functions";
private static final String DROP_OPENWHISK_FUNCTIONS = "DROP TABLE IF EXISTS " +
PropertiesManager.getInstance().getProperty(PropertiesManager.MYSQL_DB) + ".openwhisk_serverless_functions";
/**
* Initializes tables
* @param connection database connection to use
* @param provider select which provider is needed to initialize corresponding tables
* @throws SQLException query definition and execution related problems
*/
private static void initTables(Connection connection, String provider) throws SQLException {
if (connection != null) {
initDatabase(connection);
Statement statement = connection.createStatement();
switch (provider) {
case GOOGLE:
statement.executeUpdate(CREATE_GOOGLE_FUNCTIONS_TABLE);
break;
case AMAZON:
statement.executeUpdate(CREATE_AMAZON_FUNCTIONS_TABLE);
break;
case OPENWHISK:
statement.executeUpdate(CREATE_OPENWHISK_FUNCTIONS_TABLE);
break;
default:
statement.executeUpdate(CREATE_GOOGLE_FUNCTIONS_TABLE);
statement.executeUpdate(CREATE_AMAZON_FUNCTIONS_TABLE);
statement.executeUpdate(CREATE_OPENWHISK_FUNCTIONS_TABLE);
break;
}
statement.close();
} else {
System.err.println("Could not initialize database");
}
}
/**
* Drop every table associated to Google Cloud Platform Functions
*/
public static void dropGoogle() {
dropTable(GOOGLE);
}
/**
* Drop every table associated to Amazon Web Services Functions
*/
public static void dropAmazon() {
dropTable(AMAZON);
}
/**
* Drop every table associated to OpenWhisk Functions
*/
public static void dropOpenWhisk() {
dropTable(OPENWHISK);
}
/**
* Generic drop table function
* @param provider select which provider is needed to delete corresponding tables
*/
private static void dropTable(String provider) {
try {
Connection connection = MySQLConnect.connectDatabase();
if (connection == null) {
System.err.println("Could not connect to database, please check your connection");
return;
}
Statement statement = connection.createStatement();
switch (provider) {
case GOOGLE:
statement.executeUpdate(DROP_GOOGLE_FUNCTIONS);
break;
case AMAZON:
statement.executeUpdate(DROP_AMAZON_FUNCTIONS);
break;
case OPENWHISK:
statement.executeUpdate(DROP_OPENWHISK_FUNCTIONS);
break;
default:
System.err.println("Provider not supported! Could not perform DB drop");
}
statement.close();
MySQLConnect.closeConnection(connection);
} catch (SQLException e) {
System.err.println("Could not drop table(s): " + e.getMessage());
}
}
/**
* Persists a new Google Cloud Functions function to database
* @param functionName name of the function
* @param url url for function execution
* @param region function deployment region
*/
public static void persistGoogle(String functionName, String url, String region) {
try {
Connection connection = MySQLConnect.connectDatabase();
if (connection == null) {
System.err.println("Could not connect to database, please check your connection");
return;
}
initTables(connection, GOOGLE);
PreparedStatement preparedStatement = connection.prepareStatement(INSERT_GOOGLE_FUNCTION);
preparedStatement.setString(1, functionName);
preparedStatement.setString(2, url);
preparedStatement.setString(3, region);
preparedStatement.execute();
preparedStatement.close();
MySQLConnect.closeConnection(connection);
} catch (SQLException e) {
System.err.println("Could not perform insertion: " + e.getMessage());
}
}
/**
* Persists a new Amazon Lambda and Api Gateway function to database
* @param functionName name of the function
* @param url url for function execution
* @param apiId id of the api associated to the function
* @param region function deployment region
*/
public static void persistAmazon(String functionName, String url, String apiId, String region) {
try {
Connection connection = MySQLConnect.connectDatabase();
if (connection == null) {
System.err.println("Could not connect to database, please check your connection");
return;
}
initTables(connection, AMAZON);
PreparedStatement preparedStatement = connection.prepareStatement(INSERT_AMAZON_FUNCTION);
preparedStatement.setString(1, functionName);
preparedStatement.setString(2, url);
preparedStatement.setString(3, apiId);
preparedStatement.setString(4, region);
preparedStatement.execute();
preparedStatement.close();
MySQLConnect.closeConnection(connection);
} catch (SQLException e) {
System.err.println("Could not perform insertion: " + e.getMessage());
}
}
/**
* Persists a new OpenWhisk function to database
* @param functionName name of the function
* @param url url for function execution
*/
public static void persistOpenWhisk(String functionName, String url) {
try {
Connection connection = MySQLConnect.connectDatabase();
if (connection == null) {
System.err.println("Could not connect to database, please check your connection");
return;
}
initTables(connection, OPENWHISK);
PreparedStatement preparedStatement = connection.prepareStatement(INSERT_OPENWHISK_FUNCTION);
preparedStatement.setString(1, functionName);
preparedStatement.setString(2, url);
preparedStatement.execute();
preparedStatement.close();
MySQLConnect.closeConnection(connection);
} catch (SQLException e) {
System.err.println("Could not perform insertion: " + e.getMessage());
}
}
/**
* List every Google Cloud Functions function
* @return list of functions (CloudEntityData)
*/
public static List<CloudEntityData> getGoogles() {
try {
Connection connection = MySQLConnect.connectDatabase();
if (connection == null) {
System.err.println("Could not connect to database, please check your connection");
return null;
}
initTables(connection, GOOGLE);
Statement statement = connection.createStatement();
ResultSet resultSet = statement.executeQuery(SELECT_GOOGLE_FUNCTIONS_INFO);
List<CloudEntityData> result = new ArrayList<>();
while (resultSet.next()) {
result.add(new CloudEntityData(resultSet.getString("function_name"),
resultSet.getString("region")));
}
statement.close();
resultSet.close();
MySQLConnect.closeConnection(connection);
return result;
} catch (SQLException e) {
System.err.println("Could not perform select: " + e.getMessage());
return null;
}
}
/**
* List every Amazon Lambda and API Gateway function
* @return list of functions (CloudEntityData)
*/
public static List<CloudEntityData> getAmazons() {
try {
Connection connection = MySQLConnect.connectDatabase();
if (connection == null) {
System.err.println("Could not connect to database, please check your connection");
return null;
}
initTables(connection, AMAZON);
Statement statement = connection.createStatement();
ResultSet resultSet = statement.executeQuery(SELECT_AMAZON_FUNCTIONS_INFO);
List<CloudEntityData> result = new ArrayList<>();
while (resultSet.next()) {
result.add(new CloudEntityData(resultSet.getString("function_name"),
resultSet.getString("region"), resultSet.getString("api_id")));
}
statement.close();
resultSet.close();
MySQLConnect.closeConnection(connection);
return result;
} catch (SQLException e) {
System.err.println("Could not perform select: " + e.getMessage());
return null;
}
}
/**
* List every OpenWhisk function
* @return list of functions (CloudEntityData)
*/
public static List<CloudEntityData> getOpenWhisks() {
try {
Connection connection = MySQLConnect.connectDatabase();
if (connection == null) {
System.err.println("Could not connect to database, please check your connection");
return null;
}
initTables(connection, OPENWHISK);
Statement statement = connection.createStatement();
ResultSet resultSet = statement.executeQuery(SELECT_OPENWHISK_FUNCTIONS_INFO);
List<CloudEntityData> result = new ArrayList<>();
while (resultSet.next()) {
result.add(new CloudEntityData(resultSet.getString("function_name")));
}
statement.close();
resultSet.close();
MySQLConnect.closeConnection(connection);
return result;
} catch (SQLException e) {
System.err.println("Could not perform select: " + e.getMessage());
return null;
}
}
/**
* List every function url, there can be one or more URL per function basing on different provider implementation
* of the same function
* @return list of function urls (FunctionalityURL)
*/
public static List<FunctionalityURL> getUrls() {
try {
Connection connection = MySQLConnect.connectDatabase();
if (connection == null) {
System.err.println("Could not connect to database, please check your connection");
return null;
}
initTables(connection, "*");
Statement statement = connection.createStatement();
ResultSet resultSet = statement.executeQuery(SELECT_GOOGLE_FUNCTIONS_URL);
HashMap<String, FunctionalityURL> dynamicResult = new HashMap<>();
String name;
String url;
FunctionalityURL functionalityURL;
while (resultSet.next()) {
name = resultSet.getString("function_name");
url = resultSet.getString("url");
if (dynamicResult.containsKey(name)) {
dynamicResult.get(name).setGoogleUrl(url);
} else {
functionalityURL = new FunctionalityURL(name);
functionalityURL.setGoogleUrl(url);
dynamicResult.put(name, functionalityURL);
}
}
statement.close();
resultSet.close();
statement = connection.createStatement();
resultSet = statement.executeQuery(SELECT_AMAZON_FUNCTIONS_URL);
while (resultSet.next()) {
name = resultSet.getString("function_name");
url = resultSet.getString("url");
if (dynamicResult.containsKey(name)) {
dynamicResult.get(name).setAmazonUrl(url);
} else {
functionalityURL = new FunctionalityURL(name);
functionalityURL.setAmazonUrl(url);
dynamicResult.put(name, functionalityURL);
}
}
statement.close();
resultSet.close();
statement = connection.createStatement();
resultSet = statement.executeQuery(SELECT_OPENWHISK_FUNCTIONS_URL);
while (resultSet.next()) {
name = resultSet.getString("function_name");
url = resultSet.getString("url");
if (dynamicResult.containsKey(name)) {
dynamicResult.get(name).setOpenWhiskUrl(url);
} else {
functionalityURL = new FunctionalityURL(name);
functionalityURL.setOpenWhiskUrl(url);
dynamicResult.put(name, functionalityURL);
}
}
statement.close();
resultSet.close();
MySQLConnect.closeConnection(connection);
return new ArrayList<>(dynamicResult.values());
} catch (SQLException e) {
System.err.println("Could not perform select: " + e.getMessage());
return null;
}
}
}