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

org.apache.hc.client5.http.fluent.ContentResponseHandler Maven / Gradle / Ivy

There is a newer version: 5.4.1
Show newest version
/*
 * ====================================================================
 * 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.hc.client5.http.fluent;

import java.io.IOException;

import org.apache.hc.client5.http.HttpResponseException;
import org.apache.hc.client5.http.impl.classic.AbstractHttpClientResponseHandler;
import org.apache.hc.core5.http.ClassicHttpResponse;
import org.apache.hc.core5.http.ContentType;
import org.apache.hc.core5.http.HttpEntity;
import org.apache.hc.core5.http.io.entity.EntityUtils;

/**
 * {@link org.apache.hc.core5.http.io.HttpClientResponseHandler} implementation
 * that converts {@link org.apache.hc.core5.http.HttpResponse} messages
 * to {@link Content} instances.
 *
 * @see Content
 * @since 4.4
 */
public class ContentResponseHandler extends AbstractHttpClientResponseHandler {


    /**
     * The maximum length of the exception message, to avoid excessive memory usage.
     */
    private static final int MAX_MESSAGE_LENGTH = 256;

    @Override
    public Content handleEntity(final HttpEntity entity) throws IOException {
        return entity != null ?
                new Content(EntityUtils.toByteArray(entity), ContentType.parse(entity.getContentType())) :
                Content.NO_CONTENT;
    }

    /**
     * Handles a successful response (2xx status code) and returns the response entity as a {@link Content} object.
     * If no response entity exists, {@link Content#NO_CONTENT} is returned.
     *
     * @param response the HTTP response.
     * @return a {@link Content} object that encapsulates the response body, or {@link Content#NO_CONTENT} if the
     * response body is {@code null} or has zero length.
     * @throws HttpResponseException if the response was unsuccessful (status code greater than 300).
     * @throws IOException           if an I/O error occurs.
     */
    @Override
    public Content handleResponse(final ClassicHttpResponse response) throws IOException {
        final int statusCode = response.getCode();
        final HttpEntity entity = response.getEntity();
        final byte[] contentBytes = (entity != null) ? EntityUtils.toByteArray(entity, MAX_MESSAGE_LENGTH) : new byte[0];
        final ContentType contentType = (entity != null && entity.getContentType() != null) ? ContentType.parse(entity.getContentType()) : ContentType.DEFAULT_BINARY;
        final Content content = new Content(contentBytes, contentType);
        if (statusCode >= 300) {
            throw new HttpResponseException(statusCode, response.getReasonPhrase(), contentBytes, contentType);
        }
        return content;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy