gosuki/watch/reducer.go

33 lines
702 B
Go
Raw Normal View History

package watch
2018-11-09 17:25:50 +00:00
import "time"
2018-11-09 17:25:50 +00:00
2018-11-13 18:57:07 +00:00
// Run reducer in its own thread when the watcher is started
2018-11-09 17:25:50 +00:00
// It receives a struct{event, func} and runs the func only once in the interval
func ReduceEvents(interval time.Duration,
w WatchRunner) {
2023-09-05 17:45:21 +00:00
log.Debug("starting reducer service ...")
2018-11-09 17:25:50 +00:00
eventsIn := w.Watch().eventsChan
2018-11-09 17:25:50 +00:00
timer := time.NewTimer(interval)
var events []bool
for {
select {
case <-eventsIn:
2022-09-28 20:08:21 +00:00
// log.Debug("[reducuer] received event, resetting watch interval !")
2018-11-09 17:25:50 +00:00
timer.Reset(interval)
events = append(events, true)
case <-timer.C:
if len(events) > 0 {
log.Debug("<reduce>: running run event")
2018-11-09 17:25:50 +00:00
w.Run()
// Empty events queue
events = make([]bool, 0)
}
}
}
}