国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

dubbo源碼解析(二十四)遠程調用——dubbo協議

rickchen / 4171人閱讀

摘要:遠程調用協議目標介紹遠程調用中跟協議相關的設計和實現,介紹的源碼。二該類繼承了,是協議中獨有的服務暴露者。八該類也是對的裝飾,其中增強了調用次數多功能。

遠程調用——dubbo協議
目標:介紹遠程調用中跟dubbo協議相關的設計和實現,介紹dubbo-rpc-dubbo的源碼。
前言

Dubbo 缺省協議采用單一長連接和 NIO 異步通訊,適合于小數據量大并發的服務調用,以及服務消費者機器數遠大于服務提供者機器數的情況。反之,Dubbo 缺省協議不適合傳送大數據量的服務,比如傳文件,傳視頻等,除非請求量很低。這是官方文檔的原話,并且官方文檔還介紹了為什么使用單一長連接和 NIO 異步通訊以及為什么不適合傳輸大數據的服務。我就不贅述了。

我們先來看看dubbo-rpc-dubbo下的包結構:

filter:該包下面是對于dubbo協議獨有的兩個過濾器

status:該包下是做了對于服務和線程池狀態的檢測

telnet:該包下是對于telnet命令的支持

最外層:最外層是dubbo協議的核心

源碼分析 (一)DubboInvoker

該類是dubbo協議獨自實現的的invoker,其中實現了調用方法的三種模式,分別是異步發送、單向發送和同步發送,具體在下面介紹。

1.屬性
/**
 * 信息交換客戶端數組
 */
private final ExchangeClient[] clients;

/**
 * 客戶端數組位置
 */
private final AtomicPositiveInteger index = new AtomicPositiveInteger();

/**
 * 版本號
 */
private final String version;

/**
 * 銷毀鎖
 */
private final ReentrantLock destroyLock = new ReentrantLock();

/**
 * Invoker對象集合
 */
private final Set> invokers;
2.doInvoke
@Override
protected Result doInvoke(final Invocation invocation) throws Throwable {
    // rpc會話域
    RpcInvocation inv = (RpcInvocation) invocation;
    // 獲得方法名
    final String methodName = RpcUtils.getMethodName(invocation);
    // 把path放入到附加值中
    inv.setAttachment(Constants.PATH_KEY, getUrl().getPath());
    // 把版本號放入到附加值
    inv.setAttachment(Constants.VERSION_KEY, version);

    // 當前的客戶端
    ExchangeClient currentClient;
    // 如果數組內就一個客戶端,則直接取出
    if (clients.length == 1) {
        currentClient = clients[0];
    } else {
        // 取模輪詢 從數組中取,當取到最后一個時,從頭開始
        currentClient = clients[index.getAndIncrement() % clients.length];
    }
    try {
        // 是否啟用異步
        boolean isAsync = RpcUtils.isAsync(getUrl(), invocation);
        // 是否是單向發送
        boolean isOneway = RpcUtils.isOneway(getUrl(), invocation);
        // 獲得超時時間
        int timeout = getUrl().getMethodParameter(methodName, Constants.TIMEOUT_KEY, Constants.DEFAULT_TIMEOUT);
        // 如果是單項發送
        if (isOneway) {
            boolean isSent = getUrl().getMethodParameter(methodName, Constants.SENT_KEY, false);
            // 單向發送只負責發送消息,不等待服務端應答,所以沒有返回值
            currentClient.send(inv, isSent);
            RpcContext.getContext().setFuture(null);
            return new RpcResult();
        } else if (isAsync) {
            // 異步調用
            ResponseFuture future = currentClient.request(inv, timeout);
            // 保存future,方便后期處理
            RpcContext.getContext().setFuture(new FutureAdapter(future));
            return new RpcResult();
        } else {
            // 同步調用,等待返回結果
            RpcContext.getContext().setFuture(null);
            return (Result) currentClient.request(inv, timeout).get();
        }
    } catch (TimeoutException e) {
        throw new RpcException(RpcException.TIMEOUT_EXCEPTION, "Invoke remote method timeout. method: " + invocation.getMethodName() + ", provider: " + getUrl() + ", cause: " + e.getMessage(), e);
    } catch (RemotingException e) {
        throw new RpcException(RpcException.NETWORK_EXCEPTION, "Failed to invoke remote method: " + invocation.getMethodName() + ", provider: " + getUrl() + ", cause: " + e.getMessage(), e);
    }
}

在調用invoker的時候,通過遠程通信將Invocation信息傳遞給服務端,服務端在接收到該invocation信息后,要找到對應的本地方法,然后通過反射執行該方法,將方法的執行結果返回給客戶端,在這里,客戶端發送有三種模式:

異步發送,也就是當我發送調用后,我不阻塞等待結果,直接返回,將返回的future保存到上下文,方便后期使用。

單向發送,執行方法不需要返回結果。

同步發送,執行方法后,等待結果返回,否則一直阻塞。

3.isAvailable
@Override
public boolean isAvailable() {
    if (!super.isAvailable())
        return false;
    for (ExchangeClient client : clients) {
        // 只要有一個客戶端連接并且不是只讀,則表示存活
        if (client.isConnected() && !client.hasAttribute(Constants.CHANNEL_ATTRIBUTE_READONLY_KEY)) {
            //cannot write == not Available ?
            return true;
        }
    }
    return false;
}

該方法是檢查服務端是否存活。

4.destroy
@Override
public void destroy() {
    // in order to avoid closing a client multiple times, a counter is used in case of connection per jvm, every
    // time when client.close() is called, counter counts down once, and when counter reaches zero, client will be
    // closed.
    if (super.isDestroyed()) {
        return;
    } else {
        // double check to avoid dup close
        // 獲得銷毀鎖
        destroyLock.lock();
        try {
            if (super.isDestroyed()) {
                return;
            }
            // 銷毀
            super.destroy();
            // 從集合中移除
            if (invokers != null) {
                invokers.remove(this);
            }
            for (ExchangeClient client : clients) {
                try {
                    // 關閉每一個客戶端
                    client.close(ConfigUtils.getServerShutdownTimeout());
                } catch (Throwable t) {
                    logger.warn(t.getMessage(), t);
                }
            }

        } finally {
            // 釋放鎖
            destroyLock.unlock();
        }
    }
}

該方法是銷毀服務端,關閉所有連接到遠程通信客戶端。

(二)DubboExporter

該類繼承了AbstractExporter,是dubbo協議中獨有的服務暴露者。

/**
 * 服務key
 */
private final String key;

/**
 * 服務暴露者集合
 */
private final Map> exporterMap;

public DubboExporter(Invoker invoker, String key, Map> exporterMap) {
    super(invoker);
    this.key = key;
    this.exporterMap = exporterMap;
}

@Override
public void unexport() {
    super.unexport();
    // 從集合中移除該key
    exporterMap.remove(key);
}

其中對于服務暴露者用集合做了緩存,并且只重寫了了unexport。

(三)DubboProtocol

該類是dubbo協議的核心實現,其中增加了比如延遲加載等處理。 并且其中還包括了對服務暴露和服務引用的邏輯處理。

1.屬性
public static final String NAME = "dubbo";

/**
 * 默認端口號
 */
public static final int DEFAULT_PORT = 20880;
/**
 * 回調名稱
 */
private static final String IS_CALLBACK_SERVICE_INVOKE = "_isCallBackServiceInvoke";
/**
 * dubbo協議的單例
 */
private static DubboProtocol INSTANCE;
/**
 * 信息交換服務器集合 key:host:port  value:ExchangeServer
 */
private final Map serverMap = new ConcurrentHashMap(); // 
/**
 * 信息交換客戶端集合
 */
private final Map referenceClientMap = new ConcurrentHashMap(); // 
/**
 * 懶加載的客戶端集合
 */
private final ConcurrentMap ghostClientMap = new ConcurrentHashMap();
/**
 * 鎖集合
 */
private final ConcurrentMap locks = new ConcurrentHashMap();
/**
 * 序列化類名集合
 */
private final Set optimizers = new ConcurrentHashSet();
//consumer side export a stub service for dispatching event
//servicekey-stubmethods
/**
 * 本地存根服務方法集合
 */
private final ConcurrentMap stubServiceMethodsMap = new ConcurrentHashMap();
/**
 * 新建一個請求處理器
 */
private ExchangeHandler requestHandler = new ExchangeHandlerAdapter() {
    /**
     * 回復請求結果,返回的是請求結果
     * @param channel
     * @param message
     * @return
     * @throws RemotingException
     */
    @Override
    public Object reply(ExchangeChannel channel, Object message) throws RemotingException {
        // 如果請求消息屬于會話域
        if (message instanceof Invocation) {
            Invocation inv = (Invocation) message;
            // 獲得暴露的invoker
            Invoker invoker = getInvoker(channel, inv);
            // need to consider backward-compatibility if it"s a callback
            // 如果是回調服務
            if (Boolean.TRUE.toString().equals(inv.getAttachments().get(IS_CALLBACK_SERVICE_INVOKE))) {
                // 獲得 方法定義
                String methodsStr = invoker.getUrl().getParameters().get("methods");
                boolean hasMethod = false;
                // 判斷看是否有會話域中的方法
                if (methodsStr == null || methodsStr.indexOf(",") == -1) {
                    hasMethod = inv.getMethodName().equals(methodsStr);
                } else {
                    // 如果方法不止一個,則分割后遍歷查詢,找到了則設置為true
                    String[] methods = methodsStr.split(",");
                    for (String method : methods) {
                        if (inv.getMethodName().equals(method)) {
                            hasMethod = true;
                            break;
                        }
                    }
                }
                // 如果沒有該方法,則打印告警日志
                if (!hasMethod) {
                    logger.warn(new IllegalStateException("The methodName " + inv.getMethodName()
                            + " not found in callback service interface ,invoke will be ignored."
                            + " please update the api interface. url is:"
                            + invoker.getUrl()) + " ,invocation is :" + inv);
                    return null;
                }
            }
            // 設置遠程地址
            RpcContext.getContext().setRemoteAddress(channel.getRemoteAddress());
            // 調用下一個調用鏈
            return invoker.invoke(inv);
        }
        // 否則拋出異常
        throw new RemotingException(channel, "Unsupported request: "
                + (message == null ? null : (message.getClass().getName() + ": " + message))
                + ", channel: consumer: " + channel.getRemoteAddress() + " --> provider: " + channel.getLocalAddress());
    }

    /**
     * 接收消息
     * @param channel
     * @param message
     * @throws RemotingException
     */
    @Override
    public void received(Channel channel, Object message) throws RemotingException {
        // 如果消息是會話域中的消息,則調用reply方法。
        if (message instanceof Invocation) {
            reply((ExchangeChannel) channel, message);
        } else {
            super.received(channel, message);
        }
    }

    @Override
    public void connected(Channel channel) throws RemotingException {
        // 接收連接事件
        invoke(channel, Constants.ON_CONNECT_KEY);
    }

    @Override
    public void disconnected(Channel channel) throws RemotingException {
        if (logger.isInfoEnabled()) {
            logger.info("disconnected from " + channel.getRemoteAddress() + ",url:" + channel.getUrl());
        }
        // 接收斷開連接事件
        invoke(channel, Constants.ON_DISCONNECT_KEY);
    }

    /**
     * 接收事件
     * @param channel
     * @param methodKey
     */
    private void invoke(Channel channel, String methodKey) {
        // 創建會話域
        Invocation invocation = createInvocation(channel, channel.getUrl(), methodKey);
        if (invocation != null) {
            try {
                // 接收事件
                received(channel, invocation);
            } catch (Throwable t) {
                logger.warn("Failed to invoke event method " + invocation.getMethodName() + "(), cause: " + t.getMessage(), t);
            }
        }
    }

    /**
     * 創建會話域, 把url內的值加入到會話域的附加值中
     * @param channel
     * @param url
     * @param methodKey
     * @return
     */
    private Invocation createInvocation(Channel channel, URL url, String methodKey) {
        // 獲得方法,methodKey是onconnect或者ondisconnect
        String method = url.getParameter(methodKey);
        if (method == null || method.length() == 0) {
            return null;
        }
        // 創建一個rpc會話域
        RpcInvocation invocation = new RpcInvocation(method, new Class[0], new Object[0]);
        // 加入附加值path
        invocation.setAttachment(Constants.PATH_KEY, url.getPath());
        // 加入附加值group
        invocation.setAttachment(Constants.GROUP_KEY, url.getParameter(Constants.GROUP_KEY));
        // 加入附加值interface
        invocation.setAttachment(Constants.INTERFACE_KEY, url.getParameter(Constants.INTERFACE_KEY));
        // 加入附加值version
        invocation.setAttachment(Constants.VERSION_KEY, url.getParameter(Constants.VERSION_KEY));
        // 如果是本地存根服務,則加入附加值dubbo.stub.event為true
        if (url.getParameter(Constants.STUB_EVENT_KEY, false)) {
            invocation.setAttachment(Constants.STUB_EVENT_KEY, Boolean.TRUE.toString());
        }
        return invocation;
    }
};

該屬性中關鍵的是實例化了一個請求處理器,其中實現了基于dubbo協議等連接、取消連接、回復請求結果等方法。

2.export
@Override
public  Exporter export(Invoker invoker) throws RpcException {
    URL url = invoker.getUrl();

    // export service.
    // 得到服務key  group+"/"+serviceName+":"+serviceVersion+":"+port
    String key = serviceKey(url);
    // 創建exporter
    DubboExporter exporter = new DubboExporter(invoker, key, exporterMap);
    // 加入到集合
    exporterMap.put(key, exporter);

    //export an stub service for dispatching event
    Boolean isStubSupportEvent = url.getParameter(Constants.STUB_EVENT_KEY, Constants.DEFAULT_STUB_EVENT);
    Boolean isCallbackservice = url.getParameter(Constants.IS_CALLBACK_SERVICE, false);
    // 如果是本地存根事件而不是回調服務
    if (isStubSupportEvent && !isCallbackservice) {
        // 獲得本地存根的方法
        String stubServiceMethods = url.getParameter(Constants.STUB_EVENT_METHODS_KEY);
        // 如果為空,則拋出異常
        if (stubServiceMethods == null || stubServiceMethods.length() == 0) {
            if (logger.isWarnEnabled()) {
                logger.warn(new IllegalStateException("consumer [" + url.getParameter(Constants.INTERFACE_KEY) +
                        "], has set stubproxy support event ,but no stub methods founded."));
            }
        } else {
            // 加入集合
            stubServiceMethodsMap.put(url.getServiceKey(), stubServiceMethods);
        }
    }


    // 打開服務
    openServer(url);
    // 序列化
    optimizeSerialization(url);
    return exporter;
}

該方法是基于dubbo協議的服務暴露,除了對于存根服務和本地服務進行標記以外,打開服務和序列化分別在openServer和optimizeSerialization中實現。

3.openServer
private void openServer(URL url) {
    // find server.
    String key = url.getAddress();
    //client can export a service which"s only for server to invoke
    // 客戶端是否可以暴露僅供服務器調用的服務
    boolean isServer = url.getParameter(Constants.IS_SERVER_KEY, true);
    // 如果是的話
    if (isServer) {
        // 獲得信息交換服務器
        ExchangeServer server = serverMap.get(key);
        if (server == null) {
            // 重新創建服務器對象,然后放入集合
            serverMap.put(key, createServer(url));
        } else {
            // server supports reset, use together with override
            // 重置
            server.reset(url);
        }
    }
}

該方法就是打開服務。其中的邏輯其實是把服務對象放入集合中進行緩存,如果該地址對應的服務器不存在,則調用createServer創建一個服務器對象。

4.createServer
private ExchangeServer createServer(URL url) {
    // send readonly event when server closes, it"s enabled by default
    // 服務器關閉時發送readonly事件,默認情況下啟用
    url = url.addParameterIfAbsent(Constants.CHANNEL_READONLYEVENT_SENT_KEY, Boolean.TRUE.toString());
    // enable heartbeat by default
    // 心跳默認間隔一分鐘
    url = url.addParameterIfAbsent(Constants.HEARTBEAT_KEY, String.valueOf(Constants.DEFAULT_HEARTBEAT));
    // 獲得遠程通訊服務端實現方式,默認用netty3
    String str = url.getParameter(Constants.SERVER_KEY, Constants.DEFAULT_REMOTING_SERVER);

    /**
     * 如果沒有該配置,則拋出異常
     */
    if (str != null && str.length() > 0 && !ExtensionLoader.getExtensionLoader(Transporter.class).hasExtension(str))
        throw new RpcException("Unsupported server type: " + str + ", url: " + url);

    /**
     * 添加編解碼器DubboCodec實現
     */
    url = url.addParameter(Constants.CODEC_KEY, DubboCodec.NAME);
    ExchangeServer server;
    try {
        // 啟動服務器
        server = Exchangers.bind(url, requestHandler);
    } catch (RemotingException e) {
        throw new RpcException("Fail to start server(url: " + url + ") " + e.getMessage(), e);
    }
    // 獲得客戶端側設置的遠程通信方式
    str = url.getParameter(Constants.CLIENT_KEY);
    if (str != null && str.length() > 0) {
        // 獲得遠程通信的實現集合
        Set supportedTypes = ExtensionLoader.getExtensionLoader(Transporter.class).getSupportedExtensions();
        // 如果客戶端側設置的遠程通信方式不在支持的方式中,則拋出異常
        if (!supportedTypes.contains(str)) {
            throw new RpcException("Unsupported client type: " + str);
        }
    }
    return server;
}

該方法就是根據url攜帶的遠程通信實現方法來創建一個服務器對象。

5.optimizeSerialization
private void optimizeSerialization(URL url) throws RpcException {
    // 獲得類名
    String className = url.getParameter(Constants.OPTIMIZER_KEY, "");
    if (StringUtils.isEmpty(className) || optimizers.contains(className)) {
        return;
    }

    logger.info("Optimizing the serialization process for Kryo, FST, etc...");

    try {
        // 加載類
        Class clazz = Thread.currentThread().getContextClassLoader().loadClass(className);
        if (!SerializationOptimizer.class.isAssignableFrom(clazz)) {
            throw new RpcException("The serialization optimizer " + className + " isn"t an instance of " + SerializationOptimizer.class.getName());
        }

        // 強制類型轉化為SerializationOptimizer
        SerializationOptimizer optimizer = (SerializationOptimizer) clazz.newInstance();

        if (optimizer.getSerializableClasses() == null) {
            return;
        }

        // 遍歷序列化的類,把該類放入到集合進行緩存
        for (Class c : optimizer.getSerializableClasses()) {
            SerializableClassRegistry.registerClass(c);
        }

        // 加入到集合
        optimizers.add(className);
    } catch (ClassNotFoundException e) {
        throw new RpcException("Cannot find the serialization optimizer class: " + className, e);
    } catch (InstantiationException e) {
        throw new RpcException("Cannot instantiate the serialization optimizer class: " + className, e);
    } catch (IllegalAccessException e) {
        throw new RpcException("Cannot instantiate the serialization optimizer class: " + className, e);
    }
}

該方法是把序列化的類放入到集合,以便進行序列化

6.refer
@Override
public  Invoker refer(Class serviceType, URL url) throws RpcException {
    // 序列化
    optimizeSerialization(url);
    // create rpc invoker. 創建一個DubboInvoker對象
    DubboInvoker invoker = new DubboInvoker(serviceType, url, getClients(url), invokers);
    // 把該invoker放入集合
    invokers.add(invoker);
    return invoker;
}

該方法是服務引用,其中就是新建一個DubboInvoker對象后把它放入到集合。

7.getClients
private ExchangeClient[] getClients(URL url) {
    // whether to share connection
    // 一個連接是否對于一個服務
    boolean service_share_connect = false;
    // 獲得url中歡愉連接共享的配置 默認為0
    int connections = url.getParameter(Constants.CONNECTIONS_KEY, 0);
    // if not configured, connection is shared, otherwise, one connection for one service
    // 如果為0,則是共享類,并且連接數為1
    if (connections == 0) {
        service_share_connect = true;
        connections = 1;
    }

    // 創建數組
    ExchangeClient[] clients = new ExchangeClient[connections];
    for (int i = 0; i < clients.length; i++) {
        // 如果共享,則獲得共享客戶端對象,否則新建客戶端
        if (service_share_connect) {
            clients[i] = getSharedClient(url);
        } else {
            clients[i] = initClient(url);
        }
    }
    return clients;
}

該方法是獲得客戶端集合的方法,分為共享客戶端和非共享客戶端。共享客戶端是共用同一個連接,非共享客戶端是每個客戶端都有自己的一個連接。

8.getSharedClient
private ExchangeClient getSharedClient(URL url) {
    String key = url.getAddress();
    // 從集合中取出客戶端對象
    ReferenceCountExchangeClient client = referenceClientMap.get(key);
    // 如果不為空并且沒關閉連接,則計數器加1,返回
    if (client != null) {
        if (!client.isClosed()) {
            client.incrementAndGetCount();
            return client;
        } else {
            // 如果連接斷開,則從集合中移除
            referenceClientMap.remove(key);
        }
    }

    locks.putIfAbsent(key, new Object());
    synchronized (locks.get(key)) {
        // 如果集合中有該key
        if (referenceClientMap.containsKey(key)) {
            // 則直接返回client
            return referenceClientMap.get(key);
        }

        // 否則新建一個連接
        ExchangeClient exchangeClient = initClient(url);
        client = new ReferenceCountExchangeClient(exchangeClient, ghostClientMap);
        // 存入集合
        referenceClientMap.put(key, client);
        // 從ghostClientMap中移除
        ghostClientMap.remove(key);
        // 從對象鎖中移除
        locks.remove(key);
        return client;
    }
}

該方法是獲得分享的客戶端連接。

9.initClient
private ExchangeClient initClient(URL url) {

    // client type setting.
    // 獲得客戶端的實現方法 默認netty3
    String str = url.getParameter(Constants.CLIENT_KEY, url.getParameter(Constants.SERVER_KEY, Constants.DEFAULT_REMOTING_CLIENT));

    // 添加編碼器
    url = url.addParameter(Constants.CODEC_KEY, DubboCodec.NAME);
    // enable heartbeat by default
    // 默認開啟心跳
    url = url.addParameterIfAbsent(Constants.HEARTBEAT_KEY, String.valueOf(Constants.DEFAULT_HEARTBEAT));

    // BIO is not allowed since it has severe performance issue.
    if (str != null && str.length() > 0 && !ExtensionLoader.getExtensionLoader(Transporter.class).hasExtension(str)) {
        throw new RpcException("Unsupported client type: " + str + "," +
                " supported client type is " + StringUtils.join(ExtensionLoader.getExtensionLoader(Transporter.class).getSupportedExtensions(), " "));
    }

    ExchangeClient client;
    try {
        // connection should be lazy
        // 是否需要延遲連接,,默認不開啟
        if (url.getParameter(Constants.LAZY_CONNECT_KEY, false)) {
            // 創建延遲連接的客戶端
            client = new LazyConnectExchangeClient(url, requestHandler);
        } else {
            // 否則就直接連接
            client = Exchangers.connect(url, requestHandler);
        }
    } catch (RemotingException e) {
        throw new RpcException("Fail to create remoting client for service(" + url + "): " + e.getMessage(), e);
    }
    return client;
}

該方法是新建一個客戶端連接

10.destroy
@Override
public void destroy() {
    // 遍歷服務器逐個關閉
    for (String key : new ArrayList(serverMap.keySet())) {
        ExchangeServer server = serverMap.remove(key);
        if (server != null) {
            try {
                if (logger.isInfoEnabled()) {
                    logger.info("Close dubbo server: " + server.getLocalAddress());
                }
                server.close(ConfigUtils.getServerShutdownTimeout());
            } catch (Throwable t) {
                logger.warn(t.getMessage(), t);
            }
        }
    }

    // 遍歷客戶端集合逐個關閉
    for (String key : new ArrayList(referenceClientMap.keySet())) {
        ExchangeClient client = referenceClientMap.remove(key);
        if (client != null) {
            try {
                if (logger.isInfoEnabled()) {
                    logger.info("Close dubbo connect: " + client.getLocalAddress() + "-->" + client.getRemoteAddress());
                }
                client.close(ConfigUtils.getServerShutdownTimeout());
            } catch (Throwable t) {
                logger.warn(t.getMessage(), t);
            }
        }
    }

    // 遍歷懶加載的集合,逐個關閉客戶端
    for (String key : new ArrayList(ghostClientMap.keySet())) {
        ExchangeClient client = ghostClientMap.remove(key);
        if (client != null) {
            try {
                if (logger.isInfoEnabled()) {
                    logger.info("Close dubbo connect: " + client.getLocalAddress() + "-->" + client.getRemoteAddress());
                }
                client.close(ConfigUtils.getServerShutdownTimeout());
            } catch (Throwable t) {
                logger.warn(t.getMessage(), t);
            }
        }
    }
    stubServiceMethodsMap.clear();
    super.destroy();
}

該方法是銷毀的方法重寫。

(四)ChannelWrappedInvoker

該類是對當前通道內的客戶端調用消息進行包裝

1.屬性
/**
 * 通道
 */
private final Channel channel;
/**
 * 服務key
 */
private final String serviceKey;
/**
 * 當前的客戶端
 */
private final ExchangeClient currentClient;
2.doInvoke
@Override
protected Result doInvoke(Invocation invocation) throws Throwable {
    RpcInvocation inv = (RpcInvocation) invocation;
    // use interface"s name as service path to export if it"s not found on client side
    // 設置服務path,默認用接口名稱
    inv.setAttachment(Constants.PATH_KEY, getInterface().getName());
    // 設置回調的服務key
    inv.setAttachment(Constants.CALLBACK_SERVICE_KEY, serviceKey);

    try {
        // 如果是異步的
        if (getUrl().getMethodParameter(invocation.getMethodName(), Constants.ASYNC_KEY, false)) { // may have concurrency issue
            // 直接發送請求消息
            currentClient.send(inv, getUrl().getMethodParameter(invocation.getMethodName(), Constants.SENT_KEY, false));
            return new RpcResult();
        }
        // 獲得超時時間
        int timeout = getUrl().getMethodParameter(invocation.getMethodName(), Constants.TIMEOUT_KEY, Constants.DEFAULT_TIMEOUT);
        if (timeout > 0) {
            return (Result) currentClient.request(inv, timeout).get();
        } else {
            return (Result) currentClient.request(inv).get();
        }
    } catch (RpcException e) {
        throw e;
    } catch (TimeoutException e) {
        throw new RpcException(RpcException.TIMEOUT_EXCEPTION, e.getMessage(), e);
    } catch (RemotingException e) {
        throw new RpcException(RpcException.NETWORK_EXCEPTION, e.getMessage(), e);
    } catch (Throwable e) { // here is non-biz exception, wrap it.
        throw new RpcException(e.getMessage(), e);
    }
}

該方法是在invoker調用的時候對發送請求消息進行了包裝。

3.ChannelWrapper

該類是個內部沒,繼承了ClientDelegate,其中將編碼器變成了dubbo的編碼器,其他方法比較簡單。

(五)DecodeableRpcInvocation

該類主要做了對于會話域內的數據進行序列化和解碼。

1.屬性
private static final Logger log = LoggerFactory.getLogger(DecodeableRpcInvocation.class);

/**
 * 通道
 */
private Channel channel;

/**
 * 序列化類型
 */
private byte serializationType;

/**
 * 輸入流
 */
private InputStream inputStream;

/**
 * 請求
 */
private Request request;

/**
 * 是否解碼
 */
private volatile boolean hasDecoded;
2.decode
@Override
public void decode() throws Exception {
    // 如果沒有解碼,則進行解碼
    if (!hasDecoded && channel != null && inputStream != null) {
        try {
            decode(channel, inputStream);
        } catch (Throwable e) {
            if (log.isWarnEnabled()) {
                log.warn("Decode rpc invocation failed: " + e.getMessage(), e);
            }
            request.setBroken(true);
            request.setData(e);
        } finally {
            // 設置已經解碼
            hasDecoded = true;
        }
    }
}

@Override
public Object decode(Channel channel, InputStream input) throws IOException {
    // 對數據進行反序列化
    ObjectInput in = CodecSupport.getSerialization(channel.getUrl(), serializationType)
            .deserialize(channel.getUrl(), input);

    // dubbo版本
    String dubboVersion = in.readUTF();
    // 請求中放入dubbo版本
    request.setVersion(dubboVersion);
    // 附加值內加入dubbo版本,path以及版本號
    setAttachment(Constants.DUBBO_VERSION_KEY, dubboVersion);

    setAttachment(Constants.PATH_KEY, in.readUTF());
    setAttachment(Constants.VERSION_KEY, in.readUTF());

    // 設置方法名稱
    setMethodName(in.readUTF());
    try {
        // 方法參數數組
        Object[] args;
        // 方法參數類型數組
        Class[] pts;
        // 描述
        String desc = in.readUTF();
        // 如果為空,則方法參數數組和對方法參數類型數組都設置為空
        if (desc.length() == 0) {
            pts = DubboCodec.EMPTY_CLASS_ARRAY;
            args = DubboCodec.EMPTY_OBJECT_ARRAY;
        } else {
            // 分割成類,獲得類數組
            pts = ReflectUtils.desc2classArray(desc);
            // 創建等長等數組
            args = new Object[pts.length];
            for (int i = 0; i < args.length; i++) {
                try {
                    // 讀取對象放入數組中
                    args[i] = in.readObject(pts[i]);
                } catch (Exception e) {
                    if (log.isWarnEnabled()) {
                        log.warn("Decode argument failed: " + e.getMessage(), e);
                    }
                }
            }
        }
        // 設置參數類型
        setParameterTypes(pts);

        Map map = (Map) in.readObject(Map.class);
        if (map != null && map.size() > 0) {
            // 獲得所有附加值
            Map attachment = getAttachments();
            if (attachment == null) {
                attachment = new HashMap();
            }
            // 把流中讀到的配置放入附加值
            attachment.putAll(map);
            // 放回去
            setAttachments(attachment);
        }
        //decode argument ,may be callback
        for (int i = 0; i < args.length; i++) {
            // 如果是回調,則再一次解碼
            args[i] = decodeInvocationArgument(channel, this, pts, i, args[i]);
        }

        setArguments(args);

    } catch (ClassNotFoundException e) {
        throw new IOException(StringUtils.toString("Read invocation data failed.", e));
    } finally {
        if (in instanceof Cleanable) {
            ((Cleanable) in).cleanup();
        }
    }
    return this;
}

該方法就是處理Invocation內數據的邏輯,其中主要是做了序列化和解碼。把讀取出來的設置放入對對應位置傳遞給后面的調用。

(六)DecodeableRpcResult

該類是做了基于dubbo協議對prc結果的解碼

1.屬性
private static final Logger log = LoggerFactory.getLogger(DecodeableRpcResult.class);

/**
 * 通道
 */
private Channel channel;

/**
 * 序列化類型
 */
private byte serializationType;

/**
 * 輸入流
 */
private InputStream inputStream;

/**
 * 響應
 */
private Response response;

/**
 * 會話域
 */
private Invocation invocation;

/**
 * 是否解碼
 */
private volatile boolean hasDecoded;
2.decode
@Override
public Object decode(Channel channel, InputStream input) throws IOException {
    // 反序列化
    ObjectInput in = CodecSupport.getSerialization(channel.getUrl(), serializationType)
            .deserialize(channel.getUrl(), input);
    
    byte flag = in.readByte();
    // 根據返回的不同結果來進行處理
    switch (flag) {
        case DubboCodec.RESPONSE_NULL_VALUE:
            // 返回結果為空
            break;
        case DubboCodec.RESPONSE_VALUE:
            //
            try {
                // 獲得返回類型數組
                Type[] returnType = RpcUtils.getReturnTypes(invocation);
                // 根據返回類型讀取返回結果并且放入RpcResult
                setValue(returnType == null || returnType.length == 0 ? in.readObject() :
                        (returnType.length == 1 ? in.readObject((Class) returnType[0])
                                : in.readObject((Class) returnType[0], returnType[1])));
            } catch (ClassNotFoundException e) {
                throw new IOException(StringUtils.toString("Read response data failed.", e));
            }
            break;
        case DubboCodec.RESPONSE_WITH_EXCEPTION:
            // 返回結果有異常
            try {
                Object obj = in.readObject();
                // 把異常放入RpcResult
                if (obj instanceof Throwable == false)
                    throw new IOException("Response data error, expect Throwable, but get " + obj);
                setException((Throwable) obj);
            } catch (ClassNotFoundException e) {
                throw new IOException(StringUtils.toString("Read response data failed.", e));
            }
            break;
        case DubboCodec.RESPONSE_NULL_VALUE_WITH_ATTACHMENTS:
            // 返回值為空,但是有附加值
            try {
                // 把附加值加入到RpcResult
                setAttachments((Map) in.readObject(Map.class));
            } catch (ClassNotFoundException e) {
                throw new IOException(StringUtils.toString("Read response data failed.", e));
            }
            break;
        case DubboCodec.RESPONSE_VALUE_WITH_ATTACHMENTS:
            // 返回值
            try {
                // 設置返回結果
                Type[] returnType = RpcUtils.getReturnTypes(invocation);
                setValue(returnType == null || returnType.length == 0 ? in.readObject() :
                        (returnType.length == 1 ? in.readObject((Class) returnType[0])
                                : in.readObject((Class) returnType[0], returnType[1])));
                // 設置附加值
                setAttachments((Map) in.readObject(Map.class));
            } catch (ClassNotFoundException e) {
                throw new IOException(StringUtils.toString("Read response data failed.", e));
            }
            break;
        case DubboCodec.RESPONSE_WITH_EXCEPTION_WITH_ATTACHMENTS:
            // 返回結果有異常并且有附加值
            try {
                // 設置異常
                Object obj = in.readObject();
                if (obj instanceof Throwable == false)
                    throw new IOException("Response data error, expect Throwable, but get " + obj);
                setException((Throwable) obj);
                // 設置附加值
                setAttachments((Map) in.readObject(Map.class));
            } catch (ClassNotFoundException e) {
                throw new IOException(StringUtils.toString("Read response data failed.", e));
            }
            break;
        default:
            throw new IOException("Unknown result flag, expect "0" "1" "2", get " + flag);
    }
    if (in instanceof Cleanable) {
        ((Cleanable) in).cleanup();
    }
    return this;
}

@Override
public void decode() throws Exception {
    // 如果沒有解碼
    if (!hasDecoded && channel != null && inputStream != null) {
        try {
            // 進行解碼
            decode(channel, inputStream);
        } catch (Throwable e) {
            if (log.isWarnEnabled()) {
                log.warn("Decode rpc result failed: " + e.getMessage(), e);
            }
            response.setStatus(Response.CLIENT_ERROR);
            response.setErrorMessage(StringUtils.toString(e));
        } finally {
            hasDecoded = true;
        }
    }
}

該方法是對響應結果的解碼,其中根據不同的返回結果來對RpcResult設置不同的值。

(七)LazyConnectExchangeClient

該類實現了ExchangeClient接口,是ExchangeClient的裝飾器,用到了裝飾模式,是延遲連接的客戶端實現類。

1.屬性
// when this warning rises from invocation, program probably have bug.
/**
 * 延遲連接請求錯誤key
 */
static final String REQUEST_WITH_WARNING_KEY = "lazyclient_request_with_warning";
private final static Logger logger = LoggerFactory.getLogger(LazyConnectExchangeClient.class);
/**
 * 是否在延遲連接請求時錯誤
 */
protected final boolean requestWithWarning;
/**
 * url對象
 */
private final URL url;
/**
 * 請求處理器
 */
private final ExchangeHandler requestHandler;
/**
 * 連接鎖
 */
private final Lock connectLock = new ReentrantLock();
// lazy connect, initial state for connection
/**
 * 初始化狀態
 */
private final boolean initialState;
/**
 * 客戶端對象
 */
private volatile ExchangeClient client;
/**
 * 錯誤次數
 */
private AtomicLong warningcount = new AtomicLong(0);

可以看到有屬性ExchangeClient client,該類中很多方法就直接調用了client的方法。

2.構造方法
public LazyConnectExchangeClient(URL url, ExchangeHandler requestHandler) {
    // lazy connect, need set send.reconnect = true, to avoid channel bad status.
    // 默認有重連
    this.url = url.addParameter(Constants.SEND_RECONNECT_KEY, Boolean.TRUE.toString());
    this.requestHandler = requestHandler;
    // 默認延遲連接初始化成功
    this.initialState = url.getParameter(Constants.LAZY_CONNECT_INITIAL_STATE_KEY, Constants.DEFAULT_LAZY_CONNECT_INITIAL_STATE);
    // 默認沒有錯誤
    this.requestWithWarning = url.getParameter(REQUEST_WITH_WARNING_KEY, false);
}
3.initClient
private void initClient() throws RemotingException {
    // 如果客戶端已經初始化,則直接返回
    if (client != null)
        return;
    if (logger.isInfoEnabled()) {
        logger.info("Lazy connect to " + url);
    }
    // 獲得連接鎖
    connectLock.lock();
    try {
        // 二次判空
        if (client != null)
            return;
        // 新建一個客戶端
        this.client = Exchangers.connect(url, requestHandler);
    } finally {
        // 釋放鎖
        connectLock.unlock();
    }
}

該方法是初始化客戶端的方法。

4.request
@Override
public ResponseFuture request(Object request) throws RemotingException {
    warning(request);
    initClient();
    return client.request(request);
}

該方法在調用client.request前調用了前面兩個方法,initClient我在上面講到了,就是用來初始化客戶端的。而warning是用來報錯的。

5.warning
private void warning(Object request) {
    if (requestWithWarning) {
        // 每5000次報錯一次
        if (warningcount.get() % 5000 == 0) {
            logger.warn(new IllegalStateException("safe guard client , should not be called ,must have a bug."));
        }
        warningcount.incrementAndGet();
    }
}

每5000次記錄報錯一次。

(八)ReferenceCountExchangeClient

該類也是對ExchangeClient的裝飾,其中增強了調用次數多功能。

1.屬性
/**
 * url對象
 */
private final URL url;
/**
 * 計數
 */
private final AtomicInteger refenceCount = new AtomicInteger(0);

//    private final ExchangeHandler handler;
/**
 * 延遲連接客戶端集合
 */
private final ConcurrentMap ghostClientMap;
/**
 * 客戶端對象
 */
private ExchangeClient client;
2.replaceWithLazyClient
// ghost client
private LazyConnectExchangeClient replaceWithLazyClient() {
    // this is a defensive operation to avoid client is closed by accident, the initial state of the client is false
    // 設置延遲連接初始化狀態、是否重連、是否已經重連等配置
    URL lazyUrl = url.addParameter(Constants.LAZY_CONNECT_INITIAL_STATE_KEY, Boolean.FALSE)
            .addParameter(Constants.RECONNECT_KEY, Boolean.FALSE)
            .addParameter(Constants.SEND_RECONNECT_KEY, Boolean.TRUE.toString())
            .addParameter("warning", Boolean.TRUE.toString())
            .addParameter(LazyConnectExchangeClient.REQUEST_WITH_WARNING_KEY, true)
            .addParameter("_client_memo", "referencecounthandler.replacewithlazyclient");

    // 獲得服務地址
    String key = url.getAddress();
    // in worst case there"s only one ghost connection.
    // 從集合中獲取客戶端
    LazyConnectExchangeClient gclient = ghostClientMap.get(key);
    // 如果對應等客戶端不存在或者已經關閉連接,則重新創建一個延遲連接等客戶端,并且放入集合
    if (gclient == null || gclient.isClosed()) {
        gclient = new LazyConnectExchangeClient(lazyUrl, client.getExchangeHandler());
        ghostClientMap.put(key, gclient);
    }
    return gclient;
}

該方法是用延遲連接替代,該方法在close方法中被調用。

3.close
@Override
public void close(int timeout) {
    if (refenceCount.decrementAndGet() <= 0) {
        if (timeout == 0) {
            client.close();
        } else {
            client.close(timeout);
        }
        client = replaceWithLazyClient();
    }
}
(九)FutureAdapter

該類實現了Future接口,是響應的Future適配器。其中是基于ResponseFuture做適配。其中比較簡單,我就不多講解了。

(十)CallbackServiceCodec

該類是針對回調服務的編解碼器。

1.屬性
/**
 * 代理工廠
 */
private static final ProxyFactory proxyFactory = ExtensionLoader.getExtensionLoader(ProxyFactory.class).getAdaptiveExtension();
/**
 * dubbo協議
 */
private static final DubboProtocol protocol = DubboProtocol.getDubboProtocol();
/**
 * 回調的標志
 */
private static final byte CALLBACK_NONE = 0x0;
/**
 * 回調的創建標志
 */
private static final byte CALLBACK_CREATE = 0x1;
/**
 * 回調的銷毀標志
 */
private static final byte CALLBACK_DESTROY = 0x2;
/**
 * 回調參數key
 */
private static final String INV_ATT_CALLBACK_KEY = "sys_callback_arg-";
2.encodeInvocationArgument
public static Object encodeInvocationArgument(Channel channel, RpcInvocation inv, int paraIndex) throws IOException {
    // get URL directly
    // 直接獲得url
    URL url = inv.getInvoker() == null ? null : inv.getInvoker().getUrl();
    // 設置回調標志
    byte callbackstatus = isCallBack(url, inv.getMethodName(), paraIndex);
    // 獲得參數集合
    Object[] args = inv.getArguments();
    // 獲得參數類型集合
    Class[] pts = inv.getParameterTypes();
    // 根據不同的回調狀態來設置附加值和返回參數
    switch (callbackstatus) {
        case CallbackServiceCodec.CALLBACK_NONE:
            return args[paraIndex];
        case CallbackServiceCodec.CALLBACK_CREATE:
            inv.setAttachment(INV_ATT_CALLBACK_KEY + paraIndex, exportOrunexportCallbackService(channel, url, pts[paraIndex], args[paraIndex], true));
            return null;
        case CallbackServiceCodec.CALLBACK_DESTROY:
            inv.setAttachment(INV_ATT_CALLBACK_KEY + paraIndex, exportOrunexportCallbackService(channel, url, pts[paraIndex], args[paraIndex], false));
            return null;
        default:
            return args[paraIndex];
    }
}

該方法是對會話域的信息進行編碼。

3.decodeInvocationArgument
public static Object decodeInvocationArgument(Channel channel, RpcInvocation inv, Class[] pts, int paraIndex, Object inObject) throws IOException {
    // if it"s a callback, create proxy on client side, callback interface on client side can be invoked through channel
    // need get URL from channel and env when decode
    URL url = null;
    try {
        // 獲得url
        url = DubboProtocol.getDubboProtocol().getInvoker(channel, inv).getUrl();
    } catch (RemotingException e) {
        if (logger.isInfoEnabled()) {
            logger.info(e.getMessage(), e);
        }
        return inObject;
    }
    // 獲得回調狀態
    byte callbackstatus = isCallBack(url, inv.getMethodName(), paraIndex);
    // 根據回調狀態來返回結果
    switch (callbackstatus) {
        case CallbackServiceCodec.CALLBACK_NONE:
            return inObject;
        case CallbackServiceCodec.CALLBACK_CREATE:
            try {
                return referOrdestroyCallbackService(channel, url, pts[paraIndex], inv, Integer.parseInt(inv.getAttachment(INV_ATT_CALLBACK_KEY + paraIndex)), true);
            } catch (Exception e) {
                logger.error(e.getMessage(), e);
                throw new IOException(StringUtils.toString(e));
            }
        case CallbackServiceCodec.CALLBACK_DESTROY:
            try {
                return referOrdestroyCallbackService(channel, url, pts[paraIndex], inv, Integer.parseInt(inv.getAttachment(INV_ATT_CALLBACK_KEY + paraIndex)), false);
            } catch (Exception e) {
                throw new IOException(StringUtils.toString(e));
            }
        default:
            return inObject;
    }
}

該方法是對會話域內的信息進行解碼。

4.isCallBack
private static byte isCallBack(URL url, String methodName, int argIndex) {
    // parameter callback rule: method-name.parameter-index(starting from 0).callback
    // 參數的規則:ethod-name.parameter-index(starting from 0).callback
    byte isCallback = CALLBACK_NONE;
    if (url != null) {
        // 獲得回調的值
        String callback = url.getParameter(methodName + "." + argIndex + ".callback");
        if (callback != null) {
            // 如果為true,則設置為創建標志
            if (callback.equalsIgnoreCase("true")) {
                isCallback = CALLBACK_CREATE;
                // 如果為false,則設置為銷毀標志
            } else if (callback.equalsIgnoreCase("false")) {
                isCallback = CALLBACK_DESTROY;
            }
        }
    }
    return isCallback;
}

該方法是根據url攜帶的參數設置回調的標志,以供執行不同的編解碼邏輯。

5.exportOrunexportCallbackService
private static String exportOrunexportCallbackService(Channel channel, URL url, Class clazz, Object inst, Boolean export) throws IOException {
    // 返回對象的hashCode
    int instid = System.identityHashCode(inst);

    Map params = new HashMap(3);
    // no need to new client again
    // 設置不是服務端標志為否
    params.put(Constants.IS_SERVER_KEY, Boolean.FALSE.toString());
    // mark it"s a callback, for troubleshooting
    // 設置是回調服務標志為true
    params.put(Constants.IS_CALLBACK_SERVICE, Boolean.TRUE.toString());
    String group = url.getParameter(Constants.GROUP_KEY);
    if (group != null && group.length() > 0) {
        // 設置是消費側還是提供側
        params.put(Constants.GROUP_KEY, group);
    }
    // add method, for verifying against method, automatic fallback (see dubbo protocol)
    // 添加方法,在dubbo的協議里面用到
    params.put(Constants.METHODS_KEY, StringUtils.join(Wrapper.getWrapper(clazz).getDeclaredMethodNames(), ","));

    Map tmpmap = new HashMap(url.getParameters());
    tmpmap.putAll(params);
    // 移除版本信息
    tmpmap.remove(Constants.VERSION_KEY);// doesn"t need to distinguish version for callback
    // 設置接口名
    tmpmap.put(Constants.INTERFACE_KEY, clazz.getName());
    // 創建服務暴露的url
    URL exporturl = new URL(DubboProtocol.NAME, channel.getLocalAddress().getAddress().getHostAddress(), channel.getLocalAddress().getPort(), clazz.getName() + "." + instid, tmpmap);

    // no need to generate multiple exporters for different channel in the same JVM, cache key cannot collide.

    // 獲得緩存的key
    String cacheKey = getClientSideCallbackServiceCacheKey(instid);
    // 獲得計數的key
    String countkey = getClientSideCountKey(clazz.getName());
    // 如果是暴露服務
    if (export) {
        // one channel can have multiple callback instances, no need to re-export for different instance.
        if (!channel.hasAttribute(cacheKey)) {
            if (!isInstancesOverLimit(channel, url, clazz.getName(), instid, false)) {
                // 獲得代理對象
                Invoker invoker = proxyFactory.getInvoker(inst, clazz, exporturl);
                // should destroy resource?
                // 暴露服務
                Exporter exporter = protocol.export(invoker);
                // this is used for tracing if instid has published service or not.
                // 放到通道
                channel.setAttribute(cacheKey, exporter);
                logger.info("export a callback service :" + exporturl + ", on " + channel + ", url is: " + url);
                // 計數器加1
                increaseInstanceCount(channel, countkey);
            }
        }
    } else {
        // 如果通道內已經有該服務的緩存
        if (channel.hasAttribute(cacheKey)) {
            // 則獲得該暴露者
            Exporter exporter = (Exporter) channel.getAttribute(cacheKey);
            // 取消暴露
            exporter.unexport();
            // 移除該緩存
            channel.removeAttribute(cacheKey);
            // 計數器減1
            decreaseInstanceCount(channel, countkey);
        }
    }
    return String.valueOf(instid);
}

該方法是在客戶端側暴露服務和取消暴露服務。

6.referOrdestroyCallbackService
private static Object referOrdestroyCallbackService(Channel channel, URL url, Class clazz, Invocation inv, int instid, boolean isRefer) {
    Object proxy = null;
    // 獲得服務調用的緩存key
    String invokerCacheKey = getServerSideCallbackInvokerCacheKey(channel, clazz.getName(), instid);
    // 獲得代理緩存key
    String proxyCacheKey = getServerSideCallbackServiceCacheKey(channel, clazz.getName(), instid);
    // 從通道內獲得代理對象
    proxy = channel.getAttribute(proxyCacheKey);
    // 獲得計數器key
    String countkey = getServerSideCountKey(channel, clazz.getName());
    // 如果是服務引用
    if (isRefer) {
        // 如果代理對象為空
        if (proxy == null) {
            // 獲得服務引用的url
            URL referurl = URL.valueOf("callback://" + url.getAddress() + "/" + clazz.getName() + "?" + Constants.INTERFACE_KEY + "=" + clazz.getName());
            referurl = referurl.addParametersIfAbsent(url.getParameters()).removeParameter(Constants.METHODS_KEY);
            if (!isInstancesOverLimit(channel, referurl, clazz.getName(), instid, true)) {
                @SuppressWarnings("rawtypes")
                Invoker invoker = new ChannelWrappedInvoker(clazz, channel, referurl, String.valueOf(instid));
                // 獲得代理類
                proxy = proxyFactory.getProxy(invoker);
                // 設置代理類
                channel.setAttribute(proxyCacheKey, proxy);
                // 設置實體域
                channel.setAttribute(invokerCacheKey, invoker);
                // 計數器加1
                increaseInstanceCount(channel, countkey);

                //convert error fail fast .
                //ignore concurrent problem. 
                Set> callbackInvokers = (Set>) channel.getAttribute(Constants.CHANNEL_CALLBACK_KEY);
                if (callbackInvokers == null) {
                    // 創建回調的服務實體域集合
                    callbackInvokers = new ConcurrentHashSet>(1);
                    // 把該實體域加入集合中
                    callbackInvokers.add(invoker);
                    channel.setAttribute(Constants.CHANNEL_CALLBACK_KEY, callbackInvokers);
                }
                logger.info("method " + inv.getMethodName() + " include a callback service :" + invoker.getUrl() + ", a proxy :" + invoker + " has been created.");
            }
        }
    } else {
        // 銷毀
        if (proxy != null) {
            Invoker invoker = (Invoker) channel.getAttribute(invokerCacheKey);
            try {
                Set> callbackInvokers = (Set>) channel.getAttribute(Constants.CHANNEL_CALLBACK_KEY);
                if (callbackInvokers != null) {
                    // 從集合中移除
                    callbackInvokers.remove(invoker);
                }
                // 銷毀該調用
                invoker.destroy();
            } catch (Exception e) {
                logger.error(e.getMessage(), e);
            }
            // cancel refer, directly remove from the map
            // 取消引用,直接從集合中移除
            channel.removeAttribute(proxyCacheKey);
            channel.removeAttribute(invokerCacheKey);
            // 計數器減1
            decreaseInstanceCount(channel, countkey);
        }
    }
    return proxy;
}

該方法是在服務端側進行服務引用或者銷毀回調服務。

(十一)DubboCodec

該類是dubbo的編解碼器,分別針對dubbo協議的request和response進行編碼和解碼。

1.屬性
/**
 * dubbo名稱
 */
public static final String NAME = "dubbo";
/**
 * 協議版本號
 */
public static final String DUBBO_VERSION = Version.getProtocolVersion();
/**
 * 響應攜帶著異常
 */
public static final byte RESPONSE_WITH_EXCEPTION = 0;
/**
 * 響應
 */
public static final byte RESPONSE_VALUE = 1;
/**
 * 響應結果為空
 */
public static final byte RESPONSE_NULL_VALUE = 2;
/**
 * 響應結果有異常并且帶有附加值
 */
public static final byte RESPONSE_WITH_EXCEPTION_WITH_ATTACHMENTS = 3;
/**
 * 響應結果有附加值
 */
public static final byte RESPONSE_VALUE_WITH_ATTACHMENTS = 4;
/**
 * 響應結果為空并帶有附加值
 */
public static final byte RESPONSE_NULL_VALUE_WITH_ATTACHMENTS = 5;
/**
 * 對象空集合
 */
public static final Object[] EMPTY_OBJECT_ARRAY = new Object[0];
/**
 * 空的類集合
 */
public static final Class[] EMPTY_CLASS_ARRAY = new Class[0];
private static final Logger log = LoggerFactory.getLogger(DubboCodec.class);
2.decodeBody
@Override
protected Object decodeBody(Channel channel, InputStream is, byte[] header) throws IOException {
    byte flag = header[2], proto = (byte) (flag & SERIALIZATION_MASK);
    // get request id.
    long id = Bytes.bytes2long(header, 4);
    // 如果是response
    if ((flag & FLAG_REQUEST) == 0) {
        // decode response.
        // 創建一個response
        Response res = new Response(id);
        // 如果是事件,則設置事件,這里有個問題,我提交了pr在新版本已經修復
        if ((flag & FLAG_EVENT) != 0) {
            res.setEvent(Response.HEARTBEAT_EVENT);
        }
        // get status.
        // 設置狀態
        byte status = header[3];
        res.setStatus(status);
        try {
            // 反序列化
            ObjectInput in = CodecSupport.deserialize(channel.getUrl(), is, proto);
            // 如果狀態是響應成功
            if (status == Response.OK) {
                Object data;
                // 如果是心跳事件,則按照心跳事件解碼
                if (res.isHeartbeat()) {
                    data = decodeHeartbeatData(channel, in);
                } else if (res.isEvent()) {
                    // 如果是事件,則
                    data = decodeEventData(channel, in);
                } else {
                    // 否則對結果進行解碼
                    DecodeableRpcResult result;
                    if (channel.getUrl().getParameter(
                            Constants.DECODE_IN_IO_THREAD_KEY,
                            Constants.DEFAULT_DECODE_IN_IO_THREAD)) {
                        result = new DecodeableRpcResult(channel, res, is,
                                (Invocation) getRequestData(id), proto);
                        result.decode();
                    } else {
                        result = new DecodeableRpcResult(channel, res,
                                new UnsafeByteArrayInputStream(readMessageData(is)),
                                (Invocation) getRequestData(id), proto);
                    }
                    data = result;
                }
                // 把結果重新放入response中
                res.setResult(data);
            } else {
                // 否則設置錯誤信息
                res.setErrorMessage(in.readUTF());
            }
        } catch (Throwable t) {
            if (log.isWarnEnabled()) {
                log.warn("Decode response failed: " + t.getMessage(), t);
            }
            res.setStatus(Response.CLIENT_ERROR);
            res.setErrorMessage(StringUtils.toString(t));
        }
        return res;
    } else {
        // decode request.
        // 如果該消息是request
        Request req = new Request(id);
        // 設置版本
        req.setVersion(Version.getProtocolVersion());
        // 設置是否是雙向請求
        req.setTwoWay((flag & FLAG_TWOWAY) != 0);
        // 設置是否是事件,該地方問題也在新版本修復
        if ((flag & FLAG_EVENT) != 0) {
            req.setEvent(Request.HEARTBEAT_EVENT);
        }
        try {
            Object data;
            // 反序列化
            ObjectInput in = CodecSupport.deserialize(channel.getUrl(), is, proto);
            // 進行解碼
            if (req.isHeartbeat()) {
                data = decodeHeartbeatData(channel, in);
            } else if (req.isEvent()) {
                data = decodeEventData(channel, in);
            } else {
                DecodeableRpcInvocation inv;
                if (channel.getUrl().getParameter(
                        Constants.DECODE_IN_IO_THREAD_KEY,
                        Constants.DEFAULT_DECODE_IN_IO_THREAD)) {
                    inv = new DecodeableRpcInvocation(channel, req, is, proto);
                    inv.decode();
                } else {
                    inv = new DecodeableRpcInvocation(channel, req,
                            new UnsafeByteArrayInputStream(readMessageData(is)), proto);
                }
                data = inv;
            }
            // 把body數據設置到response
            req.setData(data);
        } catch (Throwable t) {
            if (log.isWarnEnabled()) {
                log.warn("Decode request failed: " + t.getMessage(), t);
            }
            // bad request
            req.setBroken(true);
            req.setData(t);
        }
        return req;
    }
}

該方法是對request和response進行解碼,用位運算來進行解碼,其中的邏輯跟我在 《dubbo源碼解析(十)遠程通信——Exchange層》中講到的編解碼器邏輯差不多。

3.encodeRequestData
@Override
protected void encodeRequestData(Channel channel, ObjectOutput out, Object data, String version) throws IOException {
    RpcInvocation inv = (RpcInvocation) data;

    // 輸出版本
    out.writeUTF(version);
    // 輸出path
    out.writeUTF(inv.getAttachment(Constants.PATH_KEY));
    // 輸出版本號
    out.writeUTF(inv.getAttachment(Constants.VERSION_KEY));

    // 輸出方法名稱
    out.writeUTF(inv.getMethodName());
    // 輸出參數類型
    out.writeUTF(ReflectUtils.getDesc(inv.getParameterTypes()));
    // 輸出參數
    Object[] args = inv.getArguments();
    if (args != null)
        for (int i = 0; i < args.length; i++) {
            out.writeObject(encodeInvocationArgument(channel, inv, i));
        }
    // 輸出附加值
    out.writeObject(inv.getAttachments());
}

該方法是對請求數據的編碼。

4.encodeResponseData
@Override
protected void encodeResponseData(Channel channel, ObjectOutput out, Object data, String version) throws IOException {
    Result result = (Result) data;
    // currently, the version value in Response records the version of Request
    boolean attach = Version.isSupportResponseAttatchment(version);
    // 獲得異常
    Throwable th = result.getException();
    if (th == null) {
        Object ret = result.getValue();
        // 根據結果的不同輸出不同的值
        if (ret == null) {
            out.writeByte(attach ? RESPONSE_NULL_VALUE_WITH_ATTACHMENTS : RESPONSE_NULL_VALUE);
        } else {
            out.writeByte(attach ? RESPONSE_VALUE_WITH_ATTACHMENTS : RESPONSE_VALUE);
            out.writeObject(ret);
        }
    } else {
        // 如果有異常,則輸出異常
        out.writeByte(attach ? RESPONSE_WITH_EXCEPTION_WITH_ATTACHMENTS : RESPONSE_WITH_EXCEPTION);
        out.writeObject(th);
    }

    if (attach) {
        // returns current version of Response to consumer side.
        // 在附加值中加入版本號
        result.getAttachments().put(Constants.DUBBO_VERSION_KEY, Version.getProtocolVersion());
        // 輸出版本號
        out.writeObject(result.getAttachments());
    }
}

該方法是對響應數據的編碼。

(十二)DubboCountCodec

該類是對DubboCodec的功能增強,

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/73123.html

相關文章

  • dubbo源碼解析(四十八)異步化改造

    摘要:大揭秘異步化改造目標從源碼的角度分析的新特性中對于異步化的改造原理。看源碼解析四十六消費端發送請求過程講到的十四的,在以前的邏輯會直接在方法中根據配置區分同步異步單向調用。改為關于可以參考源碼解析十遠程通信層的六。 2.7大揭秘——異步化改造 目標:從源碼的角度分析2.7的新特性中對于異步化的改造原理。 前言 dubbo中提供了很多類型的協議,關于協議的系列可以查看下面的文章: du...

    lijinke666 評論0 收藏0
  • dubbo源碼解析(四十六)消費端發送請求過程

    摘要:可以參考源碼解析二十四遠程調用協議的八。十六的該類也是用了適配器模式,該類主要的作用就是增加了心跳功能,可以參考源碼解析十遠程通信層的四。二十的可以參考源碼解析十七遠程通信的一。 2.7大揭秘——消費端發送請求過程 目標:從源碼的角度分析一個服務方法調用經歷怎么樣的磨難以后到達服務端。 前言 前一篇文章講到的是引用服務的過程,引用服務無非就是創建出一個代理。供消費者調用服務的相關方法。...

    fish 評論0 收藏0
  • dubbo源碼解析(四十七)服務端處理請求過程

    摘要:而存在的意義就是保證請求或響應對象可在線程池中被解碼,解碼完成后,就會分發到的。 2.7大揭秘——服務端處理請求過程 目標:從源碼的角度分析服務端接收到請求后的一系列操作,最終把客戶端需要的值返回。 前言 上一篇講到了消費端發送請求的過程,該篇就要將服務端處理請求的過程。也就是當服務端收到請求數據包后的一系列處理以及如何返回最終結果。我們也知道消費端在發送請求的時候已經做了編碼,所以我...

    yzzz 評論0 收藏0
  • dubbo源碼解析(四十四)服務暴露過程

    摘要:服務暴露過程目標從源碼的角度分析服務暴露過程。導出服務,包含暴露服務到本地,和暴露服務到遠程兩個過程。其中服務暴露的第八步已經沒有了。將泛化調用版本號或者等信息加入獲得服務暴露地址和端口號,利用內數據組裝成。 dubbo服務暴露過程 目標:從源碼的角度分析服務暴露過程。 前言 本來這一篇一個寫異步化改造的內容,但是最近我一直在想,某一部分的優化改造該怎么去撰寫才能更加的讓讀者理解。我覺...

    light 評論0 收藏0
  • dubbo源碼解析(四十五)服務引用過程

    摘要:服務引用過程目標從源碼的角度分析服務引用過程。并保留服務提供者的部分配置,比如版本,,時間戳等最后將合并后的配置設置為查詢字符串中。的可以參考源碼解析二十三遠程調用的一的源碼分析。 dubbo服務引用過程 目標:從源碼的角度分析服務引用過程。 前言 前面服務暴露過程的文章講解到,服務引用有兩種方式,一種就是直連,也就是直接指定服務的地址來進行引用,這種方式更多的時候被用來做服務測試,不...

    xiaowugui666 評論0 收藏0

發表評論

0條評論

rickchen

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<