com.salesforce.reactorgrpc.stub.ServerCalls Maven / Gradle / Ivy
/*
* Copyright (c) 2019, Salesforce.com, Inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
package com.salesforce.reactorgrpc.stub;
import com.google.common.base.Preconditions;
import io.grpc.CallOptions;
import io.grpc.Status;
import io.grpc.StatusException;
import io.grpc.StatusRuntimeException;
import io.grpc.stub.ServerCallStreamObserver;
import io.grpc.stub.StreamObserver;
import java.util.function.Function;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/**
* Utility functions for processing different server call idioms. We have one-to-one correspondence
* between utilities in this class and the potential signatures in a generated server stub class so
* that the runtime can vary behavior without requiring regeneration of the stub.
*/
public final class ServerCalls {
private ServerCalls() {
}
/**
* Implements a unary → unary call using {@link Mono} → {@link Mono}.
*/
public static void oneToOne(
TRequest request, StreamObserver responseObserver,
Function, Mono> delegate) {
try {
Mono rxRequest = Mono.just(request);
Mono rxResponse = Preconditions.checkNotNull(delegate.apply(rxRequest));
rxResponse.subscribe(
value -> {
// Don't try to respond if the server has already canceled the request
if (responseObserver instanceof ServerCallStreamObserver && ((ServerCallStreamObserver) responseObserver).isCancelled()) {
return;
}
responseObserver.onNext(value);
},
throwable -> responseObserver.onError(prepareError(throwable)),
responseObserver::onCompleted);
} catch (Throwable throwable) {
responseObserver.onError(prepareError(throwable));
}
}
/**
* Implements a unary → stream call as {@link Mono} → {@link Flux}, where the server responds with a
* stream of messages.
*/
public static void oneToMany(
TRequest request, StreamObserver responseObserver,
Function, Flux> delegate) {
try {
Mono rxRequest = Mono.just(request);
Flux rxResponse = Preconditions.checkNotNull(delegate.apply(rxRequest));
ReactorSubscriberAndServerProducer server = rxResponse.subscribeWith(new ReactorSubscriberAndServerProducer<>());
server.subscribe((ServerCallStreamObserver) responseObserver);
} catch (Throwable throwable) {
responseObserver.onError(prepareError(throwable));
}
}
/**
* Implements a stream → unary call as {@link Flux} → {@link Mono}, where the client transits a stream of
* messages.
*/
public static StreamObserver manyToOne(
StreamObserver responseObserver,
Function, Mono> delegate,
CallOptions options) {
final int prefetch = ReactorCallOptions.getPrefetch(options);
final int lowTide = ReactorCallOptions.getLowTide(options);
ReactorServerStreamObserverAndPublisher streamObserverPublisher =
new ReactorServerStreamObserverAndPublisher<>((ServerCallStreamObserver) responseObserver, null, prefetch, lowTide);
try {
Mono rxResponse = Preconditions.checkNotNull(delegate.apply(Flux.from(streamObserverPublisher)));
rxResponse.subscribe(
value -> {
// Don't try to respond if the server has already canceled the request
if (!streamObserverPublisher.isCancelled()) {
responseObserver.onNext(value);
}
},
throwable -> {
// Don't try to respond if the server has already canceled the request
if (!streamObserverPublisher.isCancelled()) {
streamObserverPublisher.abortPendingCancel();
responseObserver.onError(prepareError(throwable));
}
},
responseObserver::onCompleted
);
} catch (Throwable throwable) {
responseObserver.onError(prepareError(throwable));
}
return streamObserverPublisher;
}
/**
* Implements a bidirectional stream → stream call as {@link Flux} → {@link Flux}, where both the client
* and the server independently stream to each other.
*/
public static StreamObserver manyToMany(
StreamObserver responseObserver,
Function, Flux> delegate,
CallOptions options) {
final int prefetch = ReactorCallOptions.getPrefetch(options);
final int lowTide = ReactorCallOptions.getLowTide(options);
ReactorServerStreamObserverAndPublisher streamObserverPublisher =
new ReactorServerStreamObserverAndPublisher<>((ServerCallStreamObserver) responseObserver, null, prefetch, lowTide);
try {
Flux rxResponse = Preconditions.checkNotNull(delegate.apply(Flux.from(streamObserverPublisher)));
ReactorSubscriberAndServerProducer subscriber = new ReactorSubscriberAndServerProducer<>();
subscriber.subscribe((ServerCallStreamObserver) responseObserver);
// Don't try to respond if the server has already canceled the request
rxResponse.subscribe(subscriber);
} catch (Throwable throwable) {
responseObserver.onError(prepareError(throwable));
}
return streamObserverPublisher;
}
private static Throwable prepareError(Throwable throwable) {
if (throwable instanceof StatusException || throwable instanceof StatusRuntimeException) {
return throwable;
} else {
return Status.fromThrowable(throwable).asException();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy