torrent/t.go

83 lines
2.1 KiB
Go
Raw Normal View History

package torrent
2015-04-28 05:24:17 +00:00
import (
"github.com/anacrolix/missinggo/pubsub"
2015-04-28 05:24:17 +00:00
"github.com/anacrolix/torrent/metainfo"
)
2015-09-06 02:31:23 +00:00
// This file contains Torrent, until I decide where the private, lower-case
// "torrent" type belongs. That type is currently mostly in torrent.go.
2015-09-06 02:31:23 +00:00
// The public handle to a live torrent within a Client.
type Torrent struct {
cl *Client
*torrent
}
2015-09-06 02:31:23 +00:00
// The torrent's infohash. This is fixed and cannot change. It uniquely
// identifies a torrent.
2015-08-01 17:55:48 +00:00
func (t Torrent) InfoHash() InfoHash {
return t.torrent.InfoHash
}
// Closed when the info (.Info()) for the torrent has become available. Using
// features of Torrent that require the info before it is available will have
// undefined behaviour.
func (t *Torrent) GotInfo() <-chan struct{} {
return t.torrent.gotMetainfo
2015-04-28 05:24:17 +00:00
}
2015-09-06 02:31:23 +00:00
// Returns the metainfo, or nil if it's not yet available.
2015-04-28 05:24:17 +00:00
func (t *Torrent) Info() *metainfo.Info {
return t.torrent.Info
}
2015-06-03 03:30:55 +00:00
// Returns a Reader bound to the torrent's data. All read calls block until
// the data requested is actually available. Priorities are set to ensure the
// data requested will be downloaded as soon as possible.
func (t *Torrent) NewReader() (ret *Reader) {
ret = &Reader{
t: t,
readahead: 5 * 1024 * 1024,
}
return
}
// Returns the state of pieces of the torrent. They are grouped into runs of
// same state. The sum of the state run lengths is the number of pieces
// in the torrent.
func (t *Torrent) PieceStateRuns() []PieceStateRun {
t.stateMu.Lock()
defer t.stateMu.Unlock()
return t.torrent.pieceStateRuns()
}
2015-06-22 16:02:22 +00:00
func (t Torrent) NumPieces() int {
return t.numPieces()
}
2015-09-06 02:31:23 +00:00
// Drop the torrent from the client, and close it.
2015-06-22 16:02:22 +00:00
func (t Torrent) Drop() {
t.cl.mu.Lock()
2015-08-01 17:55:48 +00:00
t.cl.dropTorrent(t.torrent.InfoHash)
2015-06-22 16:02:22 +00:00
t.cl.mu.Unlock()
}
2015-07-21 12:54:02 +00:00
2015-09-06 02:31:23 +00:00
// Number of bytes of the entire torrent we have completed.
2015-07-21 12:54:02 +00:00
func (t Torrent) BytesCompleted() int64 {
t.cl.mu.RLock()
defer t.cl.mu.RUnlock()
return t.bytesCompleted()
}
func (t Torrent) SubscribePieceStateChanges() *pubsub.Subscription {
return t.torrent.pieceStateChanges.Subscribe()
}
2015-11-22 07:44:33 +00:00
func (t Torrent) Seeding() bool {
t.cl.mu.Lock()
defer t.cl.mu.Unlock()
return t.cl.seeding(t.torrent)
}