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

io.hekate.rpc.internal.RpcMethodClientBase Maven / Gradle / Ivy

/*
 * Copyright 2022 The Hekate Project
 *
 * The Hekate Project 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 io.hekate.rpc.internal;

import io.hekate.core.HekateException;
import io.hekate.core.HekateExecutionException;
import io.hekate.messaging.MessagingChannel;
import io.hekate.rpc.RpcException;
import io.hekate.rpc.RpcInterfaceInfo;
import io.hekate.rpc.RpcMethodInfo;

abstract class RpcMethodClientBase {
    private final RpcInterfaceInfo rpc;

    private final String tag;

    private final RpcMethodInfo method;

    private final String methodIdxKey;

    private final MessagingChannel channel;

    public RpcMethodClientBase(RpcInterfaceInfo rpc, String tag, RpcMethodInfo method, MessagingChannel channel) {
        this.rpc = rpc;
        this.tag = tag;
        this.method = method;
        this.channel = channel;

        if (tag == null) {
            methodIdxKey = RpcUtils.methodProperty(rpc, method);
        } else {
            methodIdxKey = RpcUtils.taggedMethodProperty(rpc, method, tag);
        }
    }

    protected abstract Object doInvoke(Object affinity, Object[] args);

    public Object invoke(Object[] args) throws Exception {
        Object affinity;

        if (method.affinityArg().isPresent()) {
            affinity = args[method.affinityArg().getAsInt()];
        } else {
            affinity = null;
        }

        try {
            try {
                return doInvoke(affinity, args);
            } catch (HekateExecutionException e) {
                // Unwrap asynchronous messaging error.
                throw e.getCause();
            }
        } catch (Throwable e) {
            throw reThrow(e);
        }
    }

    public RpcInterfaceInfo rpc() {
        return rpc;
    }

    public String tag() {
        return tag;
    }

    public RpcMethodInfo method() {
        return method;
    }

    public MessagingChannel channel() {
        return channel;
    }

    public String methodIdxKey() {
        return methodIdxKey;
    }

    private Exception reThrow(Throwable error) throws Exception {
        if (error instanceof RpcException) {
            // Re-throw RPC errors as is.
            throw (RpcException)error;
        } else if (error instanceof HekateException) {
            // Wrap internal errors (network errors, messaging errors, etc).
            throw asRpcError(error);
        } else if (error instanceof RuntimeException) {
            // Re-throw runtime exceptions as is.
            throw (RuntimeException)error;
        } else if (error instanceof Error) {
            // Re-throw errors as is.
            throw (Error)error;
        } else {
            // Re-throw as is if this error is declared in the method signature.
            for (Class declared : method.javaMethod().getExceptionTypes()) {
                if (declared.isAssignableFrom(error.getClass())) {
                    throw (Exception)error;
                }
            }
        }

        // Last resort (all foreseen cases should be covered by the logic above).
        throw asRpcError(error);
    }

    private RpcException asRpcError(Throwable error) {
        return new RpcException("RPC failed [method=" + rpc.name() + '#' + method.signature() + ']', error);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy