c0a52b1412d94285c6708267b24705f2d590dbb7
[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  * 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.messageadapter.impl;
25
26
27 import org.onap.appc.adapter.factory.MessageService;
28 import org.onap.appc.adapter.message.MessageAdapterFactory;
29 import org.onap.appc.adapter.message.Producer;
30 import org.onap.appc.configuration.Configuration;
31 import org.onap.appc.configuration.ConfigurationFactory;
32 import com.att.eelf.configuration.EELFLogger;
33 import com.att.eelf.configuration.EELFManager;
34
35 import com.fasterxml.jackson.core.JsonProcessingException;
36 import org.apache.commons.lang.ObjectUtils;
37 import org.onap.appc.domainmodel.lcm.ResponseContext;
38 import org.onap.appc.domainmodel.lcm.VNFOperation;
39 import org.onap.appc.messageadapter.MessageAdapter;
40 import org.onap.appc.requesthandler.conv.Converter;
41 import org.osgi.framework.BundleContext;
42 import org.osgi.framework.FrameworkUtil;
43 import org.osgi.framework.ServiceReference;
44
45 import java.util.HashSet;
46 import java.util.Properties;
47
48 public class MessageAdapterImpl implements MessageAdapter{
49
50     private MessageService messageService;
51     private Producer producer;
52     private String partition ;
53     private Configuration configuration;
54     private HashSet<String> pool;
55     private String writeTopic;
56     private String apiKey;
57     private String apiSecret;
58
59     private static final EELFLogger logger = EELFManager.getInstance().getLogger(MessageAdapterImpl.class);
60
61     /**
62      * Initialize producer client to post messages using configuration properties
63      */
64     @Override
65     public void init(){
66         logger.debug("MessageAdapterImpl - init");
67         this.producer = getProducer();
68     }
69
70     private Producer getProducer() {
71         configuration = ConfigurationFactory.getConfiguration();
72         Properties properties=configuration.getProperties();
73         updateProperties(properties);
74         
75         BundleContext ctx = FrameworkUtil.getBundle(MessageAdapterImpl.class).getBundleContext();
76         if (ctx != null) {
77             ServiceReference svcRef = ctx.getServiceReference(MessageAdapterFactory.class.getName());
78             if (svcRef != null) {
79                 producer = ((MessageAdapterFactory) ctx.getService(svcRef)).createProducer(pool, writeTopic,apiKey, apiSecret);
80             }
81         }
82         return producer;
83     }
84
85
86     private void updateProperties(Properties props) {
87         if (logger.isTraceEnabled()) {
88             logger.trace("Entering to updateProperties with Properties = "+ ObjectUtils.toString(props));
89         }
90         pool = new HashSet<>();
91         if (props != null) {
92             // readTopic = props.getProperty("dmaap.topic.read");
93             writeTopic = props.getProperty("appc.LCM.topic.write");
94             apiKey = props.getProperty("appc.LCM.client.key");
95             apiSecret = props.getProperty("appc.LCM.client.secret");
96             messageService = MessageService.parse(props.getProperty("message.service.type"));
97             //  READ_TIMEOUT = Integer.valueOf(props.getProperty("dmaap.topic.read.timeout", String.valueOf(READ_TIMEOUT)));
98             String hostnames = props.getProperty("appc.LCM.poolMembers");
99             if (hostnames != null && !hostnames.isEmpty()) {
100                 for (String name : hostnames.split(",")) {
101                     pool.add(name);
102                 }
103             }
104         }
105     }
106
107     /**
108      * Posts message to DMaaP. As DMaaP accepts only json messages this method first convert dmaapMessage to json format and post it to DMaaP.
109      * @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).
110      * @return True if message is postes successfully else False
111      */
112     @Override
113     public boolean post(VNFOperation operation, String rpcName, ResponseContext asyncResponse){
114         boolean success;
115         if (logger.isTraceEnabled()) {
116             logger.trace("Entering to post with AsyncResponse = " + ObjectUtils.toString(asyncResponse));
117         }
118         logger.debug("Entered MessageAdapterImpl.post()");
119         String jsonMessage;
120         try {
121                 logger.debug("Before converting Async Response");
122             jsonMessage = Converter.convAsyncResponseToDmaapOutgoingMessageJsonString(operation, rpcName, asyncResponse);
123             if (logger.isDebugEnabled()) {
124                 logger.debug("DMaaP Response = " + jsonMessage);
125             }
126             logger.debug("Before Invoking producer.post(): jsonMessage is::" + jsonMessage);
127             success  = producer.post(this.partition, jsonMessage);
128             logger.debug("After Invoking producer.post()");
129         } catch (JsonProcessingException e1) {
130             logger.error("Error generating Json from DMaaP message "+ e1.getMessage());
131             success= false;
132         }catch (Exception e){
133             logger.error("Error sending message to DMaaP "+e.getMessage());
134             success= false;
135         }
136         logger.debug("Exiting MesageAdapterImpl.post()");
137         if (logger.isTraceEnabled()) {
138             logger.trace("Exiting from post with (success = "+ ObjectUtils.toString(success)+")");
139         }
140         return success;
141     }
142 }