use of org.jkiss.dbeaver.model.DBPDataSource in project dbeaver by serge-rider.
the class DatabaseTransferConsumer method initExporter.
private void initExporter(DBRProgressMonitor monitor) throws DBCException {
containerMapping = settings.getDataMapping(sourceObject);
if (containerMapping == null) {
throw new DBCException("Can't find container mapping for " + DBUtils.getObjectFullName(sourceObject, DBPEvaluationContext.UI));
}
DBPDataSource dataSource = containerMapping.getTarget().getDataSource();
assert (dataSource != null);
try {
targetContext = settings.isOpenNewConnections() ? dataSource.openIsolatedContext(monitor, "Data transfer consumer") : dataSource.getDefaultContext(false);
} catch (DBException e) {
throw new DBCException("Error opening new connection", e);
}
targetSession = targetContext.openSession(monitor, DBCExecutionPurpose.UTIL, "Data load");
targetSession.enableLogging(false);
if (settings.isUseTransactions()) {
DBCTransactionManager txnManager = DBUtils.getTransactionManager(targetSession.getExecutionContext());
if (txnManager != null) {
txnManager.setAutoCommit(monitor, false);
}
}
}
use of org.jkiss.dbeaver.model.DBPDataSource in project dbeaver by serge-rider.
the class KeepAliveJob method checkDataSourceAlive.
private void checkDataSourceAlive(DBRProgressMonitor monitor, final DataSourceDescriptor dataSourceDescriptor) {
if (!dataSourceDescriptor.isConnected()) {
return;
}
final int keepAliveInterval = dataSourceDescriptor.getConnectionConfiguration().getKeepAliveInterval();
if (keepAliveInterval <= 0) {
return;
}
final String dsId = dataSourceDescriptor.getId();
synchronized (this) {
if (pingCache.contains(dsId)) {
// Anyway - just skip it
return;
}
}
final DBPDataSource dataSource = dataSourceDescriptor.getDataSource();
if (dataSource == null) {
return;
}
Long lastCheckTime;
synchronized (this) {
lastCheckTime = checkCache.get(dsId);
}
if (lastCheckTime == null) {
final Date connectTime = dataSourceDescriptor.getConnectTime();
if (connectTime != null) {
lastCheckTime = connectTime.getTime();
}
}
if (lastCheckTime == null) {
log.debug("Can't determine last check time for " + dsId);
return;
}
long curTime = System.currentTimeMillis();
if ((curTime - lastCheckTime) / 1000 > keepAliveInterval) {
final PingJob pingJob = new PingJob(dataSource);
pingJob.addJobChangeListener(new JobChangeAdapter() {
@Override
public void done(IJobChangeEvent event) {
synchronized (KeepAliveJob.this) {
checkCache.put(dsId, System.currentTimeMillis());
pingCache.remove(dsId);
}
}
});
synchronized (this) {
pingCache.add(dsId);
}
pingJob.schedule();
}
}
use of org.jkiss.dbeaver.model.DBPDataSource in project dbeaver by serge-rider.
the class CompareObjectsExecutor method getDataSourceFilter.
private DataSourcePropertyFilter getDataSourceFilter(DBNDatabaseNode node) {
DBPDataSource dataSource = node.getDataSourceContainer().getDataSource();
if (dataSource == null) {
return null;
}
DataSourcePropertyFilter filter = dataSourceFilters.get(dataSource);
if (filter == null) {
filter = new DataSourcePropertyFilter(dataSource);
dataSourceFilters.put(dataSource, filter);
}
return filter;
}
use of org.jkiss.dbeaver.model.DBPDataSource in project dbeaver by serge-rider.
the class JDBCTable method readData.
@NotNull
@Override
public DBCStatistics readData(@NotNull DBCExecutionSource source, @NotNull DBCSession session, @NotNull DBDDataReceiver dataReceiver, @Nullable DBDDataFilter dataFilter, long firstRow, long maxRows, long flags) throws DBCException {
DBCStatistics statistics = new DBCStatistics();
boolean hasLimits = firstRow >= 0 && maxRows > 0;
DBPDataSource dataSource = session.getDataSource();
DBRProgressMonitor monitor = session.getProgressMonitor();
try {
readRequiredMeta(monitor);
} catch (DBException e) {
log.warn(e);
}
DBDPseudoAttribute rowIdAttribute = (flags & FLAG_READ_PSEUDO) != 0 ? DBUtils.getRowIdAttribute(this) : null;
// Always use alias if we have criteria or ROWID.
// Some criteria doesn't work without alias
// (e.g. structured attributes in Oracle requires table alias)
String tableAlias = null;
if ((dataFilter != null && dataFilter.hasConditions()) || rowIdAttribute != null) {
if (dataSource instanceof SQLDataSource) {
if (((SQLDataSource) dataSource).getSQLDialect().supportsAliasInSelect()) {
tableAlias = DEFAULT_TABLE_ALIAS;
}
}
}
if (rowIdAttribute != null && tableAlias == null) {
log.warn("Can't query ROWID - table alias not supported");
rowIdAttribute = null;
}
StringBuilder query = new StringBuilder(100);
query.append("SELECT ");
appendSelectSource(monitor, query, tableAlias, rowIdAttribute);
query.append(" FROM ").append(getFullyQualifiedName(DBPEvaluationContext.DML));
if (tableAlias != null) {
//$NON-NLS-1$
query.append(" ").append(tableAlias);
}
appendQueryConditions(query, tableAlias, dataFilter);
appendQueryOrder(query, tableAlias, dataFilter);
String sqlQuery = query.toString();
statistics.setQueryText(sqlQuery);
monitor.subTask(ModelMessages.model_jdbc_fetch_table_data);
try (DBCStatement dbStat = DBUtils.makeStatement(source, session, DBCStatementType.SCRIPT, sqlQuery, firstRow, maxRows)) {
if (monitor.isCanceled()) {
return statistics;
}
if (dbStat instanceof JDBCStatement && maxRows > 0) {
boolean useFetchSize = getDataSource().getContainer().getPreferenceStore().getBoolean(ModelPreferences.RESULT_SET_USE_FETCH_SIZE);
if (useFetchSize) {
try {
((JDBCStatement) dbStat).setFetchSize(firstRow < 0 || maxRows <= 0 ? DEFAULT_READ_FETCH_SIZE : (int) (firstRow + maxRows));
} catch (Exception e) {
log.warn(e);
}
}
}
long startTime = System.currentTimeMillis();
boolean executeResult = dbStat.executeStatement();
statistics.setExecuteTime(System.currentTimeMillis() - startTime);
if (executeResult) {
DBCResultSet dbResult = dbStat.openResultSet();
if (dbResult != null && !monitor.isCanceled()) {
try {
dataReceiver.fetchStart(session, dbResult, firstRow, maxRows);
startTime = System.currentTimeMillis();
long rowCount = 0;
while (dbResult.nextRow()) {
if (monitor.isCanceled() || (hasLimits && rowCount >= maxRows)) {
// Fetch not more than max rows
break;
}
dataReceiver.fetchRow(session, dbResult);
rowCount++;
if (rowCount % 100 == 0) {
monitor.subTask(rowCount + ModelMessages.model_jdbc__rows_fetched);
monitor.worked(100);
}
}
statistics.setFetchTime(System.currentTimeMillis() - startTime);
statistics.setRowsFetched(rowCount);
} finally {
// First - close cursor
try {
dbResult.close();
} catch (Throwable e) {
//$NON-NLS-1$
log.error("Error closing result set", e);
}
// Then - signal that fetch was ended
try {
dataReceiver.fetchEnd(session, dbResult);
} catch (Throwable e) {
//$NON-NLS-1$
log.error("Error while finishing result set fetch", e);
}
}
}
}
return statistics;
} finally {
dataReceiver.close();
}
}
use of org.jkiss.dbeaver.model.DBPDataSource in project dbeaver by dbeaver.
the class ERDEditorStandalone method getExecutionContext.
@Override
public DBCExecutionContext getExecutionContext() {
for (Object part : getViewer().getSelectedEditParts()) {
EditPart editPart = (EditPart) part;
if (editPart.getModel() instanceof ERDObject) {
final ERDObject model = (ERDObject) editPart.getModel();
Object object = model.getObject();
if (object instanceof DBSObject) {
DBSObject dbObject = (DBSObject) object;
DBPDataSource dataSource = dbObject.getDataSource();
return dataSource.getDefaultContext(true);
}
}
}
return null;
}
Aggregations