zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package com.codingapi.tx.dubbo.balance;
 
import com.alibaba.dubbo.rpc.Invoker;
import com.alibaba.dubbo.rpc.RpcException;
import com.codingapi.tx.aop.bean.TxTransactionLocal;
import com.lorne.core.framework.utils.encode.MD5Util;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
 
import java.util.List;
 
/**
 * create by lorne on 2017/11/29
 */
 
public class LCNBalanceProxy {
 
    private Logger logger = LoggerFactory.getLogger(LCNBalanceProxy.class);
 
    public <T> Invoker<T> proxy(List<Invoker<T>> invokers,Invoker<T> invoker) throws RpcException {
        TxTransactionLocal txTransactionLocal = TxTransactionLocal.current();
        if(txTransactionLocal==null){
            return invoker;
        }
 
        try {
            logger.debug("LCNBalanceProxy - > start");
 
            String groupId = txTransactionLocal.getGroupId();
 
            String uniqueKey = invoker.getUrl().getServiceInterface();
 
            logger.debug("LCNBalanceProxy - > uniqueKey - >" + uniqueKey);
 
            String key = MD5Util.md5((groupId + "_" + uniqueKey).getBytes());
 
            //请求tm获取模块信息
            Invoker old = getInvoker(txTransactionLocal, invokers, key);
 
            if (old != null) {
                logger.debug("LCNBalanceProxy - > load old invoker ");
 
                return old;
            }
            putInvoker(key, txTransactionLocal, invoker);
 
            logger.debug("LCNBalanceProxy - > load new invoker ");
 
            return invoker;
        }finally {
            logger.debug("LCNBalanceProxy - > end");
        }
    }
 
 
    private void putInvoker(String key,TxTransactionLocal txTransactionLocal,Invoker invoker){
        String serviceName =  invoker.getUrl().getServiceInterface();
        String address = invoker.getUrl().getAddress();
 
        String md5 = MD5Util.md5((address+serviceName).getBytes());
 
        logger.debug("putInvoker->address->"+address+",md5-->"+md5);
 
        txTransactionLocal.putLoadBalance(key,md5);
    }
 
 
    private <T> Invoker<T> getInvoker(TxTransactionLocal txTransactionLocal,List<Invoker<T>> invokers,String key){
        String val = txTransactionLocal.getLoadBalance(key);
        if(StringUtils.isEmpty(val)){
            return null;
        }
        for(Invoker<T> invoker:invokers){
           String serviceName =  invoker.getUrl().getServiceInterface();
           String address = invoker.getUrl().getAddress();
 
           String md5 = MD5Util.md5((address+serviceName).getBytes());
 
           logger.debug("getInvoker->address->"+address+",md5-->"+md5);
 
           if(val.equals(md5)){
               return invoker;
           }
        }
        return null;
    }
}