Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-http2/http2-http-client-transport/src/main/java/org/eclipse/jetty/http2/client/http/HttpConnectionOverHTTP2.java')
-rw-r--r--jetty-http2/http2-http-client-transport/src/main/java/org/eclipse/jetty/http2/client/http/HttpConnectionOverHTTP2.java107
1 files changed, 107 insertions, 0 deletions
diff --git a/jetty-http2/http2-http-client-transport/src/main/java/org/eclipse/jetty/http2/client/http/HttpConnectionOverHTTP2.java b/jetty-http2/http2-http-client-transport/src/main/java/org/eclipse/jetty/http2/client/http/HttpConnectionOverHTTP2.java
new file mode 100644
index 0000000000..6bc69f99af
--- /dev/null
+++ b/jetty-http2/http2-http-client-transport/src/main/java/org/eclipse/jetty/http2/client/http/HttpConnectionOverHTTP2.java
@@ -0,0 +1,107 @@
+//
+// ========================================================================
+// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd.
+// ------------------------------------------------------------------------
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// and Apache License v2.0 which accompanies this distribution.
+//
+// The Eclipse Public License is available at
+// http://www.eclipse.org/legal/epl-v10.html
+//
+// The Apache License v2.0 is available at
+// http://www.opensource.org/licenses/apache2.0.php
+//
+// You may elect to redistribute this code under either of these licenses.
+// ========================================================================
+//
+
+package org.eclipse.jetty.http2.client.http;
+
+import java.nio.channels.AsynchronousCloseException;
+import java.util.Set;
+
+import org.eclipse.jetty.client.HttpChannel;
+import org.eclipse.jetty.client.HttpConnection;
+import org.eclipse.jetty.client.HttpDestination;
+import org.eclipse.jetty.client.HttpExchange;
+import org.eclipse.jetty.client.SendFailure;
+import org.eclipse.jetty.http2.ErrorCode;
+import org.eclipse.jetty.http2.api.Session;
+import org.eclipse.jetty.util.Callback;
+import org.eclipse.jetty.util.ConcurrentHashSet;
+
+public class HttpConnectionOverHTTP2 extends HttpConnection
+{
+ private final Set<HttpChannel> channels = new ConcurrentHashSet<>();
+ private final Session session;
+
+ public HttpConnectionOverHTTP2(HttpDestination destination, Session session)
+ {
+ super(destination);
+ this.session = session;
+ }
+
+ public Session getSession()
+ {
+ return session;
+ }
+
+ @Override
+ protected SendFailure send(HttpExchange exchange)
+ {
+ normalizeRequest(exchange.getRequest());
+
+ // One connection maps to N channels, so for each exchange we create a new channel.
+ HttpChannel channel = newHttpChannel();
+ channels.add(channel);
+
+ return send(channel, exchange);
+ }
+
+ protected HttpChannelOverHTTP2 newHttpChannel()
+ {
+ return new HttpChannelOverHTTP2(getHttpDestination(), this, getSession());
+ }
+
+ protected void release(HttpChannel channel)
+ {
+ channels.remove(channel);
+ getHttpDestination().release(this);
+ }
+
+ @Override
+ public void close()
+ {
+ close(new AsynchronousCloseException());
+ }
+
+ protected void close(Throwable failure)
+ {
+ // First close then abort, to be sure that the connection cannot be reused
+ // from an onFailure() handler or by blocking code waiting for completion.
+ getHttpDestination().close(this);
+ session.close(ErrorCode.NO_ERROR.code, failure.getMessage(), Callback.NOOP);
+ abort(failure);
+ }
+
+ private void abort(Throwable failure)
+ {
+ for (HttpChannel channel : channels)
+ {
+ HttpExchange exchange = channel.getHttpExchange();
+ if (exchange != null)
+ exchange.getRequest().abort(failure);
+ }
+ channels.clear();
+ }
+
+ @Override
+ public String toString()
+ {
+ return String.format("%s@%h[%s]",
+ getClass().getSimpleName(),
+ this,
+ session);
+ }
+}

Back to the top