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

jdplus.sql.desktop.plugin.jdbc.ExportJdbcConnection Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2013 National Bank of Belgium
 * 
 * Licensed under the EUPL, Version 1.1 or - as soon they will be approved 
 * by the European Commission - subsequent versions of the EUPL (the "Licence");
 * You may not use this work except in compliance with the Licence.
 * You may obtain a copy of the Licence at:
 * 
 * http://ec.europa.eu/idabc/eupl
 * 
 * Unless required by applicable law or agreed to in writing, software 
 * distributed under the Licence is distributed on an "AS IS" basis,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the Licence for the specific language governing permissions and 
 * limitations under the Licence.
 */
package jdplus.sql.desktop.plugin.jdbc;

import jdplus.toolkit.desktop.plugin.Config;
import jdplus.toolkit.desktop.plugin.interchange.Exportable;
import jdplus.toolkit.desktop.plugin.interchange.InterchangeManager;
import nbbrd.design.ClassNameConstant;
import lombok.NonNull;
import org.openide.awt.ActionID;
import org.openide.awt.ActionReference;
import org.openide.awt.ActionReferences;
import org.openide.awt.ActionRegistration;
import org.openide.nodes.Node;
import org.openide.util.HelpCtx;
import org.openide.util.NbBundle.Messages;
import org.openide.util.actions.NodeAction;
import org.openide.util.actions.Presenter;

import javax.swing.*;
import java.util.ArrayList;
import java.util.List;

@ActionID(category = "Edit", id = ExportJdbcConnection.ID)
@ActionRegistration(displayName = "#CTL_ExportJdbcConnection", lazy = false)
@ActionReferences({
    @ActionReference(path = "Databases/Explorer/Connection/Actions", position = 470)
})
@Messages("CTL_ExportJdbcConnection=Export to")
public final class ExportJdbcConnection extends NodeAction implements Presenter.Popup {

    @ClassNameConstant
    public static final String ID = "jdplus.sql.desktop.plugin.jdbc.ExportJdbcConnection";

    public ExportJdbcConnection() {
    }

    @Override
    public JMenuItem getPopupPresenter() {
        JMenuItem result = InterchangeManager.get().newExportMenu(getExportables(getActivatedNodes()));
        result.setText(Bundle.CTL_ExportJdbcConnection());
        return result;
    }

    @Override
    protected void performAction(Node[] activatedNodes) {
    }

    @Override
    protected boolean enable(Node[] activatedNodes) {
        return true;
    }

    @Override
    public String getName() {
        return null;
    }

    @Override
    public HelpCtx getHelpCtx() {
        return null;
    }

    private static List getExportables(Node[] activatedNodes) {
        List result = new ArrayList<>();
        for (final Node o : activatedNodes) {
            result.add(() -> toConfig(getConnectionBean(o)));
        }
        return result;
    }

    private static DriverBasedConfig getConnectionBean(Node activatedNode) {
        return DbExplorerUtil.exportConnection(DbExplorerUtil.findConnection(activatedNode).orElseThrow());
    }

    @NonNull
    private static Config toConfig(DriverBasedConfig conn) {
        Config.Builder result = Config.builder(DriverBasedConfig.class.getName(), conn.getDisplayName(), "")
                .parameter("driverClass", conn.getDriverClass())
                .parameter("databaseUrl", conn.getDatabaseUrl())
                .parameter("schema", conn.getSchema());
        conn.getParams().forEach((k, v) -> result.parameter("prop_" + k, v));
        return result.build();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy