dubbo ReactorClientCalls 源码

  • 2022-10-20
  • 浏览 (248)

dubbo ReactorClientCalls 代码

文件路径:/dubbo-plugin/dubbo-reactive/src/main/java/org/apache/dubbo/reactive/calls/ReactorClientCalls.java

/*
 * 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 org.apache.dubbo.reactive.calls;

import org.apache.dubbo.common.stream.StreamObserver;
import org.apache.dubbo.reactive.ClientTripleReactorPublisher;
import org.apache.dubbo.reactive.ClientTripleReactorSubscriber;
import org.apache.dubbo.rpc.Invoker;
import org.apache.dubbo.rpc.model.StubMethodDescriptor;
import org.apache.dubbo.rpc.protocol.tri.observer.CallStreamObserver;
import org.apache.dubbo.rpc.stub.StubInvocationUtil;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

/**
 * A collection of methods to convert client-side Reactor calls to stream calls.
 */
public final class ReactorClientCalls {

    private ReactorClientCalls() {
    }

    /**
     * Implements a unary -> unary call as Mono -> Mono
     *
     * @param invoker invoker
     * @param monoRequest the mono with request
     * @param methodDescriptor the method descriptor
     * @return the mono with response
     */
    public static <TRequest, TResponse, TInvoker> Mono<TResponse> oneToOne(Invoker<TInvoker> invoker,
                                                                 Mono<TRequest> monoRequest,
                                                                 StubMethodDescriptor methodDescriptor) {
        try {
            return Mono.create(emitter -> monoRequest.subscribe(
                    request -> StubInvocationUtil.unaryCall(invoker, methodDescriptor, request, new StreamObserver<TResponse>() {
                        @Override
                        public void onNext(TResponse tResponse) {
                            emitter.success(tResponse);
                        }

                        @Override
                        public void onError(Throwable throwable) {
                            emitter.error(throwable);
                        }

                        @Override
                        public void onCompleted() {
                            // Do nothing
                        }
                    }),
                    emitter::error
                ));
        } catch (Throwable throwable) {
            return Mono.error(throwable);
        }
    }

    /**
     * Implements a unary -> stream call as Mono -> Flux
     *
     * @param invoker invoker
     * @param monoRequest the mono with request
     * @param methodDescriptor the method descriptor
     * @return the flux with response
     */
    public static <TRequest, TResponse, TInvoker> Flux<TResponse> oneToMany(Invoker<TInvoker> invoker,
                                                                            Mono<TRequest> monoRequest,
                                                                            StubMethodDescriptor methodDescriptor) {
        try {
            return monoRequest
                .flatMapMany(request -> {
                    ClientTripleReactorPublisher<TResponse> clientPublisher = new ClientTripleReactorPublisher<>();
                    StubInvocationUtil.serverStreamCall(invoker, methodDescriptor, request, clientPublisher);
                    return clientPublisher;
                });
        } catch (Throwable throwable) {
            return Flux.error(throwable);
        }
    }

    /**
     * Implements a stream -> unary call as Flux -> Mono
     *
     * @param invoker invoker
     * @param requestFlux the flux with request
     * @param methodDescriptor the method descriptor
     * @return the mono with response
     */
    public static <TRequest, TResponse, TInvoker> Mono<TResponse> manyToOne(Invoker<TInvoker> invoker,
                                                                            Flux<TRequest> requestFlux,
                                                                            StubMethodDescriptor methodDescriptor) {
        try {
            ClientTripleReactorSubscriber<TRequest> clientSubscriber = requestFlux.subscribeWith(new ClientTripleReactorSubscriber<>());
            ClientTripleReactorPublisher<TResponse> clientPublisher = new ClientTripleReactorPublisher<>(
                s -> clientSubscriber.subscribe((CallStreamObserver<TRequest>) s),
                clientSubscriber::cancel);
            return Mono.from(clientPublisher).doOnSubscribe(dummy ->
                StubInvocationUtil.biOrClientStreamCall(invoker, methodDescriptor, clientPublisher));
        } catch (Throwable throwable) {
            return Mono.error(throwable);
        }
    }

    /**
     * Implements a stream -> stream call as Flux -> Flux
     *
     * @param invoker invoker
     * @param requestFlux the flux with request
     * @param methodDescriptor the method descriptor
     * @return the flux with response
     */
    public static <TRequest, TResponse, TInvoker> Flux<TResponse> manyToMany(Invoker<TInvoker> invoker,
                                                                             Flux<TRequest> requestFlux,
                                                                             StubMethodDescriptor methodDescriptor) {
        try {
            ClientTripleReactorSubscriber<TRequest> clientSubscriber = requestFlux.subscribeWith(new ClientTripleReactorSubscriber<>());
            ClientTripleReactorPublisher<TResponse> clientPublisher = new ClientTripleReactorPublisher<>(
                s -> clientSubscriber.subscribe((CallStreamObserver<TRequest>) s),
                clientSubscriber::cancel);
            return Flux.from(clientPublisher).doOnSubscribe(dummy ->
                StubInvocationUtil.biOrClientStreamCall(invoker, methodDescriptor, clientPublisher));
        } catch (Throwable throwable) {
            return Flux.error(throwable);
        }
    }

}

相关信息

dubbo 源码目录

相关文章

dubbo ReactorServerCalls 源码

0  赞