commonMain.it.unibo.tuprolog.solve.concurrent.ConcurrentSolverImpl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solve-concurrent-jvm Show documentation
Show all versions of solve-concurrent-jvm Show documentation
Experimental, state-machine-based implementation of an OR-Concurrent, Prolog-like logic solver, based on Kotlin coroutines
package it.unibo.tuprolog.solve.concurrent
import it.unibo.tuprolog.core.Struct
import it.unibo.tuprolog.core.operators.OperatorSet
import it.unibo.tuprolog.solve.Solution
import it.unibo.tuprolog.solve.SolveOptions
import it.unibo.tuprolog.solve.channel.InputChannel
import it.unibo.tuprolog.solve.channel.InputStore
import it.unibo.tuprolog.solve.channel.OutputChannel
import it.unibo.tuprolog.solve.channel.OutputStore
import it.unibo.tuprolog.solve.concurrent.fsm.EndState
import it.unibo.tuprolog.solve.concurrent.fsm.State
import it.unibo.tuprolog.solve.concurrent.fsm.StateGoalSelection
import it.unibo.tuprolog.solve.concurrent.fsm.toGoals
import it.unibo.tuprolog.solve.currentTimeInstant
import it.unibo.tuprolog.solve.exception.Warning
import it.unibo.tuprolog.solve.flags.FlagStore
import it.unibo.tuprolog.solve.getAllOperators
import it.unibo.tuprolog.solve.impl.AbstractSolver
import it.unibo.tuprolog.solve.library.Libraries
import it.unibo.tuprolog.solve.toOperatorSet
import it.unibo.tuprolog.theory.MutableTheory
import it.unibo.tuprolog.theory.Theory
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Job
import kotlinx.coroutines.channels.ReceiveChannel
import kotlinx.coroutines.coroutineScope
import kotlinx.coroutines.launch
import kotlinx.coroutines.yield
import kotlin.jvm.Synchronized
import kotlinx.coroutines.channels.Channel as KtChannel
internal open class ConcurrentSolverImpl(
libraries: Libraries = Libraries.empty(),
flags: FlagStore = FlagStore.empty(),
initialStaticKb: Theory = Theory.empty(),
initialDynamicKb: Theory = MutableTheory.empty(),
inputChannels: InputStore = InputStore.fromStandard(),
outputChannels: OutputStore = OutputStore.fromStandard(),
trustKb: Boolean = false
) : ConcurrentSolver, AbstractSolver(
libraries,
flags,
initialStaticKb,
initialDynamicKb,
inputChannels,
outputChannels,
trustKb
) {
constructor(
libraries: Libraries = Libraries.empty(),
flags: FlagStore = FlagStore.empty(),
staticKb: Theory = Theory.empty(),
dynamicKb: Theory = MutableTheory.empty(),
stdIn: InputChannel = InputChannel.stdIn(),
stdOut: OutputChannel = OutputChannel.stdOut(),
stdErr: OutputChannel = OutputChannel.stdErr(),
warnings: OutputChannel = OutputChannel.warn(),
trustKb: Boolean = false
) : this(
libraries,
flags,
staticKb,
dynamicKb,
InputStore.fromStandard(stdIn),
OutputStore.fromStandard(stdOut, stdErr, warnings),
trustKb
)
@get:Synchronized
@set:Synchronized
override lateinit var currentContext: ConcurrentExecutionContext
private fun CoroutineScope.handleAsyncStateTransition(state: State, handle: ConcurrentResolutionHandle): Job =
launch {
if (state is EndState) {
handle.publishSolutionAndTerminateResolutionIfNeed(state.solution, this)
} else {
for (it in state.next()) {
handleAsyncStateTransition(it, handle)
yield()
}
}
}
private fun Sequence.ensureAtMostOneNegative(): Sequence = sequence {
var lastNegative: Solution.No? = null
val i = iterator()
while (i.hasNext()) {
when (val it = i.next()) {
is Solution.No -> {
lastNegative = it
}
else -> {
yield(it)
}
}
}
lastNegative?.let { yield(it) }
}
private suspend fun startAsyncResolution(initialState: State, handle: ConcurrentResolutionHandle) = coroutineScope {
handleAsyncStateTransition(initialState, handle).join()
handle.closeSolutionChannelWithNoSolutionIfNeeded(initialState.context.query)
}
private fun initialState(goal: Struct, options: SolveOptions): State {
currentContext = ConcurrentExecutionContext(
goals = goal.toGoals(),
step = 1,
query = goal,
libraries = libraries,
flags = flags,
staticKb = staticKb.toImmutableTheory(),
dynamicKb = dynamicKb.toMutableTheory(),
operators = operators,
inputChannels = inputChannels,
outputChannels = outputChannels,
customData = currentContext.customData,
maxDuration = options.timeout,
startTime = currentTimeInstant()
)
return StateGoalSelection(currentContext)
}
override fun solveConcurrently(goal: Struct, options: SolveOptions): ReceiveChannel {
val channel = KtChannel(KtChannel.UNLIMITED)
val initialState = initialState(goal, options)
val handle = ConcurrentResolutionHandle(options, channel)
val resolutionScope = createScope()
resolutionScope.launch {
startAsyncResolution(initialState, handle)
}
return channel
}
override fun solveImpl(goal: Struct, options: SolveOptions): Sequence {
return solveConcurrently(goal, options).toSequence().ensureAtMostOneNegative()
}
override fun copy(
libraries: Libraries,
flags: FlagStore,
staticKb: Theory,
dynamicKb: Theory,
stdIn: InputChannel,
stdOut: OutputChannel,
stdErr: OutputChannel,
warnings: OutputChannel
) = ConcurrentSolverImpl(libraries, flags, staticKb, dynamicKb, stdIn, stdOut, stdErr, warnings)
override fun clone(): ConcurrentSolverImpl = copy()
override fun initializeContext(
libraries: Libraries,
flags: FlagStore,
staticKb: Theory,
dynamicKb: Theory,
operators: OperatorSet,
inputChannels: InputStore,
outputChannels: OutputStore,
trustKb: Boolean
): ConcurrentExecutionContext = ConcurrentExecutionContext(
libraries = libraries,
flags = flags,
staticKb = if (trustKb) staticKb.toImmutableTheory() else Theory.empty(),
dynamicKb = if (trustKb) dynamicKb.toMutableTheory() else MutableTheory.empty(),
operators = getAllOperators(libraries).toOperatorSet(),
inputChannels = inputChannels,
outputChannels = outputChannels
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy