Interface SharedBackend
- All Known Implementing Classes:
AbstractSharedBackend
,FSBackend
public interface SharedBackend
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addMetadataRecord
(File input, String name) Adds a metadata record with the specified namevoid
addMetadataRecord
(InputStream input, String name) Adds a metadata record with the specified namevoid
close()
Close backend and release resources like database connection if any.void
deleteAllMetadataRecords
(String prefix) Deletes all the metadata records with the specified prefix.boolean
deleteMetadataRecord
(String name) Deletes the metadata record with the specified namevoid
deleteRecord
(DataIdentifier identifier) Delete record identified by identifier.boolean
exists
(DataIdentifier identifier) This method check the existence of record in backend.Returns identifiers of all records that exists in backend.getAllMetadataRecords
(String prefix) Gets all the metadata with a specified prefix.Returns a list of all DataRecordsgetMetadataRecord
(String name) Gets the metadata of the specified name.Gets the record with the specified identifiervoid
init()
Initializeboolean
metadataRecordExists
(String name) Checks if the metadata record with the specified name exists.read
(DataIdentifier identifier) Return inputstream of record identified by identifier.void
write
(DataIdentifier identifier, File file) Stores file to backend with identifier used as key.
-
Method Details
-
read
Return inputstream of record identified by identifier.- Parameters:
identifier
- identifier of record.- Returns:
- inputstream of the record.
- Throws:
DataStoreException
- if record not found or any error.
-
write
Stores file to backend with identifier used as key. If key pre-exists, it updates the timestamp of the key.- Parameters:
identifier
- key of the filefile
- file that would be stored in backend.- Throws:
DataStoreException
- for any error.
-
getRecord
Gets the record with the specified identifier- Parameters:
id
- the record identifier- Returns:
- the metadata DataRecord
- Throws:
DataStoreException
-
getAllIdentifiers
Returns identifiers of all records that exists in backend.- Returns:
- iterator consisting of all identifiers
- Throws:
DataStoreException
-
getAllRecords
Returns a list of all DataRecords- Returns:
- iterator over DataRecords
- Throws:
DataStoreException
-
exists
This method check the existence of record in backend.- Parameters:
identifier
- identifier to be checked.- Returns:
- true if records exists else false.
- Throws:
DataStoreException
-
close
Close backend and release resources like database connection if any.- Throws:
DataStoreException
-
deleteRecord
Delete record identified by identifier. No-op if identifier not found.- Parameters:
identifier
-- Throws:
DataStoreException
-
addMetadataRecord
Adds a metadata record with the specified name- Parameters:
input
- the record input streamname
- the name- Throws:
DataStoreException
-
addMetadataRecord
Adds a metadata record with the specified name- Parameters:
input
- the record filename
- the name- Throws:
DataStoreException
-
getMetadataRecord
Gets the metadata of the specified name.- Parameters:
name
- the name of the record- Returns:
- the metadata DataRecord
-
getAllMetadataRecords
Gets all the metadata with a specified prefix.- Parameters:
prefix
- the prefix of the records to retrieve- Returns:
- list of all the metadata DataRecords
-
deleteMetadataRecord
Deletes the metadata record with the specified name- Parameters:
name
- the name of the record- Returns:
- boolean to indicate success of deletion
-
deleteAllMetadataRecords
Deletes all the metadata records with the specified prefix.- Parameters:
prefix
- the prefix of the record
-
metadataRecordExists
Checks if the metadata record with the specified name exists.- Parameters:
name
- the name of the record- Returns:
- whether record exists
-
init
Initialize- Throws:
DataStoreException
-