Package org.objectweb.celtix.bus.transports.jms

Source Code of org.objectweb.celtix.bus.transports.jms.JMSProviderHub

package org.objectweb.celtix.bus.transports.jms;

import javax.jms.Connection;
import javax.jms.Destination;
import javax.jms.JMSException;
import javax.jms.QueueConnectionFactory;
import javax.jms.TopicConnectionFactory;
import javax.naming.Context;
import javax.naming.NamingException;

import org.objectweb.celtix.transports.jms.JMSAddressPolicyType;
import org.objectweb.celtix.transports.jms.JMSServerBehaviorPolicyType;


/**
* This class acts as the hub of JMS provider usage, creating shared
* JMS Connections and providing access to a pool of JMS Sessions.
* <p>
* A new JMS connection is created for each each port based
* <jms:address> - however its likely that in practice the same JMS
* provider will be specified for each port, and hence the connection
* resources could be shared accross ports.
* <p>
* For the moment this class is realized as just a container for
* static methods, but the intention is to support in future sharing
* of JMS resources accross compatible ports.
*
* @author Eoghan Glynn
*/
public final class JMSProviderHub {

    /**
     * Constructor.
     */
    private JMSProviderHub() {
    }

    //--java.lang.Object Overrides----------------------------------------------
    public String toString() {
        return "JMSProviderHub";
    }


    //--Methods-----------------------------------------------------------------

    protected static void connect(JMSTransportBase transport) throws JMSException, NamingException {
        JMSAddressPolicyType  addrDetails = transport.getJmsAddressDetails();
        JMSServerBehaviorPolicyType serverPolicy = null;
        if (transport instanceof JMSServerTransport) {
            serverPolicy = ((JMSServerTransport)transport).getJMSServerBehaviourPolicy();
        }

        // get JMS connection resources and destination
        //
        Context context = JMSUtils.getInitialContext(addrDetails);
        Connection connection = null;
       
        if (JMSConstants.JMS_QUEUE.equals(addrDetails.getDestinationStyle().value())) {
            QueueConnectionFactory qcf =
                (QueueConnectionFactory)context.lookup(addrDetails.getJndiConnectionFactoryName());
            if (addrDetails.isSetConnectionUserName()) {
                connection = qcf.createQueueConnection(addrDetails.getConnectionUserName(),
                                                       addrDetails.getConnectionPassword());
            } else {
                connection = qcf.createQueueConnection();
            }
        } else {
            TopicConnectionFactory tcf =
                (TopicConnectionFactory)context.lookup(addrDetails.getJndiConnectionFactoryName());
            if (addrDetails.isSetConnectionUserName()) {
                connection = tcf.createTopicConnection(addrDetails.getConnectionUserName(),
                                                       addrDetails.getConnectionPassword());
            } else {
                connection = tcf.createTopicConnection();
            }
        }

        connection.start();

        Destination requestDestination =
                (Destination)context.lookup(
                                           addrDetails.getJndiDestinationName());

        Destination replyDestination = (null != addrDetails.getJndiReplyDestinationName())
            ? (Destination)context.lookup(addrDetails.getJndiReplyDestinationName()) : null;

        // create session factory to manage session, reply destination,
        // producer and consumer pooling
        //
           
        JMSSessionFactory sf =
            new JMSSessionFactory(connection,
                                  replyDestination,
                                  addrDetails,
                                  serverPolicy,
                                  context);

        // notify transport that connection is complete
        //
        transport.connected(requestDestination, replyDestination, sf);
    }
}
TOP

Related Classes of org.objectweb.celtix.bus.transports.jms.JMSProviderHub

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.