Skip to content
Snippets Groups Projects

Resolve "Implement Quarkus/Kotlin protype"

Compare and Show latest version
15 files
+ 156
413
Compare changes
  • Side-by-side
  • Inline
Files
15
package theodolite.execution
import theodolite.util.Benchmark
import mu.KotlinLogging
import theodolite.util.AbstractBenchmark
import theodolite.util.LoadDimension
import theodolite.util.Resource
import theodolite.util.Results
import java.time.Duration
private val logger = KotlinLogging.logger {}
/**
* The Benchmark Executor runs a single experiment.
*
@@ -14,7 +17,7 @@ import java.time.Duration
* @property executionDuration
* @constructor Create empty Benchmark executor
*/
abstract class BenchmarkExecutor(val benchmark: Benchmark, val results: Results, val executionDuration: Duration) {
abstract class BenchmarkExecutor(val benchmark: AbstractBenchmark, val results: Results, val executionDuration: Duration) {
/**
* Run a experiment for the given parametrization, evaluate the experiment and save the result.
*
@@ -22,5 +25,16 @@ abstract class BenchmarkExecutor(val benchmark: Benchmark, val results: Results,
* @param res resources to be tested.
* @return True, if the number of resources are suitable for the given load, false otherwise.
*/
abstract fun runExperiment(load: LoadDimension, res: Resource): Boolean;
}
\ No newline at end of file
abstract fun runExperiment(load: LoadDimension, res: Resource): Boolean
/**
* Wait while the benchmark is running and log the number of minutes executed every 1 minute.
*
*/
fun waitAndLog() {
for (i in 1.rangeTo(executionDuration.toMinutes())) {
Thread.sleep(Duration.ofMinutes(1).toMillis())
logger.info { "Executed: $i minutes" }
}
}
}
Loading