org.apache.pulsar.common.topics.TopicList Maven / Gradle / Ivy
The newest version!
/*
* 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.pulsar.common.topics;
import org.apache.pulsar.shade.com.google.common.annotations.VisibleForTesting;
import org.apache.pulsar.shade.com.google.common.hash.Hashing;
import java.nio.charset.StandardCharsets;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
import lombok.experimental.UtilityClass;
import org.apache.pulsar.common.naming.SystemTopicNames;
import org.apache.pulsar.common.naming.TopicDomain;
import org.apache.pulsar.common.naming.TopicName;
@UtilityClass
public class TopicList {
public static final String ALL_TOPICS_PATTERN = ".*";
private static final String SCHEME_SEPARATOR = "://";
private static final Pattern SCHEME_SEPARATOR_PATTERN = Pattern.compile(Pattern.quote(SCHEME_SEPARATOR));
// get topics that match 'topicsPattern' from original topics list
// return result should contain only topic names, without partition part
public static List filterTopics(List original, String regex) {
Pattern topicsPattern = Pattern.compile(regex);
return filterTopics(original, topicsPattern);
}
public static List filterTopics(List original, Pattern topicsPattern) {
final Pattern shortenedTopicsPattern = Pattern.compile(removeTopicDomainScheme(topicsPattern.toString()));
return original.stream()
.map(TopicName::get)
.filter(topicName -> {
String partitionedTopicName = topicName.getPartitionedTopicName();
String removedScheme = SCHEME_SEPARATOR_PATTERN.split(partitionedTopicName)[1];
return shortenedTopicsPattern.matcher(removedScheme).matches();
})
.map(TopicName::toString)
.collect(Collectors.toList());
}
public static List filterSystemTopic(List original) {
return original.stream()
.filter(topic -> !SystemTopicNames.isSystemTopic(TopicName.get(topic)))
.collect(Collectors.toList());
}
public static String calculateHash(List topics) {
return Hashing.crc32c().hashBytes(topics.stream()
.sorted()
.collect(Collectors.joining(","))
.getBytes(StandardCharsets.UTF_8)).toString();
}
// get topics, which are contained in list1, and not in list2
public static Set minus(Collection list1, Collection list2) {
HashSet s1 = new HashSet<>(list1);
s1.removeAll(list2);
return s1;
}
@VisibleForTesting
static String removeTopicDomainScheme(String originalRegexp) {
if (!originalRegexp.toString().contains(SCHEME_SEPARATOR)) {
return originalRegexp;
}
String[] parts = SCHEME_SEPARATOR_PATTERN.split(originalRegexp.toString());
String prefix = parts[0];
String removedTopicDomain = parts[1];
if (prefix.equals(TopicDomain.persistent.value()) || prefix.equals(TopicDomain.non_persistent.value())) {
prefix = "";
} else if (prefix.endsWith(TopicDomain.non_persistent.value())) {
prefix = prefix.substring(0, prefix.length() - TopicDomain.non_persistent.value().length());
} else if (prefix.endsWith(TopicDomain.persistent.value())){
prefix = prefix.substring(0, prefix.length() - TopicDomain.persistent.value().length());
} else {
throw new IllegalArgumentException("Does not support topic domain: " + prefix);
}
return String.format("%s%s", prefix, removedTopicDomain);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy