⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jmsserver.java

📁 一个java方面的消息订阅发送的源码
💻 JAVA
字号:
/**
 * Redistribution and use of this software and associated documentation
 * ("Software"), with or without modification, are permitted provided
 * that the following conditions are met:
 *
 * 1. Redistributions of source code must retain copyright
 *    statements and notices.  Redistributions must also contain a
 *    copy of this document.
 *
 * 2. Redistributions in binary form must reproduce the
 *    above copyright notice, this list of conditions and the
 *    following disclaimer in the documentation and/or other
 *    materials provided with the distribution.
 *
 * 3. The name "Exolab" must not be used to endorse or promote
 *    products derived from this Software without prior written
 *    permission of Exoffice Technologies.  For written permission,
 *    please contact info@exolab.org.
 *
 * 4. Products derived from this Software may not be called "Exolab"
 *    nor may "Exolab" appear in their names without prior written
 *    permission of Exoffice Technologies. Exolab is a registered
 *    trademark of Exoffice Technologies.
 *
 * 5. Due credit should be given to the Exolab Project
 *    (http://www.exolab.org/).
 *
 * THIS SOFTWARE IS PROVIDED BY EXOFFICE TECHNOLOGIES AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
 * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
 * EXOFFICE TECHNOLOGIES OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * Copyright 2000-2005 (C) Exoffice Technologies Inc. All Rights Reserved.
 *
 * $Id: JmsServer.java,v 1.3 2005/06/07 14:24:39 tanderson Exp $
 */
package org.exolab.jms.server;

import java.io.PrintStream;
import javax.naming.NamingException;

import org.apache.log4j.xml.DOMConfigurator;

import org.exolab.jms.authentication.AuthenticationMgr;
import org.exolab.jms.config.Configuration;
import org.exolab.jms.config.ConfigurationManager;
import org.exolab.jms.config.LoggerConfiguration;
import org.exolab.jms.events.BasicEventManager;
import org.exolab.jms.gc.GarbageCollectionService;
import org.exolab.jms.lease.LeaseManager;
import org.exolab.jms.messagemgr.DestinationManager;
import org.exolab.jms.messagemgr.MessageMgr;
import org.exolab.jms.persistence.DatabaseService;
import org.exolab.jms.scheduler.Scheduler;
import org.exolab.jms.service.ServiceException;
import org.exolab.jms.service.ServiceManager;
import org.exolab.jms.threads.ThreadPoolManager;
import org.exolab.jms.util.CommandLine;
import org.exolab.jms.util.Version;


/**
 * This class contains the main line for instantiating the JMS Server. It
 * dynamically detemrines, from the configuration information which of the
 * servers to implement and then calls the init method on them.
 *
 * @author <a href="mailto:jima@exoffice.com">Jim Alateras</a>
 * @author <a href="mailto:tma@netspace.net.au">Tim Anderson</a>
 * @version $Revision: 1.3 $ $Date: 2005/06/07 14:24:39 $
 * @see ConfigurationManager
 */
public class JmsServer {

    /**
     * The service manager.
     */
    protected ServiceManager _services = null;

    /**
     * The configuration of this server.
     */
    private Configuration _config;


    /**
     * Construct a new <code>JmsServer</code>.
     *
     * @param config the server configuration
     * @throws ServerException if the server cannot be created
     */
    public JmsServer(Configuration config) throws ServerException {
        version();
        ConfigurationManager.setConfig(config);
    }

    /**
     * Construct a new <code>JmsServer</code>, configured from the specified
     * configuration file.
     *
     * @param file configuration file name
     * @throws ServerException if the server cannot be created
     */
    public JmsServer(String file) throws ServerException {
        version();

        try {
            // initialise the configuration manager
            ConfigurationManager.setConfig(file);
            _config = ConfigurationManager.getConfig();
        } catch (Exception exception) {
            throw new FailedToCreateServerException(
                    "Failed to read configuration: " + file, exception);
        }
    }

