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

group.rxcloud.capa.spi.http.CapaSerializeHttpSpi Maven / Gradle / Ivy

There is a newer version: 1.11.13.2.RELEASE
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.
 */
package group.rxcloud.capa.spi.http;

import com.fasterxml.jackson.databind.ObjectMapper;
import group.rxcloud.capa.component.http.HttpResponse;
import group.rxcloud.capa.infrastructure.exceptions.CapaErrorContext;
import group.rxcloud.capa.infrastructure.exceptions.CapaException;
import group.rxcloud.capa.infrastructure.serializer.CapaObjectSerializer;
import group.rxcloud.cloudruntimes.domain.core.invocation.Metadata;
import group.rxcloud.cloudruntimes.utils.TypeRef;
import okhttp3.Call;
import okhttp3.Callback;
import okhttp3.Headers;
import okhttp3.MediaType;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.RequestBody;
import okhttp3.Response;
import okhttp3.ResponseBody;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.io.Serializable;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.CompletableFuture;

/**
 * The Capa http spi with default serializer process.
 */
public abstract class CapaSerializeHttpSpi extends CapaHttpSpi {

    private static final Logger logger = LoggerFactory.getLogger(CapaSerializeHttpSpi.class);

    /**
     * Instantiates a new Capa serialize http spi.
     *
     * @param httpClient       the http client
     * @param objectSerializer the object serializer
     */
    public CapaSerializeHttpSpi(OkHttpClient httpClient, CapaObjectSerializer objectSerializer) {
        super(httpClient, objectSerializer);
    }

    /**
     * Gets request serialization format.
     *
     * @param requestData the request data
     * @return the request with byte[] serialize
     */
    protected byte[] getRequestWithSerialize(Object requestData) {
        try {
            return objectSerializer.serialize(requestData);
        } catch (IOException e) {
            if (logger.isWarnEnabled()) {
                logger.warn("[CapaSerializeHttpSpi] serialize rpc request[{}] io error",
                        requestData, e);
            }
            throw new CapaException(CapaErrorContext.PARAMETER_RPC_REQUEST_SERIALIZE_ERROR,
                    "Request Type: " + requestData.getClass().getName() + ", Error: " + e.getMessage());
        } catch (Exception e) {
            if (logger.isWarnEnabled()) {
                logger.warn("[CapaSerializeHttpSpi] serialize rpc request[{}] error",
                        requestData, e);
            }
            throw new CapaException(CapaErrorContext.PARAMETER_RPC_REQUEST_SERIALIZE_ERROR,
                    "Request Type: " + requestData.getClass().getName() + ", Error: " + e.getMessage(), e);
        }
    }

    /**
     * Gets request content type.
     *
     * @param headers the headers with custom content type
     * @return the request content type
     */
    protected String getRequestContentType(Map headers) {
        if (headers != null) {
            String contentType = headers.get(Metadata.CONTENT_TYPE);
            if (contentType != null) {
                return contentType;
            }
        }
        return this.objectSerializer.getContentType();
    }

    /**
     * Gets request body with byte[] serialize.
     *
     * @param requestData the request data
     * @param headers     the headers
     * @return the request body with byte[] serialize
     */
    protected RequestBody getRequestBodyWithSerialize(Object requestData, Map headers) {
        final String contentType = getRequestContentType(headers);

        final MediaType mediaType = contentType == null
                ? MEDIA_TYPE_APPLICATION_JSON
                : MediaType.get(contentType);

        RequestBody body;
        if (requestData == null) {
            body = mediaType.equals(MEDIA_TYPE_APPLICATION_JSON)
                    ? REQUEST_BODY_EMPTY_JSON
                    : RequestBody.Companion.create(new byte[0], mediaType);
        } else {
            byte[] serializedRequestBody = getRequestWithSerialize(requestData);
            body = RequestBody.Companion.create(serializedRequestBody, mediaType);
        }
        return body;
    }

    /**
     * Gets request headers with given params.
     *
     * @param headersParams user given params
     * @return the request headers
     */
    protected Headers getRequestHeaderWithParams(Map headersParams) {
        okhttp3.Headers.Builder headersBuilder = new okhttp3.Headers.Builder();
        if (headersParams == null || headersParams.size() == 0) {
            return headersBuilder.build();
        }
        headersParams.forEach(headersBuilder::add);
        return headersBuilder.build();
    }

    /**
     * Http async call
     *
     * @param      the type parameter
     * @param request the request
     * @param type    the type
     * @return the completable future
     */
    protected  CompletableFuture> doAsyncInvoke0(Request request, TypeRef type) {
        CompletableFuture> future = new CompletableFuture<>();
        SerializationResponseFutureCallback responseFutureCallback = new SerializationResponseFutureCallback(future);

        try {
            httpClient.newCall(request).enqueue(responseFutureCallback);
        } catch (Exception e) {
            // Unexpected synchronization error, for debugging
            throw e;
        }

        CompletableFuture> responseFuture = future.thenApply(
                httpResponse -> getResponseBodyWithDeserialize(type, httpResponse));
        return responseFuture;
    }

    /**
     * Gets response body with byte[] deserialize.
     *
     * @param           the type parameter
     * @param type         the response type
     * @param httpResponse the http response
     * @return the response body with byte[] deserialize
     */
    protected  HttpResponse getResponseBodyWithDeserialize(TypeRef type, HttpResponse httpResponse) {
        final int httpResponseStatusCode = httpResponse.getStatusCode();
        final Map httpResponseHeaders = httpResponse.getHeaders();
        final byte[] httpResponseBody = httpResponse.getBody();
        try {
            T responseObject = objectSerializer.deserialize(httpResponseBody, type);
            return new HttpResponse<>(responseObject, httpResponseHeaders, httpResponseStatusCode);
        } catch (IOException e) {
            if (logger.isWarnEnabled()) {
                logger.warn("[CapaSerializeHttpSpi] deserialize rpc statusCode[{}] headers[{}] response[{}] type[{}] io error",
                        httpResponseStatusCode, httpResponseHeaders, httpResponseBody, type, e);
            }
            throw new CapaException(CapaErrorContext.PARAMETER_RPC_RESPONSE_DESERIALIZE_ERROR,
                    "Response Type: " + type.getType().getTypeName() + ", Error: " + e.getMessage(), e);
        } catch (Exception e) {
            if (logger.isWarnEnabled()) {
                logger.warn("[CapaSerializeHttpSpi] deserialize rpc statusCode[{}] headers[{}] response[{}] type[{}] error",
                        httpResponseStatusCode, httpResponseHeaders, httpResponseBody, type, e);
            }
            throw new CapaException(CapaErrorContext.PARAMETER_RPC_RESPONSE_DESERIALIZE_ERROR,
                    "Response Type: " + type.getType().getTypeName() + ", Error: " + e.getMessage(), e);
        }
    }

    /**
     * The {@code byte[]} serialization response future callback.
     */
    protected static class SerializationResponseFutureCallback implements Callback, Serializable {

        /**
         * Empty input or output.
         */
        private static final byte[] EMPTY_BYTES = new byte[0];

        /**
         * JSON Object Mapper.
         */
        private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();

        private final transient CompletableFuture> future;

        /**
         * Instantiates a new Serialization response future callback.
         *
         * @param future the future
         */
        public SerializationResponseFutureCallback(CompletableFuture> future) {
            this.future = future;
        }

        @Override
        public void onFailure(Call call, IOException e) {
            future.completeExceptionally(e);
        }

        @Override
        public void onResponse(Call call, Response response) throws IOException {
            byte[] bodyBytes = getBodyBytesOrEmptyArray(response);
            if (!response.isSuccessful()) {
                onResponseError(response, bodyBytes);
                return;
            }

            Map mapHeaders;
            Headers responseHeaders = response.headers();
            if (responseHeaders == null || responseHeaders.size() == 0) {
                mapHeaders = new HashMap<>(2, 1);
            } else {
                mapHeaders = new HashMap<>(responseHeaders.size() << 1);
                responseHeaders.forEach(pair -> mapHeaders.put(pair.getFirst(), pair.getSecond()));
            }

            HttpResponse httpResponse = new HttpResponse<>(bodyBytes, mapHeaders, response.code());
            future.complete(httpResponse);
        }

        private void onResponseError(Response response, byte[] bodyBytes) {
            try {
                CapaException error = parseCapaError(bodyBytes);
                if (error != null) {
                    if (error.getErrorCodeContext() != null) {
                        future.completeExceptionally(new CapaException(error.getErrorCodeContext(),
                                "HTTP status code: " + response.code()));
                        return;
                    }
                }
                future.completeExceptionally(new CapaException(CapaErrorContext.DEPENDENT_SERVICE_ERROR,
                        "HTTP status code: " + response.code()));
            } catch (CapaException e) {
                future.completeExceptionally(e);
            }
        }

        private static byte[] getBodyBytesOrEmptyArray(Response response) throws IOException {
            ResponseBody body = response.body();
            if (body != null) {
                return body.bytes();
            }
            return EMPTY_BYTES;
        }

        /**
         * Tries to parse an error from Capa response body.
         *
         * @param json Response body from Capa remote.
         * @return CapaError or null if could not parse.
         */
        private static CapaException parseCapaError(byte[] json) {
            if ((json == null) || (json.length == 0)) {
                return null;
            }
            try {
                return OBJECT_MAPPER.readValue(json, CapaException.class);
            } catch (IOException e) {
                String errorMessage = new String(json, StandardCharsets.UTF_8);
                throw new CapaException(CapaErrorContext.DEPENDENT_SERVICE_ERROR, errorMessage, e);
            } catch (Exception e) {
                String errorMessage = new String(json, StandardCharsets.UTF_8);
                throw new CapaException(CapaErrorContext.SYSTEM_ERROR, errorMessage, e);
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy