Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.client.admin.internal;
import static org.apache.pulsar.shade.com.google.common.base.Preconditions.checkArgument;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import org.apache.pulsar.shade.javax.ws.rs.client.Entity;
import org.apache.pulsar.shade.javax.ws.rs.client.WebTarget;
import org.apache.pulsar.shade.javax.ws.rs.core.MediaType;
import org.apache.pulsar.client.admin.NonPersistentTopics;
import org.apache.pulsar.client.admin.PulsarAdminException;
import org.apache.pulsar.client.api.Authentication;
import org.apache.pulsar.common.naming.NamespaceName;
import org.apache.pulsar.common.naming.TopicName;
import org.apache.pulsar.common.partition.PartitionedTopicMetadata;
import org.apache.pulsar.common.policies.data.NonPersistentTopicStats;
import org.apache.pulsar.common.policies.data.PersistentTopicInternalStats;
public class NonPersistentTopicsImpl extends BaseResource implements NonPersistentTopics {
private final WebTarget adminNonPersistentTopics;
private final WebTarget adminV2NonPersistentTopics;
public NonPersistentTopicsImpl(WebTarget web, Authentication auth, long requestTimeoutMs) {
super(auth, requestTimeoutMs);
adminNonPersistentTopics = web.path("/admin");
adminV2NonPersistentTopics = web.path("/admin/v2");
}
@Override
public void createPartitionedTopic(String topic, int numPartitions) throws PulsarAdminException {
sync(() -> createPartitionedTopicAsync(topic, numPartitions));
}
@Override
public CompletableFuture createPartitionedTopicAsync(String topic, int numPartitions) {
checkArgument(numPartitions > 0, "Number of partitions should be more than 0");
TopicName topicName = validateTopic(topic);
WebTarget path = topicPath(topicName, "partitions");
return asyncPutRequest(path, Entity.entity(numPartitions, MediaType.APPLICATION_JSON));
}
@Override
public PartitionedTopicMetadata getPartitionedTopicMetadata(String topic) throws PulsarAdminException {
return sync(() -> getPartitionedTopicMetadataAsync(topic));
}
@Override
public CompletableFuture getPartitionedTopicMetadataAsync(String topic) {
TopicName topicName = validateTopic(topic);
WebTarget path = topicPath(topicName, "partitions");
return asyncGetRequest(path, new FutureCallback(){});
}
@Override
public NonPersistentTopicStats getStats(String topic) throws PulsarAdminException {
return sync(() -> getStatsAsync(topic));
}
@Override
public CompletableFuture getStatsAsync(String topic) {
TopicName topicName = validateTopic(topic);
WebTarget path = topicPath(topicName, "stats");
return asyncGetRequest(path, new FutureCallback() {});
}
@Override
public PersistentTopicInternalStats getInternalStats(String topic) throws PulsarAdminException {
return sync(() -> getInternalStatsAsync(topic));
}
@Override
public CompletableFuture getInternalStatsAsync(String topic) {
TopicName topicName = validateTopic(topic);
WebTarget path = topicPath(topicName, "internalStats");
return asyncGetRequest(path, new FutureCallback(){});
}
@Override
public void unload(String topic) throws PulsarAdminException {
sync(() -> unloadAsync(topic));
}
@Override
public CompletableFuture unloadAsync(String topic) {
TopicName topicName = validateTopic(topic);
WebTarget path = topicPath(topicName, "unload");
return asyncPutRequest(path, Entity.entity("", MediaType.APPLICATION_JSON));
}
@Override
public List getListInBundle(String namespace, String bundleRange) throws PulsarAdminException {
return sync(() -> getListInBundleAsync(namespace, bundleRange));
}
@Override
public CompletableFuture> getListInBundleAsync(String namespace, String bundleRange) {
NamespaceName ns = NamespaceName.get(namespace);
WebTarget path = namespacePath("non-persistent", ns, bundleRange);
return asyncGetRequest(path, new FutureCallback>() {});
}
@Override
public List getList(String namespace) throws PulsarAdminException {
return sync(() -> getListAsync(namespace));
}
@Override
public CompletableFuture> getListAsync(String namespace) {
NamespaceName ns = NamespaceName.get(namespace);
WebTarget path = namespacePath("non-persistent", ns);
return asyncGetRequest(path, new FutureCallback>(){});
}
/*
* returns topic name with encoded Local Name
*/
private TopicName validateTopic(String topic) {
// Parsing will throw exception if name is not valid
return TopicName.get(topic);
}
private WebTarget namespacePath(String domain, NamespaceName namespace, String... parts) {
final WebTarget base = namespace.isV2() ? adminV2NonPersistentTopics : adminNonPersistentTopics;
WebTarget namespacePath = base.path(domain).path(namespace.toString());
namespacePath = WebTargets.addParts(namespacePath, parts);
return namespacePath;
}
private WebTarget topicPath(TopicName topic, String... parts) {
final WebTarget base = topic.isV2() ? adminV2NonPersistentTopics : adminNonPersistentTopics;
WebTarget topicPath = base.path(topic.getRestPath());
topicPath = WebTargets.addParts(topicPath, parts);
return topicPath;
}
}