Use lambdas to remove references to Function
[netconf.git] / netconf / sal-netconf-connector / src / main / java / org / opendaylight / netconf / sal / connect / netconf / sal / NetconfDeviceRpc.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.netconf.sal.connect.netconf.sal;
9
10 import com.google.common.base.Function;
11 import com.google.common.collect.Collections2;
12 import com.google.common.util.concurrent.CheckedFuture;
13 import com.google.common.util.concurrent.Futures;
14 import com.google.common.util.concurrent.ListenableFuture;
15 import com.google.common.util.concurrent.MoreExecutors;
16 import java.util.Collection;
17 import javax.annotation.Nonnull;
18 import javax.annotation.Nullable;
19 import org.opendaylight.controller.md.sal.dom.api.DOMRpcAvailabilityListener;
20 import org.opendaylight.controller.md.sal.dom.api.DOMRpcException;
21 import org.opendaylight.controller.md.sal.dom.api.DOMRpcIdentifier;
22 import org.opendaylight.controller.md.sal.dom.api.DOMRpcImplementationNotAvailableException;
23 import org.opendaylight.controller.md.sal.dom.api.DOMRpcResult;
24 import org.opendaylight.controller.md.sal.dom.api.DOMRpcService;
25 import org.opendaylight.controller.md.sal.dom.spi.DefaultDOMRpcResult;
26 import org.opendaylight.netconf.api.NetconfMessage;
27 import org.opendaylight.netconf.sal.connect.api.MessageTransformer;
28 import org.opendaylight.netconf.sal.connect.api.RemoteDeviceCommunicator;
29 import org.opendaylight.yangtools.concepts.ListenerRegistration;
30 import org.opendaylight.yangtools.yang.common.RpcResult;
31 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
32 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
33 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
34
35 /**
36  * Invokes RPC by sending netconf message via listener. Also transforms result from NetconfMessage to CompositeNode.
37  */
38 public final class NetconfDeviceRpc implements DOMRpcService {
39
40     private final RemoteDeviceCommunicator<NetconfMessage> listener;
41     private final MessageTransformer<NetconfMessage> transformer;
42     private final Collection<DOMRpcIdentifier> availableRpcs;
43
44     public NetconfDeviceRpc(final SchemaContext schemaContext, final RemoteDeviceCommunicator<NetconfMessage> listener,
45                             final MessageTransformer<NetconfMessage> transformer) {
46         this.listener = listener;
47         this.transformer = transformer;
48
49         availableRpcs = Collections2.transform(schemaContext.getOperations(),
50             input -> DOMRpcIdentifier.create(input.getPath()));
51     }
52
53     @Nonnull
54     @Override
55     public CheckedFuture<DOMRpcResult, DOMRpcException> invokeRpc(@Nonnull final SchemaPath type,
56                                                                   @Nullable final NormalizedNode<?, ?> input) {
57         final NetconfMessage message = transformer.toRpcRequest(type, input);
58         final ListenableFuture<RpcResult<NetconfMessage>> delegateFutureWithPureResult =
59                 listener.sendRequest(message, type.getLastComponent());
60
61         final ListenableFuture<DOMRpcResult> transformed =
62             Futures.transform(delegateFutureWithPureResult, input1 -> {
63                 if (input1.isSuccessful()) {
64                     return transformer.toRpcResult(input1.getResult(), type);
65                 } else {
66                     return new DefaultDOMRpcResult(input1.getErrors());
67                 }
68             }, MoreExecutors.directExecutor());
69
70         return Futures.makeChecked(transformed, new Function<Exception, DOMRpcException>() {
71             @Nullable
72             @Override
73             public DOMRpcException apply(@Nullable final Exception exception) {
74                 return new DOMRpcImplementationNotAvailableException(exception, "Unable to invoke rpc %s", type);
75             }
76         });
77     }
78
79     @Nonnull
80     @Override
81     public <T extends DOMRpcAvailabilityListener> ListenerRegistration<T> registerRpcListener(
82             @Nonnull final T listener) {
83
84         listener.onRpcAvailable(availableRpcs);
85
86         return new ListenerRegistration<T>() {
87             @Override
88             public void close() {
89                 // NOOP, no rpcs appear and disappear in this implementation
90             }
91
92             @Override
93             public T getInstance() {
94                 return listener;
95             }
96         };
97     }
98 }