Create JUnit tests for DmaapMessageConsumer
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / dmaap / DmaapMessageConsumer.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2020 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 com.google.common.collect.Iterables;
24
25 import java.io.FileNotFoundException;
26 import java.io.IOException;
27 import java.time.Duration;
28 import java.util.Properties;
29
30 import org.onap.dmaap.mr.client.MRBatchingPublisher;
31 import org.onap.dmaap.mr.client.MRClientFactory;
32 import org.onap.dmaap.mr.client.MRConsumer;
33 import org.onap.dmaap.mr.client.response.MRConsumerResponse;
34 import org.oransc.policyagent.clients.AsyncRestClient;
35 import org.oransc.policyagent.configuration.ApplicationConfig;
36 import org.oransc.policyagent.exceptions.ServiceException;
37 import org.slf4j.Logger;
38 import org.slf4j.LoggerFactory;
39 import org.springframework.beans.factory.annotation.Autowired;
40 import org.springframework.beans.factory.annotation.Value;
41 import org.springframework.stereotype.Component;
42
43 @Component
44 public class DmaapMessageConsumer implements Runnable {
45
46     private static final Logger logger = LoggerFactory.getLogger(DmaapMessageConsumer.class);
47
48     private final static Duration TIME_BETWEEN_DMAAP_POLLS = Duration.ofSeconds(10);
49
50     private final ApplicationConfig applicationConfig;
51
52     @Value("${server.port}")
53     private int localServerPort;
54
55     @Autowired
56     public DmaapMessageConsumer(ApplicationConfig applicationConfig) {
57         this.applicationConfig = applicationConfig;
58
59         Thread thread = new Thread(this);
60         thread.start();
61     }
62
63     DmaapMessageConsumer(ApplicationConfig applicationConfig, boolean start) {
64         this.applicationConfig = applicationConfig;
65     }
66
67     private boolean isDmaapConfigured() {
68         Properties consumerCfg = applicationConfig.getDmaapConsumerConfig();
69         Properties producerCfg = applicationConfig.getDmaapPublisherConfig();
70         return (consumerCfg != null && consumerCfg.size() > 0 && producerCfg != null && producerCfg.size() > 0);
71     }
72
73     @Override
74     public void run() {
75         while (sleep(TIME_BETWEEN_DMAAP_POLLS) && isDmaapConfigured()) {
76             try {
77                 Iterable<String> dmaapMsgs = fetchAllMessages();
78                 if (dmaapMsgs != null && Iterables.size(dmaapMsgs) > 0) {
79                     logger.debug("Fetched all the messages from DMAAP and will start to process the messages");
80                     for (String msg : dmaapMsgs) {
81                         processMsg(msg);
82                     }
83                 }
84             } catch (Exception e) {
85                 logger.warn("{}: cannot fetch because of {}", this, e.getMessage());
86                 sleep(TIME_BETWEEN_DMAAP_POLLS);
87             }
88         }
89     }
90
91     private Iterable<String> fetchAllMessages() throws ServiceException, IOException {
92         Properties dmaapConsumerProperties = this.applicationConfig.getDmaapConsumerConfig();
93         MRConsumer consumer = getMessageRouterConsumer(dmaapConsumerProperties);
94         MRConsumerResponse response = consumer.fetchWithReturnConsumerResponse();
95         if (response == null || !"200".equals(response.getResponseCode())) {
96             String errorMessage = "DMaaP NULL response received";
97             if (response != null) {
98                 errorMessage = "Error respons " + response.getResponseCode() + " " + response.getResponseMessage()
99                     + " from DMaaP.";
100             }
101             throw new ServiceException(errorMessage);
102         } else {
103             logger.debug("DMaaP consumer received {} : {}", response.getResponseCode(), response.getResponseMessage());
104             return response.getActualMessages();
105         }
106     }
107
108     private void processMsg(String msg) throws IOException {
109         logger.debug("Message Reveived from DMAAP : {}", msg);
110         getDmaapMessageHandler().handleDmaapMsg(msg);
111     }
112
113     private DmaapMessageHandler getDmaapMessageHandler() throws IOException {
114         String agentBaseUrl = "http://localhost:" + this.localServerPort;
115         AsyncRestClient agentClient = createRestClient(agentBaseUrl);
116         Properties dmaapPublisherProperties = applicationConfig.getDmaapPublisherConfig();
117         MRBatchingPublisher producer = getMessageRouterPublisher(dmaapPublisherProperties);
118
119         return createDmaapMessageHandler(agentClient, producer);
120     }
121
122     boolean sleep(Duration duration) {
123         try {
124             Thread.sleep(duration.toMillis());
125             return true;
126         } catch (Exception e) {
127             logger.error("Failed to put the thread to sleep", e);
128             return false;
129         }
130     }
131
132     MRConsumer getMessageRouterConsumer(Properties dmaapConsumerProperties) throws FileNotFoundException, IOException {
133         return MRClientFactory.createConsumer(dmaapConsumerProperties);
134     }
135
136     DmaapMessageHandler createDmaapMessageHandler(AsyncRestClient agentClient, MRBatchingPublisher producer) {
137         return new DmaapMessageHandler(producer, agentClient);
138     }
139
140     AsyncRestClient createRestClient(String agentBaseUrl) {
141         return new AsyncRestClient(agentBaseUrl);
142     }
143
144     MRBatchingPublisher getMessageRouterPublisher(Properties dmaapPublisherProperties)
145         throws FileNotFoundException, IOException {
146         return MRClientFactory.createBatchingPublisher(dmaapPublisherProperties);
147     }
148 }