|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.jackrabbit.core.data.AbstractDataStore
org.apache.jackrabbit.core.data.FileDataStore
public class FileDataStore
Simple file-based data store. Data records are stored as normal files named using a message digest of the contained binary stream. Configuration:
<DataStore class="org.apache.jackrabbit.core.data.FileDataStore">
<param name="path" value="/data/datastore"/>
<param name="minRecordLength" value="1024"/>
</DataStore>
If the directory is not set, the directory <repository home>/repository/datastore is used.
A three level directory structure is used to avoid placing too many files in a single directory. The chosen structure is designed to scale up to billions of distinct records.
This implementation relies on the underlying file system to support
atomic O(1) move operations with File.renameTo(File).
| Field Summary | |
|---|---|
protected Map<DataIdentifier,WeakReference<DataIdentifier>> |
inUse
All data identifiers that are currently in use are in this set until they are garbage collected. |
| Constructor Summary | |
|---|---|
FileDataStore()
|
|
| Method Summary | |
|---|---|
DataRecord |
addRecord(InputStream input)
Creates a new data record. |
void |
clearInUse()
Clear the in-use list. |
void |
close()
Close the data store |
int |
deleteAllOlderThan(long min)
Delete objects that have a modified date older than the specified date. |
void |
deleteRecord(DataIdentifier identifier)
Deletes a single DataRecord based on the given identifier. |
Iterator<DataIdentifier> |
getAllIdentifiers()
Get all identifiers. |
int |
getMinRecordLength()
Get the minimum size of an object that should be stored in this data store. |
protected byte[] |
getOrCreateReferenceKey()
Returns the reference key of this data store. |
String |
getPath()
Get the name of the directory where this data store keeps the files. |
DataRecord |
getRecordIfStored(DataIdentifier identifier)
Get a data record for the given identifier. |
void |
init(String homeDir)
Initialized the data store. |
void |
setMinRecordLength(int minRecordLength)
Set the minimum object length. |
void |
setPath(String directoryName)
Set the name of the directory where this data store keeps the files. |
void |
updateModifiedDateOnAccess(long before)
From now on, update the modified date of an object even when accessing it. |
| Methods inherited from class org.apache.jackrabbit.core.data.AbstractDataStore |
|---|
encodeHexString, getRecord, getRecordFromReference, getReferenceFromIdentifier |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected Map<DataIdentifier,WeakReference<DataIdentifier>> inUse
| Constructor Detail |
|---|
public FileDataStore()
| Method Detail |
|---|
public void init(String homeDir)
init in interface DataStorehomeDir -
public DataRecord getRecordIfStored(DataIdentifier identifier)
throws DataStoreException
getRecordIfStored in interface DataStoreidentifier - the identifier
DataStoreException - if the data store could not be accessed
public DataRecord addRecord(InputStream input)
throws DataStoreException
addRecord in interface DataStoreinput - binary stream
DataStoreException - if the record could not be createdpublic void updateModifiedDateOnAccess(long before)
DataStore
updateModifiedDateOnAccess in interface DataStorebefore - - update the modified date to the current time if it is older than this value
public void deleteRecord(DataIdentifier identifier)
throws DataStoreException
MultiDataStoreAwareMoveDataTask.
deleteRecord in interface MultiDataStoreAwareidentifier - data identifier
DataStoreException - if the data store could not be accessed, or if the given
identifier is invalidpublic int deleteAllOlderThan(long min)
DataStore
deleteAllOlderThan in interface DataStoremin - the minimum time
public Iterator<DataIdentifier> getAllIdentifiers()
DataStore
getAllIdentifiers in interface DataStorepublic void clearInUse()
DataStore
clearInUse in interface DataStorepublic String getPath()
public void setPath(String directoryName)
directoryName - the path namepublic int getMinRecordLength()
DataStore
getMinRecordLength in interface DataStorepublic void setMinRecordLength(int minRecordLength)
minRecordLength - the lengthpublic void close()
DataStore
close in interface DataStore
protected byte[] getOrCreateReferenceKey()
throws DataStoreException
AbstractDataStoreThis method is called only once during the lifetime of a data store instance and the return value is cached in memory, so it's no problem if the implementation is slow.
getOrCreateReferenceKey in class AbstractDataStoreDataStoreException - if the key is not available
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||