use of org.jkiss.dbeaver.model.DBPDataSourceContainer in project dbeaver by dbeaver.
the class DBeaverInstanceServer method openDatabaseConnection.
@Override
public void openDatabaseConnection(String connectionSpec) throws RemoteException {
// Do not log it (#3788)
// log.debug("Open external database connection [" + connectionSpec + "]");
InstanceConnectionParameters instanceConParameters = new InstanceConnectionParameters();
final DBPDataSourceContainer dataSource = DataSourceUtils.getDataSourceBySpec(DBWorkbench.getPlatform().getWorkspace().getActiveProject(), connectionSpec, instanceConParameters, false, instanceConParameters.createNewConnection);
if (dataSource == null) {
return;
}
if (instanceConParameters.openConsole) {
final IWorkbenchWindow workbenchWindow = UIUtils.getActiveWorkbenchWindow();
UIUtils.syncExec(() -> {
SQLEditorHandlerOpenEditor.openSQLConsole(workbenchWindow, new SQLNavigatorContext(dataSource), dataSource.getName(), "");
workbenchWindow.getShell().forceActive();
});
} else if (instanceConParameters.makeConnect) {
DataSourceHandler.connectToDataSource(null, dataSource, null);
}
}
use of org.jkiss.dbeaver.model.DBPDataSourceContainer in project dbeaver by dbeaver.
the class DashboardOpenTool method execute.
@Override
public void execute(IWorkbenchWindow window, IWorkbenchPart activePart, Collection<DBSObject> objects) throws DBException {
// Just open dashboard view
if (objects.isEmpty()) {
return;
}
DBSObject object = objects.iterator().next();
DBPDataSourceContainer dataSourceContainer = object.getDataSource().getContainer();
if (dataSourceContainer == null) {
return;
}
DashboardView.openView(window, dataSourceContainer);
}
use of org.jkiss.dbeaver.model.DBPDataSourceContainer in project dbeaver by dbeaver.
the class DashboardUpdater method updateDashboards.
private void updateDashboards(DBRProgressMonitor monitor, List<DashboardContainer> dashboards) {
monitor.beginTask("Update dashboards", dashboards.size());
// Get all map queries used by dashboards
for (DashboardContainer dashboard : dashboards) {
DashboardMapQuery mapQuery = dashboard.getMapQuery();
if (mapQuery != null) {
List<MapQueryInfo> queryList = mapQueries.computeIfAbsent(dashboard.getDataSourceContainer(), k -> new ArrayList<>());
boolean found = false;
for (MapQueryInfo mqi : queryList) {
if (mqi.mapQuery == mapQuery) {
found = true;
break;
}
}
if (!found) {
queryList.add(new MapQueryInfo(dashboard.getGroup().getView(), mapQuery));
}
}
}
for (Map.Entry<DBPDataSourceContainer, List<MapQueryInfo>> mqEntry : mapQueries.entrySet()) {
monitor.subTask("Read dashboard data");
DBPDataSourceContainer dsContainer = mqEntry.getKey();
DBPDataSource dataSource = dsContainer.getDataSource();
if (dataSource == null) {
continue;
}
try {
DBExecUtils.tryExecuteRecover(dashboards, dataSource, param -> {
try {
for (MapQueryInfo mqi : mqEntry.getValue()) {
readMapQueryData(monitor, mqi);
}
} catch (Throwable e) {
throw new InvocationTargetException(e);
}
});
} catch (DBException e) {
log.debug("Error reading map query data for '" + dsContainer.getName() + "'", e);
}
}
for (DashboardContainer dashboard : dashboards) {
DBPDataSource dataSource = dashboard.getDataSourceContainer().getDataSource();
if (dataSource == null) {
continue;
}
try {
DBExecUtils.tryExecuteRecover(dashboards, dataSource, param -> {
try {
updateDashboard(monitor, dashboard);
} catch (Throwable e) {
throw new InvocationTargetException(e);
}
});
} catch (DBException e) {
log.debug("Error reading dashboard '" + dashboard.getDashboardId() + "' data: " + GeneralUtils.getRootCause(e).getMessage());
}
monitor.worked(1);
}
monitor.done();
}
use of org.jkiss.dbeaver.model.DBPDataSourceContainer in project dbeaver by dbeaver.
the class DataSourceUtils method getDataSourceBySpec.
public static DBPDataSourceContainer getDataSourceBySpec(@NotNull DBPProject project, @NotNull String connectionSpec, @Nullable GeneralUtils.IParameterHandler parameterHandler, boolean searchByParameters, boolean createNewDataSource) {
String driverName = null, url = null, host = null, port = null, server = null, database = null, user = null, password = null, authModelId = null;
boolean showSystemObjects = false, showUtilityObjects = false, showOnlyEntities = false, hideFolders = false, hideSchemas = false, mergeEntities = false, savePassword = true;
Boolean autoCommit = null;
Map<String, String> conProperties = new HashMap<>();
Map<String, Map<String, String>> handlerProps = new HashMap<>();
Map<String, String> authProperties = new HashMap<>();
DBPDataSourceFolder folder = null;
String dsId = null, dsName = null;
DBPDataSourceRegistry dsRegistry = project == null ? null : project.getDataSourceRegistry();
if (dsRegistry == null) {
log.debug("No datasource registry for project '" + project.getName() + "'");
return null;
}
String[] conParams = connectionSpec.split("\\|");
for (String cp : conParams) {
int divPos = cp.indexOf('=');
if (divPos == -1) {
continue;
}
String paramName = cp.substring(0, divPos);
String paramValue = cp.substring(divPos + 1);
switch(paramName) {
case PARAM_ID:
dsId = paramValue;
break;
case PARAM_DRIVER:
driverName = paramValue;
break;
case PARAM_NAME:
dsName = paramValue;
break;
case PARAM_URL:
url = paramValue;
break;
case PARAM_HOST:
host = paramValue;
break;
case PARAM_PORT:
port = paramValue;
break;
case PARAM_SERVER:
server = paramValue;
break;
case PARAM_DATABASE:
database = paramValue;
break;
case PARAM_USER:
user = paramValue;
break;
case PARAM_PASSWORD:
password = paramValue;
break;
case PARAM_AUTH_MODEL:
authModelId = paramValue;
break;
case PARAM_SAVE_PASSWORD:
savePassword = CommonUtils.toBoolean(paramValue);
break;
case PARAM_SHOW_SYSTEM_OBJECTS:
showSystemObjects = CommonUtils.toBoolean(paramValue);
break;
case PARAM_SHOW_UTILITY_OBJECTS:
showUtilityObjects = CommonUtils.toBoolean(paramValue);
break;
case PARAM_SHOW_ONLY_ENTITIES:
showOnlyEntities = CommonUtils.toBoolean(paramValue);
break;
case PARAM_HIDE_FOLDERS:
hideFolders = CommonUtils.toBoolean(paramValue);
break;
case PARAM_HIDE_SCHEMAS:
hideSchemas = CommonUtils.toBoolean(paramValue);
break;
case PARAM_MERGE_ENTITIES:
mergeEntities = CommonUtils.toBoolean(paramValue);
break;
case PARAM_FOLDER:
folder = dsRegistry.getFolder(paramValue);
break;
case PARAM_AUTO_COMMIT:
autoCommit = CommonUtils.toBoolean(paramValue);
break;
default:
boolean handled = false;
if (paramName.length() > PREFIX_PROP.length() && paramName.startsWith(PREFIX_PROP)) {
paramName = paramName.substring(PREFIX_PROP.length());
conProperties.put(paramName, paramValue);
handled = true;
} else if (paramName.length() > PREFIX_AUTH_PROP.length() && paramName.startsWith(PREFIX_AUTH_PROP)) {
paramName = paramName.substring(PREFIX_AUTH_PROP.length());
authProperties.put(paramName, paramValue);
handled = true;
} else if (paramName.length() > PREFIX_HANDLER.length() && paramName.startsWith(PREFIX_HANDLER)) {
// network handler prop
paramName = paramName.substring(PREFIX_HANDLER.length());
divPos = paramName.indexOf('.');
if (divPos == -1) {
log.debug("Wrong handler parameter: '" + paramName + "'");
continue;
}
String handlerId = paramName.substring(0, divPos);
paramName = paramName.substring(divPos + 1);
Map<String, String> handlerPopMap = handlerProps.computeIfAbsent(handlerId, k -> new HashMap<>());
handlerPopMap.put(paramName, paramValue);
handled = true;
} else if (parameterHandler != null) {
handled = parameterHandler.setParameter(paramName, paramValue);
}
if (!handled) {
log.debug("Unknown connection parameter '" + paramName + "'");
}
}
}
DBPDataSourceContainer dataSource = null;
if (dsId != null) {
dataSource = dsRegistry.getDataSource(dsId);
}
if (dsName != null) {
dataSource = dsRegistry.findDataSourceByName(dsName);
}
if (dataSource != null) {
DBPConnectionConfiguration connConfig = dataSource.getConnectionConfiguration();
if (!CommonUtils.isEmpty(database))
connConfig.setDatabaseName(database);
if (!CommonUtils.isEmpty(user))
connConfig.setUserName(user);
if (!CommonUtils.isEmpty(password))
connConfig.setUserPassword(password);
if (!CommonUtils.isEmpty(conProperties))
connConfig.setProperties(conProperties);
if (!CommonUtils.isEmpty(authProperties))
connConfig.setAuthProperties(authProperties);
if (!CommonUtils.isEmpty(authModelId))
connConfig.setAuthModelId(authModelId);
return dataSource;
}
if (searchByParameters) {
// Try to find by parameters / handler props
if (url != null) {
for (DBPDataSourceContainer ds : dsRegistry.getDataSources()) {
if (url.equals(ds.getConnectionConfiguration().getUrl())) {
if (user == null || user.equals(ds.getConnectionConfiguration().getUserName())) {
return ds;
}
}
}
} else {
for (DBPDataSourceContainer ds : dsRegistry.getDataSources()) {
DBPConnectionConfiguration cfg = ds.getConnectionConfiguration();
if (server != null && !server.equals(cfg.getServerName()) || host != null && !host.equals(cfg.getHostName()) || port != null && !port.equals(cfg.getHostPort()) || database != null && !database.equals(cfg.getDatabaseName()) || user != null && !user.equals(cfg.getUserName())) {
continue;
}
boolean matched = true;
if (!conProperties.isEmpty()) {
for (Map.Entry<String, String> prop : conProperties.entrySet()) {
if (!CommonUtils.equalObjects(cfg.getProperty(prop.getKey()), prop.getValue())) {
matched = false;
break;
}
}
if (!matched) {
continue;
}
}
if (!handlerProps.isEmpty()) {
for (Map.Entry<String, Map<String, String>> handlerProp : handlerProps.entrySet()) {
DBWHandlerConfiguration handler = cfg.getHandler(handlerProp.getKey());
if (handler == null) {
matched = false;
break;
}
for (Map.Entry<String, String> prop : handlerProp.getValue().entrySet()) {
if (!CommonUtils.equalObjects(handler.getProperty(prop.getKey()), prop.getValue())) {
matched = false;
break;
}
}
if (!matched) {
break;
}
}
if (!matched) {
continue;
}
}
return ds;
}
}
}
if (!createNewDataSource) {
return null;
}
if (driverName == null) {
log.error("Driver name not specified - can't create new datasource");
return null;
}
DBPDriver driver = DBWorkbench.getPlatform().getDataSourceProviderRegistry().findDriver(driverName);
if (driver == null) {
log.error("Driver '" + driverName + "' not found");
return null;
}
// Create new datasource with specified parameters
if (dsName == null) {
dsName = "Ext: " + driver.getName();
if (database != null) {
dsName += " - " + database;
} else if (server != null) {
dsName += " - " + server;
}
}
DBPConnectionConfiguration connConfig = new DBPConnectionConfiguration();
connConfig.setUrl(url);
connConfig.setHostName(host);
connConfig.setHostPort(port);
connConfig.setServerName(server);
connConfig.setDatabaseName(database);
connConfig.setUserName(user);
connConfig.setUserPassword(password);
connConfig.setProperties(conProperties);
if (!CommonUtils.isEmpty(authProperties)) {
connConfig.setAuthProperties(authProperties);
}
if (!CommonUtils.isEmpty(authModelId)) {
connConfig.setAuthModelId(authModelId);
}
if (autoCommit != null) {
connConfig.getBootstrap().setDefaultAutoCommit(autoCommit);
}
DBPDataSourceContainer newDS = dsRegistry.createDataSource(driver, connConfig);
newDS.setName(dsName);
((DataSourceDescriptor) newDS).setTemporary(true);
if (savePassword) {
newDS.setSavePassword(true);
}
if (folder != null) {
newDS.setFolder(folder);
}
DataSourceNavigatorSettings navSettings = ((DataSourceDescriptor) newDS).getNavigatorSettings();
navSettings.setShowSystemObjects(showSystemObjects);
navSettings.setShowUtilityObjects(showUtilityObjects);
navSettings.setShowOnlyEntities(showOnlyEntities);
navSettings.setHideSchemas(hideSchemas);
navSettings.setHideFolders(hideFolders);
navSettings.setMergeEntities(mergeEntities);
// ds.set
dsRegistry.addDataSource(newDS);
return newDS;
}
use of org.jkiss.dbeaver.model.DBPDataSourceContainer in project dbeaver by dbeaver.
the class ResultSetModel method fillVisibleAttributes.
private void fillVisibleAttributes() {
this.visibleAttributes.clear();
boolean entityDataView = executionSource != null && executionSource.getDataContainer() instanceof DBSEntity;
DBSObjectFilter columnFilter = null;
if (entityDataView) {
// Detect column filter
DBSEntity entity = (DBSEntity) executionSource.getDataContainer();
DBPDataSourceContainer container = entity.getDataSource().getContainer();
if (container.getPreferenceStore().getBoolean(ResultSetPreferences.RESULT_SET_USE_NAVIGATOR_FILTERS) && attributes.length > 0) {
DBSEntityAttribute entityAttribute = attributes[0].getEntityAttribute();
if (entityAttribute != null) {
columnFilter = container.getObjectFilter(entityAttribute.getClass(), entity, false);
}
}
}
// Filter pseudo attributes if we query single entity
for (DBDAttributeBinding binding : this.attributes) {
if (!entityDataView || DBDAttributeConstraint.isVisibleByDefault(binding)) {
// Make visible "real" attributes
if (columnFilter != null && !columnFilter.matches(binding.getName())) {
// Filtered out by column filter
continue;
}
this.visibleAttributes.add(binding);
}
}
}
Aggregations