Class AbstractTypeMapping
java.lang.Object
org.eclipse.emf.cdo.server.db.mapping.AbstractTypeMapping
- All Implemented Interfaces:
ITypeMapping
This is a default implementation for the
ITypeMapping
interface which provides default behavor for all common
types. Implementors should provide a constructor which the factory (see below) can use and implement
getResultSetValue(ResultSet)
. If needed, doSetValue(PreparedStatement, int, Object)
can also be
overridden as a counterpart to getResultSetValue(ResultSet)
. Finally, an implementor should also implement a
suitable factory for the TypeMappingRegistry
and register it either manually using
IManagedContainer.registerFactory(org.eclipse.net4j.util.factory.IFactory)
or using the Net4j Extension Point
factories
.- Since:
- 4.0
- Author:
- Eike Stepper, Stefan Winkler
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.emf.cdo.server.db.mapping.ITypeMapping
ITypeMapping.Descriptor, ITypeMapping.Factory, ITypeMapping.Provider, ITypeMapping.Registry
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal void
createDBField
(org.eclipse.net4j.db.ddl.IDBTable table) Deprecated.final void
createDBField
(org.eclipse.net4j.db.ddl.IDBTable table, String fieldName) Creates the DBField and adds it to the given table.protected void
doSetValue
(PreparedStatement stmt, int index, Object value) Implementors could override this method to convert a given value to the database representation and set it to the prepared statement.protected int
getDBLength
(org.eclipse.net4j.db.DBType type) org.eclipse.net4j.db.DBType
protected Object
final EStructuralFeature
final org.eclipse.net4j.db.ddl.IDBField
getField()
final IMappingStrategy
protected abstract Object
getResultSetValue
(ResultSet resultSet) Subclasses should implement this method to read the value from the result set.protected final Object
getRevisionValue
(InternalCDORevision revision) protected int
Returns the SQL type of this TypeMapping.final Object
Read the value from aResultSet
and convert it from the DB to the CDO representation.final void
readValueToRevision
(ResultSet resultSet, InternalCDORevision revision) Read a value from aResultSet
, convert it from the DB to the CDO representation and set it to the feature of the revision.final void
setDBField
(org.eclipse.net4j.db.ddl.IDBTable table, String fieldName) Sets the DBField.final void
setDBType
(org.eclipse.net4j.db.DBType dbType) final void
setDefaultValue
(PreparedStatement stmt, int index) Set the feature's default value to the JDBCIDBPreparedStatement
using an appropriatesetXxx
method.final void
setFeature
(EStructuralFeature feature) final void
setMappingStrategy
(IMappingStrategy mappingStrategy) final void
setValue
(PreparedStatement stmt, int index, Object value) Set the given value to the JDBCIDBPreparedStatement
using an appropriatesetXxx
method.final void
setValueFromRevision
(PreparedStatement stmt, int index, InternalCDORevision revision) Set a value of the given revision to the JDBCIDBPreparedStatement
using an appropriatesetXxx
method.toString()
-
Constructor Details
-
AbstractTypeMapping
public AbstractTypeMapping()Create a new type mapping
-
-
Method Details
-
getMappingStrategy
-
setMappingStrategy
- Specified by:
setMappingStrategy
in interfaceITypeMapping
-
getFeature
- Specified by:
getFeature
in interfaceITypeMapping
- Returns:
- The feature which is associated with this mapping.
-
setFeature
- Specified by:
setFeature
in interfaceITypeMapping
-
setDBType
public final void setDBType(org.eclipse.net4j.db.DBType dbType) - Specified by:
setDBType
in interfaceITypeMapping
-
getDBType
public org.eclipse.net4j.db.DBType getDBType()- Specified by:
getDBType
in interfaceITypeMapping
- Returns:
- The db type which is associated with this mapping.
-
setValueFromRevision
public final void setValueFromRevision(PreparedStatement stmt, int index, InternalCDORevision revision) throws SQLException Description copied from interface:ITypeMapping
Set a value of the given revision to the JDBCIDBPreparedStatement
using an appropriatesetXxx
method. The feature from which the value is taken is determined byITypeMapping.getFeature()
.- Specified by:
setValueFromRevision
in interfaceITypeMapping
- Parameters:
stmt
- the prepared statement to set the valueindex
- the index to use for thesetXxx
method.revision
- the revision to get the value to set from.- Throws:
SQLException
- if thesetXxx
throws it.
-
setDefaultValue
Description copied from interface:ITypeMapping
Set the feature's default value to the JDBCIDBPreparedStatement
using an appropriatesetXxx
method.- Specified by:
setDefaultValue
in interfaceITypeMapping
- Parameters:
stmt
- the prepared statement to set the valueindex
- the index to use for thesetXxx
method.- Throws:
SQLException
- if thesetXxx
throws it.
-
setValue
Description copied from interface:ITypeMapping
Set the given value to the JDBCIDBPreparedStatement
using an appropriatesetXxx
method.- Specified by:
setValue
in interfaceITypeMapping
- Parameters:
stmt
- the prepared statement to set the valueindex
- the index to use for thesetXxx
method.value
- the value to set.- Throws:
SQLException
- if thesetXxx
throws it.
-
createDBField
Deprecated.- Specified by:
createDBField
in interfaceITypeMapping
-
createDBField
Description copied from interface:ITypeMapping
Creates the DBField and adds it to the given table. The name of the DBField is explicitly determined by the corresponding parameter.- Specified by:
createDBField
in interfaceITypeMapping
- Parameters:
table
- the table to add this field to.fieldName
- the name for the DBField.
-
getField
public final org.eclipse.net4j.db.ddl.IDBField getField()- Specified by:
getField
in interfaceITypeMapping
- Returns:
- The db field which is associated with this mapping.
-
setDBField
Description copied from interface:ITypeMapping
Sets the DBField. The name of the DBField is explicitly determined by the corresponding parameter.- Specified by:
setDBField
in interfaceITypeMapping
- Parameters:
table
- the table to add this field to.fieldName
- the name for the DBField.
-
readValueToRevision
public final void readValueToRevision(ResultSet resultSet, InternalCDORevision revision) throws SQLException Description copied from interface:ITypeMapping
Read a value from aResultSet
, convert it from the DB to the CDO representation and set it to the feature of the revision. The feature is determined by getFeature() The resultSet field to read from is determined automatically by the internalITypeMapping.getField()
name.- Specified by:
readValueToRevision
in interfaceITypeMapping
- Parameters:
resultSet
- the result set to read fromrevision
- the revision to which the value should be set.- Throws:
SQLException
- if reading the value throws an SQLException
-
readValue
Description copied from interface:ITypeMapping
Read the value from aResultSet
and convert it from the DB to the CDO representation. The resultSet field to read from is determined automatically by the internalITypeMapping.getField()
name.- Specified by:
readValue
in interfaceITypeMapping
- Parameters:
resultSet
- the result set to read from- Returns:
- the read value
- Throws:
SQLException
- if reading the value throws an SQLException
-
toString
-
getDefaultValue
-
getRevisionValue
-
doSetValue
Implementors could override this method to convert a given value to the database representation and set it to the prepared statement.- Parameters:
stmt
- theIDBPreparedStatement
which is used for DB accessindex
- the parameter index in the statement which should be setvalue
- the value of the feature which should be written into the DB- Throws:
SQLException
-
getSqlType
protected int getSqlType()Returns the SQL type of this TypeMapping. The default implementation considers the type map held by themeta-data manager
. Subclasses may override.- Returns:
- The sql type of this TypeMapping.
-
getDBLength
protected int getDBLength(org.eclipse.net4j.db.DBType type) -
getResultSetValue
Subclasses should implement this method to read the value from the result set. Typical implementations should look similar to this one:resultSet.getString(getField().getName())
- Parameters:
resultSet
- the result set to read from- Returns:
- the result value read (this has to be compatible with the
feature
. - Throws:
SQLException
-