2015-04-07 16:14:35 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
2021-10-05 09:06:23 +00:00
|
|
|
"encoding/gob"
|
2017-10-12 05:09:32 +00:00
|
|
|
"fmt"
|
2015-04-07 16:14:35 +00:00
|
|
|
"sync"
|
2015-05-16 00:51:48 +00:00
|
|
|
|
2021-10-05 09:06:23 +00:00
|
|
|
"github.com/RoaringBitmap/roaring"
|
2021-09-02 10:53:49 +00:00
|
|
|
"github.com/anacrolix/chansync"
|
2020-01-10 04:09:21 +00:00
|
|
|
"github.com/anacrolix/missinggo/v2/bitmap"
|
2021-10-05 09:06:23 +00:00
|
|
|
request_strategy "github.com/anacrolix/torrent/request-strategy"
|
2019-07-25 04:15:36 +00:00
|
|
|
|
2016-03-28 09:38:30 +00:00
|
|
|
"github.com/anacrolix/torrent/metainfo"
|
2015-05-16 00:51:48 +00:00
|
|
|
pp "github.com/anacrolix/torrent/peer_protocol"
|
2016-03-28 09:38:30 +00:00
|
|
|
"github.com/anacrolix/torrent/storage"
|
2015-04-07 16:14:35 +00:00
|
|
|
)
|
|
|
|
|
2017-09-15 09:35:16 +00:00
|
|
|
type Piece struct {
|
2015-06-16 06:57:47 +00:00
|
|
|
// The completed piece SHA1 hash, from the metainfo "pieces" field.
|
2019-01-30 06:54:02 +00:00
|
|
|
hash *metainfo.Hash
|
2016-04-03 08:40:43 +00:00
|
|
|
t *Torrent
|
2018-07-11 23:15:15 +00:00
|
|
|
index pieceIndex
|
2018-01-21 11:49:12 +00:00
|
|
|
files []*File
|
2017-09-15 09:22:32 +00:00
|
|
|
|
2021-09-02 10:53:49 +00:00
|
|
|
readerCond chansync.BroadcastCond
|
|
|
|
|
2017-10-12 05:09:32 +00:00
|
|
|
numVerifies int64
|
2020-09-29 06:37:58 +00:00
|
|
|
hashing bool
|
2020-11-21 02:40:09 +00:00
|
|
|
marking bool
|
2017-10-12 05:09:32 +00:00
|
|
|
storageCompletionOk bool
|
2017-09-15 09:22:32 +00:00
|
|
|
|
2017-09-15 09:35:16 +00:00
|
|
|
publicPieceState PieceState
|
2016-02-01 10:11:41 +00:00
|
|
|
priority piecePriority
|
2021-05-10 07:02:17 +00:00
|
|
|
availability int64
|
2015-08-04 16:40:46 +00:00
|
|
|
|
2020-11-05 21:39:56 +00:00
|
|
|
// This can be locked when the Client lock is taken, but probably not vice versa.
|
2015-08-04 16:40:46 +00:00
|
|
|
pendingWritesMutex sync.Mutex
|
|
|
|
pendingWrites int
|
|
|
|
noPendingWrites sync.Cond
|
2018-02-03 01:08:16 +00:00
|
|
|
|
|
|
|
// Connections that have written data to this piece since its last check.
|
|
|
|
// This can include connections that have closed.
|
2021-01-20 02:10:32 +00:00
|
|
|
dirtiers map[*Peer]struct{}
|
2015-04-07 16:14:35 +00:00
|
|
|
}
|
|
|
|
|
2017-10-12 05:09:32 +00:00
|
|
|
func (p *Piece) String() string {
|
|
|
|
return fmt.Sprintf("%s/%d", p.t.infoHash.HexString(), p.index)
|
|
|
|
}
|
|
|
|
|
2017-09-15 09:35:16 +00:00
|
|
|
func (p *Piece) Info() metainfo.Piece {
|
2018-07-11 23:15:15 +00:00
|
|
|
return p.t.info.Piece(int(p.index))
|
2016-03-28 09:38:30 +00:00
|
|
|
}
|
|
|
|
|
2017-09-15 09:35:16 +00:00
|
|
|
func (p *Piece) Storage() storage.Piece {
|
2016-03-28 09:38:30 +00:00
|
|
|
return p.t.storage.Piece(p.Info())
|
|
|
|
}
|
|
|
|
|
2021-09-19 05:16:37 +00:00
|
|
|
func (p *Piece) pendingChunkIndex(chunkIndex chunkIndexType) bool {
|
2021-09-20 08:52:54 +00:00
|
|
|
return !p.chunkIndexDirty(chunkIndex)
|
2016-02-05 04:45:32 +00:00
|
|
|
}
|
|
|
|
|
2021-01-28 03:23:22 +00:00
|
|
|
func (p *Piece) pendingChunk(cs ChunkSpec, chunkSize pp.Integer) bool {
|
2021-09-19 05:16:37 +00:00
|
|
|
return p.pendingChunkIndex(chunkIndexFromChunkSpec(cs, chunkSize))
|
2015-05-16 00:51:48 +00:00
|
|
|
}
|
|
|
|
|
2017-09-15 09:35:16 +00:00
|
|
|
func (p *Piece) hasDirtyChunks() bool {
|
2021-09-20 08:52:54 +00:00
|
|
|
return p.numDirtyChunks() != 0
|
2016-02-04 14:18:54 +00:00
|
|
|
}
|
|
|
|
|
2021-09-20 08:52:54 +00:00
|
|
|
func (p *Piece) numDirtyChunks() chunkIndexType {
|
|
|
|
return chunkIndexType(roaringBitmapRangeCardinality(
|
|
|
|
&p.t.dirtyChunks,
|
|
|
|
p.requestIndexOffset(),
|
|
|
|
p.t.pieceRequestIndexOffset(p.index+1)))
|
2015-05-16 00:51:48 +00:00
|
|
|
}
|
|
|
|
|
2021-09-19 05:16:37 +00:00
|
|
|
func (p *Piece) unpendChunkIndex(i chunkIndexType) {
|
2021-09-20 08:52:54 +00:00
|
|
|
p.t.dirtyChunks.Add(p.requestIndexOffset() + i)
|
2021-09-02 10:53:49 +00:00
|
|
|
p.readerCond.Broadcast()
|
2015-05-16 00:51:48 +00:00
|
|
|
}
|
|
|
|
|
2021-09-19 05:16:37 +00:00
|
|
|
func (p *Piece) pendChunkIndex(i RequestIndex) {
|
2021-09-20 08:52:54 +00:00
|
|
|
p.t.dirtyChunks.Remove(p.requestIndexOffset() + i)
|
2016-01-27 18:54:48 +00:00
|
|
|
}
|
|
|
|
|
2021-09-20 08:52:54 +00:00
|
|
|
func (p *Piece) numChunks() chunkIndexType {
|
|
|
|
return p.t.pieceNumChunks(p.index)
|
2016-02-07 10:58:48 +00:00
|
|
|
}
|
|
|
|
|
2017-09-15 09:35:16 +00:00
|
|
|
func (p *Piece) incrementPendingWrites() {
|
2016-01-24 20:22:33 +00:00
|
|
|
p.pendingWritesMutex.Lock()
|
|
|
|
p.pendingWrites++
|
|
|
|
p.pendingWritesMutex.Unlock()
|
|
|
|
}
|
|
|
|
|
2017-09-15 09:35:16 +00:00
|
|
|
func (p *Piece) decrementPendingWrites() {
|
2016-01-24 20:22:33 +00:00
|
|
|
p.pendingWritesMutex.Lock()
|
|
|
|
if p.pendingWrites == 0 {
|
|
|
|
panic("assertion")
|
|
|
|
}
|
|
|
|
p.pendingWrites--
|
|
|
|
if p.pendingWrites == 0 {
|
|
|
|
p.noPendingWrites.Broadcast()
|
|
|
|
}
|
|
|
|
p.pendingWritesMutex.Unlock()
|
|
|
|
}
|
|
|
|
|
2017-09-15 09:35:16 +00:00
|
|
|
func (p *Piece) waitNoPendingWrites() {
|
2016-01-24 20:22:33 +00:00
|
|
|
p.pendingWritesMutex.Lock()
|
|
|
|
for p.pendingWrites != 0 {
|
|
|
|
p.noPendingWrites.Wait()
|
|
|
|
}
|
|
|
|
p.pendingWritesMutex.Unlock()
|
|
|
|
}
|
2016-03-22 02:11:36 +00:00
|
|
|
|
2021-09-20 08:52:54 +00:00
|
|
|
func (p *Piece) chunkIndexDirty(chunk chunkIndexType) bool {
|
|
|
|
return p.t.dirtyChunks.Contains(p.requestIndexOffset() + chunk)
|
2016-03-22 02:11:36 +00:00
|
|
|
}
|
|
|
|
|
2021-09-20 08:52:54 +00:00
|
|
|
func (p *Piece) chunkIndexSpec(chunk chunkIndexType) ChunkSpec {
|
|
|
|
return chunkIndexSpec(pp.Integer(chunk), p.length(), p.chunkSize())
|
2016-03-22 02:11:36 +00:00
|
|
|
}
|
|
|
|
|
2017-09-15 09:35:16 +00:00
|
|
|
func (p *Piece) numDirtyBytes() (ret pp.Integer) {
|
2017-09-23 05:28:13 +00:00
|
|
|
// defer func() {
|
|
|
|
// if ret > p.length() {
|
|
|
|
// panic("too many dirty bytes")
|
|
|
|
// }
|
|
|
|
// }()
|
2016-03-22 02:11:36 +00:00
|
|
|
numRegularDirtyChunks := p.numDirtyChunks()
|
|
|
|
if p.chunkIndexDirty(p.numChunks() - 1) {
|
|
|
|
numRegularDirtyChunks--
|
|
|
|
ret += p.chunkIndexSpec(p.lastChunkIndex()).Length
|
|
|
|
}
|
|
|
|
ret += pp.Integer(numRegularDirtyChunks) * p.chunkSize()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-09-15 09:35:16 +00:00
|
|
|
func (p *Piece) length() pp.Integer {
|
2016-03-22 02:11:36 +00:00
|
|
|
return p.t.pieceLength(p.index)
|
|
|
|
}
|
|
|
|
|
2017-09-15 09:35:16 +00:00
|
|
|
func (p *Piece) chunkSize() pp.Integer {
|
2016-03-22 02:11:36 +00:00
|
|
|
return p.t.chunkSize
|
|
|
|
}
|
|
|
|
|
2021-09-20 08:52:54 +00:00
|
|
|
func (p *Piece) lastChunkIndex() chunkIndexType {
|
2016-03-22 02:11:36 +00:00
|
|
|
return p.numChunks() - 1
|
|
|
|
}
|
|
|
|
|
2017-09-15 09:35:16 +00:00
|
|
|
func (p *Piece) bytesLeft() (ret pp.Integer) {
|
2016-03-22 02:11:36 +00:00
|
|
|
if p.t.pieceComplete(p.index) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return p.length() - p.numDirtyBytes()
|
|
|
|
}
|
2017-09-15 09:22:32 +00:00
|
|
|
|
2019-07-25 04:13:42 +00:00
|
|
|
// Forces the piece data to be rehashed.
|
2017-09-15 09:35:16 +00:00
|
|
|
func (p *Piece) VerifyData() {
|
2018-07-25 03:41:50 +00:00
|
|
|
p.t.cl.lock()
|
|
|
|
defer p.t.cl.unlock()
|
2017-09-15 09:22:32 +00:00
|
|
|
target := p.numVerifies + 1
|
2017-09-15 09:35:16 +00:00
|
|
|
if p.hashing {
|
2017-09-15 09:22:32 +00:00
|
|
|
target++
|
|
|
|
}
|
2019-07-25 04:15:36 +00:00
|
|
|
//log.Printf("target: %d", target)
|
2017-09-15 09:22:32 +00:00
|
|
|
p.t.queuePieceCheck(p.index)
|
2019-07-25 04:15:36 +00:00
|
|
|
for {
|
|
|
|
//log.Printf("got %d verifies", p.numVerifies)
|
|
|
|
if p.numVerifies >= target {
|
|
|
|
break
|
|
|
|
}
|
2017-09-15 09:22:32 +00:00
|
|
|
p.t.cl.event.Wait()
|
|
|
|
}
|
2017-11-07 05:00:08 +00:00
|
|
|
// log.Print("done")
|
2017-10-12 05:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Piece) queuedForHash() bool {
|
2018-07-11 23:15:15 +00:00
|
|
|
return p.t.piecesQueuedForHash.Get(bitmap.BitIndex(p.index))
|
2017-09-15 09:22:32 +00:00
|
|
|
}
|
2018-01-21 11:49:12 +00:00
|
|
|
|
|
|
|
func (p *Piece) torrentBeginOffset() int64 {
|
|
|
|
return int64(p.index) * p.t.info.PieceLength
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Piece) torrentEndOffset() int64 {
|
|
|
|
return p.torrentBeginOffset() + int64(p.length())
|
|
|
|
}
|
2018-01-25 06:18:36 +00:00
|
|
|
|
|
|
|
func (p *Piece) SetPriority(prio piecePriority) {
|
2018-07-25 03:41:50 +00:00
|
|
|
p.t.cl.lock()
|
|
|
|
defer p.t.cl.unlock()
|
2018-01-25 06:18:36 +00:00
|
|
|
p.priority = prio
|
|
|
|
p.t.updatePiecePriority(p.index)
|
|
|
|
}
|
|
|
|
|
2021-05-12 07:45:36 +00:00
|
|
|
func (p *Piece) purePriority() (ret piecePriority) {
|
2018-01-25 06:18:36 +00:00
|
|
|
for _, f := range p.files {
|
|
|
|
ret.Raise(f.prio)
|
|
|
|
}
|
2021-05-20 01:16:54 +00:00
|
|
|
if p.t.readerNowPieces().Contains(bitmap.BitIndex(p.index)) {
|
2018-01-25 06:18:36 +00:00
|
|
|
ret.Raise(PiecePriorityNow)
|
|
|
|
}
|
2020-01-10 04:09:21 +00:00
|
|
|
// if t._readerNowPieces.Contains(piece - 1) {
|
2018-01-25 06:18:36 +00:00
|
|
|
// return PiecePriorityNext
|
|
|
|
// }
|
2020-01-10 04:09:21 +00:00
|
|
|
if p.t.readerReadaheadPieces().Contains(bitmap.BitIndex(p.index)) {
|
2018-01-25 06:18:36 +00:00
|
|
|
ret.Raise(PiecePriorityReadahead)
|
|
|
|
}
|
|
|
|
ret.Raise(p.priority)
|
|
|
|
return
|
|
|
|
}
|
2018-01-28 04:58:55 +00:00
|
|
|
|
2021-05-12 07:45:36 +00:00
|
|
|
func (p *Piece) uncachedPriority() (ret piecePriority) {
|
2021-10-09 03:20:54 +00:00
|
|
|
if p.hashing || p.marking || p.t.pieceComplete(p.index) || p.queuedForHash() {
|
2021-05-12 07:45:36 +00:00
|
|
|
return PiecePriorityNone
|
|
|
|
}
|
|
|
|
return p.purePriority()
|
|
|
|
}
|
|
|
|
|
2020-11-08 23:56:27 +00:00
|
|
|
// Tells the Client to refetch the completion status from storage, updating priority etc. if
|
|
|
|
// necessary. Might be useful if you know the state of the piece data has changed externally.
|
2020-01-05 02:12:02 +00:00
|
|
|
func (p *Piece) UpdateCompletion() {
|
|
|
|
p.t.cl.lock()
|
|
|
|
defer p.t.cl.unlock()
|
|
|
|
p.t.updatePieceCompletion(p.index)
|
|
|
|
}
|
|
|
|
|
2018-01-28 04:58:55 +00:00
|
|
|
func (p *Piece) completion() (ret storage.Completion) {
|
|
|
|
ret.Complete = p.t.pieceComplete(p.index)
|
|
|
|
ret.Ok = p.storageCompletionOk
|
|
|
|
return
|
|
|
|
}
|
2020-01-07 04:13:28 +00:00
|
|
|
|
|
|
|
func (p *Piece) allChunksDirty() bool {
|
2021-09-20 08:52:54 +00:00
|
|
|
return p.numDirtyChunks() == p.numChunks()
|
2020-01-10 04:09:21 +00:00
|
|
|
}
|
|
|
|
|
2020-02-27 05:41:33 +00:00
|
|
|
func (p *Piece) State() PieceState {
|
|
|
|
return p.t.PieceState(p.index)
|
|
|
|
}
|
2021-05-09 04:14:11 +00:00
|
|
|
|
2021-10-05 09:06:23 +00:00
|
|
|
func init() {
|
|
|
|
gob.Register(undirtiedChunksIter{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type undirtiedChunksIter struct {
|
|
|
|
TorrentDirtyChunks *roaring.Bitmap
|
|
|
|
StartRequestIndex RequestIndex
|
|
|
|
EndRequestIndex RequestIndex
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me undirtiedChunksIter) Iter(f func(chunkIndexType)) {
|
|
|
|
it := me.TorrentDirtyChunks.Iterator()
|
|
|
|
startIndex := me.StartRequestIndex
|
|
|
|
endIndex := me.EndRequestIndex
|
|
|
|
it.AdvanceIfNeeded(startIndex)
|
|
|
|
lastDirty := startIndex - 1
|
|
|
|
for it.HasNext() {
|
|
|
|
next := it.Next()
|
|
|
|
if next >= endIndex {
|
|
|
|
break
|
2021-09-21 00:48:15 +00:00
|
|
|
}
|
2021-10-05 09:06:23 +00:00
|
|
|
for index := lastDirty + 1; index < next; index++ {
|
2021-09-21 00:48:15 +00:00
|
|
|
f(index - startIndex)
|
|
|
|
}
|
2021-10-05 09:06:23 +00:00
|
|
|
lastDirty = next
|
|
|
|
}
|
|
|
|
for index := lastDirty + 1; index < endIndex; index++ {
|
|
|
|
f(index - startIndex)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Piece) undirtiedChunksIter() request_strategy.ChunksIter {
|
|
|
|
// Use an iterator to jump between dirty bits.
|
|
|
|
return undirtiedChunksIter{
|
|
|
|
TorrentDirtyChunks: &p.t.dirtyChunks,
|
|
|
|
StartRequestIndex: p.requestIndexOffset(),
|
|
|
|
EndRequestIndex: p.requestIndexOffset() + p.numChunks(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Piece) iterUndirtiedChunks(f func(chunkIndexType)) {
|
|
|
|
if true {
|
|
|
|
p.undirtiedChunksIter().Iter(f)
|
2021-09-21 00:48:15 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
// The original implementation.
|
2021-09-20 08:52:54 +00:00
|
|
|
for i := chunkIndexType(0); i < p.numChunks(); i++ {
|
|
|
|
if p.chunkIndexDirty(i) {
|
2021-05-09 04:14:11 +00:00
|
|
|
continue
|
|
|
|
}
|
2021-09-19 05:16:37 +00:00
|
|
|
f(i)
|
2021-05-09 04:14:11 +00:00
|
|
|
}
|
|
|
|
}
|
2021-09-19 05:16:37 +00:00
|
|
|
|
|
|
|
func (p *Piece) requestIndexOffset() RequestIndex {
|
2021-09-20 08:52:54 +00:00
|
|
|
return p.t.pieceRequestIndexOffset(p.index)
|
2021-09-19 05:16:37 +00:00
|
|
|
}
|