com.google.cloud.storage.StorageBatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcloud-java-storage Show documentation
Show all versions of gcloud-java-storage Show documentation
Java idiomatic client for Google Cloud Storage.
/*
* Copyright 2016 Google Inc. All Rights Reserved.
*
* 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.spi.RpcBatch;
import com.google.cloud.storage.spi.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
* }
*/
public class StorageBatch {
private final RpcBatch batch;
private final StorageRpc storageRpc;
private final StorageOptions options;
StorageBatch(StorageOptions options) {
this.options = options;
this.storageRpc = options.rpc();
this.batch = storageRpc.createBatch();
}
@VisibleForTesting
Object batch() {
return batch;
}
@VisibleForTesting
StorageRpc storageRpc() {
return storageRpc;
}
@VisibleForTesting
StorageOptions options() {
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.
*/
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.
*/
public StorageBatchResult delete(BlobId blob, BlobSourceOption... options) {
StorageBatchResult result = new StorageBatchResult<>();
RpcBatch.Callback callback = createDeleteCallback(result);
Map optionMap = StorageImpl.optionMap(blob, options);
batch.addDelete(blob.toPb(), callback, optionMap);
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.
*/
public StorageBatchResult update(BlobInfo blobInfo, BlobTargetOption... options) {
StorageBatchResult result = new StorageBatchResult<>();
RpcBatch.Callback callback = createUpdateCallback(this.options, result);
Map optionMap = StorageImpl.optionMap(blobInfo, options);
batch.addPatch(blobInfo.toPb(), 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.
*/
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.
*/
public StorageBatchResult get(BlobId blob, BlobGetOption... options) {
StorageBatchResult result = new StorageBatchResult<>();
RpcBatch.Callback callback = createGetCallback(this.options, result);
Map optionMap = StorageImpl.optionMap(blob, options);
batch.addGet(blob.toPb(), callback, optionMap);
return result;
}
/**
* Submits this batch for processing using a single RPC request.
*/
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.code() == 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) {
result.success(response == null ? null : Blob.fromPb(serviceOptions.service(), response));
}
@Override
public void onFailure(GoogleJsonError googleJsonError) {
StorageException serviceException = new StorageException(googleJsonError);
if (serviceException.code() == 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) {
result.success(response == null ? null : Blob.fromPb(serviceOptions.service(), response));
}
@Override
public void onFailure(GoogleJsonError googleJsonError) {
result.error(new StorageException(googleJsonError));
}
};
}
}