1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-12-29 21:45:21 -05:00

aggressively close connection when response is done

This commit is contained in:
Darien Raymond
2017-09-27 15:29:00 +02:00
parent 2ce1d8ffa2
commit 109a37fe7e
8 changed files with 59 additions and 12 deletions

View File

@@ -5,26 +5,30 @@ import (
"time"
)
type ActivityTimer interface {
type ActivityUpdater interface {
Update()
}
type realActivityTimer struct {
type ActivityTimer struct {
updated chan bool
timeout time.Duration
timeout chan time.Duration
ctx context.Context
cancel context.CancelFunc
}
func (t *realActivityTimer) Update() {
func (t *ActivityTimer) Update() {
select {
case t.updated <- true:
default:
}
}
func (t *realActivityTimer) run() {
ticker := time.NewTicker(t.timeout)
func (t *ActivityTimer) SetTimeout(timeout time.Duration) {
t.timeout <- timeout
}
func (t *ActivityTimer) run() {
ticker := time.NewTicker(<-t.timeout)
defer ticker.Stop()
for {
@@ -32,6 +36,9 @@ func (t *realActivityTimer) run() {
case <-ticker.C:
case <-t.ctx.Done():
return
case timeout := <-t.timeout:
ticker.Stop()
ticker = time.NewTicker(timeout)
}
select {
@@ -44,14 +51,15 @@ func (t *realActivityTimer) run() {
}
}
func CancelAfterInactivity(ctx context.Context, timeout time.Duration) (context.Context, ActivityTimer) {
func CancelAfterInactivity(ctx context.Context, timeout time.Duration) (context.Context, *ActivityTimer) {
ctx, cancel := context.WithCancel(ctx)
timer := &realActivityTimer{
timer := &ActivityTimer{
ctx: ctx,
cancel: cancel,
timeout: timeout,
timeout: make(chan time.Duration, 1),
updated: make(chan bool, 1),
}
timer.timeout <- timeout
go timer.run()
return ctx, timer
}