Error propagation for DeviceBase
This commit is contained in:
parent
4b5bc40a4f
commit
540e72231b
@ -5,14 +5,11 @@ import hep.dataforge.control.api.Device
|
|||||||
import hep.dataforge.control.api.DeviceListener
|
import hep.dataforge.control.api.DeviceListener
|
||||||
import hep.dataforge.control.api.PropertyDescriptor
|
import hep.dataforge.control.api.PropertyDescriptor
|
||||||
import hep.dataforge.meta.MetaItem
|
import hep.dataforge.meta.MetaItem
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.*
|
||||||
import kotlinx.coroutines.ExperimentalCoroutinesApi
|
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import kotlinx.coroutines.sync.Mutex
|
import kotlinx.coroutines.sync.Mutex
|
||||||
import kotlinx.coroutines.sync.withLock
|
import kotlinx.coroutines.sync.withLock
|
||||||
import kotlinx.coroutines.withContext
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Baseline implementation of [Device] interface
|
* Baseline implementation of [Device] interface
|
||||||
@ -104,9 +101,9 @@ public abstract class DeviceBase : Device {
|
|||||||
//backup current value
|
//backup current value
|
||||||
val currentValue = value
|
val currentValue = value
|
||||||
return if (force || currentValue == null) {
|
return if (force || currentValue == null) {
|
||||||
val res = withContext(scope.coroutineContext) {
|
|
||||||
//all device operations should be run on device context
|
//all device operations should be run on device context
|
||||||
//TODO add error catching
|
//propagate error, but do not fail scope
|
||||||
|
val res = withContext(scope.coroutineContext + SupervisorJob(scope.coroutineContext[Job])) {
|
||||||
getter(currentValue)
|
getter(currentValue)
|
||||||
}
|
}
|
||||||
updateLogical(res)
|
updateLogical(res)
|
||||||
@ -167,8 +164,7 @@ public abstract class DeviceBase : Device {
|
|||||||
if (item == value) return@withLock
|
if (item == value) return@withLock
|
||||||
val oldValue = value
|
val oldValue = value
|
||||||
//all device operations should be run on device context
|
//all device operations should be run on device context
|
||||||
withContext(scope.coroutineContext) {
|
withContext(scope.coroutineContext + SupervisorJob(scope.coroutineContext[Job])) {
|
||||||
//TODO add error catching
|
|
||||||
setter(oldValue, item)?.let {
|
setter(oldValue, item)?.let {
|
||||||
updateLogical(it)
|
updateLogical(it)
|
||||||
}
|
}
|
||||||
@ -206,12 +202,15 @@ public abstract class DeviceBase : Device {
|
|||||||
override val descriptor: ActionDescriptor,
|
override val descriptor: ActionDescriptor,
|
||||||
private val block: suspend (MetaItem<*>?) -> MetaItem<*>?,
|
private val block: suspend (MetaItem<*>?) -> MetaItem<*>?,
|
||||||
) : Action {
|
) : Action {
|
||||||
override suspend fun invoke(arg: MetaItem<*>?): MetaItem<*>? = block(arg).also {
|
override suspend fun invoke(arg: MetaItem<*>?): MetaItem<*>? =
|
||||||
|
withContext(scope.coroutineContext + SupervisorJob(scope.coroutineContext[Job])) {
|
||||||
|
block(arg).also {
|
||||||
notifyListeners {
|
notifyListeners {
|
||||||
actionExecuted(name, arg, it)
|
actionExecuted(name, arg, it)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new bound action
|
* Create a new bound action
|
||||||
|
Loading…
Reference in New Issue
Block a user