All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.activemq.artemis.rest.topic.TopicServiceManager Maven / Gradle / Ivy

There is a newer version: 2.25.0
Show 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.activemq.artemis.rest.topic;

import org.apache.activemq.artemis.api.core.SimpleString;
import org.apache.activemq.artemis.api.core.client.ClientSession;
import org.apache.activemq.artemis.rest.queue.DestinationServiceManager;

import java.util.ArrayList;
import java.util.List;

public class TopicServiceManager extends DestinationServiceManager {

   protected TopicPushStore pushStore;
   protected List topics = new ArrayList<>();
   protected TopicDestinationsResource destination;

   public TopicPushStore getPushStore() {
      return pushStore;
   }

   public void setPushStore(TopicPushStore pushStore) {
      this.pushStore = pushStore;
   }

   public List getTopics() {
      return topics;
   }

   public void setTopics(List topics) {
      this.topics = topics;
   }

   public TopicDestinationsResource getDestination() {
      return destination;
   }

   public void setDestination(TopicDestinationsResource destination) {
      this.destination = destination;
   }

   @Override
   public void start() throws Exception {
      initDefaults();

      started = true;

      if (pushStoreFile != null && pushStore == null) {
         pushStore = new FileTopicPushStore(pushStoreFile);
      }

      if (destination == null) {
         destination = new TopicDestinationsResource(this);
      }

      for (TopicDeployment topic : topics) {
         deploy(topic);
      }
   }

   public void deploy(TopicDeployment topicDeployment) throws Exception {
      if (!started) {
         throw new Exception("You must start() this class instance before deploying");
      }
      String queueName = topicDeployment.getName();
      ClientSession session = sessionFactory.createSession(false, false, false);
      ClientSession.QueueQuery query = session.queueQuery(new SimpleString(queueName));
      boolean defaultDurable = topicDeployment.isDurableSend();
      if (query.isExists()) {
         defaultDurable = query.isDurable();
      }
      else {
         session.createQueue(queueName, queueName, topicDeployment.isDurableSend());
      }
      session.close();

      destination.createTopicResource(queueName, defaultDurable, topicDeployment.getConsumerSessionTimeoutSeconds(), topicDeployment.isDuplicatesAllowed());
   }

   @Override
   public void stop() {
      if (started == false)
         return;
      for (TopicResource topic : destination.getTopics().values()) {
         topic.stop();
      }
      try {
         sessionFactory.close();
      }
      catch (Exception e) {
      }
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy