Interface StorageClient
-
- All Superinterfaces:
java.lang.AutoCloseable
,BasicClient
,MockOrRestClient
,VitamAutoCloseable
- All Known Implementing Classes:
StorageClientMock
public interface StorageClient extends BasicClient
Storage Client interface
-
-
Field Summary
-
Fields inherited from interface fr.gouv.vitam.common.client.BasicClient
STATUS_URL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BulkObjectStoreResponse
bulkStoreFilesFromWorkspace(java.lang.String strategyId, BulkObjectStoreRequest bulkObjectStoreRequest)
Store objects available in workspace into offersjava.util.Map<java.lang.String,AccessRequestStatus>
checkAccessRequestStatuses(java.lang.String strategyId, java.lang.String offerId, java.util.List<java.lang.String> accessRequestIds, boolean adminCrossTenantAccessRequestAllowed)
Check access request statuses of asynchronous offer.BulkObjectAvailabilityResponse
checkBulkObjectAvailability(java.lang.String strategyId, java.lang.String offerId, BulkObjectAvailabilityRequest bulkObjectAvailabilityRequest)
Checks immediate object availability in storage offer.RequestResponseOK
copyObjectFromOfferToOffer(java.lang.String objectId, DataCategory category, java.lang.String source, java.lang.String destination, java.lang.String strategyId)
RequestResponseOK
create(java.lang.String strategyId, java.lang.String objectId, DataCategory category, java.io.InputStream inputStream, java.lang.Long inputStreamSize, java.util.List<java.lang.String> offerIds)
java.util.Optional<java.lang.String>
createAccessRequestIfRequired(java.lang.String strategyId, java.lang.String offerId, DataCategory dataCategory, java.util.List<java.lang.String> objectNames)
Create access request if target offer does not support synchronous read (tape library storage).boolean
delete(java.lang.String strategyId, DataCategory type, java.lang.String guid)
Delete an object of given type in the storage offer strategyboolean
delete(java.lang.String strategyId, DataCategory type, java.lang.String guid, java.util.List<java.lang.String> offerIds)
Delete an object of given type in the storage offer strategyjava.util.Map<java.lang.String,java.lang.Boolean>
exists(java.lang.String strategyId, DataCategory type, java.lang.String guid, java.util.List<java.lang.String> offerIds)
Check the existence of an object in storage by its id and typeDataCategory
.RequestResponse<BatchObjectInformationResponse>
getBatchObjectInformation(java.lang.String strategyId, DataCategory type, java.util.Collection<java.lang.String> offerIds, java.util.Collection<java.lang.String> objectIds)
Get object information from objects in storagejavax.ws.rs.core.Response
getContainerAsync(java.lang.String strategyId, java.lang.String guid, DataCategory type, AccessLogInfoModel logInfo)
Retrieves a binary object knowing its guid as an inputStream for a specific tenant/strategyjavax.ws.rs.core.Response
getContainerAsync(java.lang.String strategyId, java.lang.String offerId, java.lang.String objectName, DataCategory type, AccessLogInfoModel logInfo)
Retrieves a binary object knowing its guid as an inputStream for a specific tenant/strategy/offerIdcom.fasterxml.jackson.databind.JsonNode
getInformation(java.lang.String strategyId, DataCategory type, java.lang.String guid, java.util.List<java.lang.String> offerIds, boolean noCache)
Get object information from objects in storageRequestResponse<OfferLog>
getOfferLogs(java.lang.String strategyId, java.lang.String offerId, DataCategory type, java.lang.Long offset, int limit, Order order)
Get offer log .java.util.List<java.lang.String>
getOffers(java.lang.String strategyId)
get List of offers for a strategyjava.lang.String
getReferentOffer(java.lang.String strategy)
Get referent offer of strategycom.fasterxml.jackson.databind.JsonNode
getStorageInformation(java.lang.String strategyId)
Check if the storage of objects could be done, knowing a required sizeRequestResponse<StorageStrategy>
getStorageStrategies()
Get strategies.javax.ws.rs.core.Response
launchOfferLogCompaction(VitamContext vitamContext, java.lang.String offerId)
CloseableIterator<ObjectEntry>
listContainer(java.lang.String strategyId, java.lang.String offerId, DataCategory type)
List object type in containervoid
removeAccessRequest(java.lang.String strategyId, java.lang.String offerId, java.lang.String accessRequestId, boolean adminCrossTenantAccessRequestAllowed)
Removes (cancel / delete) and access request for an asynchronous offer.RequestResponseOK<StorageLogBackupResult>
storageAccessLogBackup(java.util.List<java.lang.Integer> tenants)
Call storage accesslog backup operation.RequestResponseOK<StorageLogBackupResult>
storageLogBackup(java.util.List<java.lang.Integer> tenants)
Call storage log backup operation.RequestResponseOK<StorageLogTraceabilityResult>
storageLogTraceability(java.util.List<java.lang.Integer> tenants)
Call storage log traceability operation.StoredInfoResult
storeFileFromWorkspace(java.lang.String strategyId, DataCategory type, java.lang.String guid, ObjectDescription description)
Store an object available in workspace by its vitam guid-
Methods inherited from interface fr.gouv.vitam.common.client.MockOrRestClient
checkStatus, checkStatus, close, consumeAnyEntityAndClose, getResourcePath, getServiceUrl
-
-
-
-
Method Detail
-
getStorageInformation
com.fasterxml.jackson.databind.JsonNode getStorageInformation(java.lang.String strategyId) throws StorageNotFoundClientException, StorageServerClientException
Check if the storage of objects could be done, knowing a required size- Parameters:
strategyId
- the storage strategy id- Returns:
- the capacity of the storage
- Throws:
StorageNotFoundClientException
- if the Server got a NotFound resultStorageServerClientException
- if the Server got an internal error
-
getOffers
java.util.List<java.lang.String> getOffers(java.lang.String strategyId) throws StorageNotFoundClientException, StorageServerClientException
get List of offers for a strategy- Parameters:
strategyId
- strategyId- Returns:
- list id of offers
- Throws:
StorageNotFoundClientException
StorageServerClientException
-
storeFileFromWorkspace
StoredInfoResult storeFileFromWorkspace(java.lang.String strategyId, DataCategory type, java.lang.String guid, ObjectDescription description) throws StorageAlreadyExistsClientException, StorageNotFoundClientException, StorageServerClientException
Store an object available in workspace by its vitam guid- Parameters:
strategyId
- the storage strategy idtype
- the type of object collectionguid
- vitam guiddescription
- object description- Returns:
- the result status of object creation
- Throws:
StorageAlreadyExistsClientException
- if the Server got a CONFLICT status resultStorageNotFoundClientException
- if the Server got a NotFound resultStorageServerClientException
- if the Server got an internal error
-
bulkStoreFilesFromWorkspace
BulkObjectStoreResponse bulkStoreFilesFromWorkspace(java.lang.String strategyId, BulkObjectStoreRequest bulkObjectStoreRequest) throws StorageAlreadyExistsClientException, StorageNotFoundClientException, StorageServerClientException
Store objects available in workspace into offers- Parameters:
strategyId
- the storage strategy idbulkObjectStoreRequest
- request- Returns:
- the result status of object creation
- Throws:
StorageAlreadyExistsClientException
- if the Server got a CONFLICT status resultStorageNotFoundClientException
- if the Server got a NotFound resultStorageServerClientException
- if the Server got an internal error
-
exists
java.util.Map<java.lang.String,java.lang.Boolean> exists(java.lang.String strategyId, DataCategory type, java.lang.String guid, java.util.List<java.lang.String> offerIds) throws StorageServerClientException
Check the existence of an object in storage by its id and typeDataCategory
.- Parameters:
strategyId
- the storage strategy idtype
- the type of object collectionguid
- vitam guid- Returns:
- true/false for each offer
- Throws:
StorageServerClientException
- if the Server got an internal error
-
delete
boolean delete(java.lang.String strategyId, DataCategory type, java.lang.String guid) throws StorageServerClientException
Delete an object of given type in the storage offer strategy- Parameters:
strategyId
- the storage strategy idtype
- the type of object collectionguid
- vitam guid- Returns:
- true if deleted
- Throws:
StorageServerClientException
- if the Server got an internal error
-
delete
boolean delete(java.lang.String strategyId, DataCategory type, java.lang.String guid, java.util.List<java.lang.String> offerIds) throws StorageServerClientException
Delete an object of given type in the storage offer strategy- Parameters:
strategyId
- the storage strategy idtype
- the type of object collectionguid
- vitam guidofferIds
- offers ids to delete- Returns:
- true if deleted
- Throws:
StorageServerClientException
-
getContainerAsync
javax.ws.rs.core.Response getContainerAsync(java.lang.String strategyId, java.lang.String guid, DataCategory type, AccessLogInfoModel logInfo) throws StorageServerClientException, StorageNotFoundException, StorageUnavailableDataFromAsyncOfferClientException
Retrieves a binary object knowing its guid as an inputStream for a specific tenant/strategy- Parameters:
strategyId
- the storage strategy idguid
- vitam guid of the object to be returnedtype
- the object type to listlogInfo
- additional information for accessLog- Returns:
- the object requested
- Throws:
StorageServerClientException
- if the Server got an internal errorStorageNotFoundException
- if the Server got a NotFound result, if the container or the object does not existStorageUnavailableDataFromAsyncOfferClientException
- if object is not available for immediate access from async offer
-
getContainerAsync
javax.ws.rs.core.Response getContainerAsync(java.lang.String strategyId, java.lang.String offerId, java.lang.String objectName, DataCategory type, AccessLogInfoModel logInfo) throws StorageServerClientException, StorageNotFoundException, StorageUnavailableDataFromAsyncOfferClientException
Retrieves a binary object knowing its guid as an inputStream for a specific tenant/strategy/offerId- Parameters:
strategyId
-offerId
-objectName
-type
-logInfo
-- Returns:
- Throws:
StorageServerClientException
StorageNotFoundException
StorageUnavailableDataFromAsyncOfferClientException
-
listContainer
CloseableIterator<ObjectEntry> listContainer(java.lang.String strategyId, java.lang.String offerId, DataCategory type) throws StorageServerClientException, StorageNotFoundClientException
List object type in container- Parameters:
strategyId
- the strategy IDofferId
- the Offer IDtype
- the object type to list- Returns:
- an iterator with object list
- Throws:
StorageServerClientException
- thrown if the server got an internal errorStorageNotFoundClientException
-
storageAccessLogBackup
RequestResponseOK<StorageLogBackupResult> storageAccessLogBackup(java.util.List<java.lang.Integer> tenants) throws StorageServerClientException, InvalidParseOperationException
Call storage accesslog backup operation.- Parameters:
tenants
- tenants list to backup- Returns:
- Storage logbook backup response
- Throws:
StorageServerClientException
InvalidParseOperationException
-
storageLogBackup
RequestResponseOK<StorageLogBackupResult> storageLogBackup(java.util.List<java.lang.Integer> tenants) throws StorageServerClientException, InvalidParseOperationException
Call storage log backup operation.- Parameters:
tenants
- tenants list to backup- Returns:
- Storage logbook backup response
- Throws:
StorageServerClientException
- StorageServerClientExceptionInvalidParseOperationException
- InvalidParseOperationException
-
storageLogTraceability
RequestResponseOK<StorageLogTraceabilityResult> storageLogTraceability(java.util.List<java.lang.Integer> tenants) throws StorageServerClientException, InvalidParseOperationException
Call storage log traceability operation.- Parameters:
tenants
-- Returns:
- storage log traceability response
- Throws:
StorageServerClientException
- StorageServerClientExceptionInvalidParseOperationException
- InvalidParseOperationException
-
getInformation
com.fasterxml.jackson.databind.JsonNode getInformation(java.lang.String strategyId, DataCategory type, java.lang.String guid, java.util.List<java.lang.String> offerIds, boolean noCache) throws StorageServerClientException, StorageNotFoundClientException
Get object information from objects in storage- Parameters:
strategyId
- the storage strategy idtype
- the object type to listguid
- vitam guidofferIds
- offers ids to deletenoCache
- noCache forces digest computation.- Returns:
- informations
- Throws:
StorageServerClientException
- StorageServerClientExceptionStorageNotFoundClientException
- StorageNotFoundClientException
-
getBatchObjectInformation
RequestResponse<BatchObjectInformationResponse> getBatchObjectInformation(java.lang.String strategyId, DataCategory type, java.util.Collection<java.lang.String> offerIds, java.util.Collection<java.lang.String> objectIds) throws StorageServerClientException
Get object information from objects in storage- Parameters:
strategyId
- the storage strategy idtype
- the object type to listofferIds
- offers idsobjectIds
- list of object ids- Returns:
- informations
- Throws:
StorageServerClientException
- StorageServerClientException
-
copyObjectFromOfferToOffer
RequestResponseOK copyObjectFromOfferToOffer(java.lang.String objectId, DataCategory category, java.lang.String source, java.lang.String destination, java.lang.String strategyId) throws StorageServerClientException, InvalidParseOperationException, StorageUnavailableDataFromAsyncOfferClientException
- Parameters:
objectId
- objectIdcategory
- categorysource
- sourcedestination
- destinationstrategyId
- strategyId- Returns:
- RequestResponseOK
- Throws:
StorageServerClientException
- StorageServerClientExceptionInvalidParseOperationException
- StorageServerClientExceptionStorageUnavailableDataFromAsyncOfferClientException
-
create
RequestResponseOK create(java.lang.String strategyId, java.lang.String objectId, DataCategory category, java.io.InputStream inputStream, java.lang.Long inputStreamSize, java.util.List<java.lang.String> offerIds) throws StorageServerClientException, InvalidParseOperationException
- Parameters:
strategyId
- strategyIdobjectId
- objectIdcategory
- categoryinputStream
- inputStreaminputStreamSize
- inputStreamSizeofferIds
- offers ids- Returns:
- RequestResponseOK
- Throws:
StorageServerClientException
- StorageServerClientExceptionInvalidParseOperationException
- InvalidParseOperationException
-
getOfferLogs
RequestResponse<OfferLog> getOfferLogs(java.lang.String strategyId, java.lang.String offerId, DataCategory type, java.lang.Long offset, int limit, Order order) throws StorageServerClientException
Get offer log .- Parameters:
strategyId
- the strategy to get offersofferId
- the offer Id to read object fromtype
- the object type to listoffset
- offset of the last object beforelimit
- the number of result wantedorder
- the order order- Returns:
- list of offer log
- Throws:
StorageServerClientException
-
getStorageStrategies
RequestResponse<StorageStrategy> getStorageStrategies() throws StorageServerClientException
Get strategies.- Returns:
- strategies available for storage
- Throws:
StorageServerClientException
-
createAccessRequestIfRequired
java.util.Optional<java.lang.String> createAccessRequestIfRequired(java.lang.String strategyId, java.lang.String offerId, DataCategory dataCategory, java.util.List<java.lang.String> objectNames) throws StorageServerClientException
Create access request if target offer does not support synchronous read (tape library storage). If target offer supports synchronous read requests, then no access request is created.- Parameters:
strategyId
- the target storage strategy identifierofferId
- the target offer identifier (Optional). If provided, the offerId must be a valid active offer of the specified strategy. Otherwise, the referent offer of strategy is used.dataCategory
- the data category of objects to which access is requestedobjectNames
- the object names/ids/guids to which access is requested- Returns:
- an AccessRequestId if access request is required (async offer), otherwiser
Optional.empty()
- Throws:
StorageServerClientException
- if any problem occurs during request
-
checkAccessRequestStatuses
java.util.Map<java.lang.String,AccessRequestStatus> checkAccessRequestStatuses(java.lang.String strategyId, java.lang.String offerId, java.util.List<java.lang.String> accessRequestIds, boolean adminCrossTenantAccessRequestAllowed) throws StorageServerClientException, StorageIllegalOperationClientException
Check access request statuses of asynchronous offer.- Parameters:
strategyId
- the target storage strategy identifierofferId
- the target offer identifier (Optional). If provided, the offerId must be a valid active offer of the specified strategy. Otherwise, the referent offer of strategy is used.accessRequestIds
- the accessRequestIds whose status is to be checkedadminCrossTenantAccessRequestAllowed
- whentrue
, access to access requests of other tenants is allowed from Admin tenant- Returns:
- the statuses of provided access request ids
- Throws:
StorageServerClientException
- if any problem occurs during requestStorageIllegalOperationClientException
-
removeAccessRequest
void removeAccessRequest(java.lang.String strategyId, java.lang.String offerId, java.lang.String accessRequestId, boolean adminCrossTenantAccessRequestAllowed) throws StorageServerClientException, StorageIllegalOperationClientException
Removes (cancel / delete) and access request for an asynchronous offer. Does nothing is access request id does not exist (idempotency)- Parameters:
strategyId
- the target storage strategy identifierofferId
- the target offer identifier (Optional). If provided, the offerId must be a valid active offer of the specified strategy. Otherwise, the referent offer of strategy is used.accessRequestId
- the accessRequestId to removeadminCrossTenantAccessRequestAllowed
- whentrue
, removing access requests of other tenants is allowed from Admin tenant- Throws:
StorageServerClientException
- if any problem occurs during requestStorageIllegalOperationClientException
-
checkBulkObjectAvailability
BulkObjectAvailabilityResponse checkBulkObjectAvailability(java.lang.String strategyId, java.lang.String offerId, BulkObjectAvailabilityRequest bulkObjectAvailabilityRequest) throws StorageServerClientException
Checks immediate object availability in storage offer. Synchronous offers have guaranteed immediate availability of objects. Async offers (tape storage) may not be able to serve object immediately.- Parameters:
strategyId
- the target storage strategy identifierofferId
- the target offer identifier (Optional). If provided, the offerId must be a valid active offer of the specified strategy. Otherwise, the referent offer of strategy is used.bulkObjectAvailabilityRequest
- object availability check request- Returns:
true
if ALL objects are available, otherwisefalse
.- Throws:
StorageServerClientException
-
getReferentOffer
java.lang.String getReferentOffer(java.lang.String strategy) throws StorageNotFoundClientException, StorageServerClientException
Get referent offer of strategy- Parameters:
strategy
-- Returns:
- Throws:
StorageNotFoundClientException
StorageServerClientException
-
launchOfferLogCompaction
javax.ws.rs.core.Response launchOfferLogCompaction(VitamContext vitamContext, java.lang.String offerId) throws StorageServerClientException
- Throws:
StorageServerClientException
-
-