Interface ContentAddressableStorage
-
- All Superinterfaces:
java.lang.AutoCloseable,VitamAutoCloseable
- All Known Implementing Classes:
AmazonS3V1,ContentAddressableStorageAbstract,ContentAddressableStorageJcloudsAbstract,FileSystem,HashFileSystem,OpenstackSwift,Swift,TapeLibraryContentAddressableStorage
public interface ContentAddressableStorage extends VitamAutoCloseable
The ContentAddressableStorage interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.util.Map<java.lang.String,AccessRequestStatus>checkAccessRequestStatuses(java.util.List<java.lang.String> accessRequestIds, boolean adminCrossTenantAccessRequestAllowed)Checks status of access requests by id.default booleancheckObjectAvailability(java.lang.String containerName, java.util.List<java.lang.String> objectNames)Check object availability for async offers.voidcheckObjectDigestAndStoreDigest(java.lang.String containerName, java.lang.String objectName, java.lang.String objectDigest, DigestType digestType, long size)Checks objet digest & update persist its digest in object metadatadefault java.lang.StringcreateAccessRequest(java.lang.String containerName, java.util.List<java.lang.String> objectNames)Create an access request for objects (asynchronous read from tape to local FS).voidcreateContainer(java.lang.String containerName)Creates a containervoiddeleteObject(java.lang.String containerName, java.lang.String objectName)Deletes a object representing the data at location containerName/objectNameContainerInformationgetContainerInformation(java.lang.String containerName)Get container information like capacityObjectContentgetObject(java.lang.String containerName, java.lang.String objectName)Retrieves an object representing the data at location containerName/objectNamejava.lang.StringgetObjectDigest(java.lang.String containerName, java.lang.String objectName, DigestType algo, boolean noCache)compute Object Digest using a defined algorithmMetadatasObjectgetObjectMetadata(java.lang.String containerName, java.lang.String objectId, boolean noCache)get metadata of the objectbooleanisExistingContainer(java.lang.String containerName)Determines if a container existsbooleanisExistingObject(java.lang.String containerName, java.lang.String objectName)Determines if an object existsvoidlistContainer(java.lang.String containerName, ObjectListingListener objectListingListener)List container objectsdefault java.lang.StringputObject(java.lang.String containerName, java.lang.String objectName, java.io.InputStream inputStream, DigestType digestType, long size)default voidremoveAccessRequest(java.lang.String accessRequestId, boolean adminCrossTenantAccessRequestAllowed)Delete access request.voidwriteObject(java.lang.String containerName, java.lang.String objectName, java.io.InputStream inputStream, DigestType digestType, long size)Adds an object representing the data at location containerName/objectName-
Methods inherited from interface fr.gouv.vitam.common.model.VitamAutoCloseable
close
-
-
-
-
Method Detail
-
createContainer
void createContainer(java.lang.String containerName) throws ContentAddressableStorageServerExceptionCreates a container- Parameters:
containerName- name of container to create- Throws:
ContentAddressableStorageServerException- Thrown when internal server error happens
-
isExistingContainer
boolean isExistingContainer(java.lang.String containerName) throws ContentAddressableStorageServerExceptionDetermines if a container exists- Parameters:
containerName- name of container- Returns:
- boolean type
- Throws:
ContentAddressableStorageServerException- Thrown when internal server error happens
-
writeObject
void writeObject(java.lang.String containerName, java.lang.String objectName, java.io.InputStream inputStream, DigestType digestType, long size) throws ContentAddressableStorageExceptionAdds an object representing the data at location containerName/objectName- Parameters:
containerName- container to place the object.objectName- fully qualified object name relative to the container.inputStream- the datadigestType- parameter to compute an hash.size- size off the input stream- Throws:
ContentAddressableStorageNotFoundException- Thrown when the container cannot be located.ContentAddressableStorageException- Thrown when put action failed due some other failureContentAddressableStorageAlreadyExistException- Thrown when object creating exists
-
checkObjectDigestAndStoreDigest
void checkObjectDigestAndStoreDigest(java.lang.String containerName, java.lang.String objectName, java.lang.String objectDigest, DigestType digestType, long size) throws ContentAddressableStorageExceptionChecks objet digest & update persist its digest in object metadata- Parameters:
containerName- container to place the object.objectName- fully qualified object name relative to the container.objectDigest- object digest valuedigestType- object digest typesize- size off the input stream- Throws:
ContentAddressableStorageException
-
putObject
default java.lang.String putObject(java.lang.String containerName, java.lang.String objectName, java.io.InputStream inputStream, DigestType digestType, long size) throws ContentAddressableStorageException
-
getObject
ObjectContent getObject(java.lang.String containerName, java.lang.String objectName) throws ContentAddressableStorageNotFoundException, ContentAddressableStorageException, ContentAddressableStorageUnavailableDataFromAsyncOfferException
Retrieves an object representing the data at location containerName/objectName- Parameters:
containerName- container where this exists.objectName- fully qualified name relative to the container.- Returns:
- the object you intended to receive
- Throws:
ContentAddressableStorageNotFoundException- Thrown when the container cannot be located.ContentAddressableStorageUnavailableDataFromAsyncOfferException- Thrown when object cannot be read due to missing access request on AsyncRead ContentAddressableStorageContentAddressableStorageException- Thrown when get action failed due some other failure
-
createAccessRequest
default java.lang.String createAccessRequest(java.lang.String containerName, java.util.List<java.lang.String> objectNames) throws ContentAddressableStorageExceptionCreate an access request for objects (asynchronous read from tape to local FS). Return access request identifier- Parameters:
containerName- container where this exists.objectNames- list of objects names for which access is requested- Returns:
- access request identifier
- Throws:
ContentAddressableStorageException
-
checkAccessRequestStatuses
default java.util.Map<java.lang.String,AccessRequestStatus> checkAccessRequestStatuses(java.util.List<java.lang.String> accessRequestIds, boolean adminCrossTenantAccessRequestAllowed) throws ContentAddressableStorageException
Checks status of access requests by id.- Parameters:
accessRequestIds- the identifiers of the access requests to checkadminCrossTenantAccessRequestAllowed- whentrue, access to access requests of other tenants is allowed from Admin tenant- Returns:
AccessRequestStatusrepresenting access request status- Throws:
ContentAddressableStorageException
-
removeAccessRequest
default void removeAccessRequest(java.lang.String accessRequestId, boolean adminCrossTenantAccessRequestAllowed) throws ContentAddressableStorageExceptionDelete access request. Ignored if no access request found (not exists, expired or already canceled).- Parameters:
accessRequestId- the identifier of the access request to cancel.adminCrossTenantAccessRequestAllowed- whentrue, removing access requests of other tenants is allowed from Admin tenant- Throws:
ContentAddressableStorageException
-
checkObjectAvailability
default boolean checkObjectAvailability(java.lang.String containerName, java.util.List<java.lang.String> objectNames) throws ContentAddressableStorageExceptionCheck object availability for async offers.- Parameters:
containerName- container where this exists.objectNames- list of objects names for which availability is to be checked.- Returns:
trueif ALL objects are available, otherwisefalse.- Throws:
ContentAddressableStorageException
-
deleteObject
void deleteObject(java.lang.String containerName, java.lang.String objectName) throws ContentAddressableStorageNotFoundException, ContentAddressableStorageExceptionDeletes a object representing the data at location containerName/objectName- Parameters:
containerName- container where this exists.objectName- fully qualified name relative to the container.- Throws:
ContentAddressableStorageNotFoundException- Thrown when the container cannot be located or the blob cannot be located in the container.ContentAddressableStorageException- Thrown when delete action failed due some other failure
-
isExistingObject
boolean isExistingObject(java.lang.String containerName, java.lang.String objectName) throws ContentAddressableStorageExceptionDetermines if an object exists- Parameters:
containerName- container where the object residesobjectName- fully qualified name relative to the container.- Returns:
- boolean type
- Throws:
ContentAddressableStorageServerException- Thrown when internal server error happensContentAddressableStorageException
-
getObjectDigest
java.lang.String getObjectDigest(java.lang.String containerName, java.lang.String objectName, DigestType algo, boolean noCache) throws ContentAddressableStorageNotFoundException, ContentAddressableStorageServerException, ContentAddressableStorageExceptioncompute Object Digest using a defined algorithm- Parameters:
containerName- container where this exists.objectName- fully qualified name relative to the container.algo- Digest algonoCache- forces full digest computation- Returns:
- the digest object as String
- Throws:
ContentAddressableStorageNotFoundException- Thrown when the container or the object cannot be locatedContentAddressableStorageServerException- Thrown when internal server error happensContentAddressableStorageException- Thrown when put action failed due some other failure
-
getContainerInformation
ContainerInformation getContainerInformation(java.lang.String containerName) throws ContentAddressableStorageNotFoundException, ContentAddressableStorageServerException
Get container information like capacity- Parameters:
containerName- the container name- Returns:
- container information like usableSpace
- Throws:
ContentAddressableStorageNotFoundException- Thrown when the container cannot be located.ContentAddressableStorageServerException- Thrown when internal server error happens
-
getObjectMetadata
MetadatasObject getObjectMetadata(java.lang.String containerName, java.lang.String objectId, boolean noCache) throws ContentAddressableStorageException
get metadata of the object- Parameters:
containerName- the container nameobjectId- the objectId to check- Returns:
- MetadatasObjectResult
- Throws:
ContentAddressableStorageException- Thrown when get action failed due some other failurejava.io.IOException- if an IOException is encountered with filesjava.lang.IllegalArgumentException- thrown when containerName or objectId is null
-
listContainer
void listContainer(java.lang.String containerName, ObjectListingListener objectListingListener) throws ContentAddressableStorageException, java.io.IOExceptionList container objects- Parameters:
containerName- the container name- Throws:
ContentAddressableStorageNotFoundException- Thrown when the container cannot be located.ContentAddressableStorageServerException- Thrown when internal server error happensContentAddressableStorageExceptionjava.io.IOException
-
-