1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 18:45:23 +00:00
v2fly/common/signal/timer.go
Darien Raymond 18b0b87c52
no-op timer
2017-04-04 10:24:38 +02:00

63 lines
981 B
Go

package signal
import (
"context"
"time"
)
type ActivityTimer interface {
Update()
}
type realActivityTimer struct {
updated chan bool
timeout time.Duration
ctx context.Context
cancel context.CancelFunc
}
func (t *realActivityTimer) Update() {
select {
case t.updated <- true:
default:
}
}
func (t *realActivityTimer) run() {
for {
select {
case <-time.After(t.timeout):
case <-t.ctx.Done():
return
}
select {
case <-t.updated:
// Updated keep waiting.
default:
t.cancel()
return
}
}
}
func CancelAfterInactivity(ctx context.Context, timeout time.Duration) (context.Context, ActivityTimer) {
ctx, cancel := context.WithCancel(ctx)
timer := &realActivityTimer{
ctx: ctx,
cancel: cancel,
timeout: timeout,
updated: make(chan bool, 1),
}
go timer.run()
return ctx, timer
}
type noOpActivityTimer struct{}
func (noOpActivityTimer) Update() {}
func BackgroundTimer() ActivityTimer {
return noOpActivityTimer{}
}