tendermint/common/throttler.go

49 lines
947 B
Go
Raw Normal View History

package common
import (
"sync/atomic"
"time"
)
2014-07-09 18:33:44 -07:00
/*
Throttler fires an event at most "dur" after each .Set() call.
If a short burst of .Set() calls happens, Throttler fires once.
If a long continuous burst of .Set() calls happens, Throttler fires
at most once every "dur".
2014-07-09 18:33:44 -07:00
*/
type Throttler struct {
Ch chan struct{}
quit chan struct{}
dur time.Duration
timer *time.Timer
isSet uint32
}
func NewThrottler(dur time.Duration) *Throttler {
var ch = make(chan struct{})
var quit = make(chan struct{})
var t = &Throttler{Ch: ch, dur: dur, quit: quit}
t.timer = time.AfterFunc(dur, t.fireHandler)
2014-07-09 18:33:44 -07:00
t.timer.Stop()
return t
}
func (t *Throttler) fireHandler() {
select {
case t.Ch <- struct{}{}:
atomic.StoreUint32(&t.isSet, 0)
case <-t.quit:
}
}
func (t *Throttler) Set() {
if atomic.CompareAndSwapUint32(&t.isSet, 0, 1) {
t.timer.Reset(t.dur)
}
}
func (t *Throttler) Stop() bool {
close(t.quit)
return t.timer.Stop()
}