All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.helger.smpclient.httpclient.AbstractSMPResponseHandler Maven / Gradle / Ivy

There is a newer version: 9.6.0
Show newest version
/**
 * Copyright (C) 2015-2021 Philip Helger
 * philip[at]helger[dot]com
 *
 * 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 com.helger.smpclient.httpclient;

import java.io.IOException;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.StatusLine;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpResponseException;
import org.apache.http.client.ResponseHandler;
import org.apache.http.util.EntityUtils;

import com.helger.commons.debug.GlobalDebug;
import com.helger.smpclient.exception.SMPClientBadResponseException;

/**
 * Abstract {@link ResponseHandler} implementation that ensures a leak free
 * usage of the returned response.
 * 

* Note: this class is also licensed under Apache 2 license, as it was not part * of the original implementation *

* * @author Philip Helger * @param * Date type to be created */ public abstract class AbstractSMPResponseHandler implements ResponseHandler { /** * Handle the response entity and transform it into the actual response * object. * * @param aEntity * The entity to handle. Never null. * @return the result. May be null. * @throws IOException * on IO error * @throws SMPClientBadResponseException * if something goes wrong */ @Nullable public abstract T handleEntity (@Nonnull HttpEntity aEntity) throws IOException, SMPClientBadResponseException; /** * Read the entity from the response body and pass it to the entity handler * method if the response was successful (a 2xx status code). If no response * body exists, this returns null. If the response was unsuccessful (>= 300 * status code), throws an {@link HttpResponseException}. */ @Nullable public T handleResponse (@Nonnull final HttpResponse aResponse) throws IOException { final StatusLine aStatusLine = aResponse.getStatusLine (); final HttpEntity aEntity = aResponse.getEntity (); if (aStatusLine.getStatusCode () >= 300) { if (false && GlobalDebug.isDebugMode ()) { final String sEntity = EntityUtils.toString (aEntity); throw new HttpResponseException (aStatusLine.getStatusCode (), aStatusLine.getReasonPhrase () + "\n" + sEntity); } throw new HttpResponseException (aStatusLine.getStatusCode (), aStatusLine.getReasonPhrase ()); } try { return aEntity == null ? null : handleEntity (aEntity); } catch (final SMPClientBadResponseException ex) { // Wrap to comply to API :( throw new ClientProtocolException (ex); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy