torrent/reader.go

277 lines
6.7 KiB
Go
Raw Normal View History

package torrent
import (
2018-01-31 05:42:26 +00:00
"context"
"errors"
"fmt"
"io"
"sync"
2019-08-21 10:55:43 +00:00
"github.com/anacrolix/log"
2021-06-23 07:24:50 +00:00
"github.com/anacrolix/missinggo/v2"
)
2020-11-08 23:56:27 +00:00
// Accesses Torrent data via a Client. Reads block until the data is available. Seeks and readahead
// also drive Client behaviour.
2018-01-06 05:37:13 +00:00
type Reader interface {
io.Reader
io.Seeker
io.Closer
missinggo.ReadContexter
2020-11-08 23:56:27 +00:00
// Configure the number of bytes ahead of a read that should also be prioritized in preparation
// for further reads.
2018-01-06 05:37:13 +00:00
SetReadahead(int64)
2020-11-08 23:56:27 +00:00
// Don't wait for pieces to complete and be verified. Read calls return as soon as they can when
// the underlying chunks become available.
2018-01-06 05:37:13 +00:00
SetResponsive()
}
// Piece range by piece index, [begin, end).
type pieceRange struct {
begin, end pieceIndex
}
2018-01-06 05:37:13 +00:00
type reader struct {
2016-02-21 13:32:02 +00:00
t *Torrent
responsive bool
2020-11-08 23:56:27 +00:00
// Adjust the read/seek window to handle Readers locked to File extents and the like.
offset, length int64
2020-11-08 23:56:27 +00:00
// Ensure operations that change the position are exclusive, like Read() and Seek().
2016-02-21 15:42:01 +00:00
opMu sync.Mutex
2016-02-21 13:32:02 +00:00
2020-11-08 23:56:27 +00:00
// Required when modifying pos and readahead, or reading them without opMu.
mu sync.Locker
2016-02-21 13:32:02 +00:00
pos int64
readahead int64
2020-11-08 23:56:27 +00:00
// The cached piece range this reader wants downloaded. The zero value corresponds to nothing.
// We cache this so that changes can be detected, and bubbled up to the Torrent only as
// required.
pieces pieceRange
}
2020-11-08 23:56:27 +00:00
var _ io.ReadCloser = (*reader)(nil)
2018-01-06 05:37:13 +00:00
func (r *reader) SetResponsive() {
r.responsive = true
r.t.cl.event.Broadcast()
}
2018-01-06 05:37:13 +00:00
// Disable responsive mode. TODO: Remove?
func (r *reader) SetNonResponsive() {
r.responsive = false
r.t.cl.event.Broadcast()
}
2018-01-06 05:37:13 +00:00
func (r *reader) SetReadahead(readahead int64) {
r.mu.Lock()
r.readahead = readahead
2016-03-19 06:39:56 +00:00
r.mu.Unlock()
2018-07-25 03:41:50 +00:00
r.t.cl.lock()
defer r.t.cl.unlock()
r.posChanged()
}
// How many bytes are available to read. Max is the most we could require.
2018-01-06 05:37:13 +00:00
func (r *reader) available(off, max int64) (ret int64) {
2018-01-08 00:03:34 +00:00
off += r.offset
for max > 0 {
2016-04-03 08:40:43 +00:00
req, ok := r.t.offsetRequest(off)
if !ok {
break
}
if !r.responsive && !r.t.pieceComplete(pieceIndex(req.Index)) {
break
}
2016-04-03 08:40:43 +00:00
if !r.t.haveChunk(req) {
break
}
2016-04-03 08:40:43 +00:00
len1 := int64(req.Length) - (off - r.t.requestOffset(req))
max -= len1
ret += len1
off += len1
}
// Ensure that ret hasn't exceeded our original max.
if max < 0 {
ret += max
}
return
}
2020-11-08 23:56:27 +00:00
// Calculates the pieces this reader wants downloaded, ignoring the cached value at r.pieces.
2018-01-06 05:37:13 +00:00
func (r *reader) piecesUncached() (ret pieceRange) {
ra := r.readahead
if ra < 1 {
// Needs to be at least 1, because [x, x) means we don't want
// anything.
ra = 1
}
if ra > r.length-r.pos {
ra = r.length - r.pos
}
ret.begin, ret.end = r.t.byteRegionPieces(r.torrentOffset(r.pos), ra)
return
}
2018-01-06 05:37:13 +00:00
func (r *reader) Read(b []byte) (n int, err error) {
return r.ReadContext(context.Background(), b)
}
2018-01-06 05:37:13 +00:00
func (r *reader) ReadContext(ctx context.Context, b []byte) (n int, err error) {
2020-11-08 23:56:27 +00:00
// Hmmm, if a Read gets stuck, this means you can't change position for other purposes. That
// seems reasonable, but unusual.
2016-02-21 13:32:02 +00:00
r.opMu.Lock()
defer r.opMu.Unlock()
2021-09-02 10:53:49 +00:00
n, err = r.readOnceAt(ctx, b, r.pos)
if n == 0 {
2021-01-29 12:32:01 +00:00
if err == nil && len(b) > 0 {
panic("expected error")
} else {
return
2016-02-21 13:32:02 +00:00
}
}
r.mu.Lock()
r.pos += int64(n)
r.posChanged()
r.mu.Unlock()
if r.pos >= r.length {
2016-02-21 13:32:02 +00:00
err = io.EOF
} else if err == io.EOF {
err = io.ErrUnexpectedEOF
}
return
}
2021-09-02 10:53:49 +00:00
var closedChan = make(chan struct{})
func init() {
close(closedChan)
}
2020-11-08 23:56:27 +00:00
// Wait until some data should be available to read. Tickles the client if it isn't. Returns how
// much should be readable without blocking.
2021-09-02 10:53:49 +00:00
func (r *reader) waitAvailable(ctx context.Context, pos, wanted int64, wait bool) (avail int64, err error) {
t := r.t
for {
2021-09-02 10:53:49 +00:00
r.t.cl.rLock()
avail = r.available(pos, wanted)
2021-09-02 10:53:49 +00:00
readerCond := t.piece(int((r.offset + pos) / t.info.PieceLength)).readerCond.Signaled()
r.t.cl.rUnlock()
if avail != 0 {
return
}
2021-09-02 10:53:49 +00:00
var dontWait <-chan struct{}
if !wait || wanted == 0 {
dontWait = closedChan
}
select {
case <-r.t.closed.Done():
err = errors.New("torrent closed")
return
2021-09-02 10:53:49 +00:00
case <-ctx.Done():
err = ctx.Err()
return
2021-09-02 10:53:49 +00:00
case <-r.t.dataDownloadDisallowed.On():
err = errors.New("torrent data downloading disabled")
case <-r.t.networkingEnabled.Off():
err = errors.New("torrent networking disabled")
return
2021-09-02 10:53:49 +00:00
case <-dontWait:
return
2021-09-02 10:53:49 +00:00
case <-readerCond:
}
}
}
// Adds the reader's torrent offset to the reader object offset (for example the reader might be
// constrainted to a particular file within the torrent).
func (r *reader) torrentOffset(readerPos int64) int64 {
return r.offset + readerPos
}
// Performs at most one successful read to torrent storage.
2021-09-02 10:53:49 +00:00
func (r *reader) readOnceAt(ctx context.Context, b []byte, pos int64) (n int, err error) {
if pos >= r.length {
err = io.EOF
return
}
for {
var avail int64
2021-09-02 10:53:49 +00:00
avail, err = r.waitAvailable(ctx, pos, int64(len(b)), n == 0)
if avail == 0 {
return
}
firstPieceIndex := pieceIndex(r.torrentOffset(pos) / r.t.info.PieceLength)
firstPieceOffset := r.torrentOffset(pos) % r.t.info.PieceLength
b1 := missinggo.LimitLen(b, avail)
n, err = r.t.readAt(b1, r.torrentOffset(pos))
if n != 0 {
err = nil
return
}
2018-07-25 03:41:50 +00:00
r.t.cl.lock()
2018-01-25 06:43:33 +00:00
// TODO: Just reset pieces in the readahead window. This might help
// prevent thrashing with small caches and file and piece priorities.
2019-08-21 10:55:43 +00:00
r.log(log.Fstr("error reading torrent %s piece %d offset %d, %d bytes: %v",
r.t.infoHash.HexString(), firstPieceIndex, firstPieceOffset, len(b1), err))
if !r.t.updatePieceCompletion(firstPieceIndex) {
r.log(log.Fstr("piece %d completion unchanged", firstPieceIndex))
}
// Update the rest of the piece completions in the readahead window, without alerting to
// changes (since only the first piece, the one above, could have generated the read error
// we're currently handling).
if r.pieces.begin != firstPieceIndex {
panic(fmt.Sprint(r.pieces.begin, firstPieceIndex))
}
for index := r.pieces.begin + 1; index < r.pieces.end; index++ {
r.t.updatePieceCompletion(index)
}
2018-07-25 03:41:50 +00:00
r.t.cl.unlock()
}
}
2020-11-08 23:56:27 +00:00
// Hodor
2018-01-06 05:37:13 +00:00
func (r *reader) Close() error {
2018-07-25 03:41:50 +00:00
r.t.cl.lock()
defer r.t.cl.unlock()
r.t.deleteReader(r)
return nil
}
2018-01-06 05:37:13 +00:00
func (r *reader) posChanged() {
to := r.piecesUncached()
from := r.pieces
if to == from {
return
}
r.pieces = to
// log.Printf("reader pos changed %v->%v", from, to)
r.t.readerPosChanged(from, to)
}
2018-01-06 05:37:13 +00:00
func (r *reader) Seek(off int64, whence int) (ret int64, err error) {
2016-02-21 15:42:01 +00:00
r.opMu.Lock()
defer r.opMu.Unlock()
r.mu.Lock()
defer r.mu.Unlock()
switch whence {
2017-11-07 05:11:59 +00:00
case io.SeekStart:
r.pos = off
2017-11-07 05:11:59 +00:00
case io.SeekCurrent:
r.pos += off
2017-11-07 05:11:59 +00:00
case io.SeekEnd:
r.pos = r.length + off
default:
err = errors.New("bad whence")
}
ret = r.pos
2016-02-21 15:42:01 +00:00
r.posChanged()
return
}
2019-08-21 10:55:43 +00:00
func (r *reader) log(m log.Msg) {
2020-01-23 02:55:40 +00:00
r.t.logger.Log(m.Skip(1))
2019-08-21 10:55:43 +00:00
}