d88e4d2c49cafe35913ac0f6726373a32fd5cafd
[mdsal.git] / binding / mdsal-binding-dom-adapter / src / main / java / org / opendaylight / mdsal / binding / dom / adapter / invoke / RpcServiceInvoker.java
1 /*
2  * Copyright (c) 2013 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.mdsal.binding.dom.adapter.invoke;
9
10 import static com.google.common.base.Preconditions.checkArgument;
11
12 import com.google.common.util.concurrent.ListenableFuture;
13 import java.lang.reflect.Method;
14 import java.util.Map;
15 import org.eclipse.jdt.annotation.NonNull;
16 import org.eclipse.jdt.annotation.Nullable;
17 import org.opendaylight.yangtools.yang.binding.DataObject;
18 import org.opendaylight.yangtools.yang.binding.RpcService;
19 import org.opendaylight.yangtools.yang.common.QName;
20 import org.opendaylight.yangtools.yang.common.QNameModule;
21 import org.opendaylight.yangtools.yang.common.RpcResult;
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
24
25 /**
26  * Provides single method invocation of RPCs on supplied instance.
27  *
28  * <p>
29  * RPC Service invoker provides common invocation interface for any subtype of {@link RpcService} via
30  * {@link #invokeRpc(RpcService, QName, DataObject)} method.
31  */
32 public abstract class RpcServiceInvoker {
33     private static final Logger LOG = LoggerFactory.getLogger(RpcServiceInvoker.class);
34
35     /**
36      * Creates RPCServiceInvoker for specified RpcService type.
37      *
38      * @param type RpcService interface, which was generated from model.
39      * @return Cached instance of {@link RpcServiceInvoker} for supplied RPC type.
40      */
41     public static RpcServiceInvoker from(final Class<? extends RpcService> type) {
42         return ClassBasedRpcServiceInvoker.instanceFor(type);
43     }
44
45     /**
46      * Creates an RPCServiceInvoker for specified QName-&lt;Method mapping.
47      *
48      * @param qnameToMethod translation mapping, must not be null nor empty.
49      * @return An {@link RpcServiceInvoker} instance.
50      */
51     public static RpcServiceInvoker from(final Map<QName, Method> qnameToMethod) {
52         checkArgument(!qnameToMethod.isEmpty());
53         QNameModule module = null;
54
55         for (QName qname : qnameToMethod.keySet()) {
56             if (module != null) {
57                 if (!module.equals(qname.getModule())) {
58                     LOG.debug("QNames from different modules {} and {}, falling back to QName map", module,
59                         qname.getModule());
60                     return QNameRpcServiceInvoker.instanceFor(qnameToMethod);
61                 }
62             } else {
63                 module = qname.getModule();
64             }
65         }
66
67         // All module are equal, which means we can use localName only
68         return LocalNameRpcServiceInvoker.instanceFor(module, qnameToMethod);
69     }
70
71     /**
72      * Invokes supplied RPC on provided implementation of RPC Service.
73      *
74      * @param impl Imlementation on which RPC should be invoked.
75      * @param rpcName Name of RPC to be invoked.
76      * @param input Input data for RPC.
77      * @return Future which will complete once rpc procesing is finished.
78      */
79     public abstract ListenableFuture<RpcResult<?>> invokeRpc(@NonNull RpcService impl, @NonNull QName rpcName,
80             @Nullable DataObject input);
81 }