Add event debouncing for orx-file-watcher

This commit is contained in:
Edwin Jakobs
2020-02-08 13:29:11 +01:00
parent 8dd4f92366
commit c30c71ac0d

View File

@@ -1,6 +1,10 @@
package org.operndr.extras.filewatcher
import com.sun.nio.file.SensitivityWatchEventModifier
import kotlinx.coroutines.GlobalScope
import kotlinx.coroutines.Job
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
import org.openrndr.Program
import org.openrndr.launch
import java.io.File
@@ -101,6 +105,7 @@ fun <T> Program.watchFile(file: File, transducer: (File) -> T): () -> T = watchF
private val watching = mutableMapOf<Path, MutableList<FileWatcher>>()
private val pathKeys = mutableMapOf<Path, WatchKey>()
private val keyPaths = mutableMapOf<WatchKey, Path>()
private val waiting = mutableMapOf<Path, Job>()
private val watchService by lazy {
FileSystems.getDefault().newWatchService()
@@ -114,10 +119,18 @@ private val watchThread by lazy {
key.pollEvents().forEach {
val contextPath = it.context() as Path
val fullPath = path?.resolve(contextPath)
fullPath?.let {
waiting[fullPath]?.cancel()
waiting[fullPath] = GlobalScope.launch {
delay(100)
watching[fullPath]?.forEach { w ->
w.triggerChange()
}
}
}
}
key.reset()
}
}