torrent/download_strategies.go

342 lines
8.5 KiB
Go

package torrent
import (
"container/heap"
"fmt"
"io"
"math/rand"
pp "bitbucket.org/anacrolix/go.torrent/peer_protocol"
)
type DownloadStrategy interface {
FillRequests(*torrent, *connection)
TorrentStarted(*torrent)
TorrentStopped(*torrent)
DeleteRequest(*torrent, request)
TorrentPrioritize(t *torrent, off, _len int64)
TorrentGotChunk(*torrent, request)
TorrentGotPiece(t *torrent, piece int)
WriteStatus(w io.Writer)
AssertNotRequested(*torrent, request)
}
type DefaultDownloadStrategy struct {
heat map[*torrent]map[request]int
}
func (me *DefaultDownloadStrategy) AssertNotRequested(t *torrent, r request) {
if me.heat[t][r] != 0 {
panic("outstanding requests break invariant")
}
}
func (me *DefaultDownloadStrategy) WriteStatus(w io.Writer) {}
func (s *DefaultDownloadStrategy) FillRequests(t *torrent, c *connection) {
if c.Interested {
if c.PeerChoked {
return
}
if len(c.Requests) >= (c.PeerMaxRequests+1)/2 {
return
}
}
th := s.heat[t]
addRequest := func(req request) (again bool) {
piece := t.Pieces[req.Index]
if piece.Hashing || piece.QueuedForHash {
// We can't be sure we want this.
return true
}
if piece.Complete() {
// We already have this.
return true
}
if c.RequestPending(req) {
return true
}
again = c.Request(req)
if c.RequestPending(req) {
th[req]++
}
return
}
// Then finish off incomplete pieces in order of bytes remaining.
for _, heatThreshold := range []int{1, 4, 15, 60} {
for e := t.IncompletePiecesByBytesLeft.Front(); e != nil; e = e.Next() {
pieceIndex := pp.Integer(e.Value.(int))
for chunkSpec := range t.Pieces[pieceIndex].PendingChunkSpecs {
r := request{pieceIndex, chunkSpec}
if th[r] >= heatThreshold {
continue
}
if !addRequest(r) {
return
}
}
}
}
}
func (s *DefaultDownloadStrategy) TorrentStarted(t *torrent) {
if s.heat[t] != nil {
panic("torrent already started")
}
if s.heat == nil {
s.heat = make(map[*torrent]map[request]int, 10)
}
s.heat[t] = make(map[request]int, t.ChunkCount())
}
func (s *DefaultDownloadStrategy) TorrentStopped(t *torrent) {
if _, ok := s.heat[t]; !ok {
panic("torrent not yet started")
}
delete(s.heat, t)
}
func (s *DefaultDownloadStrategy) DeleteRequest(t *torrent, r request) {
m := s.heat[t]
if m[r] <= 0 {
panic("no pending requests")
}
m[r]--
}
func (me *DefaultDownloadStrategy) TorrentGotChunk(t *torrent, c request) {}
func (me *DefaultDownloadStrategy) TorrentGotPiece(t *torrent, piece int) {}
func (*DefaultDownloadStrategy) TorrentPrioritize(t *torrent, off, _len int64) {}
func NewResponsiveDownloadStrategy(readahead int64) *responsiveDownloadStrategy {
return &responsiveDownloadStrategy{
Readahead: readahead,
lastReadOffset: make(map[*torrent]int64),
priorities: make(map[*torrent]map[request]struct{}),
requestHeat: make(map[*torrent]map[request]int),
rand: rand.New(rand.NewSource(1337)),
}
}
type responsiveDownloadStrategy struct {
// How many bytes to preemptively download starting at the beginning of
// the last piece read for a given torrent.
Readahead int64
lastReadOffset map[*torrent]int64
priorities map[*torrent]map[request]struct{}
requestHeat map[*torrent]map[request]int
rand *rand.Rand // Avoid global lock
}
func (me *responsiveDownloadStrategy) WriteStatus(w io.Writer) {
fmt.Fprintf(w, "Priorities:\n")
for t, pp := range me.priorities {
fmt.Fprintf(w, "\t%s:", t.Name())
for r := range pp {
fmt.Fprintf(w, " %v", r)
}
fmt.Fprintln(w)
}
}
func (me *responsiveDownloadStrategy) TorrentStarted(t *torrent) {
me.priorities[t] = make(map[request]struct{})
me.requestHeat[t] = make(map[request]int)
}
func (me *responsiveDownloadStrategy) TorrentStopped(t *torrent) {
delete(me.lastReadOffset, t)
delete(me.priorities, t)
}
func (me *responsiveDownloadStrategy) DeleteRequest(t *torrent, r request) {
rh := me.requestHeat[t]
if rh[r] <= 0 {
panic("request heat invariant broken")
}
rh[r]--
}
type requestFiller struct {
c *connection
t *torrent
s *responsiveDownloadStrategy
}
// Wrapper around connection.request that tracks request heat.
func (me *requestFiller) request(req request) bool {
if me.c.RequestPending(req) {
return true
}
again := me.c.Request(req)
if me.c.RequestPending(req) {
me.s.requestHeat[me.t][req]++
}
return again
}
// Adds additional constraints around the request heat wrapper.
func (me *requestFiller) conservativelyRequest(req request) bool {
again := me.request(req)
if len(me.c.Requests) >= 50 {
return false
}
return again
}
// Fill priority requests.
func (me *requestFiller) priorities() bool {
for req := range me.s.priorities[me.t] {
if _, ok := me.t.Pieces[req.Index].PendingChunkSpecs[req.chunkSpec]; !ok {
panic(req)
}
if !me.request(req) {
return false
}
}
return true
}
// Fill requests, with all contextual information available in the receiver.
func (me requestFiller) Run() {
if !me.priorities() {
return
}
if len(me.c.Requests) > 25 {
return
}
if !me.readahead() {
return
}
if len(me.c.Requests) > 0 {
return
}
me.completePartial()
}
// Request partial pieces that aren't in the readahead zone.
func (me *requestFiller) completePartial() bool {
t := me.t
th := me.s.requestHeat[t]
for e := t.IncompletePiecesByBytesLeft.Front(); e != nil; e = e.Next() {
p := e.Value.(int)
// Stop when we reach pieces that aren't partial and aren't smaller
// than usual.
if !t.PiecePartiallyDownloaded(p) && int(t.PieceLength(pp.Integer(p))) == t.UsualPieceSize() {
break
}
for chunkSpec := range t.Pieces[p].PendingChunkSpecs {
r := request{pp.Integer(p), chunkSpec}
if th[r] >= 1 {
continue
}
if lastReadOffset, ok := me.s.lastReadOffset[t]; ok {
off := me.t.requestOffset(r)
if off >= lastReadOffset && off < lastReadOffset+me.s.Readahead {
continue
}
}
if !me.conservativelyRequest(r) {
return false
}
}
}
return true
}
// Returns all wanted chunk specs in the readahead zone.
func (me *requestFiller) pendingReadaheadChunks() (ret []request) {
t := me.t
lastReadOffset, ok := me.s.lastReadOffset[t]
if !ok {
return
}
ret = make([]request, 0, (me.s.Readahead+chunkSize-1)/chunkSize)
for pi := int(lastReadOffset / int64(t.UsualPieceSize())); pi < t.NumPieces() && int64(pi)*int64(t.UsualPieceSize()) < lastReadOffset+me.s.Readahead; pi++ {
if !t.wantPiece(pi) || !me.c.PeerHasPiece(pp.Integer(pi)) {
continue
}
for cs := range t.Pieces[pi].PendingChunkSpecs {
r := request{pp.Integer(pi), cs}
if _, ok := me.c.Requests[r]; ok {
continue
}
if off := t.requestOffset(r); off < lastReadOffset || off >= lastReadOffset+me.s.Readahead {
continue
}
ret = append(ret, r)
}
}
return
}
// Min-heap of int.
type intHeap []int
func (h intHeap) Len() int { return len(h) }
func (h intHeap) Less(i, j int) bool { return h[i] < h[j] }
func (h intHeap) Swap(i, j int) { h[i], h[j] = h[j], h[i] }
func (h *intHeap) Push(x interface{}) { *h = append(*h, x.(int)) }
func (h *intHeap) Pop() interface{} {
old := *h
n := len(old)
x := old[n-1]
*h = old[0 : n-1]
return x
}
func (me *requestFiller) readahead() bool {
rr := me.pendingReadaheadChunks()
if len(rr) == 0 {
return true
}
// Produce a partially sorted random permutation into the readahead chunks to somewhat preserve order but reducing wasted chunks due to overlap with other peers.
ii := new(intHeap)
*ii = me.s.rand.Perm(len(rr))
heap.Init(ii)
for _, i := range *ii {
if !me.conservativelyRequest(rr[i]) {
return false
}
}
return true
}
func (me *responsiveDownloadStrategy) FillRequests(t *torrent, c *connection) {
(requestFiller{c, t, me}).Run()
}
func (me *responsiveDownloadStrategy) TorrentGotChunk(t *torrent, req request) {
delete(me.priorities[t], req)
}
func (me *responsiveDownloadStrategy) TorrentGotPiece(t *torrent, piece int) {
for _, cs := range t.pieceChunks(piece) {
delete(me.priorities[t], request{pp.Integer(piece), cs})
}
}
func (s *responsiveDownloadStrategy) TorrentPrioritize(t *torrent, off, _len int64) {
s.lastReadOffset[t] = off
for _len > 0 {
req, ok := t.offsetRequest(off)
if !ok {
panic("bad offset")
}
reqOff := t.requestOffset(req)
// Gain the alignment adjustment.
_len += off - reqOff
// Lose the length of this block.
_len -= int64(req.Length)
off = reqOff + int64(req.Length)
if t.wantChunk(req) {
s.priorities[t][req] = struct{}{}
}
}
}
func (s *responsiveDownloadStrategy) AssertNotRequested(t *torrent, r request) {
if s.requestHeat[t][r] != 0 {
panic("outstanding requests invariant broken")
}
}