2017-01-31 06:42:05 -05:00
|
|
|
package signal
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2017-09-27 09:29:00 -04:00
|
|
|
type ActivityUpdater interface {
|
2017-04-04 04:24:38 -04:00
|
|
|
Update()
|
|
|
|
}
|
|
|
|
|
2017-09-27 09:29:00 -04:00
|
|
|
type ActivityTimer struct {
|
2017-01-31 06:42:05 -05:00
|
|
|
updated chan bool
|
2017-09-27 09:29:00 -04:00
|
|
|
timeout chan time.Duration
|
2017-01-31 06:42:05 -05:00
|
|
|
}
|
|
|
|
|
2017-09-27 09:29:00 -04:00
|
|
|
func (t *ActivityTimer) Update() {
|
2017-01-31 06:42:05 -05:00
|
|
|
select {
|
|
|
|
case t.updated <- true:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-27 09:29:00 -04:00
|
|
|
func (t *ActivityTimer) SetTimeout(timeout time.Duration) {
|
|
|
|
t.timeout <- timeout
|
|
|
|
}
|
|
|
|
|
2017-11-30 18:47:17 -05:00
|
|
|
func (t *ActivityTimer) run(ctx context.Context, cancel context.CancelFunc) {
|
2017-12-14 11:39:58 -05:00
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
timeout := <-t.timeout
|
|
|
|
if timeout == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-09-27 09:29:00 -04:00
|
|
|
ticker := time.NewTicker(<-t.timeout)
|
2017-10-06 03:42:46 -04:00
|
|
|
defer func() {
|
|
|
|
ticker.Stop()
|
|
|
|
}()
|
2017-05-08 11:09:21 -04:00
|
|
|
|
2017-01-31 06:42:05 -05:00
|
|
|
for {
|
|
|
|
select {
|
2017-05-08 11:09:21 -04:00
|
|
|
case <-ticker.C:
|
2017-11-30 18:47:17 -05:00
|
|
|
case <-ctx.Done():
|
2017-01-31 06:42:05 -05:00
|
|
|
return
|
2017-09-27 09:29:00 -04:00
|
|
|
case timeout := <-t.timeout:
|
2017-11-23 08:58:35 -05:00
|
|
|
if timeout == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-09-27 09:29:00 -04:00
|
|
|
ticker.Stop()
|
|
|
|
ticker = time.NewTicker(timeout)
|
2017-11-30 18:47:17 -05:00
|
|
|
continue
|
2017-01-31 08:15:34 -05:00
|
|
|
}
|
2017-05-08 11:09:21 -04:00
|
|
|
|
2017-01-31 08:15:34 -05:00
|
|
|
select {
|
|
|
|
case <-t.updated:
|
|
|
|
// Updated keep waiting.
|
2017-01-31 06:42:05 -05:00
|
|
|
default:
|
2017-01-31 08:15:34 -05:00
|
|
|
return
|
2017-01-31 06:42:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-14 18:36:14 -05:00
|
|
|
func CancelAfterInactivity(ctx context.Context, cancel context.CancelFunc, timeout time.Duration) *ActivityTimer {
|
2017-09-27 09:29:00 -04:00
|
|
|
timer := &ActivityTimer{
|
|
|
|
timeout: make(chan time.Duration, 1),
|
2017-01-31 06:42:05 -05:00
|
|
|
updated: make(chan bool, 1),
|
|
|
|
}
|
2017-09-27 09:29:00 -04:00
|
|
|
timer.timeout <- timeout
|
2017-11-30 18:47:17 -05:00
|
|
|
go timer.run(ctx, cancel)
|
2017-11-14 18:36:14 -05:00
|
|
|
return timer
|
2017-01-31 06:42:05 -05:00
|
|
|
}
|