blob: 987bca406f1e4ece0ec16f75e32b82cb7b23423a [file] [log] [blame]
package com.google.net.stubby.newtransport.okhttp;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Preconditions;
import com.google.common.io.ByteStreams;
import com.google.common.util.concurrent.ListenableFuture;
import com.google.net.stubby.Metadata;
import com.google.net.stubby.MethodDescriptor;
import com.google.net.stubby.Status;
import com.google.net.stubby.newtransport.AbstractClientStream;
import com.google.net.stubby.newtransport.AbstractClientTransport;
import com.google.net.stubby.newtransport.ClientStream;
import com.google.net.stubby.newtransport.ClientStreamListener;
import com.google.net.stubby.newtransport.ClientTransport;
import com.google.net.stubby.newtransport.InputStreamDeframer;
import com.google.net.stubby.newtransport.StreamState;
import com.squareup.okhttp.internal.spdy.ErrorCode;
import com.squareup.okhttp.internal.spdy.FrameReader;
import com.squareup.okhttp.internal.spdy.Header;
import com.squareup.okhttp.internal.spdy.HeadersMode;
import com.squareup.okhttp.internal.spdy.Http20Draft12;
import com.squareup.okhttp.internal.spdy.Settings;
import com.squareup.okhttp.internal.spdy.Variant;
import okio.Buffer;
import okio.BufferedSink;
import okio.BufferedSource;
import okio.ByteString;
import okio.Okio;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.Socket;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Executor;
import javax.annotation.concurrent.GuardedBy;
/**
* A okhttp-based {@link ClientTransport} implementation.
*/
public class OkHttpClientTransport extends AbstractClientTransport {
/** The default initial window size in HTTP/2 is 64 KiB for the stream and connection. */
@VisibleForTesting
static final int DEFAULT_INITIAL_WINDOW_SIZE = 64 * 1024;
private static final Map<ErrorCode, Status> ERROR_CODE_TO_STATUS;
static {
Map<ErrorCode, Status> errorToStatus = new HashMap<ErrorCode, Status>();
errorToStatus.put(ErrorCode.NO_ERROR, Status.OK);
errorToStatus.put(ErrorCode.PROTOCOL_ERROR,
Status.INTERNAL.withDescription("Protocol error"));
errorToStatus.put(ErrorCode.INVALID_STREAM,
Status.INTERNAL.withDescription("Invalid stream"));
errorToStatus.put(ErrorCode.UNSUPPORTED_VERSION,
Status.INTERNAL.withDescription("Unsupported version"));
errorToStatus.put(ErrorCode.STREAM_IN_USE,
Status.INTERNAL.withDescription("Stream in use"));
errorToStatus.put(ErrorCode.STREAM_ALREADY_CLOSED,
Status.INTERNAL.withDescription("Stream already closed"));
errorToStatus.put(ErrorCode.INTERNAL_ERROR,
Status.INTERNAL.withDescription("Internal error"));
errorToStatus.put(ErrorCode.FLOW_CONTROL_ERROR,
Status.INTERNAL.withDescription("Flow control error"));
errorToStatus.put(ErrorCode.STREAM_CLOSED,
Status.INTERNAL.withDescription("Stream closed"));
errorToStatus.put(ErrorCode.FRAME_TOO_LARGE,
Status.INTERNAL.withDescription("Frame too large"));
errorToStatus.put(ErrorCode.REFUSED_STREAM,
Status.INTERNAL.withDescription("Refused stream"));
errorToStatus.put(ErrorCode.CANCEL, Status.CANCELLED.withDescription("Cancelled"));
errorToStatus.put(ErrorCode.COMPRESSION_ERROR,
Status.INTERNAL.withDescription("Compression error"));
errorToStatus.put(ErrorCode.INVALID_CREDENTIALS,
Status.PERMISSION_DENIED.withDescription("Invalid credentials"));
ERROR_CODE_TO_STATUS = Collections.unmodifiableMap(errorToStatus);
}
private final InetSocketAddress address;
private final String defaultAuthority;
private FrameReader frameReader;
private AsyncFrameWriter frameWriter;
private final Object lock = new Object();
@GuardedBy("lock")
private int nextStreamId;
private final Map<Integer, OkHttpClientStream> streams =
Collections.synchronizedMap(new HashMap<Integer, OkHttpClientStream>());
private final Executor executor;
private int unacknowledgedBytesRead;
private ClientFrameHandler clientFrameHandler;
// The status used to finish all active streams when the transport is closed.
@GuardedBy("lock")
private boolean goAway;
@GuardedBy("lock")
private Status goAwayStatus;
OkHttpClientTransport(InetSocketAddress address, Executor executor) {
this.address = Preconditions.checkNotNull(address);
defaultAuthority = address.getHostString() + ":" + address.getPort();
this.executor = Preconditions.checkNotNull(executor);
// Client initiated streams are odd, server initiated ones are even. Server should not need to
// use it. We start clients at 3 to avoid conflicting with HTTP negotiation.
nextStreamId = 3;
}
/**
* Create a transport connected to a fake peer for test.
*/
@VisibleForTesting
OkHttpClientTransport(Executor executor, FrameReader frameReader, AsyncFrameWriter frameWriter,
int nextStreamId) {
address = null;
defaultAuthority = "notarealauthority:80";
this.executor = Preconditions.checkNotNull(executor);
this.frameReader = Preconditions.checkNotNull(frameReader);
this.frameWriter = Preconditions.checkNotNull(frameWriter);
this.nextStreamId = nextStreamId;
}
@Override
protected ClientStream newStreamInternal(MethodDescriptor<?, ?> method,
Metadata.Headers headers,
ClientStreamListener listener) {
return new OkHttpClientStream(method, headers, listener);
}
@Override
protected void doStart() {
// We set host to null for test.
if (address != null) {
BufferedSource source;
BufferedSink sink;
try {
Socket socket = new Socket(address.getAddress(), address.getPort());
source = Okio.buffer(Okio.source(socket));
sink = Okio.buffer(Okio.sink(socket));
} catch (IOException e) {
throw new RuntimeException(e);
}
Variant variant = new Http20Draft12();
frameReader = variant.newReader(source, true);
frameWriter = new AsyncFrameWriter(variant.newWriter(sink, true), this, executor);
}
notifyStarted();
clientFrameHandler = new ClientFrameHandler();
executor.execute(clientFrameHandler);
}
@Override
protected void doStop() {
boolean normalClose;
synchronized (lock) {
normalClose = !goAway;
}
if (normalClose) {
abort(Status.INTERNAL.withDescription("Transport stopped"));
// Send GOAWAY with lastGoodStreamId of 0, since we don't expect any server-initiated streams.
// The GOAWAY is part of graceful shutdown.
frameWriter.goAway(0, ErrorCode.NO_ERROR, new byte[0]);
}
stopIfNecessary();
}
@VisibleForTesting
ClientFrameHandler getHandler() {
return clientFrameHandler;
}
@VisibleForTesting
Map<Integer, OkHttpClientStream> getStreams() {
return streams;
}
/**
* Finish all active streams with given status, then close the transport.
*/
void abort(Status status) {
onGoAway(-1, status);
}
private void onGoAway(int lastKnownStreamId, Status status) {
ArrayList<OkHttpClientStream> goAwayStreams = new ArrayList<OkHttpClientStream>();
synchronized (lock) {
goAway = true;
goAwayStatus = status;
Iterator<Map.Entry<Integer, OkHttpClientStream>> it = streams.entrySet().iterator();
while (it.hasNext()) {
Map.Entry<Integer, OkHttpClientStream> entry = it.next();
if (entry.getKey() > lastKnownStreamId) {
goAwayStreams.add(entry.getValue());
it.remove();
}
}
}
// Starting stop, go into STOPPING state so that Channel know this Transport should not be used
// further, will become STOPPED once all streams are complete.
stopAsync();
for (OkHttpClientStream stream : goAwayStreams) {
stream.setStatus(status, new Metadata.Trailers());
}
}
/**
* Called when a stream is closed.
*
* <p> Return false if the stream has already finished.
*/
private boolean finishStream(int streamId, Status status) {
OkHttpClientStream stream;
stream = streams.remove(streamId);
if (stream != null) {
// This is mainly for failed streams, for successfully finished streams, it's a no-op.
stream.setStatus(status, new Metadata.Trailers());
return true;
}
return false;
}
/**
* When the transport is in goAway states, we should stop it once all active streams finish.
*/
private void stopIfNecessary() {
boolean shouldStop;
synchronized (lock) {
shouldStop = (goAway && streams.size() == 0);
}
if (shouldStop) {
frameWriter.close();
try {
frameReader.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
notifyStopped();
}
}
/**
* Returns a Grpc status corresponding to the given ErrorCode.
*/
@VisibleForTesting
static Status toGrpcStatus(ErrorCode code) {
return ERROR_CODE_TO_STATUS.get(code);
}
/**
* Runnable which reads frames and dispatches them to in flight calls
*/
@VisibleForTesting
class ClientFrameHandler implements FrameReader.Handler, Runnable {
ClientFrameHandler() {}
@Override
public void run() {
String threadName = Thread.currentThread().getName();
Thread.currentThread().setName("OkHttpClientTransport");
try {
// Read until the underlying socket closes.
while (frameReader.nextFrame(this)) {
}
} catch (IOException ioe) {
abort(Status.fromThrowable(ioe));
} finally {
// Restore the original thread name.
Thread.currentThread().setName(threadName);
}
}
/**
* Handle a HTTP2 DATA frame
*/
@Override
public void data(boolean inFinished, int streamId, BufferedSource in, int length)
throws IOException {
final OkHttpClientStream stream;
stream = streams.get(streamId);
if (stream == null) {
frameWriter.rstStream(streamId, ErrorCode.INVALID_STREAM);
return;
}
InputStreamDeframer deframer = stream.getDeframer();
// Wait until the frame is complete.
in.require(length);
deframer.deliverFrame(ByteStreams.limit(in.inputStream(), length), inFinished);
unacknowledgedBytesRead += length;
stream.unacknowledgedBytesRead += length;
if (unacknowledgedBytesRead >= DEFAULT_INITIAL_WINDOW_SIZE / 2) {
frameWriter.windowUpdate(0, unacknowledgedBytesRead);
unacknowledgedBytesRead = 0;
}
if (stream.unacknowledgedBytesRead >= DEFAULT_INITIAL_WINDOW_SIZE / 2) {
frameWriter.windowUpdate(streamId, stream.unacknowledgedBytesRead);
stream.unacknowledgedBytesRead = 0;
}
if (inFinished) {
if (finishStream(streamId, Status.OK)) {
stopIfNecessary();
}
}
}
/**
* Handle HTTP2 HEADER and CONTINUATION frames
*/
@Override
public void headers(boolean outFinished,
boolean inFinished,
int streamId,
int associatedStreamId,
List<Header> headerBlock,
HeadersMode headersMode) {
// TODO(user): handle received headers.
}
@Override
public void rstStream(int streamId, ErrorCode errorCode) {
if (finishStream(streamId, toGrpcStatus(errorCode))) {
stopIfNecessary();
}
}
@Override
public void settings(boolean clearPrevious, Settings settings) {
// not impl
frameWriter.ackSettings();
}
@Override
public void ping(boolean ack, int payload1, int payload2) {
if (!ack) {
frameWriter.ping(true, payload1, payload2);
}
}
@Override
public void ackSettings() {
// Do nothing currently.
}
@Override
public void goAway(int lastGoodStreamId, ErrorCode errorCode, ByteString debugData) {
onGoAway(lastGoodStreamId, Status.UNAVAILABLE.withDescription("Go away"));
}
@Override
public void pushPromise(int streamId, int promisedStreamId, List<Header> requestHeaders)
throws IOException {
// We don't accept server initiated stream.
frameWriter.rstStream(streamId, ErrorCode.PROTOCOL_ERROR);
}
@Override
public void windowUpdate(int arg0, long arg1) {
// TODO(user): flow control.
}
@Override
public void priority(int streamId, int streamDependency, int weight, boolean exclusive) {
// Ignore priority change.
// TODO(user): log
}
@Override
public void alternateService(int streamId, String origin, ByteString protocol, String host,
int port, long maxAge) {
// TODO(user): Deal with alternateService propagation
}
}
@GuardedBy("lock")
private void assignStreamId(OkHttpClientStream stream) {
Preconditions.checkState(stream.streamId == 0, "StreamId already assigned");
stream.streamId = nextStreamId;
streams.put(stream.streamId, stream);
if (nextStreamId >= Integer.MAX_VALUE - 2) {
onGoAway(Integer.MAX_VALUE, Status.INTERNAL.withDescription("Stream id exhaust"));
} else {
nextStreamId += 2;
}
}
/**
* Client stream for the okhttp transport.
*/
@VisibleForTesting
class OkHttpClientStream extends AbstractClientStream {
int streamId;
final InputStreamDeframer deframer;
int unacknowledgedBytesRead;
OkHttpClientStream(MethodDescriptor<?, ?> method, Metadata.Headers headers,
ClientStreamListener listener) {
super(listener);
deframer = new InputStreamDeframer(inboundMessageHandler());
synchronized (lock) {
if (goAway) {
setStatus(goAwayStatus, new Metadata.Trailers());
return;
}
assignStreamId(this);
}
String defaultPath = "/" + method.getName();
frameWriter.synStream(false, false, streamId, 0,
Headers.createRequestHeaders(headers, defaultPath, defaultAuthority));
}
InputStreamDeframer getDeframer() {
return deframer;
}
@Override
protected void sendFrame(ByteBuffer frame, boolean endOfStream) {
Preconditions.checkState(streamId != 0, "streamId should be set");
Buffer buffer = new Buffer();
// Read the data into a buffer.
// TODO(user): swap to NIO buffers or zero-copy if/when okhttp/okio supports it
buffer.write(frame.array(), frame.arrayOffset(), frame.remaining());
// Write the data to the remote endpoint.
frameWriter.data(endOfStream, streamId, buffer);
frameWriter.flush();
}
@Override
protected void disableWindowUpdate(ListenableFuture<Void> processingFuture) {
// TODO(user): implement inbound flow control.
}
@Override
public void cancel() {
if (streamId == 0) {
// This should only happens when the stream was failed in constructor.
Preconditions.checkState(state() == StreamState.CLOSED, "A unclosed stream has no id");
}
outboundPhase = Phase.STATUS;
if (finishStream(streamId, toGrpcStatus(ErrorCode.CANCEL))) {
frameWriter.rstStream(streamId, ErrorCode.CANCEL);
stopIfNecessary();
}
}
}
}