From a399f43d7bdf74a15861a5e0f165763934d1ca10 Mon Sep 17 00:00:00 2001 From: Denis Plotnikov Date: Mon, 18 Sep 2023 18:33:54 +0400 Subject: [PATCH] [TH2-5073] SendRawMessage intial implementation --- build.gradle | 2 +- .../java/com/exactpro/th2/act/ActHandler.java | 119 ++++++++++++++++++ 2 files changed, 120 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 05a20df..ee1cc07 100644 --- a/build.gradle +++ b/build.gradle @@ -94,7 +94,7 @@ dependencies { implementation 'com.exactpro.th2:common:5.4.0-dev' implementation 'com.exactpro.th2:common-utils:2.2.0-dev' - implementation 'com.exactpro.th2:grpc-act-template:4.1.0' + implementation 'com.exactpro.th2:grpc-act-template:4.1.0-TH2-5073+' implementation 'com.exactpro.th2:grpc-check1:4.2.0-dev' implementation "com.fasterxml.jackson.core:jackson-core" diff --git a/src/main/java/com/exactpro/th2/act/ActHandler.java b/src/main/java/com/exactpro/th2/act/ActHandler.java index c2eb165..0d33a70 100644 --- a/src/main/java/com/exactpro/th2/act/ActHandler.java +++ b/src/main/java/com/exactpro/th2/act/ActHandler.java @@ -20,6 +20,8 @@ import com.exactpro.th2.act.grpc.PlaceMessageRequestOrBuilder; import com.exactpro.th2.act.grpc.PlaceMessageResponse; import com.exactpro.th2.act.grpc.SendMessageResponse; +import com.exactpro.th2.act.grpc.SendRawMessageRequest; +import com.exactpro.th2.act.grpc.SendRawMessageResponse; import com.exactpro.th2.act.impl.MessageResponseMonitor; import com.exactpro.th2.act.rules.FieldCheckRule; import com.exactpro.th2.check1.grpc.Check1Service; @@ -27,6 +29,7 @@ import com.exactpro.th2.check1.grpc.CheckpointResponse; import com.exactpro.th2.common.event.Event; import com.exactpro.th2.common.event.Event.Status; +import com.exactpro.th2.common.event.EventUtils; import com.exactpro.th2.common.event.IBodyData; import com.exactpro.th2.common.event.bean.TreeTable; import com.exactpro.th2.common.event.bean.builder.CollectionBuilder; @@ -42,6 +45,8 @@ import com.exactpro.th2.common.grpc.MessageID; import com.exactpro.th2.common.grpc.MessageMetadata; import com.exactpro.th2.common.grpc.MessageOrBuilder; +import com.exactpro.th2.common.grpc.RawMessageMetadata; +import com.exactpro.th2.common.schema.message.impl.rabbitmq.transport.RawMessage; import com.exactpro.th2.common.grpc.RequestStatus; import com.exactpro.th2.common.grpc.Value; import com.exactpro.th2.common.schema.message.MessageRouter; @@ -57,6 +62,7 @@ import io.grpc.Context; import io.grpc.Deadline; import io.grpc.stub.StreamObserver; +import java.nio.charset.StandardCharsets; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -78,6 +84,7 @@ import static com.exactpro.th2.common.grpc.RequestStatus.Status.SUCCESS; import static com.exactpro.th2.common.schema.message.impl.rabbitmq.transport.Direction.INCOMING; import static com.exactpro.th2.common.utils.message.MessageHolderUtilsKt.getTreeTable; +import static com.exactpro.th2.common.utils.message.MessageUtilsKt.toTransport; import static com.exactpro.th2.common.utils.message.transport.MessageUtilsKt.toBatch; import static com.exactpro.th2.common.utils.message.transport.MessageUtilsKt.toGroup; import static com.exactpro.th2.common.utils.message.transport.MessageUtilsKt.toTreeTable; @@ -169,6 +176,47 @@ public void placeOrderCancelReplaceRequest(PlaceMessageRequest request, StreamOb } } + @Override + public void sendRawMessage(SendRawMessageRequest request, StreamObserver responseObserver) { + long startPlaceMessage = System.currentTimeMillis(); + try { + if (LOGGER.isDebugEnabled()) { + LOGGER.debug("Sending message request: " + shortDebugString(request)); + } + + String actName = "sendRawMessage"; + // FIXME store parent with fail in case of children fail + EventID parentId = createAndStoreParentEvent(request, actName, PASSED); + + Checkpoint checkpoint = registerCheckPoint(parentId); + + if (Context.current().isCancelled()) { + LOGGER.warn("'{}' request cancelled by client", actName); + sendRawMessageErrorResponse(responseObserver, "Request has been cancelled by client"); + } + + try { + sendRawMessage(request.getRaw(), parentId); + } catch (Exception ex) { + createAndStoreErrorEvent("sendMessage", ex.getMessage(), Instant.now(), parentId); + throw ex; + } + + SendRawMessageResponse response = SendRawMessageResponse.newBuilder() + .setStatus(RequestStatus.newBuilder().setStatus(SUCCESS).build()) + .setCheckpointId(checkpoint) + .build(); + responseObserver.onNext(response); + responseObserver.onCompleted(); + + } catch (RuntimeException | IOException e) { + LOGGER.error("Failed to send a message. Message = {}", request.getRaw(), e); + sendRawMessageErrorResponse(responseObserver, "Send message failed. Error: " + e.getMessage()); + } finally { + LOGGER.debug("Sending the message has been finished in {}", System.currentTimeMillis() - startPlaceMessage); + } + } + @Override public void sendMessage(PlaceMessageRequest request, StreamObserver responseObserver) { long startPlaceMessage = System.currentTimeMillis(); @@ -390,6 +438,26 @@ private EventID createAndStoreParentEvent(PlaceMessageRequestOrBuilder request, } } + private EventID createAndStoreParentEvent(SendRawMessageRequest request, String actName, Status status) throws IOException { + long startTime = System.currentTimeMillis(); + + Event event = start() + .name(actName + ' ' + request.getRaw().getMetadata().getId().getConnectionId().getSessionAlias()) + .type(actName) + .status(status) + .endTimestamp(); // FIXME set properly as is in the last child + + com.exactpro.th2.common.grpc.Event protoEvent = event.toProto(request.getParentEventId()); + //FIXME process response + try { + eventBatchMessageRouter.send(EventBatch.newBuilder().addEvents(event.toProto(request.getParentEventId())).build(), "publish", "event"); + LOGGER.debug("createAndStoreParentEvent for {} in {} ms", actName, System.currentTimeMillis() - startTime); + return protoEvent.getId(); + } catch (IOException e) { + throw new RuntimeException("Can not send event = " + protoEvent.getId().getId(), e); + } + } + private void createAndStoreNoResponseEvent( String actName, NoResponseBodySupplier noResponseBodySupplier, Instant start, @@ -507,6 +575,32 @@ private void sendMessage(Message message, EventID parentEventId) throws IOExcept } } + private void sendRawMessage(com.exactpro.th2.common.grpc.RawMessage rawMessage, EventID parentEventId) throws IOException { + try { + LOGGER.debug("Sending the message started"); + RawMessageMetadata metadata = rawMessage.getMetadata(); + RawMessage transportRawMessage = RawMessage.builder() + .setId(toTransport(metadata.getId())) + .setProtocol(metadata.getProtocol()) + .setMetadata(metadata.getPropertiesMap()) + .setEventId(EventUtilsKt.toTransport(parentEventId)) + .setBody(rawMessage.getBody().toByteArray()) + .build(); + //May be use in future for filtering + //request.getConnectionId().getSessionAlias(); + MessageID messageID = metadata.getId(); + messageRouter.send(toBatch(toGroup(transportRawMessage), messageID.getBookName(), messageID.getConnectionId().getSessionGroup()), "send_raw"); + //TODO remove after solving issue TH2-217 + //TODO process response + EventBatch eventBatch = EventBatch.newBuilder() + .addEvents(createSendRawMessageEvent(transportRawMessage, parentEventId)) + .build(); + eventBatchMessageRouter.send(eventBatch, "publish", "event"); + } finally { + LOGGER.debug("Sending the message ended"); + } + } + private com.exactpro.th2.common.grpc.Event createSendMessageEvent(ParsedMessage message, EventID parentEventId) throws IOException { Event event = start() .name("Send '" + message.getType() + "' message to connectivity"); @@ -517,6 +611,17 @@ private com.exactpro.th2.common.grpc.Event createSendMessageEvent(ParsedMessage return event.toProto(parentEventId); } + private com.exactpro.th2.common.grpc.Event createSendRawMessageEvent(RawMessage message, EventID parentEventId) throws IOException { + String bodyString = message.getBody().toString(StandardCharsets.UTF_8); + Event event = start() + .name("Send '" + bodyString + "' message to connectivity"); + com.exactpro.th2.common.event.bean.Message messageBean = EventUtils.createMessageBean(bodyString); + event.status(Status.PASSED); + event.bodyData(messageBean); + event.type("Outgoing message"); + return event.toProto(parentEventId); + } + private void createAndStoreErrorEvent(String actName, String message, Instant start, EventID parentEventId) throws IOException { Event errorEvent = Event.from(start) .endTimestamp() @@ -593,6 +698,20 @@ private void sendMessageErrorResponse( LOGGER.debug("Error response : {}", message); } + private void sendRawMessageErrorResponse( + StreamObserver responseObserver, + String message + ) { + responseObserver.onNext(SendRawMessageResponse.newBuilder() + .setStatus(RequestStatus.newBuilder() + .setStatus(ERROR) + .setMessage(message) + .build()) + .build()); + responseObserver.onCompleted(); + LOGGER.debug("Error response : {}", message); + } + private Checkpoint registerCheckPoint(EventID parentEventId) { LOGGER.debug("Registering the checkpoint started"); CheckpointResponse response = check1Service.createCheckpoint(CheckpointRequest.newBuilder()