2015-04-14 13:59:41 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"io"
|
2016-02-17 07:26:10 +00:00
|
|
|
"log"
|
2015-04-14 13:59:41 +00:00
|
|
|
"os"
|
2016-01-18 07:35:14 +00:00
|
|
|
"sync"
|
2015-04-14 13:59:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Accesses torrent data via a client.
|
|
|
|
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 13:32:02 +00:00
|
|
|
opMu sync.Mutex
|
|
|
|
|
|
|
|
mu sync.Mutex
|
|
|
|
pos int64
|
|
|
|
readahead int64
|
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
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
defer r.mu.Unlock()
|
2015-04-14 13:59:41 +00:00
|
|
|
r.readahead = readahead
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Reader) readable(off int64) (ret bool) {
|
2016-02-17 07:26:10 +00:00
|
|
|
if r.torrentClosed() {
|
2015-11-05 13:40:47 +00:00
|
|
|
return true
|
|
|
|
}
|
2016-01-16 13:14:15 +00:00
|
|
|
req, ok := r.t.torrent.offsetRequest(off)
|
2015-04-14 13:59:41 +00:00
|
|
|
if !ok {
|
|
|
|
panic(off)
|
|
|
|
}
|
|
|
|
if r.responsive {
|
2016-01-16 13:14:15 +00:00
|
|
|
return r.t.torrent.haveChunk(req)
|
2015-04-14 13:59:41 +00:00
|
|
|
}
|
2016-01-16 13:14:15 +00:00
|
|
|
return r.t.torrent.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-01-16 13:14:15 +00:00
|
|
|
req, ok := r.t.torrent.offsetRequest(off)
|
2015-04-14 13:59:41 +00:00
|
|
|
if !ok {
|
|
|
|
break
|
|
|
|
}
|
2016-01-16 13:14:15 +00:00
|
|
|
if !r.t.torrent.haveChunk(req) {
|
2015-04-14 13:59:41 +00:00
|
|
|
break
|
|
|
|
}
|
2016-01-16 13:14:15 +00:00
|
|
|
len1 := int64(req.Length) - (off - r.t.torrent.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
|
|
|
|
}
|
|
|
|
|
2016-01-28 02:21:50 +00:00
|
|
|
func (r *Reader) tickleClient() {
|
2016-02-01 10:11:41 +00:00
|
|
|
r.t.torrent.readersChanged()
|
2016-01-28 02:21:50 +00:00
|
|
|
}
|
|
|
|
|
2015-04-14 13:59:41 +00:00
|
|
|
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.
|
|
|
|
r.tickleClient()
|
2015-11-05 13:40:16 +00:00
|
|
|
r.t.cl.event.Wait()
|
2015-04-14 13:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Reader) Read(b []byte) (n int, err error) {
|
2016-02-21 13:32:02 +00:00
|
|
|
r.opMu.Lock()
|
|
|
|
defer r.opMu.Unlock()
|
|
|
|
for len(b) != 0 {
|
|
|
|
var n1 int
|
|
|
|
n1, err = r.readOnceAt(b, r.pos)
|
|
|
|
if n1 == 0 {
|
|
|
|
if err == nil {
|
|
|
|
panic("expected error")
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
b = b[n1:]
|
|
|
|
n += n1
|
|
|
|
r.pos += int64(n1)
|
|
|
|
}
|
|
|
|
if r.pos >= r.t.torrent.length {
|
|
|
|
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
|
|
|
// Safe to call with or without client lock.
|
|
|
|
func (r *Reader) torrentClosed() bool {
|
|
|
|
return r.t.torrent.isClosed()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait until some data should be available to read. Tickles the client if it
|
|
|
|
// isn't. Returns how much should be readable without blocking.
|
|
|
|
func (r *Reader) waitAvailable(pos, wanted int64) (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()
|
2015-04-14 13:59:41 +00:00
|
|
|
for !r.readable(pos) {
|
|
|
|
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.
|
|
|
|
func (r *Reader) readOnceAt(b []byte, pos int64) (n int, err error) {
|
|
|
|
if pos >= r.t.torrent.length {
|
|
|
|
err = io.EOF
|
2015-06-03 03:36:27 +00:00
|
|
|
return
|
|
|
|
}
|
2016-02-17 07:26:10 +00:00
|
|
|
for {
|
|
|
|
avail := r.waitAvailable(pos, int64(len(b)))
|
|
|
|
if avail == 0 {
|
|
|
|
if r.torrentClosed() {
|
|
|
|
err = errors.New("torrent closed")
|
|
|
|
return
|
|
|
|
}
|
2015-11-05 13:40:47 +00:00
|
|
|
}
|
2016-02-17 07:26:10 +00:00
|
|
|
b1 := b[:avail]
|
|
|
|
pi := int(pos / r.t.Info().PieceLength)
|
|
|
|
ip := r.t.Info().Piece(pi)
|
|
|
|
po := pos % ip.Length()
|
|
|
|
if int64(len(b1)) > ip.Length()-po {
|
|
|
|
b1 = b1[:ip.Length()-po]
|
|
|
|
}
|
2016-02-20 16:32:59 +00:00
|
|
|
n, err = r.t.torrent.readAt(b1, pos)
|
2016-02-17 07:26:10 +00:00
|
|
|
if n != 0 {
|
|
|
|
return
|
|
|
|
}
|
2016-02-21 13:32:02 +00:00
|
|
|
// log.Printf("%s: error reading from torrent storage pos=%d: %s", r.t, pos, err)
|
2016-02-20 16:33:39 +00:00
|
|
|
r.t.cl.mu.Lock()
|
2016-02-21 06:24:59 +00:00
|
|
|
r.t.torrent.updateAllPieceCompletions()
|
|
|
|
r.t.torrent.updatePiecePriorities()
|
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-01-18 07:35:14 +00:00
|
|
|
r.t.deleteReader(r)
|
2015-04-14 13:59:41 +00:00
|
|
|
r.t = nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-18 07:35:14 +00:00
|
|
|
func (r *Reader) posChanged() {
|
|
|
|
r.t.cl.mu.Lock()
|
|
|
|
defer r.t.cl.mu.Unlock()
|
2016-02-01 10:11:41 +00:00
|
|
|
r.t.torrent.readersChanged()
|
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-01-18 07:35:14 +00:00
|
|
|
r.mu.Lock()
|
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:
|
2015-04-28 05:24:17 +00:00
|
|
|
r.pos = r.t.torrent.Info.TotalLength() + off
|
2015-04-14 13:59:41 +00:00
|
|
|
default:
|
|
|
|
err = errors.New("bad whence")
|
|
|
|
}
|
|
|
|
ret = r.pos
|
2016-01-18 07:35:14 +00:00
|
|
|
r.mu.Unlock()
|
|
|
|
r.posChanged()
|
2015-04-14 13:59:41 +00:00
|
|
|
return
|
|
|
|
}
|