public class DataStoreBlobStore extends java.lang.Object implements DataStore, BlobStore, GarbageCollectableBlobStore, BlobTrackingStore, TypedDataStore, org.apache.jackrabbit.oak.api.blob.BlobAccessProvider
DataStore.getMinRecordLength()| Modifier and Type | Class and Description |
|---|---|
static class |
DataStoreBlobStore.BlobId |
SharedDataStore.Type| Modifier and Type | Field and Description |
|---|---|
static int |
DEFAULT_CACHE_SIZE |
static java.lang.String |
MEM_CACHE_NAME |
| Constructor and Description |
|---|
DataStoreBlobStore(DataStore delegate) |
DataStoreBlobStore(DataStore delegate,
boolean encodeLengthInId) |
DataStoreBlobStore(DataStore delegate,
boolean encodeLengthInId,
int cacheSizeInMB) |
| Modifier and Type | Method and Description |
|---|---|
void |
addMetadataRecord(java.io.File f,
java.lang.String name)
Adds the root record.
|
void |
addMetadataRecord(java.io.InputStream stream,
java.lang.String name)
Adds the root record.
|
DataRecord |
addRecord(java.io.InputStream stream)
Creates a new data record.
|
DataRecord |
addRecord(java.io.InputStream input,
BlobOptions options)
Add a record with specified options.
|
void |
addTracker(BlobTracker tracker)
Registers a tracker in the data store.
|
void |
clearCache()
Clear the cache.
|
void |
clearInUse()
Clear the in-use list.
|
void |
close()
Close the data store
|
@Nullable Blob |
completeBlobUpload(@NotNull java.lang.String uploadToken) |
long |
countDeleteChunks(java.util.List<java.lang.String> chunkIds,
long maxLastModifiedTime)
Deletes the blobs with the given ids.
|
void |
deleteAllMetadataRecords(java.lang.String prefix)
Deletes all records matching the given prefix.
|
int |
deleteAllOlderThan(long min)
Delete objects that have a modified date older than the specified date.
|
boolean |
deleteChunks(java.util.List<java.lang.String> chunkIds,
long maxLastModifiedTime)
Deletes the blobs with the given ids.
|
boolean |
deleteMetadataRecord(java.lang.String name)
Deletes the root record represented by the given parameters.
|
java.util.Iterator<java.lang.String> |
getAllChunkIds(long maxLastModifiedTime)
Gets all the identifiers.
|
java.util.Iterator<DataIdentifier> |
getAllIdentifiers()
Get all identifiers.
|
java.util.List<DataRecord> |
getAllMetadataRecords(java.lang.String prefix)
Gets the all root records.
|
java.util.Iterator<DataRecord> |
getAllRecords()
Retrieved an iterator over all DataRecords.
|
java.lang.String |
getBlobId(@NotNull java.lang.String reference)
Returns the blobId that referred by the given binary reference.
|
long |
getBlobLength(java.lang.String encodedBlobId)
Get the length of the blob.
|
long |
getBlockSizeMin()
Get the minimum block size (if there is any).
|
CacheStats |
getCacheStats() |
DataStore |
getDataStore() |
@Nullable java.net.URI |
getDownloadURI(@NotNull Blob blob,
@NotNull org.apache.jackrabbit.oak.api.blob.BlobDownloadOptions downloadOptions) |
java.io.InputStream |
getInputStream(java.lang.String encodedBlobId)
Returns a new stream for given blobId.
|
DataRecord |
getMetadataRecord(java.lang.String name)
Retrieves the metadata record with the given name
|
int |
getMinRecordLength()
Get the minimum size of an object that should be stored in this data store.
|
DataRecord |
getRecord(DataIdentifier identifier)
Returns the identified data record.
|
DataRecord |
getRecordForId(DataIdentifier identifier)
Retrieves the record for the given identifier
|
DataRecord |
getRecordFromReference(java.lang.String reference)
Returns the record that matches the given binary reference.
|
DataRecord |
getRecordIfStored(DataIdentifier identifier)
Check if a record for the given identifier exists, and return it if yes.
|
java.lang.String |
getReference(@NotNull java.lang.String encodedBlobId)
Returns a secure reference to blob referred by blobid, or
null if no such
reference is available. |
@Nullable BlobTracker |
getTracker()
Gets the traker registered in the data store.
|
SharedDataStore.Type |
getType()
Gets the type.
|
void |
init(java.lang.String homeDir)
Initialized the data store
|
@Nullable org.apache.jackrabbit.oak.api.blob.BlobUpload |
initiateBlobUpload(long maxUploadSizeInBytes,
int maxNumberOfURIs) |
@Nullable org.apache.jackrabbit.oak.api.blob.BlobUpload |
initiateBlobUpload(long maxUploadSizeInBytes,
int maxNumberOfURIs,
@NotNull org.apache.jackrabbit.oak.api.blob.BlobUploadOptions options) |
boolean |
metadataRecordExists(java.lang.String name)
Checks if the metadata record with the name exists
|
int |
readBlob(java.lang.String encodedBlobId,
long pos,
byte[] buff,
int off,
int length)
Read a number of bytes from a blob.
|
java.util.Iterator<java.lang.String> |
resolveChunks(java.lang.String blobId)
Resolve chunks stored in the blob store from the given Id.
|
void |
setBlobStatsCollector(BlobStatsCollector stats) |
void |
setBlockSize(int x)
Set the block size used by this blob store, if the blob store splits
binaries into blocks.
|
void |
setMaxCachedBinarySize(int maxCachedBinarySize) |
void |
startMark()
Start the mark phase.
|
int |
sweep()
Remove all unused blocks.
|
java.lang.String |
toString() |
void |
updateModifiedDateOnAccess(long before)
From now on, update the modified date of an object even when accessing it.
|
java.lang.String |
writeBlob(java.io.InputStream stream)
Write a blob from an input stream.
|
java.lang.String |
writeBlob(java.io.InputStream stream,
BlobOptions options)
Write a blob from an input stream with specified options.
|
java.lang.String |
writeBlob(java.lang.String tempFileName)
Write a blob from a temporary file.
|
public static final int DEFAULT_CACHE_SIZE
public static final java.lang.String MEM_CACHE_NAME
public DataStoreBlobStore(DataStore delegate)
public DataStoreBlobStore(DataStore delegate, boolean encodeLengthInId)
public DataStoreBlobStore(DataStore delegate, boolean encodeLengthInId, int cacheSizeInMB)
public DataRecord getRecordIfStored(DataIdentifier identifier) throws DataStoreException
DataStoregetRecordIfStored in interface DataStoreidentifier - data identifierDataStoreException - if the data store could not be accessedpublic DataRecord getRecord(DataIdentifier identifier) throws DataStoreException
DataStoregetRecord in interface DataStoreidentifier - data identifierDataStoreException - if the data store could not be accessed,
or if the given identifier is invalidpublic DataRecord getRecordFromReference(java.lang.String reference) throws DataStoreException
DataStorenull if the reference is invalid, for example if it
points to a record that does not exist.getRecordFromReference in interface DataStorereference - binary referencenullDataStoreException - if the data store could not be accessedpublic DataRecord addRecord(java.io.InputStream stream) throws DataStoreException
DataStoreThe given stream is consumed and not closed by this method. It is the responsibility of the caller to close the stream. A typical call pattern would be:
InputStream stream = ...;
try {
record = store.addRecord(stream);
} finally {
stream.close();
}
addRecord in interface DataStorestream - binary streamDataStoreException - if the data store could not be accessedpublic void updateModifiedDateOnAccess(long before)
DataStoreupdateModifiedDateOnAccess in interface DataStorebefore - - update the modified date to the current time if it is older than this valuepublic int deleteAllOlderThan(long min)
throws DataStoreException
DataStoredeleteAllOlderThan in interface DataStoremin - the minimum timeDataStoreExceptionpublic java.util.Iterator<DataIdentifier> getAllIdentifiers() throws DataStoreException
DataStoregetAllIdentifiers in interface DataStoreDataStoreException - if the list could not be readpublic void init(java.lang.String homeDir)
throws RepositoryException
DataStoreinit in interface DataStorehomeDir - the home directory of the repositoryRepositoryExceptionpublic int getMinRecordLength()
DataStoregetMinRecordLength in interface DataStorepublic void close()
throws DataStoreException
DataStoreclose in interface java.lang.AutoCloseableclose in interface DataStoreDataStoreException - if a problem occurredpublic java.lang.String writeBlob(java.io.InputStream stream)
throws java.io.IOException
BlobStorepublic java.lang.String writeBlob(java.io.InputStream stream,
BlobOptions options)
throws java.io.IOException
BlobStorepublic int readBlob(java.lang.String encodedBlobId,
long pos,
byte[] buff,
int off,
int length)
throws java.io.IOException
BlobStorepublic long getBlobLength(java.lang.String encodedBlobId)
throws java.io.IOException
BlobStoregetBlobLength in interface BlobStoreencodedBlobId - the blob idjava.io.IOExceptionpublic java.lang.String getBlobId(@NotNull
@NotNull java.lang.String reference)
BlobStorenull if the reference is invalid, for example if it
points to a blob that does not exist.public java.lang.String getReference(@NotNull
@NotNull java.lang.String encodedBlobId)
BlobStorenull if no such
reference is available.getReference in interface BlobStoreencodedBlobId - blobId referring the blob for which reference is requirednullpublic java.io.InputStream getInputStream(java.lang.String encodedBlobId)
throws java.io.IOException
BlobStoreread
return the same sequence of bytes as long as neither call throws
an exception.getInputStream in interface BlobStoreencodedBlobId - the blob idjava.io.IOExceptionpublic void setBlockSize(int x)
GarbageCollectableBlobStoresetBlockSize in interface GarbageCollectableBlobStorex - the block size in bytes.public java.lang.String writeBlob(java.lang.String tempFileName)
throws java.io.IOException
GarbageCollectableBlobStorewriteBlob in interface GarbageCollectableBlobStoretempFileName - the temporary file namejava.io.IOExceptionpublic int sweep()
throws java.io.IOException
GarbageCollectableBlobStoresweep in interface GarbageCollectableBlobStorejava.io.IOExceptionpublic void startMark()
throws java.io.IOException
GarbageCollectableBlobStorestartMark in interface GarbageCollectableBlobStorejava.io.IOExceptionpublic void clearInUse()
DataStoreclearInUse in interface DataStoreclearInUse in interface GarbageCollectableBlobStorepublic void clearCache()
GarbageCollectableBlobStoreclearCache in interface GarbageCollectableBlobStorepublic long getBlockSizeMin()
GarbageCollectableBlobStoregetBlockSizeMin in interface GarbageCollectableBlobStorepublic java.util.Iterator<java.lang.String> getAllChunkIds(long maxLastModifiedTime)
throws java.lang.Exception
GarbageCollectableBlobStoregetAllChunkIds in interface GarbageCollectableBlobStoremaxLastModifiedTime - the max last modified time to consider for retrieval,
with the special value '0' meaning no filtering by timejava.lang.Exception - the exceptionpublic boolean deleteChunks(java.util.List<java.lang.String> chunkIds,
long maxLastModifiedTime)
throws java.lang.Exception
GarbageCollectableBlobStoredeleteChunks in interface GarbageCollectableBlobStorechunkIds - the chunk idsmaxLastModifiedTime - the max last modified time to consider for retrieval,
with the special value '0' meaning no filtering by timejava.lang.Exception - the exceptionpublic long countDeleteChunks(java.util.List<java.lang.String> chunkIds,
long maxLastModifiedTime)
throws java.lang.Exception
GarbageCollectableBlobStorecountDeleteChunks in interface GarbageCollectableBlobStorechunkIds - the chunk idsmaxLastModifiedTime - the max last modified time to consider for retrieval,
with the special value '0' meaning no filtering by timejava.lang.Exception - the exceptionpublic java.util.Iterator<java.lang.String> resolveChunks(java.lang.String blobId)
throws java.io.IOException
GarbageCollectableBlobStoreresolveChunks in interface GarbageCollectableBlobStoreblobId - the blob idjava.io.IOException - Signals that an I/O exception has occurred.public void addMetadataRecord(java.io.InputStream stream,
java.lang.String name)
throws DataStoreException
SharedDataStoreaddMetadataRecord in interface SharedDataStorestream - the streamname - the name of the root recordDataStoreException - the data store exceptionpublic void addMetadataRecord(java.io.File f,
java.lang.String name)
throws DataStoreException
SharedDataStoreaddMetadataRecord in interface SharedDataStoref - the filename - the name of the root recordDataStoreException - the data store exceptionpublic DataRecord getMetadataRecord(java.lang.String name)
SharedDataStoregetMetadataRecord in interface SharedDataStorename - the name of the recordpublic boolean metadataRecordExists(java.lang.String name)
SharedDataStoremetadataRecordExists in interface SharedDataStorepublic java.util.List<DataRecord> getAllMetadataRecords(java.lang.String prefix)
SharedDataStoregetAllMetadataRecords in interface SharedDataStorepublic boolean deleteMetadataRecord(java.lang.String name)
SharedDataStoredeleteMetadataRecord in interface SharedDataStorename - the name of the root recordpublic void deleteAllMetadataRecords(java.lang.String prefix)
SharedDataStoredeleteAllMetadataRecords in interface SharedDataStoreprefix - metadata type identifierpublic java.util.Iterator<DataRecord> getAllRecords() throws DataStoreException
SharedDataStoregetAllRecords in interface SharedDataStoreDataStoreExceptionpublic DataRecord getRecordForId(DataIdentifier identifier) throws DataStoreException
SharedDataStoregetRecordForId in interface SharedDataStoreidentifier - the if of the recordDataStoreExceptionpublic SharedDataStore.Type getType()
SharedDataStoregetType in interface SharedDataStorepublic DataRecord addRecord(java.io.InputStream input, BlobOptions options) throws DataStoreException
TypedDataStoreaddRecord in interface TypedDataStoreDataStoreExceptionpublic java.lang.String toString()
toString in class java.lang.Objectpublic DataStore getDataStore()
public CacheStats getCacheStats()
public void setMaxCachedBinarySize(int maxCachedBinarySize)
public void setBlobStatsCollector(BlobStatsCollector stats)
public void addTracker(BlobTracker tracker)
BlobTrackingStoreaddTracker in interface BlobTrackingStore@Nullable public @Nullable BlobTracker getTracker()
BlobTrackingStoregetTracker in interface BlobTrackingStore@Nullable
public @Nullable org.apache.jackrabbit.oak.api.blob.BlobUpload initiateBlobUpload(long maxUploadSizeInBytes,
int maxNumberOfURIs)
throws java.lang.IllegalArgumentException
initiateBlobUpload in interface org.apache.jackrabbit.oak.api.blob.BlobAccessProviderjava.lang.IllegalArgumentException@Nullable
public @Nullable org.apache.jackrabbit.oak.api.blob.BlobUpload initiateBlobUpload(long maxUploadSizeInBytes,
int maxNumberOfURIs,
@NotNull
@NotNull org.apache.jackrabbit.oak.api.blob.BlobUploadOptions options)
throws java.lang.IllegalArgumentException
initiateBlobUpload in interface org.apache.jackrabbit.oak.api.blob.BlobAccessProviderjava.lang.IllegalArgumentException@Nullable public @Nullable Blob completeBlobUpload(@NotNull @NotNull java.lang.String uploadToken) throws java.lang.IllegalArgumentException
completeBlobUpload in interface org.apache.jackrabbit.oak.api.blob.BlobAccessProviderjava.lang.IllegalArgumentException@Nullable
public @Nullable java.net.URI getDownloadURI(@NotNull
@NotNull Blob blob,
@NotNull
@NotNull org.apache.jackrabbit.oak.api.blob.BlobDownloadOptions downloadOptions)
getDownloadURI in interface org.apache.jackrabbit.oak.api.blob.BlobAccessProviderCopyright © 2010 - 2023 Adobe. All Rights Reserved