torrent/piece.go

269 lines
6.1 KiB
Go
Raw Normal View History

2015-04-07 16:14:35 +00:00
package torrent
import (
"fmt"
2015-04-07 16:14:35 +00:00
"sync"
"github.com/anacrolix/missinggo/v2/bitmap"
2016-03-28 09:38:30 +00:00
"github.com/anacrolix/torrent/metainfo"
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
)
2018-01-25 06:02:52 +00:00
// Describes the importance of obtaining a particular piece.
2015-04-07 16:14:35 +00:00
type piecePriority byte
func (pp *piecePriority) Raise(maybe piecePriority) bool {
if maybe > *pp {
*pp = maybe
return true
}
return false
}
// Priority for use in PriorityBitmap
func (me piecePriority) BitmapPriority() int {
return -int(me)
}
2015-04-07 16:14:35 +00:00
const (
2018-01-21 11:49:12 +00:00
PiecePriorityNone piecePriority = iota // Not wanted. Must be the zero value.
PiecePriorityNormal // Wanted.
PiecePriorityHigh // Wanted a lot.
PiecePriorityReadahead // May be required soon.
// Succeeds a piece where a read occurred. Currently the same as Now,
// apparently due to issues with caching.
2016-08-30 06:55:50 +00:00
PiecePriorityNext
PiecePriorityNow // A Reader is reading in this piece. Highest urgency.
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
index pieceIndex
2018-01-21 11:49:12 +00:00
files []*File
// Chunks we've written to since the last check. The chunk offset and
// length can be determined by the request chunkSize in use.
_dirtyChunks bitmap.Bitmap
hashing bool
numVerifies int64
storageCompletionOk bool
2017-09-15 09:35:16 +00:00
publicPieceState PieceState
priority piecePriority
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.
2020-05-30 05:18:28 +00:00
dirtiers map[*peer]struct{}
2015-04-07 16:14:35 +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 {
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())
}
2017-09-15 09:35:16 +00:00
func (p *Piece) pendingChunkIndex(chunkIndex int) bool {
return !p._dirtyChunks.Contains(chunkIndex)
}
2017-09-15 09:35:16 +00:00
func (p *Piece) pendingChunk(cs chunkSpec, chunkSize pp.Integer) bool {
return p.pendingChunkIndex(chunkIndex(cs, chunkSize))
}
2017-09-15 09:35:16 +00:00
func (p *Piece) hasDirtyChunks() bool {
return p._dirtyChunks.Len() != 0
2016-02-04 14:18:54 +00:00
}
func (p *Piece) numDirtyChunks() pp.Integer {
return pp.Integer(p._dirtyChunks.Len())
}
2017-09-15 09:35:16 +00:00
func (p *Piece) unpendChunkIndex(i int) {
p._dirtyChunks.Add(i)
2018-02-04 11:47:01 +00:00
p.t.tickleReaders()
}
2017-09-15 09:35:16 +00:00
func (p *Piece) pendChunkIndex(i int) {
p._dirtyChunks.Remove(i)
}
func (p *Piece) numChunks() pp.Integer {
return p.t.pieceNumChunks(p.index)
}
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()
}
func (p *Piece) chunkIndexDirty(chunk pp.Integer) bool {
return p._dirtyChunks.Contains(bitmap.BitIndex(chunk))
}
func (p *Piece) chunkIndexSpec(chunk pp.Integer) chunkSpec {
return chunkIndexSpec(chunk, p.length(), p.chunkSize())
}
func (p *Piece) chunkIndexRequest(chunkIndex pp.Integer) request {
return request{
pp.Integer(p.index),
chunkIndexSpec(chunkIndex, p.length(), p.chunkSize()),
}
}
2017-09-15 09:35:16 +00:00
func (p *Piece) numDirtyBytes() (ret pp.Integer) {
// defer func() {
// if ret > p.length() {
// panic("too many dirty bytes")
// }
// }()
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 {
return p.t.pieceLength(p.index)
}
2017-09-15 09:35:16 +00:00
func (p *Piece) chunkSize() pp.Integer {
return p.t.chunkSize
}
func (p *Piece) lastChunkIndex() pp.Integer {
return p.numChunks() - 1
}
2017-09-15 09:35:16 +00:00
func (p *Piece) bytesLeft() (ret pp.Integer) {
if p.t.pieceComplete(p.index) {
return 0
}
return p.length() - p.numDirtyBytes()
}
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()
target := p.numVerifies + 1
2017-09-15 09:35:16 +00:00
if p.hashing {
target++
}
//log.Printf("target: %d", target)
p.t.queuePieceCheck(p.index)
for {
//log.Printf("got %d verifies", p.numVerifies)
if p.numVerifies >= target {
break
}
p.t.cl.event.Wait()
}
// log.Print("done")
}
func (p *Piece) queuedForHash() bool {
return p.t.piecesQueuedForHash.Get(bitmap.BitIndex(p.index))
}
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())
}
func (p *Piece) SetPriority(prio piecePriority) {
2018-07-25 03:41:50 +00:00
p.t.cl.lock()
defer p.t.cl.unlock()
p.priority = prio
p.t.updatePiecePriority(p.index)
}
func (p *Piece) uncachedPriority() (ret piecePriority) {
if p.t.pieceComplete(p.index) || p.t.pieceQueuedForHash(p.index) || p.t.hashingPiece(p.index) {
return PiecePriorityNone
}
for _, f := range p.files {
ret.Raise(f.prio)
}
if p.t.readerNowPieces().Contains(int(p.index)) {
ret.Raise(PiecePriorityNow)
}
// if t._readerNowPieces.Contains(piece - 1) {
// return PiecePriorityNext
// }
if p.t.readerReadaheadPieces().Contains(bitmap.BitIndex(p.index)) {
ret.Raise(PiecePriorityReadahead)
}
ret.Raise(p.priority)
return
}
2018-01-28 04:58:55 +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
}
func (p *Piece) allChunksDirty() bool {
return p._dirtyChunks.Len() == int(p.numChunks())
}
func (p *Piece) requestStrategyPiece() requestStrategyPiece {
return p
}
func (p *Piece) dirtyChunks() bitmap.Bitmap {
return p._dirtyChunks
}
2020-02-27 05:41:33 +00:00
func (p *Piece) State() PieceState {
return p.t.PieceState(p.index)
}