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=9165af5434e172af6db01a97c64e5c78f8bf802f;hb=083393d0affc7dca6a5cea89f4f9759801a91591;hp=6312e375aaccc7bd55a4c1f9c6f0cccb1fd57a4f;hpb=0b10c7fa768f05ae5146ce2f3a69998bb8f97a9f;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 6312e375..9165af54 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 @@ -41,13 +41,14 @@ 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. + * 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. + * 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}. @@ -61,6 +62,9 @@ public class DmaapMessageConsumer { private final ApplicationConfig applicationConfig; + private DmaapMessageHandler dmaapMessageHandler = null; + private MRConsumer messageRouterConsumer = null; + @Value("${server.port}") private int localServerPort; @@ -140,13 +144,15 @@ public class DmaapMessageConsumer { getDmaapMessageHandler().handleDmaapMsg(msg); } - private DmaapMessageHandler getDmaapMessageHandler() throws IOException { - String agentBaseUrl = "https://localhost:" + this.localServerPort; - AsyncRestClient agentClient = createRestClient(agentBaseUrl); - Properties dmaapPublisherProperties = applicationConfig.getDmaapPublisherConfig(); - MRBatchingPublisher producer = getMessageRouterPublisher(dmaapPublisherProperties); - - return createDmaapMessageHandler(agentClient, producer); + protected DmaapMessageHandler getDmaapMessageHandler() throws IOException { + if (this.dmaapMessageHandler == null) { + String agentBaseUrl = "https://localhost:" + this.localServerPort; + AsyncRestClient agentClient = new AsyncRestClient(agentBaseUrl); + Properties dmaapPublisherProperties = applicationConfig.getDmaapPublisherConfig(); + MRBatchingPublisher producer = MRClientFactory.createBatchingPublisher(dmaapPublisherProperties); + this.dmaapMessageHandler = new DmaapMessageHandler(producer, agentClient); + } + return this.dmaapMessageHandler; } protected void sleep(Duration duration) { @@ -158,18 +164,10 @@ public class DmaapMessageConsumer { } 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); + if (this.messageRouterConsumer == null) { + this.messageRouterConsumer = MRClientFactory.createConsumer(dmaapConsumerProperties); + } + return this.messageRouterConsumer; } - protected MRBatchingPublisher getMessageRouterPublisher(Properties dmaapPublisherProperties) throws IOException { - return MRClientFactory.createBatchingPublisher(dmaapPublisherProperties); - } }