1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 16:26:02 -04:00
v2fly/common/signal/timer.go

50 lines
752 B
Go
Raw Normal View History

2017-01-31 06:42:05 -05:00
package signal
import (
"context"
"time"
)
type ActivityTimer struct {
updated chan bool
timeout time.Duration
ctx context.Context
cancel context.CancelFunc
}
func (t *ActivityTimer) UpdateActivity() {
select {
case t.updated <- true:
default:
}
}
func (t *ActivityTimer) run() {
for {
select {
2017-01-31 06:54:01 -05:00
case <-time.After(t.timeout):
2017-01-31 06:42:05 -05:00
case <-t.ctx.Done():
return
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
t.cancel()
return
2017-01-31 06:42:05 -05:00
}
2017-01-31 08:15:34 -05:00
2017-01-31 06:42:05 -05:00
}
}
func CancelAfterInactivity(ctx context.Context, cancel context.CancelFunc, timeout time.Duration) *ActivityTimer {
timer := &ActivityTimer{
ctx: ctx,
cancel: cancel,
timeout: timeout,
updated: make(chan bool, 1),
}
go timer.run()
return timer
}