Fix small things in DMaaP listener area
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / dmaap / DmaapMessageConsumerImpl.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20
21 package org.oransc.policyagent.dmaap;
22
23 import java.io.IOException;
24 import java.util.Properties;
25 import org.onap.dmaap.mr.client.MRClientFactory;
26 import org.onap.dmaap.mr.client.MRConsumer;
27 import org.onap.dmaap.mr.client.response.MRConsumerResponse;
28 import org.oransc.policyagent.configuration.ApplicationConfig;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.scheduling.annotation.EnableScheduling;
33 import org.springframework.scheduling.annotation.Scheduled;
34 import org.springframework.stereotype.Component;
35
36 @Component
37 @EnableScheduling
38 public class DmaapMessageConsumerImpl implements DmaapMessageConsumer {
39
40     private static final Logger logger = LoggerFactory.getLogger(DmaapMessageConsumerImpl.class);
41
42     private boolean alive = false;
43     private final ApplicationConfig applicationConfig;
44     protected MRConsumer consumer;
45     private MRConsumerResponse response = null;
46     @Autowired
47     private DmaapMessageHandler dmaapMessageHandler;
48
49     @Autowired
50     public DmaapMessageConsumerImpl(ApplicationConfig applicationConfig) {
51         this.applicationConfig = applicationConfig;
52     }
53
54     @Scheduled(fixedRate = 1000 * 10) // , initialDelay=60000)
55     @Override
56     public void run() {
57         if (!alive) {
58             init();
59         }
60         if (this.alive) {
61             try {
62                 Iterable<String> dmaapMsgs = fetchAllMessages();
63                 logger.debug("Fetched all the messages from DMAAP and will start to process the messages");
64                 for (String msg : dmaapMsgs) {
65                     processMsg(msg);
66                 }
67             } catch (Exception e) {
68                 logger.error("{}: cannot fetch because of ", this, e.getMessage(), e);
69             }
70         }
71     }
72
73     private Iterable<String> fetchAllMessages() {
74         response = consumer.fetchWithReturnConsumerResponse();
75         if (response == null) {
76             logger.warn("{}: DMaaP NULL response received", this);
77         } else {
78             logger.debug("DMaaP consumer received {} : {}", response.getResponseCode(), response.getResponseMessage());
79             if (!"200".equals(response.getResponseCode())) {
80                 logger.error("DMaaP consumer received: {} : {}", response.getResponseCode(),
81                         response.getResponseMessage());
82             }
83         }
84         return response.getActualMessages();
85     }
86
87     @Override
88     public void init() {
89         Properties dmaapConsumerProperties = applicationConfig.getDmaapConsumerConfig();
90         Properties dmaapPublisherProperties = applicationConfig.getDmaapPublisherConfig();
91         // No need to start if there is no configuration.
92         if (dmaapConsumerProperties == null || dmaapPublisherProperties == null || dmaapConsumerProperties.size() == 0
93                 || dmaapPublisherProperties.size() == 0) {
94             logger.error("DMaaP properties Failed to Load");
95             return;
96         }
97         try {
98             logger.debug("Creating DMAAP Client");
99             logger.debug("dmaapConsumerProperties---> {}", dmaapConsumerProperties.getProperty("topic"));
100             logger.debug("dmaapPublisherProperties---> {}", dmaapPublisherProperties.getProperty("topic"));
101             consumer = MRClientFactory.createConsumer(dmaapConsumerProperties);
102             this.alive = true;
103         } catch (IOException e) {
104             logger.error("Exception occurred while creating Dmaap Consumer", e);
105         }
106     }
107
108     @Override
109     public void processMsg(String msg) throws Exception {
110         logger.debug("Message Reveived from DMAAP : {}", msg);
111         // Call the concurrent Task executor to handle the incoming request
112         dmaapMessageHandler.handleDmaapMsg(msg);
113     }
114
115     @Override
116     public boolean isAlive() {
117         return alive;
118     }
119
120     @Override
121     public void stopConsumer() {
122         alive = false;
123     }
124 }