Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update GrpcBlobReadChannel to allow seek/limit after read #1834

Merged
merged 2 commits into from
Jan 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
/*
* Copyright 2023 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 com.google.cloud.storage.ByteSizeConstants._2MiB;
import static java.util.Objects.requireNonNull;

import com.google.cloud.storage.BufferedReadableByteChannelSession.BufferedReadableByteChannel;
import java.io.IOException;
import java.nio.ByteBuffer;
import org.checkerframework.checker.nullness.qual.Nullable;

abstract class BaseStorageReadChannel<T> implements StorageReadChannel {

private ByteRangeSpec byteRangeSpec;
private int chunkSize = _2MiB;
private BufferHandle bufferHandle;
private LazyReadChannel<T> lazyReadChannel;

@Nullable private T resolvedObject;

protected BaseStorageReadChannel() {
this.byteRangeSpec = ByteRangeSpec.nullRange();
}

@Override
public final synchronized void setChunkSize(int chunkSize) {
StorageException.wrapIOException(() -> maybeResetChannel(true));
this.chunkSize = chunkSize;
}

@Override
public final synchronized boolean isOpen() {
if (lazyReadChannel == null) {
return true;
} else {
LazyReadChannel<T> tmp = internalGetLazyChannel();
return tmp.isOpen();
}
}

@Override
public final synchronized void close() {
if (internalGetLazyChannel().isOpen()) {
StorageException.wrapIOException(internalGetLazyChannel().getChannel()::close);
}
}

@Override
public final synchronized StorageReadChannel setByteRangeSpec(ByteRangeSpec byteRangeSpec) {
requireNonNull(byteRangeSpec, "byteRangeSpec must be non null");
StorageException.wrapIOException(() -> maybeResetChannel(false));
this.byteRangeSpec = byteRangeSpec;
return this;
}

@Override
public final ByteRangeSpec getByteRangeSpec() {
return byteRangeSpec;
}

@Override
public final synchronized int read(ByteBuffer dst) throws IOException {
long diff = byteRangeSpec.length();
if (diff <= 0) {
close();
return -1;
}
try {
int read = internalGetLazyChannel().getChannel().read(dst);
if (read != -1) {
byteRangeSpec = byteRangeSpec.withShiftBeginOffset(read);
} else {
close();
}
return read;
} catch (StorageException e) {
if (e.getCode() == 416) {
// HttpStorageRpc turns 416 into a null etag with an empty byte array, leading
// BlobReadChannel to believe it read 0 bytes, returning -1 and leaving the channel open.
// Emulate that same behavior here to preserve behavior compatibility, though this should
// be removed in the next major version.
return -1;
} else {
throw new IOException(e);
}
} catch (IOException e) {
throw e;
} catch (Exception e) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is broad; is there a specific set of Exception types that are expected?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For grpc, the scope is more narrow, but for JSON there isn't really a common base since things can be socket issues, ssl issues or any other number of exceptions.

This catch is primarily here to guarantee we're always doing our best to present an actionable exception to whatever is catching.

throw new IOException(StorageException.coalesce(e));
}
}

protected final BufferHandle getBufferHandle() {
if (bufferHandle == null) {
bufferHandle = BufferHandle.allocate(chunkSize);
}
return bufferHandle;
}

protected final int getChunkSize() {
return chunkSize;
}

@Nullable
protected T getResolvedObject() {
return resolvedObject;
}

protected void setResolvedObject(@Nullable T resolvedObject) {
this.resolvedObject = resolvedObject;
}

protected abstract LazyReadChannel<T> newLazyReadChannel();

private void maybeResetChannel(boolean freeBuffer) throws IOException {
if (lazyReadChannel != null && lazyReadChannel.isOpen()) {
try (BufferedReadableByteChannel ignore = lazyReadChannel.getChannel()) {
if (bufferHandle != null && !freeBuffer) {
bufferHandle.get().clear();
} else if (freeBuffer) {
bufferHandle = null;
}
lazyReadChannel = null;
}
}
}

private LazyReadChannel<T> internalGetLazyChannel() {
if (lazyReadChannel == null) {
lazyReadChannel = newLazyReadChannel();
}
return lazyReadChannel;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,164 +16,54 @@

package com.google.cloud.storage;

import static com.google.cloud.storage.ByteSizeConstants._2MiB;
import static java.util.Objects.requireNonNull;

import com.google.api.services.storage.Storage;
import com.google.api.services.storage.model.StorageObject;
import com.google.cloud.ReadChannel;
import com.google.cloud.RestorableState;
import com.google.cloud.storage.ApiaryUnbufferedReadableByteChannel.ApiaryReadRequest;
import com.google.cloud.storage.BufferedReadableByteChannelSession.BufferedReadableByteChannel;
import com.google.cloud.storage.spi.v1.StorageRpc;
import com.google.common.base.MoreObjects;
import java.io.IOException;
import java.io.Serializable;
import java.nio.ByteBuffer;
import java.util.Map;
import java.util.Objects;

final class BlobReadChannelV2 implements StorageReadChannel {
final class BlobReadChannelV2 extends BaseStorageReadChannel<StorageObject> {

private final StorageObject storageObject;
private final Map<StorageRpc.Option, ?> opts;
private final BlobReadChannelContext blobReadChannelContext;

private LazyReadChannel<StorageObject> lazyReadChannel;
private StorageObject resolvedObject;
private ByteRangeSpec byteRangeSpec;

private int chunkSize = _2MiB;
private BufferHandle bufferHandle;

BlobReadChannelV2(
StorageObject storageObject,
Map<StorageRpc.Option, ?> opts,
BlobReadChannelContext blobReadChannelContext) {
this.storageObject = storageObject;
this.opts = opts;
this.blobReadChannelContext = blobReadChannelContext;
this.byteRangeSpec = ByteRangeSpec.nullRange();
}

@Override
public synchronized void setChunkSize(int chunkSize) {
StorageException.wrapIOException(() -> maybeResetChannel(true));
this.chunkSize = chunkSize;
}

@Override
public synchronized boolean isOpen() {
if (lazyReadChannel == null) {
return true;
} else {
LazyReadChannel<StorageObject> tmp = internalGetLazyChannel();
return tmp.isOpen();
}
}

@Override
public synchronized void close() {
if (internalGetLazyChannel().isOpen()) {
StorageException.wrapIOException(internalGetLazyChannel().getChannel()::close);
}
}

@Override
public synchronized StorageReadChannel setByteRangeSpec(ByteRangeSpec byteRangeSpec) {
requireNonNull(byteRangeSpec, "byteRangeSpec must be non null");
StorageException.wrapIOException(() -> maybeResetChannel(false));
this.byteRangeSpec = byteRangeSpec;
return this;
}

@Override
public ByteRangeSpec getByteRangeSpec() {
return byteRangeSpec;
}

@Override
public synchronized int read(ByteBuffer dst) throws IOException {
long diff = byteRangeSpec.length();
if (diff <= 0) {
close();
return -1;
}
try {
int read = internalGetLazyChannel().getChannel().read(dst);
if (read != -1) {
byteRangeSpec = byteRangeSpec.withShiftBeginOffset(read);
} else {
close();
}
return read;
} catch (StorageException e) {
if (e.getCode() == 416) {
// HttpStorageRpc turns 416 into a null etag with an empty byte array, leading
// BlobReadChannel to believe it read 0 bytes, returning -1 and leaving the channel open.
// Emulate that same behavior here to preserve behavior compatibility, though this should
// be removed in the next major version.
return -1;
} else {
throw new IOException(e);
}
} catch (IOException e) {
throw e;
} catch (Exception e) {
throw new IOException(StorageException.coalesce(e));
}
}

@Override
public RestorableState<ReadChannel> capture() {
ApiaryReadRequest apiaryReadRequest = getApiaryReadRequest();
return new BlobReadChannelV2State(
apiaryReadRequest, blobReadChannelContext.getStorageOptions(), chunkSize);
apiaryReadRequest, blobReadChannelContext.getStorageOptions(), getChunkSize());
}

private void maybeResetChannel(boolean umallocBuffer) throws IOException {
if (lazyReadChannel != null && lazyReadChannel.isOpen()) {
try (BufferedReadableByteChannel ignore = lazyReadChannel.getChannel()) {
if (bufferHandle != null && !umallocBuffer) {
bufferHandle.get().clear();
} else if (umallocBuffer) {
bufferHandle = null;
}
lazyReadChannel = null;
}
}
}

private LazyReadChannel<StorageObject> internalGetLazyChannel() {
if (lazyReadChannel == null) {
lazyReadChannel = newLazyReadChannel();
}
return lazyReadChannel;
}

private LazyReadChannel<StorageObject> newLazyReadChannel() {
protected LazyReadChannel<StorageObject> newLazyReadChannel() {
return new LazyReadChannel<>(
() -> {
if (bufferHandle == null) {
bufferHandle = BufferHandle.allocate(chunkSize);
}
return ResumableMedia.http()
.read()
.byteChannel(blobReadChannelContext)
.setCallback(this::setResolvedObject)
.buffered(bufferHandle)
.setApiaryReadRequest(getApiaryReadRequest())
.build();
});
}

private void setResolvedObject(StorageObject resolvedObject) {
this.resolvedObject = resolvedObject;
() ->
ResumableMedia.http()
.read()
.byteChannel(blobReadChannelContext)
.setCallback(this::setResolvedObject)
.buffered(getBufferHandle())
.setApiaryReadRequest(getApiaryReadRequest())
.build());
}

private ApiaryReadRequest getApiaryReadRequest() {
StorageObject object = resolvedObject != null ? resolvedObject : storageObject;
return new ApiaryReadRequest(object, opts, byteRangeSpec);
StorageObject object = getResolvedObject() != null ? getResolvedObject() : storageObject;
return new ApiaryReadRequest(object, opts, getByteRangeSpec());
}

static class BlobReadChannelV2State implements RestorableState<ReadChannel>, Serializable {
Expand Down