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

org.projectodd.wunderboss.messaging.hornetq.HQTopic Maven / Gradle / Ivy

/*
 * Copyright 2014-2015 Red Hat, Inc, and individual contributors.
 *
 * Licensed 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.projectodd.wunderboss.messaging.hornetq;

import org.projectodd.wunderboss.Options;
import org.projectodd.wunderboss.codecs.Codecs;
import org.projectodd.wunderboss.messaging.Context;
import org.projectodd.wunderboss.messaging.Listener;
import org.projectodd.wunderboss.messaging.MessageHandler;
import org.projectodd.wunderboss.messaging.Messaging;
import org.projectodd.wunderboss.messaging.Topic;

import javax.jms.Destination;
import javax.jms.JMSConsumer;
import java.util.HashMap;
import java.util.Map;

public class HQTopic extends HQDestination implements Topic {

    public HQTopic(String name, Destination destination, HQMessaging broker) {
        super(name, destination, broker);
    }

    @Override
    public Listener subscribe(final String id, final MessageHandler handler,
                              final Codecs codecs,
                              final Map options) throws Exception {
        Options opts = new Options<>(options);
        final HQSpecificContext context = context(id, opts.get(SubscribeOption.CONTEXT));
        final JMSConsumer consumer = context
                .jmsContext()
                .createDurableConsumer((javax.jms.Topic) jmsDestination(),
                                       id,
                                       opts.getString(SubscribeOption.SELECTOR), false);

        final Listener listener = new JMSListener(handler,
                                                  codecs,
                                                  this,
                                                  context,
                                                  consumer).start();

        Context parent = (Context)opts.get(SubscribeOption.CONTEXT);
        if (parent != null) {
            parent.addCloseable(listener);
        }

        broker().addCloseableForDestination(this, listener);

        return new Listener() {
            @Override
            public void close() throws Exception {
                listener.close();
                context.close();
            }
        };
    }

    @Override
    public void unsubscribe(String id, Map options) throws Exception {
        final Options opts = new Options<>(options);
        HQSpecificContext context = context(id, opts.get(UnsubscribeOption.CONTEXT));
        try {
            context.jmsContext().unsubscribe(id);
        } finally {
            context.close();
        }
    }

    public static String jmsName(String name) {
        return "jms.topic." + name;
    }

    public static String fullName(String name) {
        if (isJndiName(name)) {
            return name;
        } else {
            return jmsName(name);
        }
    }

    @Override
    public String jmsName() {
        return jmsName(name());
    }

    @Override
    public String fullName() {
        return fullName(name());
    }

    @Override
    public Destination jmsDestination() {
        return broker().lookupTopic(name());
    }

    protected HQSpecificContext context(final String id, final Object context) throws Exception {
        if (context != null) {
            return ((HQSpecificContext)context).asNonCloseable();
        } else {
            return (HQSpecificContext)broker()
                    .createContext(new HashMap() {{
                        put(Messaging.CreateContextOption.CLIENT_ID, id);
                    }});
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy