/* FailureExposingHttpClient.java
*
* Copyright 2009-2015 Comcast Interactive Media, LLC.
*
* 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.fishwife.jrugged.httpclient;
import java.io.IOException;
import org.apache.http.HttpHost;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.protocol.HttpContext;
/**
* This is a decorator for an {@link org.apache.http.client.HttpClient}
* that will raise runtime exceptions for 4XX or 5XX responses, so that
* they can be used to signal failures to JRugged
* {@link org.fishwife.jrugged.ServiceWrapper} instances.
*
*/
public class FailureExposingHttpClient extends AbstractHttpClientDecorator {
private ResponseFailureAssessor assessor;
public FailureExposingHttpClient(HttpClient backend) {
super(backend);
assessor = new DefaultResponseFailureAssessor();
}
public FailureExposingHttpClient(HttpClient backend, ResponseFailureAssessor assessor) {
super(backend);
this.assessor = assessor;
}
public HttpResponse execute(HttpHost host, HttpRequest req, HttpContext ctx)
throws IOException, ClientProtocolException {
HttpResponse resp = backend.execute(host, req, ctx);
if (assessor.isFailure(resp)) {
throw new UnsuccessfulResponseException(resp);
}
return resp;
}
}