Package com.btmatthews.maven.plugins.inmemdb.ldr.dbunit

Source Code of com.btmatthews.maven.plugins.inmemdb.ldr.dbunit.AbstractDBUnitLoader

/*
* Copyright 2011 Brian Matthews
*
* 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 com.btmatthews.maven.plugins.inmemdb.ldr.dbunit;

import java.io.File;
import java.io.IOException;
import java.sql.SQLException;

import org.apache.maven.plugin.MojoFailureException;
import org.dbunit.DatabaseUnitException;
import org.dbunit.database.DatabaseDataSourceConnection;
import org.dbunit.database.IDatabaseConnection;
import org.dbunit.dataset.DataSetException;
import org.dbunit.dataset.IDataSet;
import org.dbunit.operation.DatabaseOperation;

import com.btmatthews.maven.plugins.inmemdb.Database;
import com.btmatthews.maven.plugins.inmemdb.Logger;
import com.btmatthews.maven.plugins.inmemdb.ldr.AbstractLoader;

/**
* Abstract base class for loaders that use DBUnit to load data sets.
*
* @author <a href="mailto:brian@btmatthews.com">Brian Matthews</a>
* @version 1.0.0
*/
public abstract class AbstractDBUnitLoader extends AbstractLoader {

    /**
     * Load a DBUnit data set.
     *
     * @param source
     *            The source file containing the DBUnit data set.
     * @return The DBUnit data set.
     * @throws DataSetException
     *             If there was an error loading the DBUnit data set.
     * @throws IOException
     *             IF there was error reading the file containing the DBUnit data set.
     */
    protected abstract IDataSet loadDataSet(File source)
            throws DataSetException, IOException;

    /**
     * Load a DBUnit data set into the in-memory database.
     *
     * @param logger
     *            Used to report errors and raise exceptions.
     * @param database
     *            The in-memory database.
     * @param source
     *            The source file containing the data set.
     * @throws MojoFailureException
     *             If there was an error loading the data set.
     */
    public final void load(final Logger logger, final Database database,
            final File source) throws MojoFailureException {
        assert database != null;
        assert logger != null;
        assert source != null;

        try {
            final IDataSet dataSet = loadDataSet(source);
            final IDatabaseConnection connection = new DatabaseDataSourceConnection(
                    database.getDataSource());
            try {
                DatabaseOperation.INSERT.execute(connection, dataSet);
            } finally {
                connection.close();
            }
        } catch (final SQLException exception) {
            logger.logError(ERROR_PROCESSING_SOURCE_FILE, exception,
                    source.getPath());
        } catch (final DatabaseUnitException exception) {
            logger.logError(ERROR_PROCESSING_SOURCE_FILE, exception,
                    source.getPath());
        } catch (final IOException exception) {
            logger.logError(CANNOT_READ_SOURCE_FILE, exception,
                    source.getPath());
        }
    }

}
TOP

Related Classes of com.btmatthews.maven.plugins.inmemdb.ldr.dbunit.AbstractDBUnitLoader

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.