    /**
     * Initialise the server
     *
     * @throws NamingException if administered objects cannot be bound in JNDI
     * @throws ServerException if the server cannot be initialised
     */
    public void init() throws NamingException, ServerException {
        // initialise the logger
        LoggerConfiguration log = _config.getLoggerConfiguration();

        // @todo - need to do this in main(), to allow pluggable log factories
        // when embedding OpenJMS
        DOMConfigurator.configure(log.getFile());

        // initialise the service manager
        _services = ServiceManager.instance();

        // initialise the embedded JNDI server if required
        if (_config.getServerConfiguration().getEmbeddedJNDI()) {
            EmbeddedNameService.getInstance();
        }

        // initialise the services, and start them
        try {
            registerServices();
            _services.startAll();
        } catch (ServiceException exception) {
            throw new ServerException("Failed to start services", exception);
        }

        // create and bind administered destinations
        DestinationManager.instance()
                .registerConfiguredAdministeredDestinations();

        // create and start the connector service
        try {
            ConnectorService connectors = new ConnectorService(_config);
            _services.add(connectors.getName(), connectors);
            connectors.start();
        } catch (ServerException exception) {
            throw exception;
        } catch (ServiceException exception) {
            throw new ServerException(exception.getMessage(), exception);
        }
    }

    /**
     * This is the main line for the JMS Server. It processes the command line
     * argument, instantiates an instance of the server class and calls the init
     * routine on it.
     */
    public static void main(String[] args) {
        try {
            CommandLine cmdline = new CommandLine(args);

            boolean helpSet = cmdline.exists("help");
            boolean versionSet = cmdline.exists("version");
            boolean configSet = cmdline.exists("config");

            if (helpSet) {
                usage();
            } else if (versionSet) {
                version();
            } else if (!configSet && args.length != 0) {
                // invalid argument specified
                usage();
            } else {
                String config = cmdline.value("config",
                                              getOpenJMSHome()
                                              + "/config/openjms.xml");
                JmsServer server = new JmsServer(config);
                server.init();
            }
        } catch (Exception exception) {
            exception.printStackTrace();
            // force termination of any threads
            System.exit(-1);
        }
    }

    public static void version() {
        System.err.println(Version.TITLE + " " + Version.VERSION);
        System.err.println(Version.COPYRIGHT);
        System.err.println(Version.VENDOR_URL);
    }

    /**
     * Print out information on running this sevice
     */
    protected static void usage() {
        PrintStream out = System.out;

        out.println("\n\n");
        out.println("=====================================================");
        out.println("Usage information for org.exolab.jms.server.JmsServer");
        out.println("=====================================================");
        out.println("\norg.exolab.jms.server.JmsServer");
        out.println("    [-config <xml config file> | -version | -help]\n");
        out.println("\t-config  file name of xml-based config file\n");
        out.println("\t-version displays OpenJMS version information\n");
        out.println("\t-help    displays this screen\n");
    }

    /**
     * Initialise the services
     */
    protected void registerServices() throws ServiceException {
        // add the thread pool manager
        _services.add(ThreadPoolManager.instance().getName(),
                      ThreadPoolManager.instance());

        // add the event manager
        _services.add(BasicEventManager.instance().getName(),
                      BasicEventManager.instance());

        // add the database service
        _services.add(DatabaseService.instance().getName(),
                      DatabaseService.instance());

        // add the scheduler
        _services.add(Scheduler.createInstance().getName(),
                      Scheduler.instance());

        // add the lease manager
        _services.add(LeaseManager.instance().getName(),
                      LeaseManager.instance());

        // add the transaction manager
        //_services.add (TransactionService.instance().getName(),
        //                 TransactionService.instance());

        // add the garbage collection service
        _services.add(GarbageCollectionService.instance().getName(),
                      GarbageCollectionService.instance());

        // add the authentication manager
        _services.add(AuthenticationMgr.createInstance().getName(),
                      AuthenticationMgr.instance());

        // add the resource manager service
        //_services.add(ResourceManager.instance().getName(),
        //                ResourceManager.instance());

        // add the message manager
        _services.add(MessageMgr.createInstance().getName(),
                      MessageMgr.instance());
    }

    /**
     * Returns the value of the <code>openjms.home</code> system property. If
     * none is set, returns the value of the <code>user.dir</code> property.
     *
     * @return the value of the openjms.home system property
     */
    private static String getOpenJMSHome() {
        return System.getProperty("openjms.home",
                                  System.getProperty("user.dir"));
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -