]> Sergey Matveev's repositories - btrtrc.git/blob - request-strategy/order.go
Merge branch 'master' into go1.18
[btrtrc.git] / request-strategy / order.go
1 package request_strategy
2
3 import (
4         "bytes"
5         "expvar"
6
7         "github.com/anacrolix/multiless"
8         "github.com/anacrolix/torrent/metainfo"
9
10         "github.com/anacrolix/torrent/types"
11 )
12
13 type (
14         RequestIndex  = uint32
15         ChunkIndex    = uint32
16         Request       = types.Request
17         pieceIndex    = types.PieceIndex
18         piecePriority = types.PiecePriority
19         // This can be made into a type-param later, will be great for testing.
20         ChunkSpec = types.ChunkSpec
21 )
22
23 func pieceOrderLess(i, j *pieceRequestOrderItem) multiless.Computation {
24         return multiless.New().Int(
25                 int(j.state.Priority), int(i.state.Priority),
26                 // TODO: Should we match on complete here to prevent churn when availability changes?
27         ).Bool(
28                 j.state.Partial, i.state.Partial,
29         ).Int(
30                 // If this is done with relative availability, do we lose some determinism? If completeness
31                 // is used, would that push this far enough down?
32                 i.state.Availability, j.state.Availability,
33         ).Int(
34                 i.key.Index, j.key.Index,
35         ).Lazy(func() multiless.Computation {
36                 return multiless.New().Cmp(bytes.Compare(
37                         i.key.InfoHash[:],
38                         j.key.InfoHash[:],
39                 ))
40         })
41 }
42
43 var packageExpvarMap = expvar.NewMap("request-strategy")
44
45 // Calls f with requestable pieces in order.
46 func GetRequestablePieces(input Input, pro *PieceRequestOrder, f func(ih metainfo.Hash, pieceIndex int)) {
47         // Storage capacity left for this run, keyed by the storage capacity pointer on the storage
48         // TorrentImpl. A nil value means no capacity limit.
49         var storageLeft *int64
50         if cap, ok := input.Capacity(); ok {
51                 storageLeft = &cap
52         }
53         var allTorrentsUnverifiedBytes int64
54         pro.tree.Scan(func(_i pieceRequestOrderItem) bool {
55                 ih := _i.key.InfoHash
56                 var t Torrent = input.Torrent(ih)
57                 var piece Piece = t.Piece(_i.key.Index)
58                 pieceLength := t.PieceLength()
59                 if storageLeft != nil {
60                         if *storageLeft < pieceLength {
61                                 return false
62                         }
63                         *storageLeft -= pieceLength
64                 }
65                 if !piece.Request() || piece.NumPendingChunks() == 0 {
66                         // TODO: Clarify exactly what is verified. Stuff that's being hashed should be
67                         // considered unverified and hold up further requests.
68                         return true
69                 }
70                 if input.MaxUnverifiedBytes() != 0 && allTorrentsUnverifiedBytes+pieceLength > input.MaxUnverifiedBytes() {
71                         return true
72                 }
73                 allTorrentsUnverifiedBytes += pieceLength
74                 f(ih, _i.key.Index)
75                 return true
76         })
77         return
78 }
79
80 type Input interface {
81         Torrent(metainfo.Hash) Torrent
82         // Storage capacity, shared among all Torrents with the same storage.TorrentCapacity pointer in
83         // their storage.Torrent references.
84         Capacity() (cap int64, capped bool)
85         // Across all the Torrents. This might be partitioned by storage capacity key now.
86         MaxUnverifiedBytes() int64
87 }