Merge "Remove sleep from 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.IOException;
26 import java.time.Duration;
27 import java.util.Properties;
28
29 import org.onap.dmaap.mr.client.MRBatchingPublisher;
30 import org.onap.dmaap.mr.client.MRClientFactory;
31 import org.onap.dmaap.mr.client.MRConsumer;
32 import org.onap.dmaap.mr.client.response.MRConsumerResponse;
33 import org.oransc.policyagent.clients.AsyncRestClient;
34 import org.oransc.policyagent.configuration.ApplicationConfig;
35 import org.oransc.policyagent.exceptions.ServiceException;
36 import org.oransc.policyagent.tasks.RefreshConfigTask;
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 /**
44  * The class fetches incoming requests from DMAAP. It uses the timeout parameter that lets the MessageRouter keep the
45  * connection with the Kafka open until requests are sent in.
46  *
47  * If there is no DMaaP configuration in the application configuration, then this service will regularly check the
48  * configuration and start polling DMaaP if the configuration is added. If the DMaaP configuration is removed, then the
49  * service will stop polling and resume checking for configuration.
50  *
51  * Each received request is processed by {@link DmaapMessageHandler}.
52  */
53 @Component
54 public class DmaapMessageConsumer {
55
56     protected static final Duration TIME_BETWEEN_DMAAP_RETRIES = Duration.ofSeconds(10);
57
58     private static final Logger logger = LoggerFactory.getLogger(DmaapMessageConsumer.class);
59
60     private final ApplicationConfig applicationConfig;
61
62     @Value("${server.port}")
63     private int localServerPort;
64
65     @Autowired
66     public DmaapMessageConsumer(ApplicationConfig applicationConfig) {
67         this.applicationConfig = applicationConfig;
68     }
69
70     public Thread start() {
71         Thread thread = new Thread(() -> this.checkConfigLoop());
72         thread.start();
73         return thread;
74     }
75
76     private void checkConfigLoop() {
77         while (!isStopped()) {
78             if (isDmaapConfigured()) {
79                 messageHandlingLoop();
80             } else {
81                 sleep(RefreshConfigTask.CONFIG_REFRESH_INTERVAL);
82             }
83         }
84     }
85
86     private void messageHandlingLoop() {
87         while (!isStopped() && isDmaapConfigured()) {
88             try {
89                 Iterable<String> dmaapMsgs = fetchAllMessages();
90                 if (dmaapMsgs != null && Iterables.size(dmaapMsgs) > 0) {
91                     logger.debug("Fetched all the messages from DMAAP and will start to process the messages");
92                     for (String msg : dmaapMsgs) {
93                         processMsg(msg);
94                     }
95                 }
96             } catch (Exception e) {
97                 logger.warn("Cannot fetch because of {}", e.getMessage());
98                 sleep(TIME_BETWEEN_DMAAP_RETRIES);
99             }
100         }
101     }
102
103     protected boolean isStopped() {
104         return false;
105     }
106
107     protected boolean isDmaapConfigured() {
108         Properties consumerCfg = applicationConfig.getDmaapConsumerConfig();
109         Properties producerCfg = applicationConfig.getDmaapPublisherConfig();
110         return (consumerCfg != null && consumerCfg.size() > 0 && producerCfg != null && producerCfg.size() > 0);
111     }
112
113     protected Iterable<String> fetchAllMessages() throws ServiceException, IOException {
114         Properties dmaapConsumerProperties = this.applicationConfig.getDmaapConsumerConfig();
115         MRConsumer consumer = getMessageRouterConsumer(dmaapConsumerProperties);
116         MRConsumerResponse response = consumer.fetchWithReturnConsumerResponse();
117         if (response == null || !"200".equals(response.getResponseCode())) {
118             String errorMessage = "DMaaP NULL response received";
119             if (response != null) {
120                 errorMessage = "Error respons " + response.getResponseCode() + " " + response.getResponseMessage()
121                     + " from DMaaP.";
122             }
123             throw new ServiceException(errorMessage);
124         } else {
125             logger.debug("DMaaP consumer received {} : {}", response.getResponseCode(), response.getResponseMessage());
126             return response.getActualMessages();
127         }
128     }
129
130     private void processMsg(String msg) throws IOException {
131         logger.debug("Message Reveived from DMAAP : {}", msg);
132         getDmaapMessageHandler().handleDmaapMsg(msg);
133     }
134
135     private DmaapMessageHandler getDmaapMessageHandler() throws IOException {
136         String agentBaseUrl = "https://localhost:" + this.localServerPort;
137         AsyncRestClient agentClient = createRestClient(agentBaseUrl);
138         Properties dmaapPublisherProperties = applicationConfig.getDmaapPublisherConfig();
139         MRBatchingPublisher producer = getMessageRouterPublisher(dmaapPublisherProperties);
140
141         return createDmaapMessageHandler(agentClient, producer);
142     }
143
144     protected void sleep(Duration duration) {
145         try {
146             Thread.sleep(duration.toMillis());
147         } catch (Exception e) {
148             logger.error("Failed to put the thread to sleep", e);
149         }
150     }
151
152     protected MRConsumer getMessageRouterConsumer(Properties dmaapConsumerProperties) throws IOException {
153         return MRClientFactory.createConsumer(dmaapConsumerProperties);
154     }
155
156     protected DmaapMessageHandler createDmaapMessageHandler(AsyncRestClient agentClient, MRBatchingPublisher producer) {
157         return new DmaapMessageHandler(producer, agentClient);
158     }
159
160     protected AsyncRestClient createRestClient(String agentBaseUrl) {
161         return new AsyncRestClient(agentBaseUrl);
162     }
163
164     protected MRBatchingPublisher getMessageRouterPublisher(Properties dmaapPublisherProperties) throws IOException {
165         return MRClientFactory.createBatchingPublisher(dmaapPublisherProperties);
166     }
167 }