FedP2P/request-strategy/order.go

118 lines
3.0 KiB
Go
Raw Normal View History

package request_strategy
import (
"bytes"
2021-11-30 12:18:38 +08:00
"expvar"
"github.com/anacrolix/multiless"
2021-11-30 12:18:38 +08:00
"github.com/anacrolix/torrent/metainfo"
"github.com/google/btree"
"github.com/anacrolix/torrent/types"
)
type (
2021-09-19 13:16:37 +08:00
RequestIndex = uint32
ChunkIndex = uint32
Request = types.Request
pieceIndex = types.PieceIndex
piecePriority = types.PiecePriority
2021-05-13 09:26:22 +08:00
// This can be made into a type-param later, will be great for testing.
ChunkSpec = types.ChunkSpec
)
type pieceOrderInput struct {
PieceRequestOrderState
PieceRequestOrderKey
}
func pieceOrderLess(i, j pieceOrderInput) multiless.Computation {
return multiless.New().Int(
int(j.Priority), int(i.Priority),
).Bool(
j.Partial, i.Partial,
).Int64(
i.Availability, j.Availability,
).Int(
i.Index, j.Index,
).Lazy(func() multiless.Computation {
return multiless.New().Cmp(bytes.Compare(
i.InfoHash[:],
j.InfoHash[:],
))
})
}
type requestsPeer struct {
2021-05-13 09:26:22 +08:00
Peer
nextState PeerNextRequestState
requestablePiecesRemaining int
}
func (rp *requestsPeer) canFitRequest() bool {
2021-09-19 13:16:37 +08:00
return int(rp.nextState.Requests.GetCardinality()) < rp.MaxRequests
}
2021-09-19 13:16:37 +08:00
func (rp *requestsPeer) addNextRequest(r RequestIndex) {
if !rp.nextState.Requests.CheckedAdd(r) {
panic("should only add once")
}
}
type peersForPieceRequests struct {
requestsInPiece int
*requestsPeer
}
2021-09-19 13:16:37 +08:00
func (me *peersForPieceRequests) addNextRequest(r RequestIndex) {
me.requestsPeer.addNextRequest(r)
me.requestsInPiece++
}
2021-11-30 12:18:38 +08:00
var packageExpvarMap = expvar.NewMap("request-strategy")
// Calls f with requestable pieces in order.
func GetRequestablePieces(input Input, pro *PieceRequestOrder, f func(ih metainfo.Hash, pieceIndex int)) {
// Storage capacity left for this run, keyed by the storage capacity pointer on the storage
// TorrentImpl. A nil value means no capacity limit.
var storageLeft *int64
if cap, ok := input.Capacity(); ok {
storageLeft = &cap
}
2021-05-14 11:40:09 +08:00
var allTorrentsUnverifiedBytes int64
pro.tree.Ascend(func(i btree.Item) bool {
_i := i.(pieceRequestOrderItem)
ih := _i.key.InfoHash
var t Torrent = input.Torrent(ih)
var piece Piece = t.Piece(_i.key.Index)
pieceLength := t.PieceLength()
if storageLeft != nil {
if *storageLeft < pieceLength {
return true
}
*storageLeft -= pieceLength
}
if !piece.Request() || piece.NumPendingChunks() == 0 {
2021-05-14 11:40:09 +08:00
// TODO: Clarify exactly what is verified. Stuff that's being hashed should be
// considered unverified and hold up further requests.
return true
}
if input.MaxUnverifiedBytes() != 0 && allTorrentsUnverifiedBytes+pieceLength > input.MaxUnverifiedBytes() {
return true
2021-05-14 11:40:09 +08:00
}
allTorrentsUnverifiedBytes += pieceLength
f(ih, _i.key.Index)
return true
})
2021-05-14 11:06:12 +08:00
return
}
type Input interface {
Torrent(metainfo.Hash) Torrent
// Storage capacity, shared among all Torrents with the same storage.TorrentCapacity pointer in
// their storage.Torrent references.
Capacity() (cap int64, capped bool)
// Across all the Torrents. This might be partitioned by storage capacity key now.
MaxUnverifiedBytes() int64
2021-05-13 16:35:49 +08:00
}