2015-04-14 13:59:41 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"io"
|
2016-07-10 04:00:25 +00:00
|
|
|
"log"
|
2015-04-14 13:59:41 +00:00
|
|
|
"os"
|
2016-01-18 07:35:14 +00:00
|
|
|
"sync"
|
2016-04-03 06:35:28 +00:00
|
|
|
|
|
|
|
"github.com/anacrolix/missinggo"
|
2016-04-30 01:33:07 +00:00
|
|
|
"golang.org/x/net/context"
|
2015-04-14 13:59:41 +00:00
|
|
|
)
|
|
|
|
|
2016-10-23 05:33:26 +00:00
|
|
|
// Piece range by piece index, [begin, end).
|
|
|
|
type pieceRange struct {
|
|
|
|
begin, end int
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accesses Torrent data via a Client. Reads block until the data is
|
|
|
|
// available. Seeks and readahead also drive Client behaviour.
|
2015-04-14 13:59:41 +00:00
|
|
|
type Reader struct {
|
2016-02-21 13:32:02 +00:00
|
|
|
t *Torrent
|
2015-04-14 13:59:41 +00:00
|
|
|
responsive bool
|
2016-02-21 15:42:01 +00:00
|
|
|
// Ensure operations that change the position are exclusive, like Read()
|
|
|
|
// and Seek().
|
|
|
|
opMu sync.Mutex
|
2016-02-21 13:32:02 +00:00
|
|
|
|
2016-02-21 15:42:01 +00:00
|
|
|
// Required when modifying pos and readahead, or reading them without
|
|
|
|
// opMu.
|
2016-08-30 05:41:26 +00:00
|
|
|
mu sync.Locker
|
2016-02-21 13:32:02 +00:00
|
|
|
pos int64
|
|
|
|
readahead int64
|
2016-10-23 05:33:26 +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
|
2015-04-14 13:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ io.ReadCloser = &Reader{}
|
|
|
|
|
|
|
|
// Don't wait for pieces to complete and be verified. Read calls return as
|
|
|
|
// soon as they can when the underlying chunks become available.
|
|
|
|
func (r *Reader) SetResponsive() {
|
|
|
|
r.responsive = true
|
|
|
|
}
|
|
|
|
|
2017-06-02 04:46:28 +00:00
|
|
|
// Disable responsive mode.
|
|
|
|
func (r *Reader) SetNonResponsive() {
|
|
|
|
r.responsive = false
|
|
|
|
}
|
|
|
|
|
2015-06-03 03:30:55 +00:00
|
|
|
// Configure the number of bytes ahead of a read that should also be
|
|
|
|
// prioritized in preparation for further reads.
|
2015-04-14 13:59:41 +00:00
|
|
|
func (r *Reader) SetReadahead(readahead int64) {
|
2016-01-18 07:35:14 +00:00
|
|
|
r.mu.Lock()
|
2015-04-14 13:59:41 +00:00
|
|
|
r.readahead = readahead
|
2016-03-19 06:39:56 +00:00
|
|
|
r.mu.Unlock()
|
|
|
|
r.t.cl.mu.Lock()
|
|
|
|
defer r.t.cl.mu.Unlock()
|
2016-10-24 08:35:12 +00:00
|
|
|
r.posChanged()
|
2015-04-14 13:59:41 +00:00
|
|
|
}
|
|
|
|
|
2017-06-02 04:46:28 +00:00
|
|
|
// Return reader's current position.
|
|
|
|
func (r *Reader) CurrentPos() int64 {
|
|
|
|
return r.pos
|
|
|
|
}
|
|
|
|
|
2015-04-14 13:59:41 +00:00
|
|
|
func (r *Reader) readable(off int64) (ret bool) {
|
2016-05-11 11:44:55 +00:00
|
|
|
if r.t.closed.IsSet() {
|
2015-11-05 13:40:47 +00:00
|
|
|
return true
|
|
|
|
}
|
2016-04-03 08:40:43 +00:00
|
|
|
req, ok := r.t.offsetRequest(off)
|
2015-04-14 13:59:41 +00:00
|
|
|
if !ok {
|
|
|
|
panic(off)
|
|
|
|
}
|
|
|
|
if r.responsive {
|
2016-04-03 08:40:43 +00:00
|
|
|
return r.t.haveChunk(req)
|
2015-04-14 13:59:41 +00:00
|
|
|
}
|
2016-04-03 08:40:43 +00:00
|
|
|
return r.t.pieceComplete(int(req.Index))
|
2015-04-14 13:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// How many bytes are available to read. Max is the most we could require.
|
|
|
|
func (r *Reader) available(off, max int64) (ret int64) {
|
|
|
|
for max > 0 {
|
2016-04-03 08:40:43 +00:00
|
|
|
req, ok := r.t.offsetRequest(off)
|
2015-04-14 13:59:41 +00:00
|
|
|
if !ok {
|
|
|
|
break
|
|
|
|
}
|
2016-04-03 08:40:43 +00:00
|
|
|
if !r.t.haveChunk(req) {
|
2015-04-14 13:59:41 +00:00
|
|
|
break
|
|
|
|
}
|
2016-04-03 08:40:43 +00:00
|
|
|
len1 := int64(req.Length) - (off - r.t.requestOffset(req))
|
2015-04-14 13:59:41 +00:00
|
|
|
max -= len1
|
|
|
|
ret += len1
|
|
|
|
off += len1
|
|
|
|
}
|
2015-06-03 03:36:27 +00:00
|
|
|
// Ensure that ret hasn't exceeded our original max.
|
|
|
|
if max < 0 {
|
|
|
|
ret += max
|
|
|
|
}
|
2015-04-14 13:59:41 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Reader) waitReadable(off int64) {
|
2016-01-28 02:21:50 +00:00
|
|
|
// We may have been sent back here because we were told we could read but
|
|
|
|
// it failed.
|
2015-11-05 13:40:16 +00:00
|
|
|
r.t.cl.event.Wait()
|
2015-04-14 13:59:41 +00:00
|
|
|
}
|
|
|
|
|
2016-10-23 05:33:26 +00:00
|
|
|
// Calculates the pieces this reader wants downloaded, ignoring the cached
|
|
|
|
// value at r.pieces.
|
|
|
|
func (r *Reader) piecesUncached() (ret pieceRange) {
|
|
|
|
ra := r.readahead
|
|
|
|
if ra < 1 {
|
|
|
|
ra = 1
|
|
|
|
}
|
|
|
|
ret.begin, ret.end = r.t.byteRegionPieces(r.pos, ra)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-04-14 13:59:41 +00:00
|
|
|
func (r *Reader) Read(b []byte) (n int, err error) {
|
2017-08-27 15:42:02 +00:00
|
|
|
return r.ReadContext(context.Background(), b)
|
2016-04-30 01:08:29 +00:00
|
|
|
}
|
|
|
|
|
2017-08-27 15:42:02 +00:00
|
|
|
func (r *Reader) ReadContext(ctx context.Context, b []byte) (n int, err error) {
|
2016-04-30 01:08:29 +00:00
|
|
|
// This is set under the Client lock if the Context is canceled.
|
|
|
|
var ctxErr error
|
|
|
|
if ctx.Done() != nil {
|
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
// Abort the goroutine when the function returns.
|
|
|
|
defer cancel()
|
|
|
|
go func() {
|
|
|
|
<-ctx.Done()
|
|
|
|
r.t.cl.mu.Lock()
|
|
|
|
ctxErr = ctx.Err()
|
|
|
|
r.t.cl.event.Broadcast()
|
|
|
|
r.t.cl.mu.Unlock()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
// 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()
|
|
|
|
for len(b) != 0 {
|
|
|
|
var n1 int
|
2016-04-30 01:08:29 +00:00
|
|
|
n1, err = r.readOnceAt(b, r.pos, &ctxErr)
|
2016-02-21 13:32:02 +00:00
|
|
|
if n1 == 0 {
|
|
|
|
if err == nil {
|
|
|
|
panic("expected error")
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
b = b[n1:]
|
|
|
|
n += n1
|
2016-02-21 15:42:01 +00:00
|
|
|
r.mu.Lock()
|
2016-02-21 13:32:02 +00:00
|
|
|
r.pos += int64(n1)
|
2016-08-30 05:41:26 +00:00
|
|
|
r.posChanged()
|
2016-02-21 15:42:01 +00:00
|
|
|
r.mu.Unlock()
|
2016-02-21 13:32:02 +00:00
|
|
|
}
|
2016-04-03 08:40:43 +00:00
|
|
|
if r.pos >= r.t.length {
|
2016-02-21 13:32:02 +00:00
|
|
|
err = io.EOF
|
|
|
|
} else if err == io.EOF {
|
|
|
|
err = io.ErrUnexpectedEOF
|
|
|
|
}
|
2015-04-14 13:59:41 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-02-17 07:26:10 +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.
|
2016-04-30 01:08:29 +00:00
|
|
|
func (r *Reader) waitAvailable(pos, wanted int64, ctxErr *error) (avail int64) {
|
2015-07-17 10:59:26 +00:00
|
|
|
r.t.cl.mu.Lock()
|
2016-02-17 07:26:10 +00:00
|
|
|
defer r.t.cl.mu.Unlock()
|
2016-04-30 01:08:29 +00:00
|
|
|
for !r.readable(pos) && *ctxErr == nil {
|
2015-04-14 13:59:41 +00:00
|
|
|
r.waitReadable(pos)
|
|
|
|
}
|
2016-02-17 07:26:10 +00:00
|
|
|
return r.available(pos, wanted)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Performs at most one successful read to torrent storage.
|
2016-04-30 01:08:29 +00:00
|
|
|
func (r *Reader) readOnceAt(b []byte, pos int64, ctxErr *error) (n int, err error) {
|
2016-04-03 08:40:43 +00:00
|
|
|
if pos >= r.t.length {
|
2016-02-17 07:26:10 +00:00
|
|
|
err = io.EOF
|
2015-06-03 03:36:27 +00:00
|
|
|
return
|
|
|
|
}
|
2016-02-17 07:26:10 +00:00
|
|
|
for {
|
2016-04-30 01:08:29 +00:00
|
|
|
avail := r.waitAvailable(pos, int64(len(b)), ctxErr)
|
2016-02-17 07:26:10 +00:00
|
|
|
if avail == 0 {
|
2016-05-11 11:44:55 +00:00
|
|
|
if r.t.closed.IsSet() {
|
2016-02-17 07:26:10 +00:00
|
|
|
err = errors.New("torrent closed")
|
|
|
|
return
|
|
|
|
}
|
2016-04-30 01:08:29 +00:00
|
|
|
if *ctxErr != nil {
|
|
|
|
err = *ctxErr
|
|
|
|
return
|
|
|
|
}
|
2015-11-05 13:40:47 +00:00
|
|
|
}
|
2016-02-17 07:26:10 +00:00
|
|
|
b1 := b[:avail]
|
2017-08-29 05:16:53 +00:00
|
|
|
pi := int(pos / r.t.info.PieceLength)
|
|
|
|
ip := r.t.info.Piece(pi)
|
|
|
|
po := pos % r.t.info.PieceLength
|
2016-04-03 06:35:28 +00:00
|
|
|
missinggo.LimitLen(&b1, ip.Length()-po)
|
2016-04-03 08:40:43 +00:00
|
|
|
n, err = r.t.readAt(b1, pos)
|
2016-02-17 07:26:10 +00:00
|
|
|
if n != 0 {
|
2016-04-03 06:35:28 +00:00
|
|
|
err = nil
|
2016-02-17 07:26:10 +00:00
|
|
|
return
|
|
|
|
}
|
2016-02-20 16:33:39 +00:00
|
|
|
r.t.cl.mu.Lock()
|
2017-07-01 06:01:38 +00:00
|
|
|
log.Printf("error reading torrent %q piece %d offset %d, %d bytes: %s", r.t, pi, po, len(b1), err)
|
2016-04-03 08:40:43 +00:00
|
|
|
r.t.updateAllPieceCompletions()
|
2016-10-31 08:00:08 +00:00
|
|
|
r.t.updateAllPiecePriorities()
|
2016-02-20 16:33:39 +00:00
|
|
|
r.t.cl.mu.Unlock()
|
2015-11-05 13:40:47 +00:00
|
|
|
}
|
2016-02-17 07:26:10 +00:00
|
|
|
}
|
|
|
|
|
2015-04-14 13:59:41 +00:00
|
|
|
func (r *Reader) Close() error {
|
2016-10-31 08:05:33 +00:00
|
|
|
r.t.cl.mu.Lock()
|
|
|
|
defer r.t.cl.mu.Unlock()
|
2016-01-18 07:35:14 +00:00
|
|
|
r.t.deleteReader(r)
|
2015-04-14 13:59:41 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-18 07:35:14 +00:00
|
|
|
func (r *Reader) posChanged() {
|
2016-10-31 08:00:08 +00:00
|
|
|
to := r.piecesUncached()
|
|
|
|
from := r.pieces
|
|
|
|
if to == from {
|
2016-10-23 05:33:26 +00:00
|
|
|
return
|
|
|
|
}
|
2016-10-31 08:00:08 +00:00
|
|
|
r.pieces = to
|
|
|
|
r.t.readerPosChanged(from, to)
|
2016-01-18 07:35:14 +00:00
|
|
|
}
|
|
|
|
|
2015-04-14 13:59:41 +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()
|
|
|
|
|
2016-01-18 07:35:14 +00:00
|
|
|
r.mu.Lock()
|
2016-08-30 05:41:26 +00:00
|
|
|
defer r.mu.Unlock()
|
2015-04-14 13:59:41 +00:00
|
|
|
switch whence {
|
|
|
|
case os.SEEK_SET:
|
|
|
|
r.pos = off
|
|
|
|
case os.SEEK_CUR:
|
|
|
|
r.pos += off
|
|
|
|
case os.SEEK_END:
|
2016-04-03 08:40:43 +00:00
|
|
|
r.pos = r.t.info.TotalLength() + off
|
2015-04-14 13:59:41 +00:00
|
|
|
default:
|
|
|
|
err = errors.New("bad whence")
|
|
|
|
}
|
|
|
|
ret = r.pos
|
2016-02-21 15:42:01 +00:00
|
|
|
|
2016-01-18 07:35:14 +00:00
|
|
|
r.posChanged()
|
2015-04-14 13:59:41 +00:00
|
|
|
return
|
|
|
|
}
|
2016-03-02 12:26:46 +00:00
|
|
|
|
|
|
|
func (r *Reader) Torrent() *Torrent {
|
|
|
|
return r.t
|
|
|
|
}
|