2015-06-01 08:22:12 +00:00
|
|
|
package torrent
|
|
|
|
|
2018-01-28 04:58:55 +00:00
|
|
|
import (
|
|
|
|
"github.com/anacrolix/torrent/storage"
|
|
|
|
)
|
|
|
|
|
2015-06-01 08:22:12 +00:00
|
|
|
// The current state of a piece.
|
|
|
|
type PieceState struct {
|
|
|
|
Priority piecePriority
|
2018-01-28 04:58:55 +00:00
|
|
|
storage.Completion
|
2015-06-01 08:22:12 +00:00
|
|
|
// The piece is being hashed, or is queued for hash.
|
|
|
|
Checking bool
|
|
|
|
// Some of the piece has been obtained.
|
|
|
|
Partial bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// Represents a series of consecutive pieces with the same state.
|
|
|
|
type PieceStateRun struct {
|
|
|
|
PieceState
|
|
|
|
Length int // How many consecutive pieces have this state.
|
|
|
|
}
|