Class HandlerFieldStrategy
java.lang.Object
org.apache.openjpa.jdbc.meta.strats.AbstractStrategy
org.apache.openjpa.jdbc.meta.strats.AbstractFieldStrategy
org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy
- All Implemented Interfaces:
Serializable
,Embeddable
,FieldStrategy
,Joinable
,Strategy
- Direct Known Subclasses:
MaxEmbeddedBlobFieldStrategy
,MaxEmbeddedByteArrayFieldStrategy
,MaxEmbeddedCharArrayFieldStrategy
,MaxEmbeddedClobFieldStrategy
Mapping for a single-valued field that delegates to a
ValueHandler
.- Since:
- 0.4.0
- Author:
- Abe White
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionprotected Object[]
protected Column[]
protected ColumnIO
protected boolean
protected boolean
Fields inherited from class org.apache.openjpa.jdbc.meta.strats.AbstractFieldStrategy
field
Fields inherited from interface org.apache.openjpa.jdbc.meta.Embeddable
UNSUPPORTED
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
appendIsNotNull
(SQLBuffer sql, Select sel, Joins joins) Append a where clause to the given statement checking if this value is not null.void
appendIsNull
(SQLBuffer sql, Select sel, Joins joins) Append a where clause to the given statement checking if this value is null.void
delete
(OpenJPAStateManager sm, JDBCStore store, RowManager rm) Set the where values appropriately to delete the proper instance, and set all relations on non-secondary tables as updates.Return column I/O information for this mapping.Column[]
The columns managed by this joinable.int
Return the field index of this joinable, or -1 if not a field.getJoinValue
(Object fieldVal, Column col, JDBCStore store) Return the join value of the given column.getJoinValue
(OpenJPAStateManager sm, Column col, JDBCStore store) Return the join value of the given column.getPrimaryKeyValue
(Result res, Column[] cols, ForeignKey fk, JDBCStore store, Joins joins) Return the value for this joinable from the given result, using the given columns.Object[]
Return the arguments needed to extract datastore values viaResult.getObject(java.lang.Object, int, java.lang.Object)
for each column.void
Perform caching and other initialization operations.void
insert
(OpenJPAStateManager sm, JDBCStore store, RowManager rm) Set values for the mapping into the proper rows.boolean
Return true if this field can be used as part of a state image for optimistic locking.Join this value to the class table.joinRelation
(Joins joins, boolean forceOuter, boolean traverse) Join this value's table to the table for the related first class object type, if any.void
load
(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch) Load secondary data using a connection from the store manager.void
load
(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res) Load virtual row data; the given result is not guaranteed to contain data for this field, so the field mapping should make sure the result contains its needed column data before loading.void
loadEmbedded
(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Object val) Load this strategy's field by transforming the given datastore value.loadProjection
(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins) Load this field value using the given result.void
map
(boolean adapt) Map the owning mapping using this strategy.int
select
(Select sel, OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, int eagerMode) Select the virtual row columns of this mapping.void
setAutoAssignedValue
(OpenJPAStateManager sm, JDBCStore store, Column col, Object autoInc) Use the given auto-assigned value to set this join value's field on the given instance.int
supportsSelect
(Select sel, int type, OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch) Return whether this mapping can perform the given select type.toDataStoreValue
(Object val, JDBCStore store) Translate the given external field value to its datastore equivalent.toEmbeddedDataStoreValue
(Object val, JDBCStore store) Convert the given Java value to its datastore equivalent.Convert the given datastore value to its Java equivalent.void
update
(OpenJPAStateManager sm, JDBCStore store, RowManager rm) Set values for the mapping into the proper rows.void
where
(OpenJPAStateManager sm, JDBCStore store, RowManager rm, Object prevValue) Add a WHERE condition to the row for this field such that the field's current DB value must equal the given previous value.Methods inherited from class org.apache.openjpa.jdbc.meta.strats.AbstractFieldStrategy
appendIndex, appendIsEmpty, appendIsNotEmpty, appendSize, appendType, assertNotMappedBy, isEagerSelectToMany, joinKey, joinKeyRelation, loadEagerJoin, loadEagerParallel, loadKeyProjection, selectEagerJoin, selectEagerParallel, setFieldMapping, toKeyDataStoreValue
Methods inherited from class org.apache.openjpa.jdbc.meta.strats.AbstractStrategy
customDelete, customInsert, customUpdate, getAlias, isCustomDelete, isCustomInsert, isCustomUpdate
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.openjpa.jdbc.meta.Strategy
customDelete, customInsert, customUpdate, getAlias, isCustomDelete, isCustomInsert, isCustomUpdate
-
Field Details
-
_cols
-
_io
-
_args
-
_load
protected boolean _load -
_lob
protected boolean _lob
-
-
Constructor Details
-
HandlerFieldStrategy
public HandlerFieldStrategy()
-
-
Method Details
-
map
public void map(boolean adapt) Description copied from interface:Strategy
Map the owning mapping using this strategy.- Specified by:
map
in interfaceStrategy
- Overrides:
map
in classAbstractStrategy
- Parameters:
adapt
- if true, use the owning mapping's raw mapping info to set its ORM data; if false, ORM data will already be set
-
initialize
public void initialize()Description copied from interface:Strategy
Perform caching and other initialization operations. This method is called afterStrategy.map(boolean)
, and after all related components have been mapped as well.- Specified by:
initialize
in interfaceStrategy
- Overrides:
initialize
in classAbstractStrategy
-
insert
Description copied from interface:Strategy
Set values for the mapping into the proper rows. For class mappings, this method will be called only after the corresponding method has been called for all fields of this mapping.- Specified by:
insert
in interfaceStrategy
- Overrides:
insert
in classAbstractStrategy
- Throws:
SQLException
-
update
Description copied from interface:Strategy
Set values for the mapping into the proper rows.- Specified by:
update
in interfaceStrategy
- Overrides:
update
in classAbstractStrategy
- Throws:
SQLException
- See Also:
-
delete
Description copied from interface:Strategy
Set the where values appropriately to delete the proper instance, and set all relations on non-secondary tables as updates. This allows foreign key analysis.- Specified by:
delete
in interfaceStrategy
- Overrides:
delete
in classAbstractStrategy
- Throws:
SQLException
- See Also:
-
supportsSelect
public int supportsSelect(Select sel, int type, OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch) Description copied from interface:FieldStrategy
Return whether this mapping can perform the given select type. Return 0 if the given type is not supported. If the given type is an eager parallel type, return the number of UNIONed selects necessary to fetch the data. Otherwise, return any positive number if the type is supported. The given state manager may be null if selecting multiple instances.- Specified by:
supportsSelect
in interfaceFieldStrategy
- Overrides:
supportsSelect
in classAbstractFieldStrategy
- See Also:
-
select
public int select(Select sel, OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, int eagerMode) Description copied from interface:FieldStrategy
Select the virtual row columns of this mapping.- Specified by:
select
in interfaceFieldStrategy
- Overrides:
select
in classAbstractFieldStrategy
- Parameters:
sel
- the select to add tosm
- the instance being loaded, or null if not initialized yet or selecting for multiple instancesstore
- the current store managerfetch
- fetch configurationeagerMode
- the eager fetch mode to use; this may be more restrictive than the mode of the fetch configuration- Returns:
- > 0 if this mapping requires the selected data (if any), 0 if it selected data but does not require it, or < 0 if no data was selected
-
load
public void load(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res) throws SQLException Description copied from interface:FieldStrategy
Load virtual row data; the given result is not guaranteed to contain data for this field, so the field mapping should make sure the result contains its needed column data before loading.- Specified by:
load
in interfaceFieldStrategy
- Overrides:
load
in classAbstractFieldStrategy
- Throws:
SQLException
-
load
public void load(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch) throws SQLException Description copied from interface:FieldStrategy
Load secondary data using a connection from the store manager.- Specified by:
load
in interfaceFieldStrategy
- Overrides:
load
in classAbstractFieldStrategy
- Throws:
SQLException
-
toDataStoreValue
Description copied from interface:FieldStrategy
Translate the given external field value to its datastore equivalent. If the mapping occupies multiple columns in the datastore, return an object array, else return a single object. Simply returns the given object by default.- Specified by:
toDataStoreValue
in interfaceFieldStrategy
- Overrides:
toDataStoreValue
in classAbstractFieldStrategy
-
appendIsNull
Description copied from interface:FieldStrategy
Append a where clause to the given statement checking if this value is null.- Specified by:
appendIsNull
in interfaceFieldStrategy
- Overrides:
appendIsNull
in classAbstractFieldStrategy
-
appendIsNotNull
Description copied from interface:FieldStrategy
Append a where clause to the given statement checking if this value is not null.- Specified by:
appendIsNotNull
in interfaceFieldStrategy
- Overrides:
appendIsNotNull
in classAbstractFieldStrategy
-
join
Description copied from interface:FieldStrategy
Join this value to the class table. Does nothing by default.- Specified by:
join
in interfaceFieldStrategy
- Overrides:
join
in classAbstractFieldStrategy
-
joinRelation
Description copied from interface:FieldStrategy
Join this value's table to the table for the related first class object type, if any. Does nothing by default.- Specified by:
joinRelation
in interfaceFieldStrategy
- Overrides:
joinRelation
in classAbstractFieldStrategy
traverse
- if true, throw proper exception if it is not possible for this mapping to traverse into the related type
-
loadProjection
public Object loadProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins) throws SQLException Description copied from interface:FieldStrategy
Load this field value using the given result. The result will contain the columns fromValueMapping.getColumns()
.- Specified by:
loadProjection
in interfaceFieldStrategy
- Overrides:
loadProjection
in classAbstractFieldStrategy
- Throws:
SQLException
-
isVersionable
public boolean isVersionable()Description copied from interface:FieldStrategy
Return true if this field can be used as part of a state image for optimistic locking.- Specified by:
isVersionable
in interfaceFieldStrategy
- Overrides:
isVersionable
in classAbstractFieldStrategy
-
where
public void where(OpenJPAStateManager sm, JDBCStore store, RowManager rm, Object prevValue) throws SQLException Description copied from interface:FieldStrategy
Add a WHERE condition to the row for this field such that the field's current DB value must equal the given previous value. Only versionable mappings must implement this method meaningfully.- Specified by:
where
in interfaceFieldStrategy
- Overrides:
where
in classAbstractFieldStrategy
- Throws:
SQLException
-
getFieldIndex
public int getFieldIndex()Description copied from interface:Joinable
Return the field index of this joinable, or -1 if not a field.- Specified by:
getFieldIndex
in interfaceJoinable
-
getPrimaryKeyValue
public Object getPrimaryKeyValue(Result res, Column[] cols, ForeignKey fk, JDBCStore store, Joins joins) throws SQLException Description copied from interface:Joinable
Return the value for this joinable from the given result, using the given columns. If the given foreign key is non-null, use the foreign key's columns by translating the given columns throughForeignKey.getColumn(org.apache.openjpa.jdbc.schema.Column)
.- Specified by:
getPrimaryKeyValue
in interfaceJoinable
- Throws:
SQLException
-
getColumns
Description copied from interface:Joinable
The columns managed by this joinable.- Specified by:
getColumns
in interfaceEmbeddable
- Specified by:
getColumns
in interfaceJoinable
-
getResultArguments
Description copied from interface:Embeddable
Return the arguments needed to extract datastore values viaResult.getObject(java.lang.Object, int, java.lang.Object)
for each column.- Specified by:
getResultArguments
in interfaceEmbeddable
-
getJoinValue
Description copied from interface:Joinable
Return the join value of the given column.- Specified by:
getJoinValue
in interfaceJoinable
- Parameters:
fieldVal
- the value of the field for this joinablecol
- the column of this joinable whose value to return
-
getJoinValue
Description copied from interface:Joinable
Return the join value of the given column.- Specified by:
getJoinValue
in interfaceJoinable
- Parameters:
sm
- the instance from which to get the valuecol
- the column whose value to return
-
setAutoAssignedValue
public void setAutoAssignedValue(OpenJPAStateManager sm, JDBCStore store, Column col, Object autoInc) Description copied from interface:Joinable
Use the given auto-assigned value to set this join value's field on the given instance.- Specified by:
setAutoAssignedValue
in interfaceJoinable
-
getColumnIO
Description copied from interface:Embeddable
Return column I/O information for this mapping.- Specified by:
getColumnIO
in interfaceEmbeddable
-
toEmbeddedDataStoreValue
Description copied from interface:Embeddable
Convert the given Java value to its datastore equivalent. If this mapping occupies multiple columns, return an object array with one element per column. For relation id columns, return the state manager the column depends on.- Specified by:
toEmbeddedDataStoreValue
in interfaceEmbeddable
-
toEmbeddedObjectValue
Description copied from interface:Embeddable
Convert the given datastore value to its Java equivalent. IfEmbeddable.getColumns()
returns multiple columns, the given datastore value will be an object array of the corresponding length. This method must only be supported by mappings of embedded id objects. In other casesEmbeddable.loadEmbedded(org.apache.openjpa.kernel.OpenJPAStateManager, org.apache.openjpa.jdbc.kernel.JDBCStore, org.apache.openjpa.jdbc.kernel.JDBCFetchConfiguration, java.lang.Object)
will be used instead. ReturnEmbeddable.UNSUPPORTED
if this mapping cannot support this method.- Specified by:
toEmbeddedObjectValue
in interfaceEmbeddable
-
loadEmbedded
public void loadEmbedded(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Object val) throws SQLException Description copied from interface:Embeddable
Load this strategy's field by transforming the given datastore value. IfEmbeddable.getColumns()
returns multiple columns, the given datastore value will be an object array of the corresponding length. The value does not have to be loaded immediately; it may be stored as impl data.- Specified by:
loadEmbedded
in interfaceEmbeddable
- Throws:
SQLException
-