public class FileDataStore extends AbstractDataStore implements MultiDataStoreAware
<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).
| Modifier and Type | Field and Description |
|---|---|
protected Map<DataIdentifier,WeakReference<DataIdentifier>> |
inUse
All data identifiers that are currently in use are in this set until they are garbage collected.
|
DIGEST| Constructor and Description |
|---|
FileDataStore() |
| Modifier and Type | Method and Description |
|---|---|
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.
|
encodeHexString, getRecord, getRecordFromReference, getReferenceFromIdentifierprotected Map<DataIdentifier,WeakReference<DataIdentifier>> inUse
public void init(String homeDir)
public DataRecord getRecordIfStored(DataIdentifier identifier) throws DataStoreException
getRecordIfStored in interface DataStoreidentifier - the identifierDataStoreException - if the data store could not be accessedpublic DataRecord addRecord(InputStream input) throws DataStoreException
AbstractDataStore.DIGEST message digest of the stream is calculated. If a
record with the same AbstractDataStore.DIGEST digest (and length) is found then it is
returned. Otherwise the temporary file is moved in place to become
the new data record that gets returned.addRecord in interface DataStoreinput - binary streamDataStoreException - if the record could not be createdpublic void updateModifiedDateOnAccess(long before)
DataStoreupdateModifiedDateOnAccess in interface DataStorebefore - - update the modified date to the current time if it is older than this valuepublic void deleteRecord(DataIdentifier identifier) throws DataStoreException
MultiDataStoreAwareMultiDataStore.MoveDataTask.deleteRecord in interface MultiDataStoreAwareidentifier - data identifierDataStoreException - if the data store could not be accessed, or if the given
identifier is invalidpublic int deleteAllOlderThan(long min)
DataStoredeleteAllOlderThan in interface DataStoremin - the minimum timepublic Iterator<DataIdentifier> getAllIdentifiers()
DataStoregetAllIdentifiers in interface DataStorepublic void clearInUse()
DataStoreclearInUse in interface DataStorepublic String getPath()
public void setPath(String directoryName)
directoryName - the path namepublic int getMinRecordLength()
DataStoregetMinRecordLength in interface DataStorepublic void setMinRecordLength(int minRecordLength)
minRecordLength - the lengthpublic void close()
DataStoreprotected 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 availableCopyright © 2004–2022 The Apache Software Foundation. All rights reserved.