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

com.landawn.abacus.http.HttpResponse Maven / Gradle / Ivy

Go to download

A general programming library in Java/Android. It's easy to learn and simple to use with concise and powerful APIs.

There is a newer version: 5.2.4
Show newest version
/*
 * Copyright (C) 2019 HaiYang Li
 *
 * 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.landawn.abacus.http;

import java.io.ByteArrayInputStream;
import java.nio.charset.Charset;
import java.util.List;
import java.util.Map;

import com.landawn.abacus.annotation.SuppressFBWarnings;
import com.landawn.abacus.type.Type;
import com.landawn.abacus.util.N;
import com.landawn.abacus.util.URLEncodedUtil;

/**
 *
 * @author Haiyang Li
 * @since 1.3
 */
public class HttpResponse {
    private final String requestUrl;

    private final long requestSentAtMillis;

    private final long responseReceivedAtMillis;

    private final int status;

    private final String message;

    private final Map> headers;

    private final byte[] body;

    private final ContentFormat bodyFormat;

    private final Charset respCharset;

    HttpResponse(final String requestUrl, final long requestSentAtMillis, final long responseReceivedAtMillis, final int code, final String message,
            final Map> headers, final byte[] body, final ContentFormat bodyFormat, final Charset respCharset) {
        this.requestUrl = requestUrl;
        this.requestSentAtMillis = requestSentAtMillis;
        this.responseReceivedAtMillis = responseReceivedAtMillis;
        this.status = code;
        this.message = message;
        this.headers = headers;
        this.body = body;
        this.bodyFormat = bodyFormat == null ? ContentFormat.NONE : bodyFormat;
        this.respCharset = respCharset;
    }

    /**
     * Returns true if the code is in [200..300), which means the request was successfully received,
     * understood, and accepted.
     *
     * @return true, if is successful
     */
    public boolean isSuccessful() {
        return HttpUtil.isSuccessfulResponseCode(status);
    }

    /**
     *
     * @return
     */
    public String requestUrl() {
        return requestUrl;
    }

    /**
     * Sent request at millis.
     *
     * @return
     */
    public long requestSentAtMillis() {
        return requestSentAtMillis;
    }

    /**
     * Received response at millis.
     *
     * @return
     */
    public long responseReceivedAtMillis() {
        return responseReceivedAtMillis;
    }

    //    /**
    //     *
    //     * @return
    //     * @deprecated replaced with {@code status}
    //     * @see #status()
    //     */
    //    @Deprecated
    //    public int code() {
    //        return status;
    //    }

    /**
     * 
     *
     * @return 
     */
    public int status() {
        return status;
    }

    /**
     * 
     *
     * @return 
     */
    public String message() {
        return message;
    }

    /**
     * 
     *
     * @return 
     */
    public Map> headers() {
        return headers;
    }

    /**
     * 
     *
     * @return 
     */
    public byte[] body() {
        return body;
    }

    /**
     *
     * @param 
     * @param resultClass
     * @return
     */
    public  T body(Class resultClass) {
        N.checkArgNotNull(resultClass, "resultClass");

        if (resultClass == null || resultClass.equals(String.class)) {
            return (T) new String(body, respCharset);
        } else if (byte[].class.equals(resultClass)) {
            return (T) body;
        } else {
            if (bodyFormat == ContentFormat.KRYO && HttpUtil.kryoParser != null) {
                return HttpUtil.kryoParser.deserialize(resultClass, new ByteArrayInputStream(body));
            } else if (bodyFormat == ContentFormat.FormUrlEncoded) {
                return URLEncodedUtil.decode(new String(body, respCharset), resultClass);
            } else {
                return HttpUtil.getParser(bodyFormat).deserialize(resultClass, new String(body, respCharset));
            }
        }
    }

    /**
     *
     * @param 
     * @param resultType
     * @return
     */
    public  T body(Type resultType) {
        N.checkArgNotNull(resultType, "resultType");

        if (resultType == null || resultType.clazz().equals(String.class)) {
            return (T) new String(body, respCharset);
        } else if (resultType.clazz().equals(byte[].class)) {
            return (T) body;
        } else {
            if (bodyFormat == ContentFormat.KRYO && HttpUtil.kryoParser != null) {
                return HttpUtil.kryoParser.deserialize(resultType.clazz(), new ByteArrayInputStream(body));
            } else if (bodyFormat == ContentFormat.FormUrlEncoded) {
                return URLEncodedUtil.decode(new String(body, respCharset), resultType.clazz());
            } else if (bodyFormat != null && bodyFormat.name().contains("JSON")) {
                return N.fromJSON(resultType, new String(body, respCharset));
            } else if (bodyFormat != null && bodyFormat.name().contains("XML")) {
                return N.fromXML(resultType, new String(body, respCharset));
            } else {
                return HttpUtil.getParser(bodyFormat).deserialize(resultType.clazz(), new String(body, respCharset));
            }
        }
    }

    /**
     * 
     *
     * @return 
     */
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((requestUrl == null) ? 0 : requestUrl.hashCode());
        result = prime * result + status;
        result = prime * result + ((message == null) ? 0 : message.hashCode());
        result = prime * result + ((headers == null) ? 0 : headers.hashCode());
        result = prime * result + ((bodyFormat == null) ? 0 : bodyFormat.hashCode());
        return prime * result + ((body == null) ? 0 : N.hashCode(body));
    }

    /**
     *
     * @param obj
     * @return true, if successful
     */
    @SuppressFBWarnings
    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }

        if (obj instanceof HttpResponse other) {
            return requestUrl == other.requestUrl && status == other.status && N.equals(message, other.message) && N.equals(headers, other.headers)
                    && N.equals(bodyFormat, other.bodyFormat) && N.equals(body, other.body);
        }

        return false;
    }

    /**
     * 
     *
     * @return 
     */
    @Override
    public String toString() {
        return requestUrl + ". " + status + ": " + message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy