1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 23:06:14 -04:00
v2fly/common/signal/timer.go

82 lines
1.3 KiB
Go
Raw Normal View History

2017-01-31 06:42:05 -05:00
package signal
import (
"context"
"time"
)
type ActivityUpdater interface {
2017-04-04 04:24:38 -04:00
Update()
}
type ActivityTimer struct {
2018-02-08 09:39:46 -05:00
updated chan struct{}
timeout chan time.Duration
2018-02-08 09:39:46 -05:00
closing chan struct{}
2017-01-31 06:42:05 -05:00
}
func (t *ActivityTimer) Update() {
2017-01-31 06:42:05 -05:00
select {
2018-02-08 09:39:46 -05:00
case t.updated <- struct{}{}:
2017-01-31 06:42:05 -05:00
default:
}
}
func (t *ActivityTimer) SetTimeout(timeout time.Duration) {
2018-02-06 05:16:49 -05:00
select {
case <-t.closing:
case t.timeout <- timeout:
}
}
2017-11-30 18:47:17 -05:00
func (t *ActivityTimer) run(ctx context.Context, cancel context.CancelFunc) {
2018-02-06 05:16:49 -05:00
defer func() {
cancel()
close(t.closing)
}()
2017-12-14 11:39:58 -05:00
timeout := <-t.timeout
if timeout == 0 {
return
}
2017-12-14 17:57:04 -05:00
ticker := time.NewTicker(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
case timeout := <-t.timeout:
2017-11-23 08:58:35 -05:00
if timeout == 0 {
return
}
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 {
timer := &ActivityTimer{
timeout: make(chan time.Duration, 1),
2018-02-08 09:39:46 -05:00
updated: make(chan struct{}, 1),
closing: make(chan struct{}),
2017-01-31 06:42:05 -05: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
}