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=0ee621322c05a3ba7a64c3d7142e09e32edc6e8a;hb=6a39814272307d0207222c9229b0d765ac062bf0;hp=f13ffebdcd45aeff2e4a533b058768a9a04fe96f;hpb=ba50f8809edc7d49a74021e25b4094f4c3174b26;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 f13ffebd..0ee62132 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 @@ -21,15 +21,14 @@ package org.oransc.policyagent.dmaap; import com.google.common.collect.Iterables; +import com.google.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonParser; -import java.io.IOException; import java.time.Duration; -import java.util.Properties; +import java.util.ArrayList; +import java.util.List; -import org.onap.dmaap.mr.client.MRBatchingPublisher; -import org.onap.dmaap.mr.client.MRClientFactory; -import org.onap.dmaap.mr.client.MRConsumer; -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; @@ -37,6 +36,7 @@ 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.http.ResponseEntity; import org.springframework.stereotype.Component; /** @@ -62,10 +62,9 @@ public class DmaapMessageConsumer { private final ApplicationConfig applicationConfig; private DmaapMessageHandler dmaapMessageHandler = null; - private MRConsumer messageRouterConsumer = null; - @Value("${server.port}") - private int localServerPort; + @Value("${server.http-port}") + private int localServerHttpPort; @Autowired public DmaapMessageConsumer(ApplicationConfig applicationConfig) { @@ -99,7 +98,7 @@ public class DmaapMessageConsumer { sleep(TIME_BETWEEN_DMAAP_RETRIES); // wait for configuration } } catch (Exception e) { - logger.warn("Cannot fetch because of {}", e.getMessage()); + logger.warn("{}", e.getMessage()); sleep(TIME_BETWEEN_DMAAP_RETRIES); } } @@ -110,39 +109,50 @@ public class DmaapMessageConsumer { } protected boolean isDmaapConfigured() { - Properties consumerCfg = applicationConfig.getDmaapConsumerConfig(); - Properties producerCfg = applicationConfig.getDmaapPublisherConfig(); - return (consumerCfg != null && consumerCfg.size() > 0 && producerCfg != null && producerCfg.size() > 0); + String producerTopicUrl = applicationConfig.getDmaapProducerTopicUrl(); + String consumerTopicUrl = applicationConfig.getDmaapConsumerTopicUrl(); + return (!producerTopicUrl.isEmpty() && !consumerTopicUrl.isEmpty()); } - protected Iterable fetchAllMessages() throws ServiceException, IOException { - Properties dmaapConsumerProperties = this.applicationConfig.getDmaapConsumerConfig(); - MRConsumer consumer = getMessageRouterConsumer(dmaapConsumerProperties); - MRConsumerResponse response = consumer.fetchWithReturnConsumerResponse(); - if (response == null || !"200".equals(response.getResponseCode())) { - String errorMessage = "DMaaP NULL response received"; - if (response != null) { - errorMessage = "Error respons " + response.getResponseCode() + " " + response.getResponseMessage() - + " from DMaaP."; + private static List parseMessages(String jsonString) { + JsonArray arrayOfMessages = JsonParser.parseString(jsonString).getAsJsonArray(); + List result = new ArrayList<>(); + for (JsonElement element : arrayOfMessages) { + if (element.isJsonPrimitive()) { + result.add(element.getAsString()); + } else { + String messageAsString = element.toString(); + result.add(messageAsString); } - throw new ServiceException(errorMessage); + } + return result; + } + + protected Iterable fetchAllMessages() throws ServiceException { + String topicUrl = this.applicationConfig.getDmaapConsumerTopicUrl(); + AsyncRestClient consumer = getMessageRouterConsumer(); + ResponseEntity response = consumer.getForEntity(topicUrl).block(); + logger.debug("DMaaP consumer received {} : {}", response.getStatusCode(), response.getBody()); + if (response.getStatusCode().is2xxSuccessful()) { + return parseMessages(response.getBody()); } else { - logger.debug("DMaaP consumer received {} : {}", response.getResponseCode(), response.getResponseMessage()); - return response.getActualMessages(); + throw new ServiceException("Cannot fetch because of Error respons: " + response.getStatusCode().toString() + + " " + response.getBody()); } } - private void processMsg(String msg) throws IOException { + private void processMsg(String msg) { logger.debug("Message Reveived from DMAAP : {}", msg); getDmaapMessageHandler().handleDmaapMsg(msg); } - protected DmaapMessageHandler getDmaapMessageHandler() throws IOException { + protected DmaapMessageHandler getDmaapMessageHandler() { if (this.dmaapMessageHandler == null) { - String agentBaseUrl = "https://localhost:" + this.localServerPort; - AsyncRestClient agentClient = new AsyncRestClient(agentBaseUrl); - Properties dmaapPublisherProperties = applicationConfig.getDmaapPublisherConfig(); - MRBatchingPublisher producer = MRClientFactory.createBatchingPublisher(dmaapPublisherProperties); + String agentBaseUrl = "http://localhost:" + this.localServerHttpPort; + AsyncRestClient agentClient = + new AsyncRestClient(agentBaseUrl, this.applicationConfig.getWebClientConfig()); + AsyncRestClient producer = new AsyncRestClient(this.applicationConfig.getDmaapProducerTopicUrl(), + this.applicationConfig.getWebClientConfig()); this.dmaapMessageHandler = new DmaapMessageHandler(producer, agentClient); } return this.dmaapMessageHandler; @@ -156,11 +166,8 @@ public class DmaapMessageConsumer { } } - protected MRConsumer getMessageRouterConsumer(Properties dmaapConsumerProperties) throws IOException { - if (this.messageRouterConsumer == null) { - this.messageRouterConsumer = MRClientFactory.createConsumer(dmaapConsumerProperties); - } - return this.messageRouterConsumer; + protected AsyncRestClient getMessageRouterConsumer() { + return new AsyncRestClient("", this.applicationConfig.getWebClientConfig()); } }