public class FSBackend extends AbstractBackend
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
FS_BACKEND_PATH |
Constructor and Description |
---|
FSBackend() |
Modifier and Type | Method and Description |
---|---|
java.util.Set<DataIdentifier> |
deleteAllOlderThan(long min)
Delete all records which are older than timestamp.
|
void |
deleteRecord(DataIdentifier identifier)
Delete record identified by identifier.
|
boolean |
exists(DataIdentifier identifier)
This method check the existence of record in backend.
|
boolean |
exists(DataIdentifier identifier,
boolean touch)
This method check the existence of record in backend.
|
java.util.Iterator<DataIdentifier> |
getAllIdentifiers()
Returns identifiers of all records that exists in backend.
|
long |
getLastModified(DataIdentifier identifier)
Return lastModified of record identified by identifier.
|
long |
getLength(DataIdentifier identifier)
Return length of record identified by identifier.
|
void |
init(CachingDataStore store,
java.lang.String homeDir,
java.util.Properties prop) |
void |
init(CachingDataStore store,
java.lang.String homeDir,
java.lang.String config)
This method initialize backend with the configuration.
|
java.io.InputStream |
read(DataIdentifier identifier)
Return inputstream of record identified by identifier.
|
void |
setProperties(java.util.Properties properties)
Properties used to configure the backend.
|
void |
touch(DataIdentifier identifier,
long minModifiedDate)
Update the lastModified of record if it's lastModified < minModifiedDate.
|
void |
touchAsync(DataIdentifier identifier,
long minModifiedDate,
AsyncTouchCallback callback)
Update the lastModified of record if it's lastModified < minModifiedDate
asynchronously.
|
void |
write(DataIdentifier identifier,
java.io.File src)
Stores file to backend with identifier used as key.
|
void |
writeAsync(DataIdentifier identifier,
java.io.File src,
AsyncUploadCallback callback)
Write file to backend in asynchronous mode.
|
close, getAsyncWritePoolSize, setAsyncWritePoolSize
public static final java.lang.String FS_BACKEND_PATH
public void init(CachingDataStore store, java.lang.String homeDir, java.lang.String config) throws DataStoreException
AbstractBackend
init
in interface Backend
init
in class AbstractBackend
store
- CachingDataStore
homeDir
- path of repository home dir.config
- path of config property file.DataStoreException
public void init(CachingDataStore store, java.lang.String homeDir, java.util.Properties prop) throws DataStoreException
DataStoreException
public java.io.InputStream read(DataIdentifier identifier) throws DataStoreException
Backend
identifier
- identifier of record.DataStoreException
- if record not found or any error.public long getLength(DataIdentifier identifier) throws DataStoreException
Backend
identifier
- identifier of record.DataStoreException
- if record not found or any error.public long getLastModified(DataIdentifier identifier) throws DataStoreException
Backend
identifier
- identifier of record.DataStoreException
- if record not found or any error.public void write(DataIdentifier identifier, java.io.File src) throws DataStoreException
Backend
identifier
- key of the filesrc
- file that would be stored in backend.DataStoreException
- for any error.public void writeAsync(DataIdentifier identifier, java.io.File src, AsyncUploadCallback callback) throws DataStoreException
Backend
callback
- Callback interface to called after upload succeed or failed.DataStoreException
public java.util.Iterator<DataIdentifier> getAllIdentifiers() throws DataStoreException
Backend
DataStoreException
public boolean exists(DataIdentifier identifier, boolean touch) throws DataStoreException
Backend
DataStoreException
public boolean exists(DataIdentifier identifier) throws DataStoreException
Backend
identifier
- identifier to be checked.DataStoreException
public void touch(DataIdentifier identifier, long minModifiedDate) throws DataStoreException
Backend
DataStoreException
public void touchAsync(DataIdentifier identifier, long minModifiedDate, AsyncTouchCallback callback) throws DataStoreException
Backend
AsyncTouchCallback
methods. If identifier's lastModified >
minModified AsyncTouchCallback.onAbort(AsyncTouchResult)
is
called. Any exception is communicated through
AsyncTouchCallback.onFailure(AsyncTouchResult)
. On successful
update of lastModified,
AsyncTouchCallback.onSuccess(AsyncTouchResult)
is invoked.DataStoreException
public java.util.Set<DataIdentifier> deleteAllOlderThan(long min) throws DataStoreException
Backend
Set
of identifiers which are deleted.DataStoreException
public void deleteRecord(DataIdentifier identifier) throws DataStoreException
Backend
DataStoreException
public void setProperties(java.util.Properties properties)
properties
- to configure S3Backend"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"