-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added WriteJDBC, creating new release
- Loading branch information
Showing
7 changed files
with
241 additions
and
3 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
231 changes: 231 additions & 0 deletions
231
src/main/java/com/jpaulmorrison/fbp/core/components/jdbc/WriteJDBC.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,231 @@ | ||
package com.jpaulmorrison.fbp.core.components.jdbc; | ||
|
||
|
||
import java.lang.reflect.Field; | ||
|
||
import java.sql.*; | ||
import java.util.HashMap; | ||
|
||
import com.google.gson.Gson; | ||
import com.jpaulmorrison.fbp.core.engine.Component; // Using 'Connection', 'Statement' and 'ResultSet' classes in java.sql package | ||
import com.jpaulmorrison.fbp.core.engine.ComponentDescription; | ||
import com.jpaulmorrison.fbp.core.engine.InPort; | ||
import com.jpaulmorrison.fbp.core.engine.InPorts; | ||
import com.jpaulmorrison.fbp.core.engine.InputPort; | ||
import com.jpaulmorrison.fbp.core.engine.OutPort; | ||
import com.jpaulmorrison.fbp.core.engine.OutputPort; | ||
import com.jpaulmorrison.fbp.core.engine.Packet; | ||
|
||
@ComponentDescription("Write incoming IPs to MySQL table") | ||
@InPorts({ @InPort(value = "DATABASE", description = "Database name", type = String.class), | ||
@InPort(value = "USER", description = "User name", type = String.class), | ||
@InPort(value = "CLASS", description = "Object class", type = String.class), | ||
@InPort(value = "FIELDS", description = "Field correspondences", type = String.class), | ||
@InPort(value = "PSWD", description = "Password obtained from file", type = String.class), | ||
@InPort("IN") }) | ||
@OutPort(value = "OUT", description = "Table rows", optional=true) | ||
|
||
public class WriteJDBC extends Component { | ||
|
||
// adapted from | ||
// https://www.ntu.edu.sg/home/ehchua/programming/java/JDBC_Basic.html | ||
|
||
//private OutputPort outPort; | ||
|
||
private InputPort pswdPort; | ||
private InputPort dBNPort; | ||
private InputPort userPort; | ||
private InputPort classPort; | ||
private InputPort fldsPort; | ||
private InputPort inPort; | ||
private OutputPort outPort; | ||
|
||
|
||
|
||
@Override | ||
protected void execute() throws Exception { | ||
|
||
Packet<?> pp = pswdPort.receive(); | ||
|
||
String pswd = (String) pp.getContent(); | ||
drop(pp); | ||
pswdPort.close(); | ||
|
||
pp = dBNPort.receive(); | ||
|
||
String dbTable = (String) pp.getContent(); | ||
drop(pp); | ||
dBNPort.close(); | ||
|
||
pp = userPort.receive(); | ||
|
||
String user = (String) pp.getContent(); | ||
drop(pp); | ||
userPort.close(); | ||
|
||
pp = classPort.receive(); | ||
|
||
String objClass = (String) pp.getContent(); | ||
drop(pp); | ||
classPort.close(); | ||
|
||
|
||
//Class<?> curClass = cls; | ||
Class<?> curClass = Class.forName(objClass); | ||
|
||
String[] iipContents = dbTable.split("!", 2); | ||
|
||
pp = fldsPort.receive(); | ||
|
||
String fldsStr = (String) pp.getContent(); | ||
drop(pp); | ||
fldsPort.close(); | ||
|
||
Gson gson = new Gson(); | ||
|
||
FieldInfo[] fiArray = null; | ||
try { | ||
fiArray = gson.fromJson(fldsStr, FieldInfo[].class); | ||
|
||
} catch (Exception e) { | ||
System.out.println("Error parsing JSON string"); | ||
return; | ||
} | ||
|
||
try ( | ||
|
||
// Step 1: Allocate a database 'Connection' object | ||
Connection conn = DriverManager.getConnection( | ||
// "jdbc:mysql://localhost:3306/ebookshop?allowPublicKeyRetrieval=true&useSSL=false&serverTimezone=UTC", | ||
// "root", pswd); // For MySQL only | ||
|
||
iipContents[0] + "?allowPublicKeyRetrieval=true&useSSL=false&serverTimezone=UTC", user, pswd); | ||
|
||
Statement stmt = conn.createStatement();) { | ||
|
||
String strSelect = "select * from " + iipContents[1]; | ||
ResultSet rs = stmt.executeQuery(strSelect); | ||
ResultSetMetaData rsmd = rs.getMetaData(); | ||
int numberOfColumns = rsmd.getColumnCount(); | ||
|
||
//String strSelect = "select * from " + iipContents[1]; | ||
//System.out.println("The SQL statement is: \"" + strSelect + "\"\n"); // Echo | ||
String strDelete = "delete from " + iipContents[1]; // no qualifier | ||
System.out.println("The SQL statement is: \"" + strDelete + "\"\n"); // Echo | ||
|
||
int countDeleted = stmt.executeUpdate(strDelete); | ||
System.out.println(countDeleted + " records deleted.\n"); | ||
|
||
HashMap<String, String> hmColumns = new HashMap<String, String>(); | ||
|
||
try { | ||
|
||
for (int i = 1; i <= numberOfColumns; i++) { | ||
hmColumns.put(rsmd.getColumnName(i), rsmd.getColumnTypeName(i)); | ||
} | ||
} catch (SQLException e) { | ||
// TODO Auto-generated catch block | ||
e.printStackTrace(); | ||
} | ||
|
||
// number of columns should match number of fields in curClass - so | ||
// let's test... | ||
|
||
int n = curClass.getFields().length; | ||
if (n != numberOfColumns) { | ||
System.out.println( | ||
"Number of class fields - " + n + " does not match number of columns - " + numberOfColumns); | ||
return; | ||
} | ||
|
||
HashMap<String, Class<?>> hmFields = new HashMap<String, Class<?>>(); | ||
|
||
for (Field fd: curClass.getFields()) { | ||
hmFields.put(fd.getName(), fd.getType()); | ||
} | ||
|
||
|
||
|
||
// receive and process IPs | ||
|
||
|
||
int rowCount = 0; | ||
Packet<?> pIn; | ||
while ((pIn = inPort.receive()) != null) { | ||
|
||
Object o = pIn.getContent(); | ||
if (o.getClass() != curClass) { | ||
System.out.println("Unexpected class in incoming IP: " + o.getClass()); | ||
continue; | ||
} | ||
String sqlInsert = "insert into " + iipContents[1] + " values ("; | ||
// iterate through fiArray | ||
String cma = ""; | ||
for (int i = 0; i < fiArray.length; i++) { | ||
String colName = fiArray[i].colName; | ||
String objField = fiArray[i].objField; | ||
|
||
//System.out.println("JDBC: " + colName + " " + hmColumns.get(colName)); | ||
|
||
//System.out.println("Obj: " + objField + " " + hmFields.get(objField)); | ||
|
||
//String objFType = hmFields.get(objField).toString(); | ||
|
||
Field field = curClass.getDeclaredField(objField); | ||
sqlInsert += cma + "\"" + field.get(o).toString() + "\""; | ||
cma = ","; | ||
} | ||
sqlInsert += ")"; | ||
//String sqlInsert = "insert into sales values (3001, 'Gone Fishing', 'Kumar', 'CAD11.11', 11)"; | ||
System.out.println("The SQL statement is: " + sqlInsert + "\n"); // Echo for debugging | ||
int countInserted = stmt.executeUpdate(sqlInsert); | ||
if (countInserted != 1) { | ||
System.out.println("Couldn't insert record:\n"); | ||
System.out.println("... " + sqlInsert); | ||
} | ||
|
||
if (outPort.isConnected()) { | ||
outPort.send(pIn); | ||
} else { | ||
drop(pIn); | ||
} | ||
} | ||
|
||
System.out.println("Total number of records = " + rowCount); | ||
// outPort.send(create("Total number of records = " + rowCount)); | ||
|
||
} catch (SQLException ex) { | ||
//System.out.println("SQL Exception"); | ||
ex.printStackTrace(); | ||
} /* | ||
catch (ClassNotFoundException ex) { | ||
//System.out.println("Class Not Found Exception"); | ||
ex.printStackTrace(); | ||
} | ||
catch (InvocationTargetException ex) { | ||
//System.out.println("Class Not Found Exception"); | ||
ex.printStackTrace(); | ||
} | ||
*/ | ||
// Step 5: Close conn and stmt - Done automatically by | ||
// try-with-resources (JDK 7) | ||
} | ||
|
||
|
||
|
||
@Override | ||
protected void openPorts() { | ||
pswdPort = openInput("PSWD"); | ||
userPort = openInput("USER"); | ||
dBNPort = openInput("DATABASE"); | ||
classPort = openInput("CLASS"); | ||
fldsPort = openInput("FIELDS"); | ||
inPort = openInput("IN"); | ||
outPort = openOutput("OUT"); | ||
} | ||
|
||
public class FieldInfo { | ||
String colName; | ||
String objField; | ||
} | ||
} |