1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 11:35:23 +00:00
v2fly/common/signal/timer.go

58 lines
886 B
Go
Raw Normal View History

2017-01-31 11:42:05 +00:00
package signal
import (
"context"
"time"
)
2017-04-04 08:24:38 +00:00
type ActivityTimer interface {
Update()
}
type realActivityTimer struct {
2017-01-31 11:42:05 +00:00
updated chan bool
timeout time.Duration
ctx context.Context
cancel context.CancelFunc
}
2017-04-04 08:24:38 +00:00
func (t *realActivityTimer) Update() {
2017-01-31 11:42:05 +00:00
select {
case t.updated <- true:
default:
}
}
2017-04-04 08:24:38 +00:00
func (t *realActivityTimer) run() {
2017-05-08 15:09:21 +00:00
ticker := time.NewTicker(t.timeout)
defer ticker.Stop()
2017-01-31 11:42:05 +00:00
for {
select {
2017-05-08 15:09:21 +00:00
case <-ticker.C:
2017-01-31 11:42:05 +00:00
case <-t.ctx.Done():
return
2017-01-31 13:15:34 +00:00
}
2017-05-08 15:09:21 +00:00
2017-01-31 13:15:34 +00:00
select {
case <-t.updated:
// Updated keep waiting.
2017-01-31 11:42:05 +00:00
default:
2017-01-31 13:15:34 +00:00
t.cancel()
return
2017-01-31 11:42:05 +00:00
}
}
}
2017-04-04 08:24:38 +00:00
func CancelAfterInactivity(ctx context.Context, timeout time.Duration) (context.Context, ActivityTimer) {
2017-03-31 19:45:43 +00:00
ctx, cancel := context.WithCancel(ctx)
2017-04-04 08:24:38 +00:00
timer := &realActivityTimer{
2017-01-31 11:42:05 +00:00
ctx: ctx,
cancel: cancel,
timeout: timeout,
updated: make(chan bool, 1),
}
go timer.run()
2017-03-31 19:45:43 +00:00
return ctx, timer
2017-01-31 11:42:05 +00:00
}