2015-04-07 16:14:35 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
2015-05-16 00:51:48 +00:00
|
|
|
|
2016-02-05 04:45:32 +00:00
|
|
|
"github.com/anacrolix/missinggo/bitmap"
|
2016-01-13 06:11:59 +00:00
|
|
|
|
2015-05-16 00:51:48 +00:00
|
|
|
pp "github.com/anacrolix/torrent/peer_protocol"
|
2015-04-07 16:14:35 +00:00
|
|
|
)
|
|
|
|
|
2015-06-01 08:17:14 +00:00
|
|
|
// Piece priority describes the importance of obtaining a particular piece.
|
|
|
|
|
2015-04-07 16:14:35 +00:00
|
|
|
type piecePriority byte
|
|
|
|
|
2016-02-01 11:06:13 +00:00
|
|
|
func (me *piecePriority) Raise(maybe piecePriority) {
|
|
|
|
if maybe > *me {
|
|
|
|
*me = maybe
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-07 16:14:35 +00:00
|
|
|
const (
|
2015-06-01 08:22:12 +00:00
|
|
|
PiecePriorityNone piecePriority = iota // Not wanted.
|
|
|
|
PiecePriorityNormal // Wanted.
|
|
|
|
PiecePriorityReadahead // May be required soon.
|
|
|
|
PiecePriorityNext // Succeeds a piece where a read occurred.
|
|
|
|
PiecePriorityNow // A read occurred in this piece.
|
2015-04-07 16:14:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type piece struct {
|
2015-06-16 06:57:47 +00:00
|
|
|
// The completed piece SHA1 hash, from the metainfo "pieces" field.
|
2016-02-07 10:58:48 +00:00
|
|
|
Hash pieceSum
|
|
|
|
t *torrent
|
|
|
|
index int
|
2016-01-13 06:11:59 +00:00
|
|
|
// Chunks we've written to since the last check. The chunk offset and
|
|
|
|
// length can be determined by the request chunkSize in use.
|
2016-02-05 04:45:32 +00:00
|
|
|
DirtyChunks bitmap.Bitmap
|
2016-01-13 06:11:59 +00:00
|
|
|
Hashing bool
|
|
|
|
QueuedForHash bool
|
|
|
|
EverHashed bool
|
|
|
|
PublicPieceState PieceState
|
2016-02-01 10:11:41 +00:00
|
|
|
priority piecePriority
|
2015-08-04 16:40:46 +00:00
|
|
|
|
|
|
|
pendingWritesMutex sync.Mutex
|
|
|
|
pendingWrites int
|
|
|
|
noPendingWrites sync.Cond
|
2015-04-07 16:14:35 +00:00
|
|
|
}
|
|
|
|
|
2016-02-05 04:45:32 +00:00
|
|
|
func (p *piece) pendingChunkIndex(chunkIndex int) bool {
|
|
|
|
return !p.DirtyChunks.Contains(chunkIndex)
|
|
|
|
}
|
|
|
|
|
2015-07-15 05:31:18 +00:00
|
|
|
func (p *piece) pendingChunk(cs chunkSpec, chunkSize pp.Integer) bool {
|
2016-02-05 04:45:32 +00:00
|
|
|
return p.pendingChunkIndex(chunkIndex(cs, chunkSize))
|
2015-05-16 00:51:48 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 14:18:54 +00:00
|
|
|
func (p *piece) hasDirtyChunks() bool {
|
2016-02-05 04:45:32 +00:00
|
|
|
return p.DirtyChunks.Len() != 0
|
2016-02-04 14:18:54 +00:00
|
|
|
}
|
|
|
|
|
2016-01-13 06:11:59 +00:00
|
|
|
func (p *piece) numDirtyChunks() (ret int) {
|
2016-02-05 04:45:32 +00:00
|
|
|
return p.DirtyChunks.Len()
|
2015-05-16 00:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *piece) unpendChunkIndex(i int) {
|
2016-02-05 04:45:32 +00:00
|
|
|
p.DirtyChunks.Add(i)
|
2015-05-16 00:51:48 +00:00
|
|
|
}
|
|
|
|
|
2016-01-27 18:54:48 +00:00
|
|
|
func (p *piece) pendChunkIndex(i int) {
|
2016-02-05 04:45:32 +00:00
|
|
|
p.DirtyChunks.Remove(i)
|
2016-01-27 18:54:48 +00:00
|
|
|
}
|
|
|
|
|
2015-07-15 05:31:18 +00:00
|
|
|
func chunkIndexSpec(index int, pieceLength, chunkSize pp.Integer) chunkSpec {
|
2015-05-16 00:51:48 +00:00
|
|
|
ret := chunkSpec{pp.Integer(index) * chunkSize, chunkSize}
|
|
|
|
if ret.Begin+ret.Length > pieceLength {
|
|
|
|
ret.Length = pieceLength - ret.Begin
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2016-02-07 10:58:48 +00:00
|
|
|
func (p *piece) numChunks() int {
|
|
|
|
return p.t.pieceNumChunks(p.index)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *piece) undirtiedChunkIndices() (ret bitmap.Bitmap) {
|
|
|
|
ret = p.DirtyChunks.Copy()
|
|
|
|
ret.FlipRange(0, p.numChunks())
|
2015-04-07 16:14:35 +00:00
|
|
|
return
|
|
|
|
}
|
2016-01-24 20:22:33 +00:00
|
|
|
|
|
|
|
func (p *piece) incrementPendingWrites() {
|
|
|
|
p.pendingWritesMutex.Lock()
|
|
|
|
p.pendingWrites++
|
|
|
|
p.pendingWritesMutex.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *piece) decrementPendingWrites() {
|
|
|
|
p.pendingWritesMutex.Lock()
|
|
|
|
if p.pendingWrites == 0 {
|
|
|
|
panic("assertion")
|
|
|
|
}
|
|
|
|
p.pendingWrites--
|
|
|
|
if p.pendingWrites == 0 {
|
|
|
|
p.noPendingWrites.Broadcast()
|
|
|
|
}
|
|
|
|
p.pendingWritesMutex.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *piece) waitNoPendingWrites() {
|
|
|
|
p.pendingWritesMutex.Lock()
|
|
|
|
for p.pendingWrites != 0 {
|
|
|
|
p.noPendingWrites.Wait()
|
|
|
|
}
|
|
|
|
p.pendingWritesMutex.Unlock()
|
|
|
|
}
|