/* * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * . * */ package org.apache.http.impl.client.cache; import org.apache.http.HttpException; import org.apache.http.HttpResponse; import org.apache.http.client.cache.HttpCacheEntry; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpExecutionAware; import org.apache.http.client.methods.HttpRequestWrapper; import org.apache.http.client.protocol.HttpClientContext; import org.apache.http.concurrent.FutureCallback; import org.apache.http.conn.routing.HttpRoute; import org.apache.http.impl.execchain.ClientExecChain; import java.io.IOException; import java.lang.reflect.UndeclaredThrowableException; import java.util.concurrent.ExecutionException; public class CachingHttpAsyncClientExecChain implements ClientExecChain { private final CachingHttpAsyncClient client; private final FutureCallback dummyCallback = new FutureCallback() { public void failed(final Exception ex) { // failed } public void completed(final HttpResponse result) { // completed } public void cancelled() { // cancelled } }; public CachingHttpAsyncClientExecChain(final ClientExecChain backend) { this(backend, new BasicHttpCache(), CacheConfig.DEFAULT); } public CachingHttpAsyncClientExecChain( final ClientExecChain backend, final HttpCache cache, final CacheConfig config) { this.client = new CachingHttpAsyncClient( new ClientExecChainAsyncClient(backend), cache, config); } CachingHttpAsyncClientExecChain( final ClientExecChain backend, final HttpCache responseCache, final CacheValidityPolicy validityPolicy, final ResponseCachingPolicy responseCachingPolicy, final CachedHttpResponseGenerator responseGenerator, final CacheableRequestPolicy cacheableRequestPolicy, final CachedResponseSuitabilityChecker suitabilityChecker, final ConditionalRequestBuilder conditionalRequestBuilder, final ResponseProtocolCompliance responseCompliance, final RequestProtocolCompliance requestCompliance) { this.client = new CachingHttpAsyncClient( new ClientExecChainAsyncClient(backend), validityPolicy, responseCachingPolicy, responseCache, responseGenerator, cacheableRequestPolicy, suitabilityChecker, conditionalRequestBuilder, responseCompliance, requestCompliance); } public boolean supportsRangeAndContentRangeHeaders() { return client.supportsRangeAndContentRangeHeaders(); } public CloseableHttpResponse execute( final HttpRoute route, final HttpRequestWrapper request) throws IOException, HttpException { return execute(route, request, HttpClientContext.create(), null); } public CloseableHttpResponse execute( final HttpRoute route, final HttpRequestWrapper request, final HttpClientContext context) throws IOException, HttpException { return execute(route, request, context, null); } public CloseableHttpResponse execute( final HttpRoute route, final HttpRequestWrapper request, final HttpClientContext context, final HttpExecutionAware execAware) throws IOException, HttpException { try { return Proxies.enhanceResponse(client.execute( route.getTargetHost(), request, context, dummyCallback) .get()); } catch (InterruptedException e) { Thread.currentThread().interrupt(); return null; } catch (ExecutionException e) { try { throw e.getCause(); } catch (IOException ex) { throw ex; } catch (HttpException ex) { throw ex; } catch (RuntimeException ex) { throw ex; } catch (Error ex) { throw ex; } catch (Throwable ex) { throw new UndeclaredThrowableException(ex); } } } public long getCacheHits() { return client.getCacheHits(); } public long getCacheMisses() { return client.getCacheMisses(); } public long getCacheUpdates() { return client.getCacheUpdates(); } CloseableHttpResponse revalidateCacheEntry( final HttpRoute route, final HttpRequestWrapper request, final HttpClientContext context, final HttpCacheEntry cacheEntry) throws IOException, HttpException { try { return Proxies.enhanceResponse(client.revalidateCacheEntry( route.getTargetHost(), request, context, cacheEntry, dummyCallback).get()); } catch (InterruptedException e) { Thread.currentThread().interrupt(); return null; } catch (ExecutionException e) { try { throw e.getCause(); } catch (IOException ex) { throw ex; } catch (HttpException ex) { throw ex; } catch (RuntimeException ex) { throw ex; } catch (Error ex) { throw ex; } catch (Throwable ex) { throw new UndeclaredThrowableException(ex); } } } }