Java Code Examples for org.apache.rocketmq.common.protocol.heartbeat.SubscriptionData#setTopic()
The following examples show how to use
org.apache.rocketmq.common.protocol.heartbeat.SubscriptionData#setTopic() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: FilterAPI.java From DDMQ with Apache License 2.0 | 6 votes |
public static SubscriptionData build(final String topic, final String subString, final String type) throws Exception { if (ExpressionType.TAG.equals(type) || type == null) { return buildSubscriptionData(null, topic, subString); } if (subString == null || subString.length() < 1) { throw new IllegalArgumentException("Expression can't be null! " + type); } SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); subscriptionData.setExpressionType(type); return subscriptionData; }
Example 2
Source File: FilterAPI.java From rocketmq-read with Apache License 2.0 | 6 votes |
public static SubscriptionData build(final String topic, final String subString, final String type) throws Exception { if (ExpressionType.TAG.equals(type) || type == null) { return buildSubscriptionData(null, topic, subString); } if (subString == null || subString.length() < 1) { throw new IllegalArgumentException("Expression can't be null! " + type); } SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); subscriptionData.setExpressionType(type); return subscriptionData; }
Example 3
Source File: FilterAPI.java From rocketmq-all-4.1.0-incubating with Apache License 2.0 | 6 votes |
public static SubscriptionData build(final String topic, final String subString, final String type) throws Exception { if (ExpressionType.TAG.equals(type) || type == null) { return buildSubscriptionData(null, topic, subString); } if (subString == null || subString.length() < 1) { throw new IllegalArgumentException("Expression can't be null! " + type); } SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); subscriptionData.setExpressionType(type); return subscriptionData; }
Example 4
Source File: FilterAPI.java From rocketmq-4.3.0 with Apache License 2.0 | 6 votes |
public static SubscriptionData build(final String topic, final String subString, final String type) throws Exception { if (ExpressionType.TAG.equals(type) || type == null) { // =》 return buildSubscriptionData(null, topic, subString); } if (subString == null || subString.length() < 1) { throw new IllegalArgumentException("Expression can't be null! " + type); } SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); subscriptionData.setExpressionType(type); return subscriptionData; }
Example 5
Source File: DeFiClientManageProcessorTest.java From DeFiBus with Apache License 2.0 | 5 votes |
static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 6
Source File: PullMessageProcessorTest.java From rocketmq-all-4.1.0-incubating with Apache License 2.0 | 5 votes |
static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 7
Source File: PullMessageProcessorTest.java From rocketmq with Apache License 2.0 | 5 votes |
static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 8
Source File: FilterAPI.java From rocketmq-all-4.1.0-incubating with Apache License 2.0 | 5 votes |
public static SubscriptionData buildSubscriptionData(final String consumerGroup, String topic, String subString) throws Exception { SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); if (null == subString || subString.equals(SubscriptionData.SUB_ALL) || subString.length() == 0) { subscriptionData.setSubString(SubscriptionData.SUB_ALL); } else { String[] tags = subString.split("\\|\\|"); if (tags.length > 0) { for (String tag : tags) { if (tag.length() > 0) { String trimString = tag.trim(); if (trimString.length() > 0) { subscriptionData.getTagsSet().add(trimString); subscriptionData.getCodeSet().add(trimString.hashCode()); } } } } else { throw new Exception("subString split error"); } } return subscriptionData; }
Example 9
Source File: PullMessageProcessorTest.java From rocketmq-read with Apache License 2.0 | 5 votes |
static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 10
Source File: DeFiConsumerManagerTest.java From DeFiBus with Apache License 2.0 | 5 votes |
private ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 11
Source File: FilterAPI.java From DDMQ with Apache License 2.0 | 5 votes |
public static SubscriptionData buildSubscriptionData(final String consumerGroup, String topic, String subString) throws Exception { SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); if (null == subString || subString.equals(SubscriptionData.SUB_ALL) || subString.length() == 0) { subscriptionData.setSubString(SubscriptionData.SUB_ALL); } else { String[] tags = subString.split("\\|\\|"); if (tags.length > 0) { for (String tag : tags) { if (tag.length() > 0) { String trimString = tag.trim(); if (trimString.length() > 0) { subscriptionData.getTagsSet().add(trimString); subscriptionData.getCodeSet().add(trimString.hashCode()); } } } } else { throw new Exception("subString split error"); } } return subscriptionData; }
Example 12
Source File: DeFiPullMessageProcessorTest.java From DeFiBus with Apache License 2.0 | 5 votes |
static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 13
Source File: ConsumeQueueManagerTest.java From DeFiBus with Apache License 2.0 | 5 votes |
private static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 14
Source File: PlainAccessValidatorTest.java From rocketmq with Apache License 2.0 | 5 votes |
@Test public void validateHeartBeatTest() { HeartbeatData heartbeatData=new HeartbeatData(); Set<ProducerData> producerDataSet=new HashSet<>(); Set<ConsumerData> consumerDataSet=new HashSet<>(); Set<SubscriptionData> subscriptionDataSet=new HashSet<>(); ProducerData producerData=new ProducerData(); producerData.setGroupName("producerGroupA"); ConsumerData consumerData=new ConsumerData(); consumerData.setGroupName("consumerGroupA"); SubscriptionData subscriptionData=new SubscriptionData(); subscriptionData.setTopic("topicC"); producerDataSet.add(producerData); consumerDataSet.add(consumerData); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); heartbeatData.setProducerDataSet(producerDataSet); heartbeatData.setConsumerDataSet(consumerDataSet); RemotingCommand remotingCommand = RemotingCommand.createRequestCommand(RequestCode.HEART_BEAT,null); remotingCommand.setBody(heartbeatData.encode()); aclClient.doBeforeRequest("", remotingCommand); ByteBuffer buf = remotingCommand.encode(); buf.getInt(); buf = ByteBuffer.allocate(buf.limit() - buf.position()).put(buf); buf.position(0); PlainAccessResource accessResource = (PlainAccessResource) plainAccessValidator.parse(RemotingCommand.decode(buf), "192.168.0.1:9876"); plainAccessValidator.validate(accessResource); }
Example 15
Source File: PullMessageProcessorTest.java From rocketmq_trans_message with Apache License 2.0 | 5 votes |
static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 16
Source File: PullMessageProcessorTest.java From rocketmq-4.3.0 with Apache License 2.0 | 5 votes |
static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 17
Source File: PullMessageProcessorTest.java From rocketmq with Apache License 2.0 | 5 votes |
static ConsumerData createConsumerData(String group, String topic) { ConsumerData consumerData = new ConsumerData(); consumerData.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET); consumerData.setConsumeType(ConsumeType.CONSUME_PASSIVELY); consumerData.setGroupName(group); consumerData.setMessageModel(MessageModel.CLUSTERING); Set<SubscriptionData> subscriptionDataSet = new HashSet<>(); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString("*"); subscriptionData.setSubVersion(100L); subscriptionDataSet.add(subscriptionData); consumerData.setSubscriptionDataSet(subscriptionDataSet); return consumerData; }
Example 18
Source File: FilterAPI.java From rocketmq_trans_message with Apache License 2.0 | 5 votes |
public static SubscriptionData buildSubscriptionData(final String consumerGroup, String topic, String subString) throws Exception { SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setTopic(topic); subscriptionData.setSubString(subString); if (null == subString || subString.equals(SubscriptionData.SUB_ALL) || subString.length() == 0) { subscriptionData.setSubString(SubscriptionData.SUB_ALL); } else { String[] tags = subString.split("\\|\\|"); if (tags.length > 0) { for (String tag : tags) { if (tag.length() > 0) { String trimString = tag.trim(); if (trimString.length() > 0) { subscriptionData.getTagsSet().add(trimString); subscriptionData.getCodeSet().add(trimString.hashCode()); } } } } else { throw new Exception("subString split error"); } } return subscriptionData; }
Example 19
Source File: MessageStoreWithFilterTest.java From rocketmq with Apache License 2.0 | 4 votes |
@Test public void testGetMessage_withFilterBitMap() throws Exception { List<MessageExtBrokerInner> msgs = putMsg(master, topicCount, msgPerTopic); Thread.sleep(100); for (int i = 0; i < topicCount; i++) { String realTopic = topic + i; for (int j = 0; j < msgPerTopic; j++) { String group = "CID_" + j; ConsumerFilterData filterData = filterManager.get(realTopic, group); assertThat(filterData).isNotNull(); List<MessageExtBrokerInner> filteredMsgs = filtered(msgs, filterData); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setExpressionType(filterData.getExpressionType()); subscriptionData.setTopic(filterData.getTopic()); subscriptionData.setClassFilterMode(false); subscriptionData.setSubString(filterData.getExpression()); GetMessageResult getMessageResult = master.getMessage(group, realTopic, queueId, 0, 10000, new ExpressionMessageFilter(subscriptionData, filterData, filterManager)); String assertMsg = group + "-" + realTopic; try { assertThat(getMessageResult).isNotNull(); assertThat(GetMessageStatus.FOUND).isEqualTo(getMessageResult.getStatus()); assertThat(getMessageResult.getMessageBufferList()).isNotNull().isNotEmpty(); assertThat(getMessageResult.getMessageBufferList().size()).isEqualTo(filteredMsgs.size()); for (ByteBuffer buffer : getMessageResult.getMessageBufferList()) { MessageExt messageExt = MessageDecoder.decode(buffer.slice(), false); assertThat(messageExt).isNotNull(); Object evlRet = null; try { evlRet = filterData.getCompiledExpression().evaluate(new MessageEvaluationContext(messageExt.getProperties())); } catch (Exception e) { e.printStackTrace(); assertThat(true).isFalse(); } assertThat(evlRet).isNotNull().isEqualTo(Boolean.TRUE); // check boolean find = false; for (MessageExtBrokerInner messageExtBrokerInner : filteredMsgs) { if (messageExtBrokerInner.getMsgId().equals(messageExt.getMsgId())) { find = true; } } assertThat(find).isTrue(); } } finally { getMessageResult.release(); } } } }
Example 20
Source File: MessageStoreWithFilterTest.java From DDMQ with Apache License 2.0 | 4 votes |
@Test public void testGetMessage_withFilterBitMap() throws Exception { List<MessageExtBrokerInner> msgs = putMsg(master, topicCount, msgPerTopic); Thread.sleep(100); for (int i = 0; i < topicCount; i++) { String realTopic = topic + i; for (int j = 0; j < msgPerTopic; j++) { String group = "CID_" + j; ConsumerFilterData filterData = filterManager.get(realTopic, group); assertThat(filterData).isNotNull(); List<MessageExtBrokerInner> filteredMsgs = filtered(msgs, filterData); SubscriptionData subscriptionData = new SubscriptionData(); subscriptionData.setExpressionType(filterData.getExpressionType()); subscriptionData.setTopic(filterData.getTopic()); subscriptionData.setClassFilterMode(false); subscriptionData.setSubString(filterData.getExpression()); GetMessageResult getMessageResult = master.getMessage(group, realTopic, queueId, 0, 10000, new ExpressionMessageFilter(subscriptionData, filterData, filterManager)); String assertMsg = group + "-" + realTopic; try { assertThat(getMessageResult).isNotNull(); assertThat(GetMessageStatus.FOUND).isEqualTo(getMessageResult.getStatus()); assertThat(getMessageResult.getMessageBufferList()).isNotNull().isNotEmpty(); assertThat(getMessageResult.getMessageBufferList().size()).isEqualTo(filteredMsgs.size()); for (ByteBuffer buffer : getMessageResult.getMessageBufferList()) { MessageExt messageExt = MessageDecoder.decode(buffer.slice(), false); assertThat(messageExt).isNotNull(); Object evlRet = null; try { evlRet = filterData.getCompiledExpression().evaluate(new MessageEvaluationContext(messageExt.getProperties())); } catch (Exception e) { e.printStackTrace(); assertThat(true).isFalse(); } assertThat(evlRet).isNotNull().isEqualTo(Boolean.TRUE); // check boolean find = false; for (MessageExtBrokerInner messageExtBrokerInner : filteredMsgs) { if (messageExtBrokerInner.getMsgId().equals(messageExt.getMsgId())) { find = true; } } assertThat(find).isTrue(); } } finally { getMessageResult.release(); } } } }