[GitHub] [rocketmq] superleo-cn commented on a change in pull request #1836: [ISSUE #1833] Support messageBuilder for message

2020-03-25 Thread GitBox
superleo-cn commented on a change in pull request #1836: [ISSUE #1833] Support 
messageBuilder for message
URL: https://github.com/apache/rocketmq/pull/1836#discussion_r398283490
 
 

 ##
 File path: 
common/src/main/java/org/apache/rocketmq/common/message/MessageBuilder.java
 ##
 @@ -0,0 +1,99 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.rocketmq.common.message;
+
+import java.util.Collection;
+import java.util.HashMap;
+import java.util.Map;
+
+// user facede of message to send, less pressure about message.
+public class MessageBuilder {
+
+private String topic;
+private Map properties;
+private byte[] body;
+
 
 Review comment:
   I reviewed the code and added some new methods to support `flag` and 
`transactionId`, at the same time, I applied these new features into the 
example of quickstart to demonstrate the usage. 
   
   ```java
   /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
   package org.apache.rocketmq.common.message;
   
   import java.util.Collection;
   import java.util.HashMap;
   import java.util.Map;
   
   // user facede of message to send, less pressure about message.
   public class MessageBuilder {
   
   private String topic;
   private int flag;
   private Map properties;
   private byte[] body;
   private String transactionId;
   
   public MessageBuilder() {
   }
   
   public MessageBuilder withFlag(int flag) {
   this.flag = flag;
   return this;
   }
   
   public MessageBuilder withTopic(String topic) {
   this.topic = topic;
   return this;
   }
   
   public MessageBuilder withBody(byte[] body) {
   this.body = body;
   return this;
   }
   
   public MessageBuilder withTransactionId(String transactionId) {
   this.transactionId = transactionId;
   return this;
   }
   
   private MessageBuilder withProperty(final String key, final String 
value) {
   if (null == this.properties) {
   this.properties = new HashMap();
   }
   
   this.properties.put(key, value);
   return this;
   }
   
   public MessageBuilder withKeys(String keys) {
   return this.withProperty(MessageConst.PROPERTY_KEYS, keys);
   }
   
   public MessageBuilder withKeys(Collection keys) {
   StringBuilder sb = new StringBuilder();
   for (String k : keys) {
   sb.append(k);
   sb.append(MessageConst.KEY_SEPARATOR);
   }
   
   return this.withKeys(sb.toString().trim());
   }
   
   public MessageBuilder withDelayTimeLevel(int level) {
   return this.withProperty(MessageConst.PROPERTY_DELAY_TIME_LEVEL, 
String.valueOf(level));
   }
   
   public MessageBuilder withTags(String tags) {
   return this.withProperty(MessageConst.PROPERTY_TAGS, tags);
   }
   
   public MessageBuilder withUserProperty(String key, String value) {
   if (MessageConst.STRING_HASH_SET.contains(key)) {
   throw new RuntimeException(String.format(
   "The Property<%s> is used by system, input another 
please", key));
   }
   
   if (value == null || value.trim().isEmpty()
   || key == null || key.trim().isEmpty()) {
   throw new IllegalArgumentException(
  

[GitHub] [rocketmq] superleo-cn commented on a change in pull request #1836: [ISSUE #1833] Support messageBuilder for message

2020-03-25 Thread GitBox
superleo-cn commented on a change in pull request #1836: [ISSUE #1833] Support 
messageBuilder for message
URL: https://github.com/apache/rocketmq/pull/1836#discussion_r397955287
 
 

 ##
 File path: 
common/src/main/java/org/apache/rocketmq/common/message/MessageBuilder.java
 ##
 @@ -0,0 +1,99 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.rocketmq.common.message;
+
+import java.util.Collection;
+import java.util.HashMap;
+import java.util.Map;
+
+// user facede of message to send, less pressure about message.
+public class MessageBuilder {
+
+private String topic;
+private Map properties;
+private byte[] body;
+
 
 Review comment:
   If I wanna contribute the rest of code, should I copy his code, modify and 
re-submit the PR?


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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services