parent
b2505667d1
commit
e1fd6387e5
@ -36,7 +36,9 @@ kotlin {
|
|||||||
val commonMain by getting {
|
val commonMain by getting {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":kotlin-result"))
|
implementation(project(":kotlin-result"))
|
||||||
|
implementation(project(":kotlin-result-coroutines"))
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx.benchmark.runtime:${Versions.kotlinBenchmark}")
|
implementation("org.jetbrains.kotlinx:kotlinx.benchmark.runtime:${Versions.kotlinBenchmark}")
|
||||||
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.kotlinCoroutines}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,21 +1,19 @@
|
|||||||
package com.github.michaelbull.result
|
package com.github.michaelbull.result
|
||||||
|
|
||||||
|
import kotlinx.benchmark.Benchmark
|
||||||
import kotlinx.benchmark.BenchmarkMode
|
import kotlinx.benchmark.BenchmarkMode
|
||||||
|
import kotlinx.benchmark.BenchmarkTimeUnit
|
||||||
|
import kotlinx.benchmark.Blackhole
|
||||||
import kotlinx.benchmark.Mode
|
import kotlinx.benchmark.Mode
|
||||||
import kotlinx.benchmark.OutputTimeUnit
|
import kotlinx.benchmark.OutputTimeUnit
|
||||||
import kotlinx.benchmark.BenchmarkTimeUnit
|
|
||||||
import kotlinx.benchmark.Benchmark
|
|
||||||
import kotlinx.benchmark.Blackhole
|
|
||||||
import kotlinx.benchmark.State
|
|
||||||
import kotlinx.benchmark.Scope
|
import kotlinx.benchmark.Scope
|
||||||
|
import kotlinx.benchmark.State
|
||||||
|
|
||||||
@State(Scope.Benchmark)
|
@State(Scope.Benchmark)
|
||||||
@BenchmarkMode(Mode.Throughput)
|
@BenchmarkMode(Mode.Throughput)
|
||||||
@OutputTimeUnit(BenchmarkTimeUnit.MILLISECONDS)
|
@OutputTimeUnit(BenchmarkTimeUnit.MILLISECONDS)
|
||||||
class BindingBenchmark {
|
class BindingBenchmark {
|
||||||
|
|
||||||
private object Error
|
|
||||||
|
|
||||||
@Benchmark
|
@Benchmark
|
||||||
fun bindingSuccess(blackhole: Blackhole) {
|
fun bindingSuccess(blackhole: Blackhole) {
|
||||||
val result = binding<Int, Error> {
|
val result = binding<Int, Error> {
|
||||||
@ -60,9 +58,9 @@ class BindingBenchmark {
|
|||||||
blackhole.consume(result)
|
blackhole.consume(result)
|
||||||
}
|
}
|
||||||
|
|
||||||
private companion object {
|
private object Error
|
||||||
private fun provideX(): Result<Int, Error> = Ok(1)
|
|
||||||
private fun provideY(): Result<Int, Error> = Ok(2)
|
private fun provideX(): Result<Int, Error> = Ok(1)
|
||||||
private fun provideZ(): Result<Int, Error> = Err(Error)
|
private fun provideY(): Result<Int, Error> = Ok(2)
|
||||||
}
|
private fun provideZ(): Result<Int, Error> = Err(Error)
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,88 @@
|
|||||||
|
package com.github.michaelbull.result
|
||||||
|
|
||||||
|
import kotlinx.benchmark.Benchmark
|
||||||
|
import kotlinx.benchmark.BenchmarkMode
|
||||||
|
import kotlinx.benchmark.BenchmarkTimeUnit
|
||||||
|
import kotlinx.benchmark.Blackhole
|
||||||
|
import kotlinx.benchmark.Mode
|
||||||
|
import kotlinx.benchmark.OutputTimeUnit
|
||||||
|
import kotlinx.benchmark.Scope
|
||||||
|
import kotlinx.benchmark.State
|
||||||
|
import kotlinx.coroutines.async
|
||||||
|
import kotlinx.coroutines.coroutineScope
|
||||||
|
import kotlinx.coroutines.delay
|
||||||
|
import kotlinx.coroutines.runBlocking
|
||||||
|
import com.github.michaelbull.result.coroutines.binding.binding as coroutineBinding
|
||||||
|
|
||||||
|
@State(Scope.Benchmark)
|
||||||
|
@BenchmarkMode(Mode.AverageTime)
|
||||||
|
@OutputTimeUnit(BenchmarkTimeUnit.MILLISECONDS)
|
||||||
|
class SuspendBindingBenchmark {
|
||||||
|
|
||||||
|
@Benchmark
|
||||||
|
fun nonSuspendableBinding(blackhole: Blackhole) {
|
||||||
|
blackhole.consume(nonSuspend().get())
|
||||||
|
}
|
||||||
|
|
||||||
|
@Benchmark
|
||||||
|
fun suspendableBinding(blackhole: Blackhole) {
|
||||||
|
runBlocking {
|
||||||
|
blackhole.consume(withSuspend().get())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Benchmark
|
||||||
|
fun asyncSuspendableBinding(blackhole: Blackhole) {
|
||||||
|
runBlocking {
|
||||||
|
blackhole.consume(withAsyncSuspend().get())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private object Error
|
||||||
|
|
||||||
|
private val time = 100L
|
||||||
|
|
||||||
|
private fun nonSuspend() = binding<Int, Error> {
|
||||||
|
val x = provideXBlocking().bind()
|
||||||
|
val y = provideYBlocking().bind()
|
||||||
|
x + y
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun withSuspend(): Result<Int, Error> {
|
||||||
|
return coroutineBinding {
|
||||||
|
val x = provideX().bind()
|
||||||
|
val y = provideY().bind()
|
||||||
|
x + y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun withAsyncSuspend(): Result<Int, Error> {
|
||||||
|
return coroutineScope {
|
||||||
|
coroutineBinding {
|
||||||
|
val x = async { provideX().bind() }
|
||||||
|
val y = async { provideY().bind() }
|
||||||
|
x.await() + y.await()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun provideXBlocking(): Result<Int, Error> {
|
||||||
|
Thread.sleep(time)
|
||||||
|
return Ok(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun provideYBlocking(): Result<Int, Error> {
|
||||||
|
Thread.sleep(time)
|
||||||
|
return Ok(2)
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun provideX(): Result<Int, Error> {
|
||||||
|
delay(time)
|
||||||
|
return Ok(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun provideY(): Result<Int, Error> {
|
||||||
|
delay(time)
|
||||||
|
return Ok(2)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user