X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=policy-agent%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fpolicyagent%2Fdmaap%2FDmaapMessageHandler.java;h=226b54e9a2093612bd38491bfe3be3b6ff97cb49;hb=964a97cbe18f38e8417366dfdf871fcfae908fc8;hp=b0c2cafa9ea60c1cbb51e75fc08196102c824605;hpb=6a8a0d5350a77b6d1e4a8f95c0fe8fbfeef77339;p=nonrtric.git diff --git a/policy-agent/src/main/java/org/oransc/policyagent/dmaap/DmaapMessageHandler.java b/policy-agent/src/main/java/org/oransc/policyagent/dmaap/DmaapMessageHandler.java index b0c2cafa..226b54e9 100644 --- a/policy-agent/src/main/java/org/oransc/policyagent/dmaap/DmaapMessageHandler.java +++ b/policy-agent/src/main/java/org/oransc/policyagent/dmaap/DmaapMessageHandler.java @@ -17,16 +17,15 @@ * limitations under the License. * ========================LICENSE_END=================================== */ + package org.oransc.policyagent.dmaap; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.JsonObject; -import java.io.IOException; import java.util.Optional; -import org.onap.dmaap.mr.client.MRBatchingPublisher; import org.oransc.policyagent.clients.AsyncRestClient; import org.oransc.policyagent.dmaap.DmaapRequestMessage.Operation; import org.oransc.policyagent.exceptions.ServiceException; @@ -34,32 +33,34 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; +import org.springframework.web.reactive.function.client.WebClientException; import org.springframework.web.reactive.function.client.WebClientResponseException; import reactor.core.publisher.Mono; /** * The class handles incoming requests from DMAAP. *

- * That means: invoke a REST call towards this services and to send back a - * response though DMAAP + * That means: invoke a REST call towards this services and to send back a response though DMAAP */ public class DmaapMessageHandler { private static final Logger logger = LoggerFactory.getLogger(DmaapMessageHandler.class); private static Gson gson = new GsonBuilder() // .create(); // - private final MRBatchingPublisher dmaapClient; + private final AsyncRestClient dmaapClient; private final AsyncRestClient agentClient; - public DmaapMessageHandler(MRBatchingPublisher dmaapClient, AsyncRestClient agentClient) { + public DmaapMessageHandler(AsyncRestClient dmaapClient, AsyncRestClient agentClient) { this.agentClient = agentClient; this.dmaapClient = dmaapClient; } public void handleDmaapMsg(String msg) { - this.createTask(msg) // - .subscribe(message -> logger.debug("handleDmaapMsg: {}", message), // - throwable -> logger.warn("handleDmaapMsg failure ", throwable), // - () -> logger.debug("handleDmaapMsg complete")); + try { + String result = this.createTask(msg).block(); + logger.debug("handleDmaapMsg: {}", result); + } catch (Exception throwable) { + logger.warn("handleDmaapMsg failure {}", throwable.getMessage()); + } } Mono createTask(String msg) { @@ -68,22 +69,27 @@ public class DmaapMessageHandler { return this.invokePolicyAgent(dmaapRequestMessage) // .onErrorResume(t -> handleAgentCallError(t, dmaapRequestMessage)) // .flatMap( - response -> sendDmaapResponse(response.getBody(), dmaapRequestMessage, response.getStatusCode())); } catch (Exception e) { - logger.warn("Received unparsable message from DMAAP: {}", msg); - return Mono.error(e); // Cannot make any response + String errorMsg = "Received unparsable message from DMAAP: \"" + msg + "\", reason: " + e.getMessage(); + return Mono.error(new ServiceException(errorMsg)); // Cannot make any response } } - private Mono> handleAgentCallError(Throwable t, DmaapRequestMessage dmaapRequestMessage) { - logger.debug("Agent call failed: {}", t.getMessage()); - HttpStatus status = HttpStatus.NOT_FOUND; - String errorMessage = t.getMessage(); - if (t instanceof WebClientResponseException) { - WebClientResponseException exception = (WebClientResponseException) t; + private Mono> handleAgentCallError(Throwable error, + DmaapRequestMessage dmaapRequestMessage) { + logger.debug("Agent call failed: {}", error.getMessage()); + HttpStatus status = HttpStatus.INTERNAL_SERVER_ERROR; + String errorMessage = error.getMessage(); + if (error instanceof WebClientResponseException) { + WebClientResponseException exception = (WebClientResponseException) error; status = exception.getStatusCode(); errorMessage = exception.getResponseBodyAsString(); + } else if (error instanceof ServiceException) { + status = HttpStatus.BAD_REQUEST; + errorMessage = error.getMessage(); + } else if (!(error instanceof WebClientException)) { + logger.warn("Unexpected exception ", error); } return sendDmaapResponse(errorMessage, dmaapRequestMessage, status) // .flatMap(notUsed -> Mono.empty()); @@ -91,8 +97,8 @@ public class DmaapMessageHandler { private Mono> invokePolicyAgent(DmaapRequestMessage dmaapRequestMessage) { DmaapRequestMessage.Operation operation = dmaapRequestMessage.operation(); - String uri = dmaapRequestMessage.url(); + if (operation == Operation.DELETE) { return agentClient.deleteForEntity(uri); } else if (operation == Operation.GET) { @@ -104,7 +110,6 @@ public class DmaapMessageHandler { } else { return Mono.error(new ServiceException("Not implemented operation: " + operation)); } - } private String payload(DmaapRequestMessage message) { @@ -125,18 +130,12 @@ public class DmaapMessageHandler { } private Mono sendToDmaap(String body) { - try { - logger.debug("sendToDmaap: {} ", body); - dmaapClient.send(body); - dmaapClient.sendBatchWithResponse(); - return Mono.just("OK"); - } catch (IOException e) { - return Mono.error(e); - } + logger.debug("sendToDmaap: {} ", body); + return dmaapClient.post("", "[" + body + "]"); } private Mono handleResponseCallError(Throwable t) { - logger.debug("Failed to respond: {}", t.getMessage()); + logger.debug("Failed to send response to DMaaP: {}", t.getMessage()); return Mono.empty(); } @@ -144,12 +143,12 @@ public class DmaapMessageHandler { HttpStatus status) { DmaapResponseMessage dmaapResponseMessage = ImmutableDmaapResponseMessage.builder() // .status(status.toString()) // - .message(response) // + .message(response == null ? "" : response) // .type("response") // - .correlationId(dmaapRequestMessage.correlationId()) // - .originatorId(dmaapRequestMessage.originatorId()) // - .requestId(dmaapRequestMessage.requestId()) // - .timestamp(dmaapRequestMessage.timestamp()) // + .correlationId(dmaapRequestMessage.correlationId() == null ? "" : dmaapRequestMessage.correlationId()) // + .originatorId(dmaapRequestMessage.originatorId() == null ? "" : dmaapRequestMessage.originatorId()) // + .requestId(dmaapRequestMessage.requestId() == null ? "" : dmaapRequestMessage.requestId()) // + .timestamp(dmaapRequestMessage.timestamp() == null ? "" : dmaapRequestMessage.timestamp()) // .build(); String str = gson.toJson(dmaapResponseMessage); return Mono.just(str);