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

org.yes.tools.ext.SentinelInvocationHandler Maven / Gradle / Ivy

There is a newer version: 2.0.6
Show newest version
package org.yes.tools.ext;

import com.alibaba.cloud.sentinel.feign.SentinelContractHolder;
import com.alibaba.csp.sentinel.Entry;
import com.alibaba.csp.sentinel.EntryType;
import com.alibaba.csp.sentinel.SphU;
import com.alibaba.csp.sentinel.Tracer;
import com.alibaba.csp.sentinel.context.ContextUtil;
import com.alibaba.fastjson.JSONObject;
import feign.Feign;
import feign.InvocationHandlerFactory;
import feign.MethodMetadata;
import feign.Target;
import lombok.extern.slf4j.Slf4j;
import org.springframework.cloud.openfeign.FallbackFactory;

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.util.LinkedHashMap;
import java.util.Map;

import static feign.Util.checkNotNull;

/**
 * 支持自动降级注入 重写 {@link com.alibaba.cloud.sentinel.feign.SentinelInvocationHandler}
 *
 * @author Co.
 * @date 2023/10/24 10:24
 */
@Slf4j
public class SentinelInvocationHandler implements InvocationHandler {

    public static final String EQUALS = "equals";

    public static final String HASH_CODE = "hashCode";

    public static final String TO_STRING = "toString";

    private final Target target;

    private final Map dispatch;

    private FallbackFactory fallbackFactory;

    private Map fallbackMethodMap;

    SentinelInvocationHandler(Target target, Map dispatch,
                              FallbackFactory fallbackFactory) {
        this.target = checkNotNull(target, "target");
        this.dispatch = checkNotNull(dispatch, "dispatch");
        this.fallbackFactory = fallbackFactory;
        this.fallbackMethodMap = toFallbackMethod(dispatch);
    }

    SentinelInvocationHandler(Target target, Map dispatch) {
        this.target = checkNotNull(target, "target");
        this.dispatch = checkNotNull(dispatch, "dispatch");
    }

    @Override
    public Object invoke(final Object proxy, final Method method, final Object[] args) throws Throwable {
        if (EQUALS.equals(method.getName())) {
            try {
                Object otherHandler = args.length > 0 && args[0] != null ? Proxy.getInvocationHandler(args[0]) : null;
                return equals(otherHandler);
            } catch (IllegalArgumentException e) {
                return false;
            }
        } else if (HASH_CODE.equals(method.getName())) {
            return hashCode();
        } else if (TO_STRING.equals(method.getName())) {
            return toString();
        }

        Object result;
        InvocationHandlerFactory.MethodHandler methodHandler = this.dispatch.get(method);
        // only handle by HardCodedTarget
        if (target instanceof Target.HardCodedTarget) {
            Target.HardCodedTarget hardCodedTarget = (Target.HardCodedTarget) target;
            MethodMetadata methodMetadata = SentinelContractHolder.METADATA_MAP
                    .get(hardCodedTarget.type().getName() + Feign.configKey(hardCodedTarget.type(), method));
            // resource default is HttpMethod:protocol://url
            if (methodMetadata == null) {
                result = methodHandler.invoke(args);
            } else {
                String resourceName = methodMetadata.template().method().toUpperCase() + ':' + hardCodedTarget.url()
                        + methodMetadata.template().path();
                Entry entry = null;
                try {
                    ContextUtil.enter(resourceName);
                    entry = SphU.entry(resourceName, EntryType.OUT, 1, args);
                    result = methodHandler.invoke(args);

                    try {
                        JSONObject object = (JSONObject) JSONObject.toJSON(result);
                        if (!object.get("code").toString().equals("0")) {
                            // fallback handle
                            Tracer.trace(new Throwable(object.get("message").toString()));
                            throw new RuntimeException(object.get("message").toString());
                        }
                    } catch (Exception e) {
                        // fallback handle
                        Tracer.trace(e);
                        throw e;
                    }
                }
//                catch (Throwable ex) {
//                    // fallback handle
//                    if (!BlockException.isBlockException(ex)) {
//                        Tracer.trace(ex);
//                    }
//                    if (fallbackFactory != null) {
//                        try {
//                            return fallbackMethodMap.get(method).invoke(fallbackFactory.create(ex), args);
//                        } catch (IllegalAccessException e) {
//                            // shouldn't happen as method is public due to being an
//                            // interface
//                            throw new AssertionError(e);
//                        } catch (InvocationTargetException e) {
//                            throw new AssertionError(e.getCause());
//                        }
//                    } else {
//                        JSONObject commonResult = null;
//                        try {
//                            commonResult = (JSONObject) JSONArray.parse(ex.getLocalizedMessage().split(": ")[1]).get(0);
//                        } catch (Exception e) {
//                            throw ex;
//                        }
//                        throw new RuntimeException(commonResult.get("message").toString());
//                    }
//                }
                finally {
                    if (entry != null) {
                        entry.exit(1, args);
                    }
                    ContextUtil.exit();
                }
            }
        } else {
            // other target type using default strategy
            result = methodHandler.invoke(args);
        }

        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (obj instanceof com.alibaba.cloud.sentinel.feign.SentinelInvocationHandler) {
            SentinelInvocationHandler other = (SentinelInvocationHandler) obj;
            return target.equals(other.target);
        }
        return false;
    }

    @Override
    public int hashCode() {
        return target.hashCode();
    }

    @Override
    public String toString() {
        return target.toString();
    }

    static Map toFallbackMethod(Map dispatch) {
        Map result = new LinkedHashMap<>();
        for (Method method : dispatch.keySet()) {
            method.setAccessible(true);
            result.put(method, method);
        }
        return result;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy