Created
August 5, 2022 14:37
-
-
Save akexorcist/829e0542961a1eef5366683993aedff1 to your computer and use it in GitHub Desktop.
Kotlin utility for condition-based data selection with dynamic condition supports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Constraint<INPUT, OUTPUT> { | |
suspend fun invoke(input: INPUT): OUTPUT? | |
} | |
abstract class SatisfyConstraint<INPUT, OUTPUT> : Constraint<INPUT, OUTPUT> { | |
abstract suspend fun isSatisfied(input: INPUT): Boolean | |
abstract suspend fun process(input: INPUT): OUTPUT | |
override suspend fun invoke(input: INPUT): OUTPUT? = | |
if (isSatisfied(input)) process(input) | |
else null | |
} | |
interface DefaultConstraint<INPUT, OUTPUT> { | |
suspend fun invoke(input: INPUT): OUTPUT | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open class ConstraintedSelector<INPUT, OUTPUT> { | |
private val constraints: MutableList<Constraint<INPUT, OUTPUT>> = mutableListOf() | |
suspend fun get(input: INPUT): OUTPUT? { | |
constraints.forEach { | |
val output = it.invoke(input) | |
if (output != null) return output | |
} | |
return null | |
} | |
fun addConstraint(constraint: Constraint<INPUT, OUTPUT>) = this.apply { | |
constraints.add(constraint) | |
} | |
fun addConstraints(constraint: List<Constraint<INPUT, OUTPUT>>) = this.apply { | |
constraints.addAll(constraint) | |
} | |
fun addConstraints(vararg constraint: Constraint<INPUT, OUTPUT>) = this.apply { | |
constraints.addAll(constraint) | |
} | |
fun withDefault(default: DefaultConstraint<INPUT, OUTPUT>) = DefaultConstraintedSelector(default).apply { | |
[email protected](constraints) | |
} | |
} | |
open class DefaultConstraintedSelector<INPUT, OUTPUT>( | |
private val defaultConstraint: DefaultConstraint<INPUT, OUTPUT> | |
) { | |
private val constraints: MutableList<Constraint<INPUT, OUTPUT>> = mutableListOf() | |
suspend fun get(input: INPUT): OUTPUT { | |
constraints.forEach { | |
val output = it.invoke(input) | |
if (output != null) return output | |
} | |
return defaultConstraint.invoke(input) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Basic sample
More sample