X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-remoterpc-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fremote%2Frpc%2FRemoteRpcImplementation.java;h=0f84abb22e8e6ca92d36e5486dac0f08ba699720;hb=3e5bfba47ae5fe04360343073273a141730daefd;hp=43aa5b7e85a4a3da136de723210c5e3ae3f34cca;hpb=98194e992296b9f8d9871126726a3e11db165b1f;p=controller.git diff --git a/opendaylight/md-sal/sal-remoterpc-connector/src/main/java/org/opendaylight/controller/remote/rpc/RemoteRpcImplementation.java b/opendaylight/md-sal/sal-remoterpc-connector/src/main/java/org/opendaylight/controller/remote/rpc/RemoteRpcImplementation.java index 43aa5b7e85..0f84abb22e 100644 --- a/opendaylight/md-sal/sal-remoterpc-connector/src/main/java/org/opendaylight/controller/remote/rpc/RemoteRpcImplementation.java +++ b/opendaylight/md-sal/sal-remoterpc-connector/src/main/java/org/opendaylight/controller/remote/rpc/RemoteRpcImplementation.java @@ -1,77 +1,95 @@ package org.opendaylight.controller.remote.rpc; import akka.actor.ActorRef; -import com.google.common.util.concurrent.Futures; +import akka.dispatch.OnComplete; import com.google.common.util.concurrent.ListenableFuture; -import org.opendaylight.controller.remote.rpc.messages.ErrorResponse; -import org.opendaylight.controller.remote.rpc.messages.InvokeRoutedRpc; +import com.google.common.util.concurrent.SettableFuture; import org.opendaylight.controller.remote.rpc.messages.InvokeRpc; import org.opendaylight.controller.remote.rpc.messages.RpcResponse; -import org.opendaylight.controller.sal.common.util.RpcErrors; -import org.opendaylight.controller.sal.common.util.Rpcs; import org.opendaylight.controller.sal.core.api.RoutedRpcDefaultImplementation; import org.opendaylight.controller.sal.core.api.RpcImplementation; +import org.opendaylight.controller.xml.codec.XmlUtils; import org.opendaylight.yangtools.yang.common.QName; -import org.opendaylight.yangtools.yang.common.RpcError; +import org.opendaylight.yangtools.yang.common.RpcError.ErrorType; import org.opendaylight.yangtools.yang.common.RpcResult; +import org.opendaylight.yangtools.yang.common.RpcResultBuilder; import org.opendaylight.yangtools.yang.data.api.CompositeNode; -import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier; +import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; import org.opendaylight.yangtools.yang.model.api.SchemaContext; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import scala.concurrent.ExecutionContext; -import java.util.ArrayList; -import java.util.Collection; import java.util.Collections; import java.util.Set; -public class RemoteRpcImplementation implements RpcImplementation, - RoutedRpcDefaultImplementation { - private static final Logger LOG = LoggerFactory.getLogger(RemoteRpcImplementation.class); - private ActorRef rpcBroker; - private SchemaContext schemaContext; - - public RemoteRpcImplementation(ActorRef rpcBroker, SchemaContext schemaContext) { - this.rpcBroker = rpcBroker; - this.schemaContext = schemaContext; - } - - @Override - public ListenableFuture> invokeRpc(QName rpc, InstanceIdentifier identifier, CompositeNode input) { - InvokeRoutedRpc rpcMsg = new InvokeRoutedRpc(rpc, identifier, input); - - return executeMsg(rpcMsg); - } - - @Override - public Set getSupportedRpcs() { - // TODO : check if we need to get this from routing registry - return Collections.emptySet(); - } - - @Override - public ListenableFuture> invokeRpc(QName rpc, CompositeNode input) { - InvokeRpc rpcMsg = new InvokeRpc(rpc, input); - return executeMsg(rpcMsg); - } - - private ListenableFuture> executeMsg(Object rpcMsg) { - CompositeNode result = null; - Collection errors = errors = new ArrayList<>(); - try { - Object response = ActorUtil.executeLocalOperation(rpcBroker, rpcMsg, ActorUtil.ASK_DURATION, ActorUtil.AWAIT_DURATION); - if(response instanceof RpcResponse) { - RpcResponse rpcResponse = (RpcResponse) response; - result = XmlUtils.xmlToCompositeNode(rpcResponse.getResultCompositeNode()); - } else if(response instanceof ErrorResponse) { - ErrorResponse errorResponse = (ErrorResponse) response; - Exception e = errorResponse.getException(); - errors.add(RpcErrors.getRpcError(null, null, null, null, e.getMessage(), null, e.getCause())); - } - } catch (Exception e) { - LOG.error("Error occurred while invoking RPC actor {}", e.toString()); - errors.add(RpcErrors.getRpcError(null, null, null, null, e.getMessage(), null, e.getCause())); +import static akka.pattern.Patterns.ask; + +public class RemoteRpcImplementation implements RpcImplementation, RoutedRpcDefaultImplementation { + private static final Logger LOG = LoggerFactory.getLogger(RemoteRpcImplementation.class); + private final ActorRef rpcBroker; + private final SchemaContext schemaContext; + private final RemoteRpcProviderConfig config; + + public RemoteRpcImplementation(ActorRef rpcBroker, SchemaContext schemaContext, RemoteRpcProviderConfig config) { + this.rpcBroker = rpcBroker; + this.schemaContext = schemaContext; + this.config = config; + } + + @Override + public ListenableFuture> invokeRpc(QName rpc, + YangInstanceIdentifier identifier, CompositeNode input) { + InvokeRpc rpcMsg = new InvokeRpc(rpc, identifier, input); + + return executeMsg(rpcMsg); + } + + @Override + public Set getSupportedRpcs() { + // TODO : check if we need to get this from routing registry + return Collections.emptySet(); + } + + @Override + public ListenableFuture> invokeRpc(QName rpc, CompositeNode input) { + InvokeRpc rpcMsg = new InvokeRpc(rpc, null, input); + return executeMsg(rpcMsg); + } + + private ListenableFuture> executeMsg(InvokeRpc rpcMsg) { + + final SettableFuture> listenableFuture = SettableFuture.create(); + + scala.concurrent.Future future = ask(rpcBroker, rpcMsg, config.getAskDuration()); + + OnComplete onComplete = new OnComplete() { + @Override + public void onComplete(Throwable failure, Object reply) throws Throwable { + if(failure != null) { + LOG.error("InvokeRpc failed", failure); + + RpcResult rpcResult; + if(failure instanceof RpcErrorsException) { + rpcResult = RpcResultBuilder.failed().withRpcErrors( + ((RpcErrorsException)failure).getRpcErrors()).build(); + } else { + rpcResult = RpcResultBuilder.failed().withError( + ErrorType.RPC, failure.getMessage(), failure).build(); + } + + listenableFuture.set(rpcResult); + return; + } + + RpcResponse rpcReply = (RpcResponse)reply; + CompositeNode result = XmlUtils.xmlToCompositeNode(rpcReply.getResultCompositeNode()); + listenableFuture.set(RpcResultBuilder.success(result).build()); + } + }; + + future.onComplete(onComplete, ExecutionContext.Implicits$.MODULE$.global()); + + return listenableFuture; } - return Futures.immediateFuture(Rpcs.getRpcResult(true, result, errors)); - } }