Fix download rate limiter and add test
This commit is contained in:
parent
37272a391b
commit
00d9883ee0
|
@ -1,32 +1,53 @@
|
||||||
package torrent
|
package torrent
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"golang.org/x/net/context"
|
|
||||||
"golang.org/x/time/rate"
|
"golang.org/x/time/rate"
|
||||||
)
|
)
|
||||||
|
|
||||||
type rateLimitedReader struct {
|
type rateLimitedReader struct {
|
||||||
l *rate.Limiter
|
l *rate.Limiter
|
||||||
r io.Reader
|
r io.Reader
|
||||||
|
|
||||||
|
// This is the time of the last Read's reservation.
|
||||||
|
lastRead time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
func (me rateLimitedReader) Read(b []byte) (n int, err error) {
|
func (me *rateLimitedReader) Read(b []byte) (n int, err error) {
|
||||||
// Wait until we can read at all.
|
const oldStyle = false // Retained for future reference.
|
||||||
if err := me.l.WaitN(context.Background(), 1); err != nil {
|
if oldStyle {
|
||||||
panic(err)
|
// Wait until we can read at all.
|
||||||
}
|
if err := me.l.WaitN(context.Background(), 1); err != nil {
|
||||||
// Limit the read to within the burst.
|
panic(err)
|
||||||
if me.l.Limit() != rate.Inf && len(b) > me.l.Burst() {
|
}
|
||||||
b = b[:me.l.Burst()]
|
// Limit the read to within the burst.
|
||||||
}
|
if me.l.Limit() != rate.Inf && len(b) > me.l.Burst() {
|
||||||
n, err = me.r.Read(b)
|
b = b[:me.l.Burst()]
|
||||||
// Pay the piper.
|
}
|
||||||
if !me.l.ReserveN(time.Now(), n-1).OK() {
|
n, err = me.r.Read(b)
|
||||||
panic(fmt.Sprintf("burst exceeded?: %d", n-1))
|
// Pay the piper.
|
||||||
|
now := time.Now()
|
||||||
|
me.lastRead = now
|
||||||
|
if !me.l.ReserveN(now, n-1).OK() {
|
||||||
|
panic(fmt.Sprintf("burst exceeded?: %d", n-1))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Limit the read to within the burst.
|
||||||
|
if me.l.Limit() != rate.Inf && len(b) > me.l.Burst() {
|
||||||
|
b = b[:me.l.Burst()]
|
||||||
|
}
|
||||||
|
n, err = me.r.Read(b)
|
||||||
|
now := time.Now()
|
||||||
|
r := me.l.ReserveN(now, n)
|
||||||
|
if !r.OK() {
|
||||||
|
panic(n)
|
||||||
|
}
|
||||||
|
me.lastRead = now
|
||||||
|
time.Sleep(r.Delay())
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,130 @@
|
||||||
|
package torrent
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"log"
|
||||||
|
"math/rand"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/bradfitz/iter"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
"golang.org/x/time/rate"
|
||||||
|
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func writeN(ws []io.Writer, n int) error {
|
||||||
|
b := make([]byte, n)
|
||||||
|
for _, w := range ws[1:] {
|
||||||
|
n1 := rand.Intn(n)
|
||||||
|
wn, err := w.Write(b[:n1])
|
||||||
|
if wn != n1 {
|
||||||
|
if err == nil {
|
||||||
|
panic(n1)
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
n -= n1
|
||||||
|
}
|
||||||
|
wn, err := ws[0].Write(b[:n])
|
||||||
|
if wn != n {
|
||||||
|
if err == nil {
|
||||||
|
panic(n)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRateLimitReaders(t *testing.T) {
|
||||||
|
const (
|
||||||
|
numReaders = 2
|
||||||
|
bytesPerSecond = 100
|
||||||
|
burst = 5
|
||||||
|
readSize = 6
|
||||||
|
writeRounds = 10
|
||||||
|
bytesPerRound = 12
|
||||||
|
)
|
||||||
|
control := rate.NewLimiter(bytesPerSecond, burst)
|
||||||
|
shared := rate.NewLimiter(bytesPerSecond, burst)
|
||||||
|
var (
|
||||||
|
ws []io.Writer
|
||||||
|
cs []io.Closer
|
||||||
|
)
|
||||||
|
wg := sync.WaitGroup{}
|
||||||
|
type read struct {
|
||||||
|
N int
|
||||||
|
// When the read was allowed.
|
||||||
|
At time.Time
|
||||||
|
}
|
||||||
|
reads := make(chan read)
|
||||||
|
done := make(chan struct{})
|
||||||
|
for range iter.N(numReaders) {
|
||||||
|
r, w := io.Pipe()
|
||||||
|
ws = append(ws, w)
|
||||||
|
cs = append(cs, w)
|
||||||
|
wg.Add(1)
|
||||||
|
go func() {
|
||||||
|
defer wg.Done()
|
||||||
|
r := rateLimitedReader{
|
||||||
|
l: shared,
|
||||||
|
r: r,
|
||||||
|
}
|
||||||
|
b := make([]byte, readSize)
|
||||||
|
for {
|
||||||
|
n, err := r.Read(b)
|
||||||
|
select {
|
||||||
|
case reads <- read{n, r.lastRead}:
|
||||||
|
case <-done:
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err == io.EOF {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
closeAll := func() {
|
||||||
|
for _, c := range cs {
|
||||||
|
c.Close()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
defer func() {
|
||||||
|
close(done)
|
||||||
|
closeAll()
|
||||||
|
wg.Wait()
|
||||||
|
}()
|
||||||
|
written := 0
|
||||||
|
go func() {
|
||||||
|
for range iter.N(writeRounds) {
|
||||||
|
err := writeN(ws, bytesPerRound)
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("error writing: %s", err)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
written += bytesPerRound
|
||||||
|
}
|
||||||
|
closeAll()
|
||||||
|
wg.Wait()
|
||||||
|
close(reads)
|
||||||
|
}()
|
||||||
|
totalBytesRead := 0
|
||||||
|
started := time.Now()
|
||||||
|
for r := range reads {
|
||||||
|
totalBytesRead += r.N
|
||||||
|
require.False(t, r.At.IsZero())
|
||||||
|
// Copy what the reader should have done with its reservation.
|
||||||
|
res := control.ReserveN(r.At, r.N)
|
||||||
|
// If we don't have to wait with the control, the reader has gone too
|
||||||
|
// fast.
|
||||||
|
if res.Delay() > 0 {
|
||||||
|
log.Printf("%d bytes not allowed at %s", r.N, time.Since(started))
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
assert.EqualValues(t, writeRounds*bytesPerRound, totalBytesRead)
|
||||||
|
}
|
Loading…
Reference in New Issue