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

📄 exporter.java

📁 OpenJMS是一个开源的Java Message Service API 1.0.2 规范的实现,它包含有以下特性: *. 它既支持点到点(point-to-point)(PTP)模型和发布/订
💻 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 2005 (C) Exoffice Technologies Inc. All Rights Reserved. * * $Id: Exporter.java,v 1.3 2005/11/12 12:47:37 tanderson Exp $ */package org.exolab.jms.tools.migration;import java.sql.Connection;import java.sql.SQLException;import javax.jms.JMSException;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;import org.apache.derby.jdbc.EmbeddedDataSource;import org.exolab.jms.config.Configuration;import org.exolab.jms.config.ConfigurationReader;import org.exolab.jms.persistence.DatabaseService;import org.exolab.jms.persistence.PersistenceException;import org.exolab.jms.service.ServiceException;import org.exolab.jms.tools.db.Database;import org.exolab.jms.tools.db.RDBMSTool;import org.exolab.jms.tools.migration.master.MasterConsumerStore;import org.exolab.jms.tools.migration.master.MasterDestinationStore;import org.exolab.jms.tools.migration.master.MasterMessageStore;import org.exolab.jms.tools.migration.master.MasterUserStore;import org.exolab.jms.tools.migration.proxy.ConsumerStore;import org.exolab.jms.tools.migration.proxy.DestinationStore;import org.exolab.jms.tools.migration.proxy.MessageStore;import org.exolab.jms.tools.migration.proxy.PropertyStore;import org.exolab.jms.tools.migration.proxy.UserStore;import org.exolab.jms.tools.migration.proxy.VersionInfo;import org.exolab.jms.util.CommandLine;import org.exolab.jms.util.Version;/** * Exports data from a master database into a proxy. * * @author <a href="mailto:tma@netspace.net.au">Tim Anderson</a> * @version $Revision: 1.3 $ $Date: 2005/11/12 12:47:37 $ * @see Importer */public class Exporter {    /**     * The database service.     */    private final DatabaseService _database;    /**     * The connection factory for the target database.     */    private final EmbeddedDataSource _dataSource;    /**     * The logger.     */    private final Log _log = LogFactory.getLog(Exporter.class);    /**     * Construct a new <code>Exporter</code>.     *     * @param config   the configuration to use     * @param database the database name     * @param delete   if <code>true</code>, indicates to delete data in the     *                 migration database, if it exists     */    public Exporter(Configuration config, String database, boolean delete)            throws PersistenceException {        if (config == null) {            throw new IllegalArgumentException("Argument 'config' is null");        }        if (database == null) {            throw new IllegalArgumentException("Argument 'database' is null");        }        _database = new DatabaseService(config);        _dataSource = MigrationHelper.getDataSource(database);        init(delete);    }    /**     * Export the data from the master database to the migration database.     *     * @throws JMSException     * @throws PersistenceException for any persistence error     * @throws ServiceException     for any service error     */    public void apply() throws JMSException, PersistenceException,                               ServiceException {        // get a connection to the migration database        Connection connection;        try {            connection = _dataSource.getConnection();        } catch (SQLException exception) {            throw new PersistenceException(                    "Failed to get connection to target database",                    exception);        }        PropertyStore properties = new PropertyStore(connection);        VersionInfo info = new VersionInfo(properties);        info.setProxySchemaVersion("1.0");        info.setOpenJMSVersion(Version.VERSION);        info.setCreationTimestamp(System.currentTimeMillis());        DestinationStore destinations = new DestinationStore(connection);        ConsumerStore consumers = new ConsumerStore(destinations, connection);        MessageStore messages = new MessageStore(destinations, connection);        UserStore users = new UserStore(connection);        // export data from the master database to the migration database        _database.start();        _log.info("Exporting destinations...");        apply(new MasterDestinationStore(_database), destinations);        _log.info("Exported " + destinations.size() + " destinations");        _log.info("Exporting messages...");        apply(new MasterMessageStore(_database), messages);        _log.info("Exported " + messages.size() + " messages");        _log.info("Exporting consumers...");        apply(new MasterConsumerStore(_database), consumers);        _log.info("Exported " + consumers.size() + " consumers");        _log.info("Exporting users...");        apply(new MasterUserStore(_database), users);        _log.info("Exported " + users.size() + " users");        try {            connection.close();        } catch (SQLException exception) {            throw new PersistenceException("Failed to close target",                                           exception);        }        _database.stop();        _dataSource.setShutdownDatabase("shutdown");        _log.info("Export complete");    }    /**     * Main line.     *     * @param args command line arguments     */    public static void main(String[] args) {        CommandLine commands = new CommandLine(args);        String path = commands.value("config");        if (path == null) {            usage();            System.exit(1);        } else {            try {                Configuration config = ConfigurationReader.read(path);                String database = commands.value("db");                if (database == null) {                    database = "openjms_migdb";                }                boolean delete = commands.exists("delete");                Exporter exporter = new Exporter(config, database, delete);                exporter.apply();                System.exit(0);            } catch (Exception exception) {                exception.printStackTrace();                System.exit(1);            }        }    }    /**     * Initialise the target database.     *     * @param delete if <code>true</code>, indicates to delete data in the     *               proxy database, if it exists     * @throws PersistenceException for any persistence error     */    private void init(boolean delete) throws PersistenceException {        RDBMSTool tool;        try {            tool = new RDBMSTool(_dataSource.getConnection());        } catch (SQLException exception) {            throw new PersistenceException(exception);        }        try {            Database schema = MigrationHelper.getSchema();            if (tool.hasTables(schema.getTable())) {                if (delete) {                    tool.delete(schema);                } else {                    throw new PersistenceException(                            "Cannot export data: migration database already "                            + "exists but delete not specified");                }            } else {                tool.create(schema);            }        } finally {            tool.close();        }    }    /**     * Export data from a source store, and import it to a target store.     *     * @param source the source store     * @param target the target store     * @throws JMSException         for any JMS error     * @throws PersistenceException for any persistence error     */    private void apply(Store source, Store target)            throws JMSException, PersistenceException {        StoreIterator iterator = source.exportCollection();        target.importCollection(iterator);    }    /**     * Displays usage information for this tool when invoked from the command     * line     */    private static void usage() {        System.err.println(                "usage: " + Exporter.class.getName()                + " <arguments> [options]\n"                + "arguments:\n"                + "  -config <path>  specifies the path to an OpenJMS "                + "configuration file\n"                + "  -db <name>  specifies the path to export data to\n");    }}

⌨️ 快捷键说明

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