![JAR search and dependency download from the Maven repository](/logo.png)
org.codehaus.httpcache4j.resolver.HTTPClientResponseResolver Maven / Gradle / Ivy
/*
* Copyright (c) 2009. The Codehaus. All Rights Reserved.
*
* 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 org.codehaus.httpcache4j.resolver;
import org.apache.http.conn.scheme.PlainSocketFactory;
import org.apache.http.conn.scheme.Scheme;
import org.apache.http.conn.ssl.SSLSocketFactory;
import org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager;
import org.apache.http.params.BasicHttpParams;
import org.apache.http.params.CoreProtocolPNames;
import org.apache.http.params.HttpParams;
import org.codehaus.httpcache4j.*;
import org.codehaus.httpcache4j.Header;
import org.codehaus.httpcache4j.StatusLine;
import org.codehaus.httpcache4j.auth.*;
import org.codehaus.httpcache4j.payload.DelegatingInputStream;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.*;
import org.apache.http.*;
import org.apache.http.conn.scheme.SchemeRegistry;
import org.apache.http.conn.params.ConnRoutePNames;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.entity.InputStreamEntity;
import org.codehaus.httpcache4j.payload.Payload;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import static org.codehaus.httpcache4j.HTTPMethod.*;
/**
* @author Erlend Hamnaberg
* @version $Revision: #5 $ $Date: 2008/09/15 $
*/
public class HTTPClientResponseResolver extends AbstractResponseResolver {
private HttpClient httpClient;
public HTTPClientResponseResolver(HttpClient httpClient, ResolverConfiguration configuration) {
super(configuration);
this.httpClient = httpClient;
HTTPHost proxyHost = getProxyAuthenticator().getConfiguration().getHost();
HttpParams params = httpClient.getParams();
if(params==null) {
params = new BasicHttpParams();
if(httpClient instanceof DefaultHttpClient) {
((DefaultHttpClient)httpClient).setParams(params);
}
}
if (proxyHost != null) {
HttpHost host = new HttpHost(proxyHost.getHost(), proxyHost.getPort(), proxyHost.getScheme());
params.setParameter(ConnRoutePNames.DEFAULT_PROXY, host);
}
params.setParameter(CoreProtocolPNames.USER_AGENT, getConfiguration().getUserAgent());
}
public HTTPClientResponseResolver(HttpClient httpClient, ProxyAuthenticator proxyAuthenticator, Authenticator authenticator) {
this(httpClient, new ResolverConfiguration(proxyAuthenticator, authenticator));
}
public HTTPClientResponseResolver(HttpClient httpClient, ProxyConfiguration proxyConfiguration) {
this(httpClient, new DefaultProxyAuthenticator(proxyConfiguration), new DefaultAuthenticator());
}
public HTTPClientResponseResolver(HttpClient httpClient) {
this(httpClient, new ProxyConfiguration());
}
public static HTTPClientResponseResolver createMultithreadedInstance() {
SchemeRegistry schemeRegistry = new SchemeRegistry();
schemeRegistry.register(
new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
schemeRegistry.register(
new Scheme("https", SSLSocketFactory.getSocketFactory(), 443));
ThreadSafeClientConnManager cm = new ThreadSafeClientConnManager(new BasicHttpParams(), schemeRegistry);
return new HTTPClientResponseResolver(
new DefaultHttpClient(
cm,
new BasicHttpParams()
)
);
}
@Override
protected HTTPResponse resolveImpl(HTTPRequest request) throws IOException {
HttpUriRequest realRequest = convertRequest(request);
HttpResponse response = httpClient.execute(realRequest);
return convertResponse(realRequest, response);
}
public void shutdown() {
httpClient.getConnectionManager().shutdown();
}
private HttpUriRequest convertRequest(HTTPRequest request) {
HttpUriRequest realRequest = getMethod(request.getMethod(), request.getRequestURI());
Headers headers = request.getAllHeaders();
for (Header header : headers) {
realRequest.addHeader(header.getName(), header.getValue());
}
if (request.hasPayload() && realRequest instanceof HttpEntityEnclosingRequest) {
HttpEntityEnclosingRequest req = (HttpEntityEnclosingRequest) realRequest;
req.setEntity(new PayloadEntity(request.getPayload(), getConfiguration().isUseChunked()));
}
return realRequest;
}
/**
* Determines the HttpClient's request method from the HTTPMethod enum.
*
* @param method the HTTPCache enum that determines
* @param requestURI the request URI.
* @return a new HttpMethod subclass.
*/
protected HttpUriRequest getMethod(HTTPMethod method, URI requestURI) {
if (DELETE.equals(method)) {
return new HttpDelete(requestURI);
}
else if (GET.equals(method)) {
return new HttpGet(requestURI);
}
else if (HEAD.equals(method)) {
return new HttpHead(requestURI);
}
else if (OPTIONS.equals(method)) {
return new HttpOptions(requestURI);
}
else if (POST.equals(method)) {
return new HttpPost(requestURI);
}
else if (PUT.equals(method)) {
return new HttpPut(requestURI);
}
else if (TRACE.equals(method)) {
return new HttpTrace(requestURI);
}
else {
throw new IllegalArgumentException("Cannot handle method: " + method);
}
}
private HTTPResponse convertResponse(HttpUriRequest request, HttpResponse response) throws IOException {
Headers headers = new Headers();
org.apache.http.Header[] realHeaders = response.getAllHeaders();
for (org.apache.http.Header header : realHeaders) {
headers = headers.add(header.getName(), header.getValue());
}
InputStream stream = getStream(request, response);
ProtocolVersion protocolversion = response.getStatusLine().getProtocolVersion();
StatusLine line = new StatusLine(
HTTPVersion.get(protocolversion.getMajor() + "." + protocolversion.getMinor()),
Status.valueOf(response.getStatusLine().getStatusCode()),
response.getStatusLine().getReasonPhrase());
return getResponseCreator().createResponse(line, headers, stream);
}
private InputStream getStream(HttpUriRequest realRequest, HttpResponse response) throws IOException {
HttpEntity entity = response.getEntity();
if (entity == null) {
return null;
}
try {
return new HttpEntityInputStream(entity);
} catch (IOException e) {
realRequest.abort();
throw e;
} catch (RuntimeException e) {
realRequest.abort();
throw e;
}
}
private static class HttpEntityInputStream extends DelegatingInputStream {
private final HttpEntity entity;
public HttpEntityInputStream(HttpEntity entity) throws IOException {
super(entity.getContent());
this.entity = entity;
}
@Override
public void close() throws IOException {
entity.consumeContent();
}
}
private static class PayloadEntity extends InputStreamEntity {
public PayloadEntity(final Payload payload, boolean chunked) {
super(payload.getInputStream(), chunked ? -1 : payload.length());
setContentType(payload.getMimeType().toString());
setChunked(chunked);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy