pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hermes-common Show documentation
Show all versions of hermes-common Show documentation
Fast and reliable message broker built on top of Kafka.
package pl.allegro.tech.hermes.infrastructure.zookeeper;
import com.google.common.base.Joiner;
import org.apache.commons.lang3.StringUtils;
import pl.allegro.tech.hermes.api.Subscription;
import pl.allegro.tech.hermes.api.SubscriptionName;
import pl.allegro.tech.hermes.api.TopicName;
import pl.allegro.tech.hermes.common.kafka.KafkaTopicName;
public class ZookeeperPaths {
public static final String TOPICS_PATH = "topics";
public static final String GROUPS_PATH = "groups";
public static final String SUBSCRIPTIONS_PATH = "subscriptions";
public static final String KAFKA_TOPICS_PATH = "kafka_topics";
public static final String URL_SEPARATOR = "/";
public static final String CONSUMERS_WORKLOAD_PATH = "consumers-workload";
public static final String CONSUMER_LOAD_PATH = "consumer-load";
public static final String SUBSCRIPTION_PROFILES_PATH = "subscription-profiles";
public static final String CONSUMERS_WORKLOAD_CONSTRAINTS_PATH = "consumers-workload-constraints";
public static final String CONSUMERS_RATE_PATH = "consumers-rate";
public static final String METRICS_PATH = "metrics";
public static final String ADMIN_PATH = "admin";
public static final String PREVIEW_PATH = "preview";
public static final String OAUTH_PROVIDERS_PATH = "oauth-providers";
public static final String BLACKLIST_PATH = "blacklist";
public static final String MAX_RATE_PATH = "max-rate";
public static final String MAX_RATE_HISTORY_PATH = "history";
public static final String STORAGE_HEALTH_PATH = "storage-health";
public static final String DATACENTER_READINESS_PATH = "datacenter-readiness";
public static final String OFFLINE_RETRANSMISSION_PATH = "offline-retransmission";
public static final String OFFLINE_RETRANSMISSION_TASKS_PATH = "tasks";
private final String basePath;
public ZookeeperPaths(String basePath) {
this.basePath = basePath;
}
public String basePath() {
return basePath;
}
public String extractChildNode(String fullChildPath, String prefixPath) {
return StringUtils.removeStart(fullChildPath, prefixPath + URL_SEPARATOR);
}
public String adminPath() {
return Joiner.on(URL_SEPARATOR).join(basePath, ADMIN_PATH);
}
public String adminOperationPath(String operation) {
return Joiner.on(URL_SEPARATOR).join(adminPath(), operation);
}
public String groupsPath() {
return Joiner.on(URL_SEPARATOR).join(basePath, GROUPS_PATH);
}
public String groupPath(String groupName) {
return Joiner.on(URL_SEPARATOR).join(groupsPath(), groupName);
}
public String topicsPath(String groupName) {
return Joiner.on(URL_SEPARATOR).join(groupPath(groupName), TOPICS_PATH);
}
public String topicMetricPath(TopicName topicName, String metricName) {
return topicPath(topicName, "metrics", metricName);
}
public String subscriptionsPath(TopicName topicName) {
return Joiner.on(URL_SEPARATOR).join(topicPath(topicName), SUBSCRIPTIONS_PATH);
}
public String topicPath(TopicName topicName, String... tail) {
return Joiner.on(URL_SEPARATOR).join(topicsPath(topicName.getGroupName()), topicName.getName(), (Object[]) tail);
}
public String topicPreviewPath(TopicName topicName) {
return topicPath(topicName, ZookeeperPaths.PREVIEW_PATH);
}
public String topicMetricsPath(TopicName topicName) {
return topicPath(topicName, METRICS_PATH);
}
public String subscriptionPath(TopicName topicName, String subscriptionName, String... tail) {
return Joiner.on(URL_SEPARATOR).join(subscriptionsPath(topicName), subscriptionName, (Object[]) tail);
}
public String subscriptionPath(Subscription subscription) {
return subscriptionPath(subscription.getTopicName(), subscription.getName());
}
public String subscriptionMetricsPath(TopicName topicName, String subscriptionName) {
return subscriptionPath(topicName, subscriptionName, METRICS_PATH);
}
public String subscriptionMetricPath(TopicName topicName, String subscriptionName, String metricName) {
return subscriptionPath(topicName, subscriptionName, METRICS_PATH, metricName);
}
public String subscriptionMetricPath(SubscriptionName subscriptionName, String metricName) {
return subscriptionPath(subscriptionName.getTopicName(), subscriptionName.getName(), METRICS_PATH, metricName);
}
public String offsetPath(TopicName topicName,
String subscriptionName,
KafkaTopicName kafkaTopicName,
String brokersClusterName,
int partitionId) {
return Joiner.on(URL_SEPARATOR).join(
offsetsPath(topicName, subscriptionName, kafkaTopicName, brokersClusterName),
partitionId);
}
public String offsetsPath(TopicName topicName,
String subscriptionName,
KafkaTopicName kafkaTopicName,
String brokersClusterName) {
return Joiner.on(URL_SEPARATOR).join(
subscribedKafkaTopicsPath(topicName, subscriptionName),
kafkaTopicName.asString(),
"offset",
brokersClusterName);
}
public String subscribedKafkaTopicsPath(TopicName topicName, String subscriptionName) {
return Joiner.on(URL_SEPARATOR).join(subscriptionPath(topicName, subscriptionName), KAFKA_TOPICS_PATH);
}
public String consumersWorkloadConstraintsPath() {
return Joiner.on(URL_SEPARATOR).join(basePath, CONSUMERS_WORKLOAD_CONSTRAINTS_PATH);
}
public String consumersWorkloadConstraintsPath(String constraintsPath) {
return Joiner.on(URL_SEPARATOR).join(consumersWorkloadConstraintsPath(), constraintsPath);
}
public String topicsBlacklistPath() {
return Joiner.on(URL_SEPARATOR).join(basePath, BLACKLIST_PATH, TOPICS_PATH);
}
public String blacklistedTopicPath(String qualifiedTopicName) {
return Joiner.on(URL_SEPARATOR).join(topicsBlacklistPath(), qualifiedTopicName);
}
public String oAuthProvidersPath() {
return Joiner.on(URL_SEPARATOR).join(basePath, OAUTH_PROVIDERS_PATH);
}
public String oAuthProviderPath(String oAuthProviderName) {
return Joiner.on(URL_SEPARATOR).join(oAuthProvidersPath(), oAuthProviderName);
}
public String nodeHealthPathForManagementHost(String host, String port) {
return Joiner.on(URL_SEPARATOR).join(basePath, STORAGE_HEALTH_PATH, String.format("%s_%s", host, port));
}
public String datacenterReadinessPath() {
return Joiner.on(URL_SEPARATOR).join(basePath, DATACENTER_READINESS_PATH);
}
public String offlineRetransmissionPath() {
return Joiner.on(URL_SEPARATOR).join(basePath, OFFLINE_RETRANSMISSION_PATH, OFFLINE_RETRANSMISSION_TASKS_PATH);
}
public String offlineRetransmissionPath(String taskId) {
return Joiner.on(URL_SEPARATOR)
.join(basePath, OFFLINE_RETRANSMISSION_PATH, OFFLINE_RETRANSMISSION_TASKS_PATH, taskId);
}
public String join(String... parts) {
return Joiner.on(URL_SEPARATOR).join(parts);
}
}