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

org.datacleaner.panels.SelectDatastoreContainerPanel Maven / Gradle / Ivy

/**
 * DataCleaner (community edition)
 * Copyright (C) 2014 Free Software Foundation, Inc.
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.datacleaner.panels;

import java.awt.BorderLayout;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;

import javax.swing.JScrollPane;
import javax.swing.SwingUtilities;

import org.datacleaner.bootstrap.WindowContext;
import org.datacleaner.configuration.ServerInformationCatalog;
import org.datacleaner.connection.Datastore;
import org.datacleaner.database.DatabaseDriverCatalog;
import org.datacleaner.guice.DCModule;
import org.datacleaner.user.DatastoreChangeListener;
import org.datacleaner.user.DatastoreSelectedListener;
import org.datacleaner.user.MutableDatastoreCatalog;
import org.datacleaner.user.UserPreferences;
import org.datacleaner.windows.AnalysisJobBuilderWindow;

/**
 * The usual container panel of {@link SelectDatastorePanel} when selecting to
 * build job from scratch.
 */
public class SelectDatastoreContainerPanel extends DCSplashPanel
        implements DatastoreSelectedListener, DatastoreChangeListener {

    private static final long serialVersionUID = 1L;

    private final SelectDatastorePanel _selectDatastorePanel;
    private final MutableDatastoreCatalog _datastoreCatalog;

    public SelectDatastoreContainerPanel(final AnalysisJobBuilderWindow window, final DCModule dcModule,
            final DatabaseDriverCatalog databaseDriverCatalog, final MutableDatastoreCatalog datastoreCatalog,
            final ServerInformationCatalog serverInformationCatalog, final UserPreferences userPreferences,
            final WindowContext windowContext) {
        super(window);
        _datastoreCatalog = datastoreCatalog;
        _selectDatastorePanel =
                new SelectDatastorePanel(dcModule, datastoreCatalog, serverInformationCatalog, databaseDriverCatalog,
                        userPreferences, this, true);

        setLayout(new BorderLayout());
        final JScrollPane scroll = wrapContent(_selectDatastorePanel);
        add(createTitleLabel("Select datastore", true), BorderLayout.NORTH);
        add(scroll, BorderLayout.CENTER);

        addComponentListener(new ComponentAdapter() {
            @Override
            public void componentHidden(final ComponentEvent e) {
                scroll.getVerticalScrollBar().setValue(0);
            }
        });
    }

    @Override
    public void addNotify() {
        super.addNotify();
        _datastoreCatalog.addListener(this);
    }

    @Override
    public void removeNotify() {
        super.removeNotify();
        _datastoreCatalog.removeListener(this);
    }

    @Override
    public void onAdd(final Datastore datastore) {
        SwingUtilities.invokeLater(_selectDatastorePanel::updateDatastores);
    }

    @Override
    public void onRemove(final Datastore datastore) {
        SwingUtilities.invokeLater(_selectDatastorePanel::updateDatastores);
    }

    @Override
    public void datastoreSelected(final Datastore datastore) {
        getWindow().setDatastore(datastore);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy