More license header changes to appc-client files
[appc.git] / appc-client / client-kit / src / main / java / org / onap / appc / client / lcm / impl / business / RPCInvocator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.client.lcm.impl.business;
25
26 import org.onap.appc.RPC;
27 import org.onap.appc.client.lcm.api.ResponseHandler;
28 import org.onap.appc.client.lcm.exceptions.AppcClientBusinessException;
29 import org.onap.appc.client.lcm.exceptions.AppcClientException;
30 import org.onap.appc.client.lcm.exceptions.AppcClientInternalException;
31
32 import java.lang.reflect.InvocationHandler;
33 import java.lang.reflect.Method;
34
35 class RPCInvocator implements InvocationHandler {
36
37     private final LCMRequestProcessor lcmRequestProcessor;
38
39     RPCInvocator(LCMRequestProcessor lcmRequestProcessor) {
40         this.lcmRequestProcessor = lcmRequestProcessor;
41     }
42
43     @Override
44     public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
45         if (isLCMRequest(method)) {
46             try {
47                 return invokeImpl(method, args);
48             }
49             catch (AppcClientInternalException | AppcClientBusinessException e) {
50                 throw new AppcClientException(e);
51             }
52         } else {
53             // Delegate non-RPC Object's methods (hashCode/equals/etc) to the proxy instance itself
54             return method.invoke(proxy, args);
55         }
56     }
57
58     private <T> T invokeImpl(Method method, Object[] args) throws AppcClientInternalException, AppcClientBusinessException {
59         Object rpcInput = args[0];
60         RPC annotation = method.getAnnotation(RPC.class);
61         String rpcName = annotation.name();
62         @SuppressWarnings("unchecked")
63         Class<T> rpcOutputType = (Class<T>) annotation.outputType();
64
65         T result = null;
66         if (isAsync(method)) {
67             @SuppressWarnings("unchecked")
68             ResponseHandler<T> handler = (ResponseHandler<T>) args[1];
69             lcmRequestProcessor.processAsync(rpcInput, rpcName, rpcOutputType, handler);
70         }
71         else {
72             result = lcmRequestProcessor.processSync(rpcInput, rpcName, rpcOutputType);
73         }
74         return result;
75     }
76
77     private boolean isLCMRequest(Method method) {
78         return method.isAnnotationPresent(RPC.class);
79     }
80
81     private boolean isAsync(Method method) {
82         return method.getReturnType().equals(Void.TYPE);
83     }
84 }