Search in sources :

Example 41 with DBWHandlerConfiguration

use of org.jkiss.dbeaver.model.net.DBWHandlerConfiguration in project dbeaver by dbeaver.

the class PrefPageProjectNetworkProfiles method performDefaults.

@Override
protected void performDefaults() {
    super.performDefaults();
    profilesTable.removeAll();
    if (projectMeta != null) {
        for (DBWNetworkProfile profile : projectMeta.getDataSourceRegistry().getNetworkProfiles()) {
            TableItem item = new TableItem(profilesTable, SWT.NONE);
            item.setText(profile.getProfileName());
            item.setImage(DBeaverIcons.getImage(DBIcon.TYPE_DOCUMENT));
            item.setData(profile);
            if (selectedProfile == null) {
                selectedProfile = profile;
                profilesTable.select(0);
            }
            for (NetworkHandlerDescriptor nhd : allHandlers) {
                HandlerBlock handlerBlock = configurations.get(nhd);
                DBWHandlerConfiguration configuration = profile.getConfiguration(nhd);
                if (configuration != null) {
                    handlerBlock.loadedConfigs.put(profile, configuration);
                }
            }
        }
    }
    updateControlsState();
}
Also used : DBWNetworkProfile(org.jkiss.dbeaver.model.net.DBWNetworkProfile) DBWHandlerConfiguration(org.jkiss.dbeaver.model.net.DBWHandlerConfiguration) NetworkHandlerDescriptor(org.jkiss.dbeaver.registry.network.NetworkHandlerDescriptor)

Example 42 with DBWHandlerConfiguration

use of org.jkiss.dbeaver.model.net.DBWHandlerConfiguration in project dbeaver by dbeaver.

the class PrefPageProjectNetworkProfiles method updateControlsState.

private void updateControlsState() {
    NetworkHandlerDescriptor descriptor = getSelectedHandler();
    enableHandlerContent(descriptor);
    if (descriptor != null) {
        HandlerBlock handlerBlock = configurations.get(descriptor);
        DBWHandlerConfiguration handlerConfiguration = handlerBlock.loadedConfigs.get(selectedProfile);
        if (handlerConfiguration == null) {
            handlerBlock.configurator.loadSettings(new DBWHandlerConfiguration(descriptor, null));
        } else {
            handlerBlock.configurator.loadSettings(handlerConfiguration);
        }
    }
}
Also used : DBWHandlerConfiguration(org.jkiss.dbeaver.model.net.DBWHandlerConfiguration) NetworkHandlerDescriptor(org.jkiss.dbeaver.registry.network.NetworkHandlerDescriptor)

Example 43 with DBWHandlerConfiguration

use of org.jkiss.dbeaver.model.net.DBWHandlerConfiguration in project dbeaver by serge-rider.

the class ConnectionPageNetworkHandler method createControl.

@Override
public void createControl(Composite parent) {
    try {
        String implName = handlerDescriptor.getHandlerType().getImplName();
        UIPropertyConfiguratorDescriptor configDescriptor = UIPropertyConfiguratorRegistry.getInstance().getDescriptor(implName);
        if (configDescriptor == null) {
            return;
        }
        configurator = configDescriptor.createConfigurator();
    } catch (DBException e) {
        log.error("Can't create network configurator '" + handlerDescriptor.getId() + "'", e);
        return;
    }
    DBPDataSourceContainer dataSource = site.getActiveDataSource();
    DBPConnectionConfiguration connectionConfiguration = dataSource.getConnectionConfiguration();
    handlerConfiguration = connectionConfiguration.getHandler(handlerDescriptor.getId());
    if (handlerConfiguration == null) {
        handlerConfiguration = new DBWHandlerConfiguration(handlerDescriptor, dataSource);
        connectionConfiguration.updateHandler(handlerConfiguration);
    }
    Composite composite = new Composite(parent, SWT.NONE);
    composite.setLayout(new GridLayout(1, false));
    composite.setLayoutData(new GridData(GridData.FILL_BOTH));
    Composite buttonsGroup = UIUtils.createComposite(composite, 5);
    buttonsGroup.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
    useHandlerCheck = UIUtils.createCheckbox(buttonsGroup, NLS.bind(CoreMessages.dialog_tunnel_checkbox_use_handler, handlerDescriptor.getLabel()), false);
    useHandlerCheck.addSelectionListener(new SelectionAdapter() {

        @Override
        public void widgetSelected(SelectionEvent e) {
            handlerConfiguration.setEnabled(useHandlerCheck.getSelection());
            enableHandlerContent();
        }
    });
    UIUtils.createEmptyLabel(buttonsGroup, 1, 1).setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
    profileCombo = UIUtils.createLabelCombo(buttonsGroup, "Profile", SWT.READ_ONLY | SWT.DROP_DOWN);
    GridData gd = new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING);
    gd.widthHint = 200;
    profileCombo.setLayoutData(gd);
    profileCombo.addSelectionListener(new SelectionAdapter() {

        @Override
        public void widgetSelected(SelectionEvent e) {
            setConnectionConfigProfile(profileCombo.getText());
        }
    });
    ToolBar editToolbar = new ToolBar(buttonsGroup, SWT.HORIZONTAL);
    ToolItem editItem = new ToolItem(editToolbar, SWT.PUSH);
    editItem.setImage(DBeaverIcons.getImage(UIIcon.EDIT));
    editItem.setToolTipText("Edit profiles");
    editItem.addSelectionListener(new SelectionAdapter() {

        @Override
        public void widgetSelected(SelectionEvent e) {
            PreferenceDialog preferenceDialog = PreferencesUtil.createPropertyDialogOn(getShell(), site.getProject().getEclipseProject(), PrefPageProjectNetworkProfiles.PAGE_ID, null, null);
            if (preferenceDialog != null) {
                if (preferenceDialog.open() == IDialogConstants.OK_ID) {
                    setConnectionConfigProfile(profileCombo.getText());
                }
            }
        }
    });
    handlerComposite = UIUtils.createComposite(composite, 1);
    handlerComposite.setLayoutData(new GridData(GridData.FILL_BOTH));
    configurator.createControl(handlerComposite, this::updatePageCompletion);
    configurator.loadSettings(handlerConfiguration);
    useHandlerCheck.setSelection(handlerConfiguration.isEnabled());
    enableHandlerContent();
    updateProfileList();
    if (activeProfile != null) {
        DBWHandlerConfiguration profileConfig = activeProfile.getConfiguration(handlerDescriptor);
        if (profileConfig != null) {
            configurator.loadSettings(profileConfig);
        }
    }
    setControl(composite);
}
Also used : DBException(org.jkiss.dbeaver.DBException) SelectionAdapter(org.eclipse.swt.events.SelectionAdapter) DBPConnectionConfiguration(org.jkiss.dbeaver.model.connection.DBPConnectionConfiguration) GridLayout(org.eclipse.swt.layout.GridLayout) UIPropertyConfiguratorDescriptor(org.jkiss.dbeaver.registry.configurator.UIPropertyConfiguratorDescriptor) PreferenceDialog(org.eclipse.jface.preference.PreferenceDialog) DBWHandlerConfiguration(org.jkiss.dbeaver.model.net.DBWHandlerConfiguration) GridData(org.eclipse.swt.layout.GridData) SelectionEvent(org.eclipse.swt.events.SelectionEvent) DBPDataSourceContainer(org.jkiss.dbeaver.model.DBPDataSourceContainer)

Example 44 with DBWHandlerConfiguration

use of org.jkiss.dbeaver.model.net.DBWHandlerConfiguration in project dbeaver by serge-rider.

the class ConnectionPageNetwork method createHandlerTab.

private void createHandlerTab(final NetworkHandlerDescriptor descriptor) throws DBException {
    IObjectPropertyConfigurator<DBWHandlerConfiguration> configurator;
    try {
        String implName = descriptor.getHandlerType().getImplName();
        UIPropertyConfiguratorDescriptor configDescriptor = UIPropertyConfiguratorRegistry.getInstance().getDescriptor(implName);
        if (configDescriptor == null) {
            return;
        }
        configurator = configDescriptor.createConfigurator();
    } catch (DBException e) {
        log.error("Can't create network configurator '" + descriptor.getId() + "'", e);
        return;
    }
    TabItem tabItem = new TabItem(handlersFolder, SWT.NONE);
    tabItem.setText(descriptor.getLabel());
    tabItem.setToolTipText(descriptor.getDescription());
    Composite composite = new Composite(handlersFolder, SWT.NONE);
    tabItem.setControl(composite);
    composite.setLayout(new GridLayout(1, false));
    composite.setLayoutData(new GridData(GridData.FILL_BOTH));
    final Button useHandlerCheck = UIUtils.createCheckbox(composite, NLS.bind(CoreMessages.dialog_tunnel_checkbox_use_handler, descriptor.getLabel()), false);
    useHandlerCheck.addSelectionListener(new SelectionAdapter() {

        @Override
        public void widgetSelected(SelectionEvent e) {
            HandlerBlock handlerBlock = configurations.get(descriptor);
            DBWHandlerConfiguration handlerConfiguration = handlerBlock.loadedConfigs.get(wizard.getPageSettings().getActiveDataSource().getId());
            handlerConfiguration.setEnabled(useHandlerCheck.getSelection());
            enableHandlerContent(descriptor);
        }
    });
    Composite handlerComposite = UIUtils.createComposite(composite, 1);
    configurations.put(descriptor, new HandlerBlock(configurator, handlerComposite, useHandlerCheck, tabItem));
    handlerComposite.setLayoutData(new GridData(GridData.FILL_BOTH));
    configurator.createControl(handlerComposite, this::updatePageCompletion);
}
Also used : DBException(org.jkiss.dbeaver.DBException) Composite(org.eclipse.swt.widgets.Composite) SelectionAdapter(org.eclipse.swt.events.SelectionAdapter) TabItem(org.eclipse.swt.widgets.TabItem) GridLayout(org.eclipse.swt.layout.GridLayout) UIPropertyConfiguratorDescriptor(org.jkiss.dbeaver.registry.configurator.UIPropertyConfiguratorDescriptor) DBWHandlerConfiguration(org.jkiss.dbeaver.model.net.DBWHandlerConfiguration) Button(org.eclipse.swt.widgets.Button) GridData(org.eclipse.swt.layout.GridData) SelectionEvent(org.eclipse.swt.events.SelectionEvent)

Example 45 with DBWHandlerConfiguration

use of org.jkiss.dbeaver.model.net.DBWHandlerConfiguration in project dbeaver by serge-rider.

the class ConnectionPageNetwork method enableHandlerContent.

protected void enableHandlerContent(NetworkHandlerDescriptor descriptor) {
    HandlerBlock handlerBlock = configurations.get(descriptor);
    DBWHandlerConfiguration handlerConfiguration = handlerBlock.loadedConfigs.get(wizard.getPageSettings().getActiveDataSource().getId());
    handlerBlock.useHandlerCheck.setSelection(handlerConfiguration.isEnabled());
    if (handlerConfiguration.isEnabled()) {
        if (handlerBlock.blockEnableState != null) {
            handlerBlock.blockEnableState.restore();
            handlerBlock.blockEnableState = null;
        }
    } else if (handlerBlock.blockEnableState == null) {
        handlerBlock.blockEnableState = ControlEnableState.disable(handlerBlock.blockControl);
    }
}
Also used : DBWHandlerConfiguration(org.jkiss.dbeaver.model.net.DBWHandlerConfiguration)

Aggregations

DBWHandlerConfiguration (org.jkiss.dbeaver.model.net.DBWHandlerConfiguration)64 DBException (org.jkiss.dbeaver.DBException)20 DBPDataSourceContainer (org.jkiss.dbeaver.model.DBPDataSourceContainer)12 DBPConnectionConfiguration (org.jkiss.dbeaver.model.connection.DBPConnectionConfiguration)12 NetworkHandlerDescriptor (org.jkiss.dbeaver.registry.network.NetworkHandlerDescriptor)12 SQLException (java.sql.SQLException)8 DBWNetworkProfile (org.jkiss.dbeaver.model.net.DBWNetworkProfile)8 DBRShellCommand (org.jkiss.dbeaver.model.runtime.DBRShellCommand)8 SelectionAdapter (org.eclipse.swt.events.SelectionAdapter)6 SelectionEvent (org.eclipse.swt.events.SelectionEvent)6 GridData (org.eclipse.swt.layout.GridData)6 GridLayout (org.eclipse.swt.layout.GridLayout)6 Nullable (org.jkiss.code.Nullable)6 DBPDataSourceOrigin (org.jkiss.dbeaver.model.DBPDataSourceOrigin)6 DBPDriver (org.jkiss.dbeaver.model.connection.DBPDriver)6 SimplePreferenceStore (org.jkiss.dbeaver.model.impl.preferences.SimplePreferenceStore)6 UIPropertyConfiguratorDescriptor (org.jkiss.dbeaver.registry.configurator.UIPropertyConfiguratorDescriptor)6 TypeToken (com.google.gson.reflect.TypeToken)4 MalformedURLException (java.net.MalformedURLException)4 ArrayList (java.util.ArrayList)4