Alonexc commented on code in PR #3712:
URL: https://github.com/apache/eventmesh/pull/3712#discussion_r1165261602
##########
eventmesh-protocol-plugin/eventmesh-protocol-meshmessage/src/main/java/org/apache/eventmesh/protocol/meshmessage/resolver/http/SendMessageBatchV2ProtocolResolver.java:
##########
@@ -42,84 +42,50 @@ public static CloudEvent buildEvent(Header header, Body
body) throws ProtocolHan
SendMessageBatchV2RequestHeader sendMessageBatchV2RequestHeader =
(SendMessageBatchV2RequestHeader) header;
SendMessageBatchV2RequestBody sendMessageBatchV2RequestBody =
(SendMessageBatchV2RequestBody) body;
- String protocolType =
sendMessageBatchV2RequestHeader.getProtocolType();
- String protocolDesc =
sendMessageBatchV2RequestHeader.getProtocolDesc();
- String protocolVersion =
sendMessageBatchV2RequestHeader.getProtocolVersion();
-
- String code = sendMessageBatchV2RequestHeader.getCode();
- String env = sendMessageBatchV2RequestHeader.getEnv();
- String idc = sendMessageBatchV2RequestHeader.getIdc();
- String ip = sendMessageBatchV2RequestHeader.getIp();
- String pid = sendMessageBatchV2RequestHeader.getPid();
- String sys = sendMessageBatchV2RequestHeader.getSys();
- String username = sendMessageBatchV2RequestHeader.getUsername();
- String passwd = sendMessageBatchV2RequestHeader.getPasswd();
- ProtocolVersion version =
sendMessageBatchV2RequestHeader.getVersion();
- String language = sendMessageBatchV2RequestHeader.getLanguage();
-
- String content = sendMessageBatchV2RequestBody.getMsg();
-
- CloudEvent event = null;
CloudEventBuilder cloudEventBuilder;
- if (StringUtils.equals(SpecVersion.V1.toString(),
protocolVersion)) {
- cloudEventBuilder = CloudEventBuilder.v1();
-
- cloudEventBuilder =
cloudEventBuilder.withId(sendMessageBatchV2RequestBody.getBizSeqNo())
- .withSubject(sendMessageBatchV2RequestBody.getTopic())
- .withType("eventmeshmessage")
- .withSource(URI.create("/"))
- .withData(content.getBytes(StandardCharsets.UTF_8))
- .withExtension(ProtocolKey.REQUEST_CODE, code)
- .withExtension(ProtocolKey.ClientInstanceKey.ENV, env)
- .withExtension(ProtocolKey.ClientInstanceKey.IDC, idc)
- .withExtension(ProtocolKey.ClientInstanceKey.IP, ip)
- .withExtension(ProtocolKey.ClientInstanceKey.PID, pid)
- .withExtension(ProtocolKey.ClientInstanceKey.SYS, sys)
- .withExtension(ProtocolKey.ClientInstanceKey.USERNAME,
username)
- .withExtension(ProtocolKey.ClientInstanceKey.PASSWD,
passwd)
- .withExtension(ProtocolKey.VERSION, version.getVersion())
- .withExtension(ProtocolKey.LANGUAGE, language)
- .withExtension(ProtocolKey.PROTOCOL_TYPE, protocolType)
- .withExtension(ProtocolKey.PROTOCOL_DESC, protocolDesc)
- .withExtension(ProtocolKey.PROTOCOL_VERSION,
protocolVersion)
- .withExtension(SendMessageBatchV2RequestBody.BIZSEQNO,
sendMessageBatchV2RequestBody.getBizSeqNo())
-
.withExtension(SendMessageBatchV2RequestBody.PRODUCERGROUP,
sendMessageBatchV2RequestBody.getProducerGroup())
- .withExtension(SendMessageBatchV2RequestBody.TTL,
sendMessageBatchV2RequestBody.getTtl());
- if
(StringUtils.isNotEmpty(sendMessageBatchV2RequestBody.getTag())) {
- cloudEventBuilder =
cloudEventBuilder.withExtension(SendMessageRequestBody.TAG,
sendMessageBatchV2RequestBody.getTag());
- }
- event = cloudEventBuilder.build();
- } else if (StringUtils.equals(SpecVersion.V03.toString(),
protocolVersion)) {
- cloudEventBuilder = CloudEventBuilder.v03();
- cloudEventBuilder =
cloudEventBuilder.withId(sendMessageBatchV2RequestBody.getBizSeqNo())
- .withSubject(sendMessageBatchV2RequestBody.getTopic())
- .withType("eventmeshmessage")
- .withSource(URI.create("/"))
- .withData(content.getBytes(StandardCharsets.UTF_8))
- .withExtension(ProtocolKey.REQUEST_CODE, code)
- .withExtension(ProtocolKey.ClientInstanceKey.ENV, env)
- .withExtension(ProtocolKey.ClientInstanceKey.IDC, idc)
- .withExtension(ProtocolKey.ClientInstanceKey.IP, ip)
- .withExtension(ProtocolKey.ClientInstanceKey.PID, pid)
- .withExtension(ProtocolKey.ClientInstanceKey.SYS, sys)
- .withExtension(ProtocolKey.ClientInstanceKey.USERNAME,
username)
- .withExtension(ProtocolKey.ClientInstanceKey.PASSWD,
passwd)
- .withExtension(ProtocolKey.VERSION, version.getVersion())
- .withExtension(ProtocolKey.LANGUAGE, language)
- .withExtension(ProtocolKey.PROTOCOL_TYPE, protocolType)
- .withExtension(ProtocolKey.PROTOCOL_DESC, protocolDesc)
- .withExtension(ProtocolKey.PROTOCOL_VERSION,
protocolVersion)
- .withExtension(SendMessageBatchV2RequestBody.BIZSEQNO,
sendMessageBatchV2RequestBody.getBizSeqNo())
-
.withExtension(SendMessageBatchV2RequestBody.PRODUCERGROUP,
sendMessageBatchV2RequestBody.getProducerGroup())
- .withExtension(SendMessageBatchV2RequestBody.TTL,
sendMessageBatchV2RequestBody.getTtl());
- if
(StringUtils.isNotEmpty(sendMessageBatchV2RequestBody.getTag())) {
- cloudEventBuilder =
cloudEventBuilder.withExtension(SendMessageRequestBody.TAG,
sendMessageBatchV2RequestBody.getTag());
- }
- event = cloudEventBuilder.build();
+ switch
(parse(sendMessageBatchV2RequestHeader.getProtocolVersion())) {
Review Comment:

I am able to build success here.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]