--- /dev/null 2017-10-28 22:49:55.551349757 -0700 +++ new/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpClientFacade.java 2017-11-30 04:05:44.089239914 -0800 @@ -0,0 +1,141 @@ +/* + * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +package jdk.incubator.http; + +import java.io.IOException; +import java.lang.ref.Reference; +import java.net.Authenticator; +import java.net.CookieHandler; +import java.net.ProxySelector; +import java.net.URI; +import java.util.Optional; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.Executor; +import javax.net.ssl.SSLContext; +import javax.net.ssl.SSLParameters; + +/** + * An HttpClientFacade is a simple class that wraps an HttpClient implementation + * and delegates everything to its implementation delegate. + */ +final class HttpClientFacade extends HttpClient { + + final HttpClientImpl impl; + + /** + * Creates an HttpClientFacade. + */ + HttpClientFacade(HttpClientImpl impl) { + this.impl = impl; + } + + @Override + public Optional cookieHandler() { + return impl.cookieHandler(); + } + + @Override + public Redirect followRedirects() { + return impl.followRedirects(); + } + + @Override + public Optional proxy() { + return impl.proxy(); + } + + @Override + public SSLContext sslContext() { + return impl.sslContext(); + } + + @Override + public SSLParameters sslParameters() { + return impl.sslParameters(); + } + + @Override + public Optional authenticator() { + return impl.authenticator(); + } + + @Override + public HttpClient.Version version() { + return impl.version(); + } + + @Override + public Optional executor() { + return impl.executor(); + } + + @Override + public HttpResponse + send(HttpRequest req, HttpResponse.BodyHandler responseBodyHandler) + throws IOException, InterruptedException + { + try { + return impl.send(req, responseBodyHandler); + } finally { + Reference.reachabilityFence(this); + } + } + + @Override + public CompletableFuture> + sendAsync(HttpRequest req, HttpResponse.BodyHandler responseBodyHandler) { + try { + return impl.sendAsync(req, responseBodyHandler); + } finally { + Reference.reachabilityFence(this); + } + } + + @Override + public CompletableFuture + sendAsync(HttpRequest req, HttpResponse.MultiSubscriber multiSubscriber) { + try { + return impl.sendAsync(req, multiSubscriber); + } finally { + Reference.reachabilityFence(this); + } + } + + @Override + public WebSocket.Builder newWebSocketBuilder() { + try { + return impl.newWebSocketBuilder(); + } finally { + Reference.reachabilityFence(this); + } + } + + @Override + public String toString() { + // Used by tests to get the client's id. + return impl.toString(); + } +}