Feature for micro service communication
[appc.git] / appc-dispatcher / appc-request-handler / appc-request-handler-core / src / main / java / org / onap / appc / messageadapter / impl / MessageAdapterImpl.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  * Modifications Copyright (C) 2019 Ericsson
10  * =============================================================================
11  * Licensed under the Apache License, Version 2.0 (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  * 
15  *      http://www.apache.org/licenses/LICENSE-2.0
16  * 
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  * 
23  * ============LICENSE_END=========================================================
24  */
25
26 package org.onap.appc.messageadapter.impl;
27
28
29 import org.onap.appc.adapter.factory.MessageService;
30 import org.onap.appc.adapter.message.MessageAdapterFactory;
31 import org.onap.appc.adapter.message.Producer;
32 import org.onap.appc.configuration.Configuration;
33 import org.onap.appc.configuration.ConfigurationFactory;
34 import com.att.eelf.configuration.EELFLogger;
35 import com.att.eelf.configuration.EELFManager;
36 import com.fasterxml.jackson.core.JsonProcessingException;
37 import org.apache.commons.lang.ObjectUtils;
38 import org.onap.appc.domainmodel.lcm.ResponseContext;
39 import org.onap.appc.domainmodel.lcm.VNFOperation;
40 import org.onap.appc.messageadapter.MessageAdapter;
41 import org.onap.appc.requesthandler.conv.Converter;
42 import org.osgi.framework.BundleContext;
43 import org.osgi.framework.FrameworkUtil;
44 import org.osgi.framework.ServiceReference;
45
46 import java.util.HashSet;
47 import java.util.Properties;
48
49 public class MessageAdapterImpl implements MessageAdapter{
50
51     private MessageService messageService;
52     private Producer producer;
53     private String partition ;
54     private Configuration configuration;
55     private HashSet<String> pool;
56     private String writeTopic;
57     private String apiKey;
58     private String apiSecret;
59
60     private static final EELFLogger logger = EELFManager.getInstance().getLogger(MessageAdapterImpl.class);
61
62     /**
63      * Initialize producer client to post messages using configuration properties
64      */
65     @Override
66     public void init(){
67         logger.debug("MessageAdapterImpl - init");
68         this.producer = getProducer();
69     }
70
71     private Producer getProducer() {
72         configuration = ConfigurationFactory.getConfiguration();
73         Properties properties = configuration.getProperties();
74         updateProperties(properties);
75
76         BundleContext ctx = FrameworkUtil.getBundle(MessageAdapterImpl.class).getBundleContext();
77         if (ctx != null) {
78             ServiceReference svcRef = ctx.getServiceReference(MessageAdapterFactory.class.getName());
79             if (svcRef != null) {
80                 producer = ((MessageAdapterFactory) ctx.getService(svcRef)).createProducer(pool, writeTopic, apiKey, apiSecret);
81             }
82         }
83         return producer;
84     }
85
86
87     private void updateProperties(Properties props) {
88         if (logger.isTraceEnabled()) {
89             logger.trace("Entering to updateProperties with Properties = " + ObjectUtils.toString(props));
90         }
91         pool = new HashSet<>();
92         if (props != null) {
93             // readTopic = props.getProperty("dmaap.topic.read");
94             writeTopic = props.getProperty("appc.LCM.topic.write");
95             apiKey = props.getProperty("appc.LCM.client.key");
96             apiSecret = props.getProperty("appc.LCM.client.secret");
97             messageService = MessageService.parse(props.getProperty("message.service.type"));
98             //  READ_TIMEOUT = Integer.valueOf(props.getProperty("dmaap.topic.read.timeout", String.valueOf(READ_TIMEOUT)));
99             String hostnames = props.getProperty("appc.LCM.poolMembers");
100             if (hostnames != null && !hostnames.isEmpty()) {
101                 for (String name : hostnames.split(",")) {
102                     pool.add(name);
103                 }
104             }
105         }
106     }
107
108     /**
109      * Posts message to DMaaP. As DMaaP accepts only json messages this method first convert dmaapMessage to json format and post it to DMaaP.
110      * @param asyncResponse response data that based on it a message will be send to DMaaP (the format of the message that will be sent to DMaaP based on the action and its YANG domainmodel).
111      * @return True if message is postes successfully else False
112      */
113     @Override
114     public boolean post(VNFOperation operation, String rpcName, ResponseContext asyncResponse){
115         boolean success;
116         if (logger.isTraceEnabled()) {
117             logger.trace("Entering to post with AsyncResponse = " + ObjectUtils.toString(asyncResponse));
118         }
119         logger.debug("Entered MessageAdapterImpl.post()");
120         String jsonMessage;
121         try {
122                 logger.debug("Before converting Async Response");
123             jsonMessage = Converter.convAsyncResponseToDmaapOutgoingMessageJsonString(operation, rpcName, asyncResponse);
124             if (logger.isDebugEnabled()) {
125                 logger.debug("DMaaP Response = " + jsonMessage);
126             }
127             logger.debug("Before Invoking producer.post(): jsonMessage is::" + jsonMessage);
128             success = producer.post(this.partition, jsonMessage);
129             logger.debug("After Invoking producer.post()");
130         } catch (JsonProcessingException e1) {
131             logger.error("Error generating Json from DMaaP message " + e1.getMessage());
132             success = false;
133         }catch (Exception e){
134             logger.error("Error sending message to DMaaP " + e.getMessage());
135             success = false;
136         }
137         logger.debug("Exiting MesageAdapterImpl.post()");
138         if (logger.isTraceEnabled()) {
139             logger.trace("Exiting from post with (success = " + ObjectUtils.toString(success) + ")");
140         }
141         return success;
142     }
143 }