com.sleepycat.bdb.bind
Interface KeyExtractor

All Known Implementing Classes:
SerialSerialKeyExtractor, TupleSerialKeyExtractor, TupleSerialMarshalledKeyExtractor, TupleTupleKeyExtractor, TupleTupleMarshalledKeyExtractor

public interface KeyExtractor

The interface implemented for extracting the index key from primary key and/or value buffers, and for clearing the index key in a value buffer. The implementation of this interface defines a specific index key for use in a database, and that is independent of any bindings that may be used.


Method Summary
 void clearIndexKey(DataBuffer valueData)
          Clears the index key in a value buffer.
 void extractIndexKey(DataBuffer primaryKeyData, DataBuffer valueData, DataBuffer indexKeyData)
          Extracts the index key data from primary key and value buffers.
 DataFormat getIndexKeyFormat()
          Returns the format of the index key data.
 DataFormat getPrimaryKeyFormat()
          Returns the format of the primary key data or null if the index key data is not derived from the primary key data.
 DataFormat getValueFormat()
          Returns the format of the value data or null if the index key data is not derived from the value data.
 

Method Detail

extractIndexKey

void extractIndexKey(DataBuffer primaryKeyData,
                     DataBuffer valueData,
                     DataBuffer indexKeyData)
                     throws java.io.IOException
Extracts the index key data from primary key and value buffers. The index key is extracted when saving the data record identified by the primary key and value buffers, in order to add or remove an index entry in the database for that data record.

Parameters:
primaryKeyData - is the source primary key data, or null if no primary key data is used to construct the index key, in which case getPrimaryKeyFormat() should also return null.
valueData - is the source value data, or null if no value data is used to construct the index key, in which case getValueFormat() should also return null.
indexKeyData - is the destination index key buffer. For index keys which are optionally present, the buffer's length should be set to zero to indicate that the key is not present or null.
Throws:
java.io.IOException

clearIndexKey

void clearIndexKey(DataBuffer valueData)
                   throws java.io.IOException
Clears the index key in a value buffer. The index key is cleared when the index is for a foreign key identifying a record that has been deleted. This method is called only if the ForeignKeyIndex is configured with ForeignKeyIndex.ON_DELETE_CLEAR. It is never called for index keys that are derived from primary key data, since in this case ForeignKeyIndex.ON_DELETE_CLEAR is not allowed.

Parameters:
valueData - is the source and destination value data. On entry this contains the index key to be cleared. It should be changed by this method such that extractIndexKey(com.sleepycat.bdb.bind.DataBuffer, com.sleepycat.bdb.bind.DataBuffer, com.sleepycat.bdb.bind.DataBuffer) will extract a null key (set the buffer length to zero). Other data in the buffer should remain unchanged.
Throws:
java.io.IOException

getPrimaryKeyFormat

DataFormat getPrimaryKeyFormat()
Returns the format of the primary key data or null if the index key data is not derived from the primary key data. If this method returns null, then null will be passed for the primaryKeyData parameter of extractIndexKey(com.sleepycat.bdb.bind.DataBuffer, com.sleepycat.bdb.bind.DataBuffer, com.sleepycat.bdb.bind.DataBuffer).

Returns:
the format of the primary key data or null.

getValueFormat

DataFormat getValueFormat()
Returns the format of the value data or null if the index key data is not derived from the value data. If this method returns null, then null will be passed for the valueData parameter of extractIndexKey(com.sleepycat.bdb.bind.DataBuffer, com.sleepycat.bdb.bind.DataBuffer, com.sleepycat.bdb.bind.DataBuffer).

Returns:
the format of the value data or null.

getIndexKeyFormat

DataFormat getIndexKeyFormat()
Returns the format of the index key data.

Returns:
the format of the index key data.