io.hekate.rpc.internal.RpcAggregateMethodClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hekate-all Show documentation
Show all versions of hekate-all Show documentation
Java library for cluster communications and computing.
/*
* Copyright 2020 The Hekate Project
*
* The Hekate Project 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 io.hekate.rpc.internal;
import io.hekate.cluster.ClusterNode;
import io.hekate.messaging.MessagingChannel;
import io.hekate.messaging.MessagingFutureException;
import io.hekate.messaging.operation.AggregateFuture;
import io.hekate.messaging.operation.AggregateResult;
import io.hekate.messaging.retry.GenericRetryConfigurer;
import io.hekate.rpc.RpcAggregate;
import io.hekate.rpc.RpcAggregateException;
import io.hekate.rpc.RpcInterfaceInfo;
import io.hekate.rpc.RpcMethodInfo;
import io.hekate.rpc.RpcService;
import io.hekate.rpc.internal.RpcProtocol.RpcCall;
import io.hekate.rpc.internal.RpcProtocol.RpcCallResult;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.function.Consumer;
import java.util.function.Function;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import static io.hekate.rpc.internal.RpcUtils.mergeToList;
import static io.hekate.rpc.internal.RpcUtils.mergeToMap;
import static io.hekate.rpc.internal.RpcUtils.mergeToSet;
class RpcAggregateMethodClient extends RpcMethodClientBase {
private static final Logger log = LoggerFactory.getLogger(RpcService.class);
private final Function, ?> converter;
private final GenericRetryConfigurer retryPolicy;
private final long timeout;
public RpcAggregateMethodClient(
RpcInterfaceInfo rpc,
String tag,
RpcMethodInfo method,
MessagingChannel channel,
GenericRetryConfigurer retryPolicy,
long timeout
) {
super(rpc, tag, method, channel);
this.retryPolicy = retryPolicy;
this.timeout = timeout;
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Error handling.
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
RpcAggregate config = method.aggregate().orElseThrow(() ->
new AssertionError("Not an aggregate method [rpc=" + rpc + ", method=" + method + ']')
);
Consumer> errorCheck;
if (config.remoteErrors() == RpcAggregate.RemoteErrors.IGNORE) {
errorCheck = null;
} else {
errorCheck = aggregate -> {
if (!aggregate.isSuccess()) {
if (config.remoteErrors() == RpcAggregate.RemoteErrors.WARN) {
if (log.isWarnEnabled()) {
aggregate.errors().forEach((node, err) ->
log.warn("RPC aggregation failed [remote-node={}, method={}#{}]", node, rpc.name(), method.signature(), err)
);
}
} else {
String errMsg = "RPC aggregation failed [method=" + rpc.name() + '#' + method.signature() + ']';
Map partialResults = new HashMap<>(aggregate.resultsByNode().size(), 1.0f);
aggregate.resultsByNode().forEach((node, response) -> {
if (response instanceof RpcCallResult) {
partialResults.put(node, ((RpcCallResult)response).result());
} else {
partialResults.put(node, null);
}
});
throw new RpcAggregateException(errMsg, aggregate.errors(), partialResults);
}
}
};
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Aggregation of results.
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if (method.realReturnType().equals(Map.class)) {
converter = aggregate -> {
if (errorCheck != null) {
errorCheck.accept(aggregate);
}
Map