org.opendaylight.jsonrpc.provider.cluster.impl.ProxyDOMRpcService Maven / Gradle / Ivy
/*
* Copyright (c) 2020 Lumina Networks, Inc. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*/
package org.opendaylight.jsonrpc.provider.cluster.impl;
import static akka.pattern.Patterns.ask;
import static org.opendaylight.jsonrpc.provider.cluster.impl.ClusterUtil.DEFAULT_RPC_TIMEOUT;
import static org.opendaylight.jsonrpc.provider.cluster.impl.ClusterUtil.durationFromUint16seconds;
import akka.actor.ActorRef;
import akka.actor.ActorSystem;
import akka.dispatch.OnComplete;
import akka.util.Timeout;
import com.google.common.collect.ImmutableList;
import com.google.common.util.concurrent.FluentFuture;
import com.google.common.util.concurrent.ListenableFuture;
import com.google.common.util.concurrent.SettableFuture;
import java.util.Collection;
import java.util.concurrent.TimeUnit;
import org.opendaylight.jsonrpc.provider.cluster.messages.PathAndDataMsg;
import org.opendaylight.jsonrpc.provider.cluster.rpc.EmptyRpcResponse;
import org.opendaylight.jsonrpc.provider.cluster.rpc.InvokeRpcRequest;
import org.opendaylight.jsonrpc.provider.cluster.rpc.InvokeRpcResponse;
import org.opendaylight.mdsal.dom.api.DOMRpcAvailabilityListener;
import org.opendaylight.mdsal.dom.api.DOMRpcException;
import org.opendaylight.mdsal.dom.api.DOMRpcResult;
import org.opendaylight.mdsal.dom.api.DOMRpcService;
import org.opendaylight.mdsal.dom.api.DefaultDOMRpcException;
import org.opendaylight.mdsal.dom.spi.DefaultDOMRpcResult;
import org.opendaylight.yang.gen.v1.urn.opendaylight.jsonrpc.rev161201.Peer;
import org.opendaylight.yangtools.concepts.Registration;
import org.opendaylight.yangtools.yang.common.QName;
import org.opendaylight.yangtools.yang.common.RpcError;
import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier.Absolute;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import scala.concurrent.duration.Duration;
/**
* {@link DOMRpcService} implementation that forwards RPC invocation requests to master actor in cluster.
*
*
* Acknowledgement : this code is inspired by implementation of netconf-topology-singleton.
*
* @author Richard Kosegi
* @since Jul 7, 2020
*/
final class ProxyDOMRpcService implements DOMRpcService {
private static final Logger LOG = LoggerFactory.getLogger(ProxyDOMRpcService.class);
private final ActorRef masterActorRef;
private final Timeout askTimeout;
private final ActorSystem actorSystem;
private final Peer peer;
ProxyDOMRpcService(Peer peer, ActorRef masterActorRef, ClusterDependencies dependencies) {
final Duration askDuration = dependencies.getConfig() == null ? DEFAULT_RPC_TIMEOUT
: durationFromUint16seconds(dependencies.getConfig().getRpcResponseWaitTime(), DEFAULT_RPC_TIMEOUT);
askTimeout = Timeout.apply(askDuration.toSeconds(), TimeUnit.SECONDS);
this.masterActorRef = masterActorRef;
this.peer = peer;
this.actorSystem = dependencies.getActorSystem();
LOG.debug("Created {}", this);
}
@Override
public ListenableFuture extends DOMRpcResult> invokeRpc(QName type, ContainerNode input) {
LOG.debug("[{}] invoke '{}' using {}", peer.getName(), type.getLocalName(), input);
final SettableFuture result = SettableFuture.create();
final InvokeRpcRequest request = InvokeRpcRequest.create(Absolute.of(type), input);
LOG.debug("Sending {} to {}", request, masterActorRef);
ask(masterActorRef, request, askTimeout).onComplete(new OnComplete<>() {
@Override
public void onComplete(final Throwable failure, final Object response) {
if (failure != null) {
if (failure instanceof DOMRpcException) {
result.setException(failure);
} else {
result.setException(
new DefaultDOMRpcException(String.format("%s : RPC invocation failed", peer), failure));
}
return;
}
if (response instanceof EmptyRpcResponse) {
result.set(null);
return;
}
final Collection extends RpcError> errors = ((InvokeRpcResponse) response).getErrors();
final PathAndDataMsg responseData = ((InvokeRpcResponse) response).getData();
final DOMRpcResult rpcResult;
if (responseData == null) {
rpcResult = new DefaultDOMRpcResult(ImmutableList.copyOf(errors));
} else {
rpcResult = new DefaultDOMRpcResult((ContainerNode) responseData.getData(), errors);
}
result.set(rpcResult);
}
}, actorSystem.dispatcher());
LOG.debug("[{}] invocation result {}", peer.getName(), result);
return FluentFuture.from(result);
}
@Override
public Registration registerRpcListener(DOMRpcAvailabilityListener listener) {
throw new UnsupportedOperationException("registerRpcListener is not supported in cluster");
}
@Override
public String toString() {
return "ProxyDOMRpcService [peer=" + peer.getName() + ", askTimeout=" + askTimeout + ", masterActorRef="
+ masterActorRef + "]";
}
}