io.deephaven.engine.table.impl.util.OperationInitializerJobScheduler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-engine-table Show documentation
Show all versions of deephaven-engine-table Show documentation
Engine Table: Implementation and closely-coupled utilities
package io.deephaven.engine.table.impl.util;
import io.deephaven.base.log.LogOutputAppendable;
import io.deephaven.engine.context.ExecutionContext;
import io.deephaven.engine.table.impl.perf.BasePerformanceEntry;
import io.deephaven.engine.updategraph.OperationInitializer;
import io.deephaven.io.log.impl.LogOutputStringImpl;
import io.deephaven.util.SafeCloseable;
import io.deephaven.util.process.ProcessEnvironment;
import org.jetbrains.annotations.NotNull;
import java.util.function.Consumer;
public class OperationInitializerJobScheduler implements JobScheduler {
private final BasePerformanceEntry accumulatedBaseEntry = new BasePerformanceEntry();
private final OperationInitializer operationInitializer;
public OperationInitializerJobScheduler(@NotNull final OperationInitializer operationInitializer) {
this.operationInitializer = operationInitializer;
}
public OperationInitializerJobScheduler() {
this(ExecutionContext.getContext().getOperationInitializer());
}
@Override
public void submit(
final ExecutionContext executionContext,
final Runnable runnable,
final LogOutputAppendable description,
final Consumer onError) {
operationInitializer.submit(() -> {
final BasePerformanceEntry basePerformanceEntry = new BasePerformanceEntry();
basePerformanceEntry.onBaseEntryStart();
try (final SafeCloseable ignored = executionContext == null ? null : executionContext.open()) {
runnable.run();
} catch (Exception e) {
onError.accept(e);
} catch (Error e) {
final String logMessage = new LogOutputStringImpl().append(description).append(" Error").toString();
ProcessEnvironment.getGlobalFatalErrorReporter().report(logMessage, e);
throw e;
} finally {
basePerformanceEntry.onBaseEntryEnd();
accumulatedBaseEntry.accumulate(basePerformanceEntry);
}
});
}
@Override
public BasePerformanceEntry getAccumulatedPerformance() {
return accumulatedBaseEntry;
}
@Override
public int threadCount() {
return operationInitializer.parallelismFactor();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy