All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.storage.StorageBatch Maven / Gradle / Ivy

There is a newer version: 2.45.0
Show newest version
/*
 * Copyright 2016 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.cloud.storage;

import static java.net.HttpURLConnection.HTTP_NOT_FOUND;

import com.google.api.client.googleapis.json.GoogleJsonError;
import com.google.api.services.storage.model.StorageObject;
import com.google.cloud.storage.Storage.BlobGetOption;
import com.google.cloud.storage.Storage.BlobSourceOption;
import com.google.cloud.storage.Storage.BlobTargetOption;
import com.google.cloud.storage.TransportCompatibility.Transport;
import com.google.cloud.storage.UnifiedOpts.Opts;
import com.google.cloud.storage.spi.v1.RpcBatch;
import com.google.cloud.storage.spi.v1.StorageRpc;
import com.google.common.annotations.VisibleForTesting;
import java.util.Map;

/**
 * A batch of operations to be submitted to Google Cloud Storage using a single RPC request.
 *
 * 

Example of using a batch request to delete, update and get a blob: * *

{@code
 * StorageBatch batch = storage.batch();
 * BlobId firstBlob = BlobId.of("bucket", "blob1"));
 * BlobId secondBlob = BlobId.of("bucket", "blob2"));
 * batch.delete(firstBlob).notify(new BatchResult.Callback() {
 *   public void success(Boolean result) {
 *     // deleted successfully
 *   }
 *
 *   public void error(StorageException exception) {
 *     // delete failed
 *   }
 * });
 * batch.update(BlobInfo.builder(secondBlob).contentType("text/plain").build());
 * StorageBatchResult result = batch.get(secondBlob);
 * batch.submit();
 * Blob blob = result.get(); // returns get result or throws StorageException
 * }
*/ @TransportCompatibility(Transport.HTTP) public class StorageBatch { private final RpcBatch batch; private final StorageRpc storageRpc; private final StorageOptions options; StorageBatch(HttpStorageOptions options) { this.options = options; this.storageRpc = options.getStorageRpcV1(); this.batch = storageRpc.createBatch(); } @VisibleForTesting Object getBatch() { return batch; } @VisibleForTesting StorageRpc getStorageRpc() { return storageRpc; } @VisibleForTesting StorageOptions getOptions() { return options; } /** * Adds a request representing the "delete blob" operation to this batch. Calling {@link * StorageBatchResult#get()} on the return value yields {@code true} upon successful deletion, * {@code false} if the blob was not found, or throws a {@link StorageException} if the operation * failed. */ @TransportCompatibility(Transport.HTTP) public StorageBatchResult delete( String bucket, String blob, BlobSourceOption... options) { return delete(BlobId.of(bucket, blob), options); } /** * Adds a request representing the "delete blob" operation to this batch. Calling {@link * StorageBatchResult#get()} on the return value yields {@code true} upon successful deletion, * {@code false} if the blob was not found, or throws a {@link StorageException} if the operation * failed. */ @TransportCompatibility(Transport.HTTP) public StorageBatchResult delete(BlobId blob, BlobSourceOption... options) { StorageBatchResult result = new StorageBatchResult<>(); RpcBatch.Callback callback = createDeleteCallback(result); Map optionsMap = Opts.unwrap(options).resolveFrom(blob).getRpcOptions(); batch.addDelete(Conversions.json().blobId().encode(blob), callback, optionsMap); return result; } /** * Adds a request representing the "update blob" operation to this batch. The {@code options} can * be used in the same way as for {@link Storage#update(BlobInfo, BlobTargetOption...)}. Calling * {@link StorageBatchResult#get()} on the return value yields the updated {@link Blob} if * successful, or throws a {@link StorageException} if the operation failed. */ @TransportCompatibility(Transport.HTTP) public StorageBatchResult update(BlobInfo blobInfo, BlobTargetOption... options) { StorageBatchResult result = new StorageBatchResult<>(); RpcBatch.Callback callback = createUpdateCallback(this.options, result); Map optionMap = Opts.unwrap(options).resolveFrom(blobInfo).getRpcOptions(); batch.addPatch(Conversions.json().blobInfo().encode(blobInfo), callback, optionMap); return result; } /** * Adds a request representing the "get blob" operation to this batch. The {@code options} can be * used in the same way as for {@link Storage#get(BlobId, BlobGetOption...)}. Calling {@link * StorageBatchResult#get()} on the return value yields the requested {@link Blob} if successful, * {@code null} if no such blob exists, or throws a {@link StorageException} if the operation * failed. */ @TransportCompatibility(Transport.HTTP) public StorageBatchResult get(String bucket, String blob, BlobGetOption... options) { return get(BlobId.of(bucket, blob), options); } /** * Adds a request representing the "get blob" operation to this batch. The {@code options} can be * used in the same way as for {@link Storage#get(BlobId, BlobGetOption...)}. Calling {@link * StorageBatchResult#get()} on the return value yields the requested {@link Blob} if successful, * {@code null} if no such blob exists, or throws a {@link StorageException} if the operation * failed. */ @TransportCompatibility(Transport.HTTP) public StorageBatchResult get(BlobId blob, BlobGetOption... options) { StorageBatchResult result = new StorageBatchResult<>(); RpcBatch.Callback callback = createGetCallback(this.options, result); Map optionsMap = Opts.unwrap(options).resolveFrom(blob).getRpcOptions(); batch.addGet(Conversions.json().blobId().encode(blob), callback, optionsMap); return result; } /** Submits this batch for processing using a single RPC request. */ @TransportCompatibility(Transport.HTTP) public void submit() { batch.submit(); } private RpcBatch.Callback createDeleteCallback(final StorageBatchResult result) { return new RpcBatch.Callback() { @Override public void onSuccess(Void response) { result.success(true); } @Override public void onFailure(GoogleJsonError googleJsonError) { StorageException serviceException = new StorageException(googleJsonError); if (serviceException.getCode() == HTTP_NOT_FOUND) { result.success(false); } else { result.error(serviceException); } } }; } private RpcBatch.Callback createGetCallback( final StorageOptions serviceOptions, final StorageBatchResult result) { return new RpcBatch.Callback() { @Override public void onSuccess(StorageObject response) { BlobInfo info = Conversions.json().blobInfo().decode(response); result.success(response == null ? null : info.asBlob(serviceOptions.getService())); } @Override public void onFailure(GoogleJsonError googleJsonError) { StorageException serviceException = new StorageException(googleJsonError); if (serviceException.getCode() == HTTP_NOT_FOUND) { result.success(null); } else { result.error(serviceException); } } }; } private RpcBatch.Callback createUpdateCallback( final StorageOptions serviceOptions, final StorageBatchResult result) { return new RpcBatch.Callback() { @Override public void onSuccess(StorageObject response) { BlobInfo info = Conversions.json().blobInfo().decode(response); result.success(response == null ? null : info.asBlob(serviceOptions.getService())); } @Override public void onFailure(GoogleJsonError googleJsonError) { result.error(new StorageException(googleJsonError)); } }; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy