X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=policy-agent%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fpolicyagent%2Fdmaap%2FDmaapMessageConsumer.java;h=6312e375aaccc7bd55a4c1f9c6f0cccb1fd57a4f;hb=0b10c7fa768f05ae5146ce2f3a69998bb8f97a9f;hp=46dd2ee2a3a4cfe330dd14592988fd3963a401c3;hpb=23bb4461f0d66b568675016e60be1ad478a02e98;p=nonrtric.git diff --git a/policy-agent/src/main/java/org/oransc/policyagent/dmaap/DmaapMessageConsumer.java b/policy-agent/src/main/java/org/oransc/policyagent/dmaap/DmaapMessageConsumer.java index 46dd2ee2..6312e375 100644 --- a/policy-agent/src/main/java/org/oransc/policyagent/dmaap/DmaapMessageConsumer.java +++ b/policy-agent/src/main/java/org/oransc/policyagent/dmaap/DmaapMessageConsumer.java @@ -33,19 +33,31 @@ import org.onap.dmaap.mr.client.response.MRConsumerResponse; import org.oransc.policyagent.clients.AsyncRestClient; import org.oransc.policyagent.configuration.ApplicationConfig; import org.oransc.policyagent.exceptions.ServiceException; +import org.oransc.policyagent.tasks.RefreshConfigTask; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; +/** + * The class fetches incoming requests from DMAAP. It uses the timeout parameter that lets the MessageRouter keep the + * connection with the Kafka open until requests are sent in. + * + *

+ * If there is no DMaaP configuration in the application configuration, then this service will regularly check the + * configuration and start polling DMaaP if the configuration is added. If the DMaaP configuration is removed, then the + * service will stop polling and resume checking for configuration. + * + *

+ * Each received request is processed by {@link DmaapMessageHandler}. + */ @Component -public class DmaapMessageConsumer implements Runnable { +public class DmaapMessageConsumer { - private static final Logger logger = LoggerFactory.getLogger(DmaapMessageConsumer.class); + protected static final Duration TIME_BETWEEN_DMAAP_RETRIES = Duration.ofSeconds(10); - @SuppressWarnings("squid:S00116") // To avoid warning about DMAAP abbreviation. - final Duration TIME_BETWEEN_DMAAP_POLLS = Duration.ofSeconds(10); + private static final Logger logger = LoggerFactory.getLogger(DmaapMessageConsumer.class); private final ApplicationConfig applicationConfig; @@ -55,20 +67,32 @@ public class DmaapMessageConsumer implements Runnable { @Autowired public DmaapMessageConsumer(ApplicationConfig applicationConfig) { this.applicationConfig = applicationConfig; + } - Thread thread = new Thread(this); + /** + * Starts the consumer. If there is a DMaaP configuration, it will start polling for messages. Otherwise it will + * check regularly for the configuration. + * + * @return the running thread, for test purposes. + */ + public Thread start() { + Thread thread = new Thread(this::checkConfigLoop); thread.start(); + return thread; } - private boolean isDmaapConfigured() { - Properties consumerCfg = applicationConfig.getDmaapConsumerConfig(); - Properties producerCfg = applicationConfig.getDmaapPublisherConfig(); - return (consumerCfg != null && consumerCfg.size() > 0 && producerCfg != null && producerCfg.size() > 0); + private void checkConfigLoop() { + while (!isStopped()) { + if (isDmaapConfigured()) { + messageHandlingLoop(); + } else { + sleep(RefreshConfigTask.CONFIG_REFRESH_INTERVAL); + } + } } - @Override - public void run() { - while (sleep(TIME_BETWEEN_DMAAP_POLLS) && isDmaapConfigured()) { + private void messageHandlingLoop() { + while (!isStopped() && isDmaapConfigured()) { try { Iterable dmaapMsgs = fetchAllMessages(); if (dmaapMsgs != null && Iterables.size(dmaapMsgs) > 0) { @@ -78,18 +102,33 @@ public class DmaapMessageConsumer implements Runnable { } } } catch (Exception e) { - logger.warn("{}: cannot fetch because of ", this, e.getMessage(), e); - sleep(TIME_BETWEEN_DMAAP_POLLS); + logger.warn("Cannot fetch because of {}", e.getMessage()); + sleep(TIME_BETWEEN_DMAAP_RETRIES); } } } - private Iterable fetchAllMessages() throws ServiceException, IOException { + protected boolean isStopped() { + return false; + } + + protected boolean isDmaapConfigured() { + Properties consumerCfg = applicationConfig.getDmaapConsumerConfig(); + Properties producerCfg = applicationConfig.getDmaapPublisherConfig(); + return (consumerCfg != null && consumerCfg.size() > 0 && producerCfg != null && producerCfg.size() > 0); + } + + protected Iterable fetchAllMessages() throws ServiceException, IOException { Properties dmaapConsumerProperties = this.applicationConfig.getDmaapConsumerConfig(); - MRConsumer consumer = MRClientFactory.createConsumer(dmaapConsumerProperties); + MRConsumer consumer = getMessageRouterConsumer(dmaapConsumerProperties); MRConsumerResponse response = consumer.fetchWithReturnConsumerResponse(); if (response == null || !"200".equals(response.getResponseCode())) { - throw new ServiceException("DMaaP NULL response received"); + String errorMessage = "DMaaP NULL response received"; + if (response != null) { + errorMessage = "Error respons " + response.getResponseCode() + " " + response.getResponseMessage() + + " from DMaaP."; + } + throw new ServiceException(errorMessage); } else { logger.debug("DMaaP consumer received {} : {}", response.getResponseCode(), response.getResponseMessage()); return response.getActualMessages(); @@ -98,25 +137,39 @@ public class DmaapMessageConsumer implements Runnable { private void processMsg(String msg) throws IOException { logger.debug("Message Reveived from DMAAP : {}", msg); - createDmaapMessageHandler().handleDmaapMsg(msg); + getDmaapMessageHandler().handleDmaapMsg(msg); } - private DmaapMessageHandler createDmaapMessageHandler() throws IOException { - String agentBaseUrl = "http://localhost:" + this.localServerPort; - AsyncRestClient agentClient = new AsyncRestClient(agentBaseUrl); + private DmaapMessageHandler getDmaapMessageHandler() throws IOException { + String agentBaseUrl = "https://localhost:" + this.localServerPort; + AsyncRestClient agentClient = createRestClient(agentBaseUrl); Properties dmaapPublisherProperties = applicationConfig.getDmaapPublisherConfig(); - MRBatchingPublisher producer = MRClientFactory.createBatchingPublisher(dmaapPublisherProperties); + MRBatchingPublisher producer = getMessageRouterPublisher(dmaapPublisherProperties); - return new DmaapMessageHandler(producer, agentClient); + return createDmaapMessageHandler(agentClient, producer); } - private boolean sleep(Duration duration) { + protected void sleep(Duration duration) { try { Thread.sleep(duration.toMillis()); - return true; } catch (Exception e) { logger.error("Failed to put the thread to sleep", e); - return false; } } + + protected MRConsumer getMessageRouterConsumer(Properties dmaapConsumerProperties) throws IOException { + return MRClientFactory.createConsumer(dmaapConsumerProperties); + } + + protected DmaapMessageHandler createDmaapMessageHandler(AsyncRestClient agentClient, MRBatchingPublisher producer) { + return new DmaapMessageHandler(producer, agentClient); + } + + protected AsyncRestClient createRestClient(String agentBaseUrl) { + return new AsyncRestClient(agentBaseUrl); + } + + protected MRBatchingPublisher getMessageRouterPublisher(Properties dmaapPublisherProperties) throws IOException { + return MRClientFactory.createBatchingPublisher(dmaapPublisherProperties); + } }