Class JDBCDataSource
java.lang.Object
repast.simphony.freezedry.AbstractDataSource<ResultSet>
repast.simphony.freezedry.datasource.JDBCDataSource
- All Implemented Interfaces:
FreezeDryedDataSource
-
Field Summary
Fields inherited from class repast.simphony.freezedry.AbstractDataSource
ARRAY_MARKER, BYTES_MARKER, CHILD_CLASS_COL, CHILD_ID_COL, CHILD_ID_MARKER, CHILDREN_MARKER, CLASS_MARKER, ID_COL, PARENT_ID_COL, SPECIAL_COL_MARKER
-
Constructor Summary
ConstructorDescriptionJDBCDataSource
(String connectionString, String driverClassName, String userName, String password) JDBCDataSource
(DBConnectionInfo info, boolean storeLogin) -
Method Summary
Modifier and TypeMethodDescriptionprotected String
cleanColName
(String name) protected void
closeChildQuery
(Class clazz) protected void
closeQuery
(Class clazz) protected void
protected void
createTableIfNeeded
(Connection con, FreezeDryedObject fdo) protected void
endTypeRead
(Class clazz) Finishes the reading of the specified class.protected void
executeCreate
(Connection con, String creationSQL) protected void
Ends the reading of the children for the specifiedFreezeDryedObject
.protected void
Finishes the writing of the children for the specifiedFreezeDryedObject
.protected void
Finishes the writing of the specifiedFreezeDryedObject
.protected String
generateId
(Class<?> clazz) protected String
generateId
(String className) protected String
getArrayType
(String field) protected Connection
getChildConnection
(Class clazz, boolean canCreate) protected Connection
getChildConnection
(FreezeDryedObject fdo, boolean canCreate) protected String
protected String
protected String
getClassMapping
(String className) protected String
getColumnType
(FreezeDryedObject fdo, String colName) protected Connection
protected Connection
getConnection
(Class clazz, boolean canCreate) protected Connection
getConnection
(FreezeDryedObject fdo, boolean canCreate) getDBURL()
Retrieves the fields for a specified type.protected Object
getFieldValue
(ResultSet row, String field) Retrieves the value of the specified field in the specified row of data.boolean
protected String
getTableName
(String type) protected String
protected String
protected String
protected String
protected String
queryDBForType
(String classType) protected byte[]
readByteArray
(FreezeDryedObject fdo, String field, Object bytesId) Reads in a byte[] that corresponds to the specified bytesId and will be loaded into the specified fdo through the specified field.protected ResultSet
readChildsRow
(FreezeDryedObject parent, String id) Reads in a row of data about a child of the specifiedFreezeDryedObject
.protected ResultSet
Reads in a row of data that will be parsed by the use ofAbstractDataSource.getFieldValue(X, String)
andAbstractDataSource.getFields(String)
.void
setStoreLogin
(boolean storeLogin) protected void
Initializes the reading of the children of a specifiedFreezeDryedObject
.protected void
Initiates the writing of the children for the specifiedFreezeDryedObject
.protected void
startTypeRead
(Class clazz) Initiates the reading of the specified class.protected void
This is called at the start of a call to write.protected void
storeClassMapping
(String clazz, String id) protected boolean
protected Object
writeByteArray
(FreezeDryedObject object, String fieldName, byte[] bs) Writes a byte array retrieved from the specifiedFreezeDryedObject
with the specified fieldName.protected void
writeChildData
(FreezeDryedObject fdo, HashMap<String, Object> child) Writes the data for a child of the specifiedFreezeDryedObject
.protected void
writeRow
(FreezeDryedObject fdo, Map<String, Object> row) This writes a row of data out which was generated by the specifiedFreezeDryedObject
.Methods inherited from class repast.simphony.freezedry.AbstractDataSource
close, getArrayValue, getColumnKeysetPairs, getColumns, getTrueFieldName, getType, getValue, getValue, getValueArray, pair, parseChildRow, parseRow, read, read, readChildren, readFreezeDryedParentChild, reset, write, writeChildren
-
Field Details
-
DEFAULT_CLASS_MAPPING_TABLE
- See Also:
-
CLASS_NAME_COL
- See Also:
-
classIdMap
-
storeLogin
protected boolean storeLogin
-
-
Constructor Details
-
JDBCDataSource
-
JDBCDataSource
-
JDBCDataSource
-
-
Method Details
-
getValue
- Overrides:
getValue
in classAbstractDataSource<ResultSet>
-
getConnection
- Throws:
SQLException
-
getConnection
- Throws:
SQLException
-
getConnection
- Throws:
SQLException
-
getChildConnection
protected Connection getChildConnection(FreezeDryedObject fdo, boolean canCreate) throws SQLException - Throws:
SQLException
-
getChildConnection
- Throws:
SQLException
-
startTypeWrite
Description copied from class:AbstractDataSource
This is called at the start of a call to write. This should cause any needed preparation for reading this type to occur. It will be followed by calls toAbstractDataSource.writeRow(FreezeDryedObject, Map)
and a call toAbstractDataSource.finishTypeWrite(FreezeDryedObject)
.- Specified by:
startTypeWrite
in classAbstractDataSource<ResultSet>
- Parameters:
fdo
- theFreezeDryedObject
who will begin to be written- Throws:
FreezeDryingException
- when there's an error
-
finishTypeWrite
Description copied from class:AbstractDataSource
Finishes the writing of the specifiedFreezeDryedObject
. This will be preceded by acall and calls to {@link #writeRow(FreezeDryedObject, Map)} (along with the other child and byte methods).
- Specified by:
finishTypeWrite
in classAbstractDataSource<ResultSet>
- Throws:
FreezeDryingException
- when there's an error
-
writeRow
Description copied from class:AbstractDataSource
This writes a row of data out which was generated by the specifiedFreezeDryedObject
. This will be preceded by acall and will be followed by calls to {@link #writeRow(FreezeDryedObject, Map)} and a call to {@link #finishTypeWrite(FreezeDryedObject)}.
- Specified by:
writeRow
in classAbstractDataSource<ResultSet>
row
- the data for the specifiedFreezeDryedObject
- Throws:
FreezeDryingException
- when there's an error
-
getTableName
-
getTableName
-
getChildTableName
-
cleanColName
-
createTableIfNeeded
- Throws:
SQLException
-
createChildTableIfNeeded
- Throws:
SQLException
-
getColumnType
-
executeCreate
- Throws:
SQLException
-
startChildrenWrite
Description copied from class:AbstractDataSource
Initiates the writing of the children for the specifiedFreezeDryedObject
.- Specified by:
startChildrenWrite
in classAbstractDataSource<ResultSet>
- Parameters:
fdo
- thewhose children will be written
- Throws:
FreezeDryingException
-
finishChildrenWrite
Description copied from class:AbstractDataSource
Finishes the writing of the children for the specifiedFreezeDryedObject
.- Specified by:
finishChildrenWrite
in classAbstractDataSource<ResultSet>
- Throws:
FreezeDryingException
-
getType
- Overrides:
getType
in classAbstractDataSource<ResultSet>
-
queryDBForType
- Throws:
SQLException
-
getType
-
generateId
-
generateId
-
getClassMapping
- Throws:
SQLException
-
storeClassMapping
- Throws:
SQLException
-
writeChildData
protected void writeChildData(FreezeDryedObject fdo, HashMap<String, Object> child) throws FreezeDryingExceptionDescription copied from class:AbstractDataSource
Writes the data for a child of the specifiedFreezeDryedObject
.- Specified by:
writeChildData
in classAbstractDataSource<ResultSet>
- Parameters:
fdo
- the parentchild
- the data from the child- Throws:
FreezeDryingException
-
startTypeRead
Description copied from class:AbstractDataSource
Initiates the reading of the specified class. This class represents is of a type that was at some point written out through aFreezeDryedObject
.- Specified by:
startTypeRead
in classAbstractDataSource<ResultSet>
- Parameters:
clazz
- the class that was the type returned byFreezeDryedObject.getType()
- Throws:
FreezeDryingException
-
validateConnectionSettings
protected boolean validateConnectionSettings() -
endTypeRead
Description copied from class:AbstractDataSource
Finishes the reading of the specified class.- Specified by:
endTypeRead
in classAbstractDataSource<ResultSet>
- Parameters:
clazz
- the class whose reading has completed
-
closeQuery
-
closeChildQuery
-
readRow
Description copied from class:AbstractDataSource
Reads in a row of data that will be parsed by the use ofAbstractDataSource.getFieldValue(X, String)
andAbstractDataSource.getFields(String)
. If the data source can find an object with the specified key it should return data for reading that object, otherwise it may return any object.- Specified by:
readRow
in classAbstractDataSource<ResultSet>
- Parameters:
clazz
- the class the data will be used forkey
- the key of the object we're looking for, if null it should be ignored- Returns:
- a row of data
- Throws:
FreezeDryingException
-
readByteArray
protected byte[] readByteArray(FreezeDryedObject fdo, String field, Object bytesId) throws FreezeDryingException Description copied from class:AbstractDataSource
Reads in a byte[] that corresponds to the specified bytesId and will be loaded into the specified fdo through the specified field.- Specified by:
readByteArray
in classAbstractDataSource<ResultSet>
- Parameters:
fdo
- the object that the bytes are going to be stored infield
- the field the bytes[] are for- Returns:
- the read in byte[]
- Throws:
FreezeDryingException
-
writeByteArray
protected Object writeByteArray(FreezeDryedObject object, String fieldName, byte[] bs) throws FreezeDryingException Description copied from class:AbstractDataSource
Writes a byte array retrieved from the specifiedFreezeDryedObject
with the specified fieldName.- Specified by:
writeByteArray
in classAbstractDataSource<ResultSet>
- Parameters:
object
- the source of the datafieldName
- the field this data is assosciated withbs
- the data itself- Returns:
- the value to be written to the subclass for the fieldName (this could potentially just be an id, or it could just be the bytes themselves)
- Throws:
FreezeDryingException
-
getArrayType
- Overrides:
getArrayType
in classAbstractDataSource<ResultSet>
-
finishChildrenRead
Description copied from class:AbstractDataSource
Ends the reading of the children for the specifiedFreezeDryedObject
.- Specified by:
finishChildrenRead
in classAbstractDataSource<ResultSet>
- Parameters:
fdo
- theFreezeDryedObject
whose children have been read
-
readChildsRow
Description copied from class:AbstractDataSource
Reads in a row of data about a child of the specifiedFreezeDryedObject
.- Specified by:
readChildsRow
in classAbstractDataSource<ResultSet>
- Parameters:
parent
- the parent of the child that will be readid
- the id of the child we're concerned with- Returns:
- a row of data on the child
- Throws:
FreezeDryingException
-
startChildrenRead
Description copied from class:AbstractDataSource
Initializes the reading of the children of a specifiedFreezeDryedObject
.- Specified by:
startChildrenRead
in classAbstractDataSource<ResultSet>
- Parameters:
fdo
- theFreezeDryedObject
whose children will be read- Throws:
FreezeDryingException
-
getFields
Description copied from class:AbstractDataSource
Retrieves the fields for a specified type. Generally these should be read in and stored during theAbstractDataSource.startTypeRead(Class)
call.- Specified by:
getFields
in classAbstractDataSource<ResultSet>
- Parameters:
type
- the type of theFreezeDryedObject
(fromAbstractDataSource.getType(Class)
).- Returns:
- the list of fields of that type
- Throws:
FreezeDryingException
-
getFieldValue
Description copied from class:AbstractDataSource
Retrieves the value of the specified field in the specified row of data.- Specified by:
getFieldValue
in classAbstractDataSource<ResultSet>
- Parameters:
row
- the row (returned by#readRow(Class)
).field
- the field we're reading- Returns:
- the value of that field
- Throws:
FreezeDryingException
-
getChildrenColumnName
- Overrides:
getChildrenColumnName
in classAbstractDataSource<ResultSet>
-
getUserName
-
getPassword
-
getDBURL
-
getDriverName
-
getStoreLogin
public boolean getStoreLogin() -
setStoreLogin
public void setStoreLogin(boolean storeLogin)
-