]> Sergey Matveev's repositories - btrtrc.git/blob - t.go
Reader.Close: Prefer to lock Client in public method
[btrtrc.git] / t.go
1 package torrent
2
3 import (
4         "fmt"
5         "strings"
6
7         "github.com/anacrolix/missinggo/pubsub"
8
9         "github.com/anacrolix/torrent/metainfo"
10 )
11
12 // The torrent's infohash. This is fixed and cannot change. It uniquely
13 // identifies a torrent.
14 func (t *Torrent) InfoHash() metainfo.Hash {
15         return t.infoHash
16 }
17
18 // Returns a channel that is closed when the info (.Info()) for the torrent
19 // has become available.
20 func (t *Torrent) GotInfo() <-chan struct{} {
21         t.cl.mu.Lock()
22         defer t.cl.mu.Unlock()
23         return t.gotMetainfo.C()
24 }
25
26 // Returns the metainfo info dictionary, or nil if it's not yet available.
27 func (t *Torrent) Info() *metainfo.Info {
28         return t.info
29 }
30
31 // Returns a Reader bound to the torrent's data. All read calls block until
32 // the data requested is actually available.
33 func (t *Torrent) NewReader() (ret *Reader) {
34         ret = &Reader{
35                 mu:        &t.cl.mu,
36                 t:         t,
37                 readahead: 5 * 1024 * 1024,
38         }
39         ret.pieces = ret.piecesUncached()
40         t.addReader(ret)
41         return
42 }
43
44 // Returns the state of pieces of the torrent. They are grouped into runs of
45 // same state. The sum of the state run lengths is the number of pieces
46 // in the torrent.
47 func (t *Torrent) PieceStateRuns() []PieceStateRun {
48         t.cl.mu.Lock()
49         defer t.cl.mu.Unlock()
50         return t.pieceStateRuns()
51 }
52
53 func (t *Torrent) PieceState(piece int) PieceState {
54         t.cl.mu.Lock()
55         defer t.cl.mu.Unlock()
56         return t.pieceState(piece)
57 }
58
59 // The number of pieces in the torrent. This requires that the info has been
60 // obtained first.
61 func (t *Torrent) NumPieces() int {
62         return t.numPieces()
63 }
64
65 // Drop the torrent from the client, and close it. It's always safe to do
66 // this. No data corruption can, or should occur to either the torrent's data,
67 // or connected peers.
68 func (t *Torrent) Drop() {
69         t.cl.mu.Lock()
70         t.cl.dropTorrent(t.infoHash)
71         t.cl.mu.Unlock()
72 }
73
74 // Number of bytes of the entire torrent we have completed.
75 func (t *Torrent) BytesCompleted() int64 {
76         t.cl.mu.RLock()
77         defer t.cl.mu.RUnlock()
78         return t.bytesCompleted()
79 }
80
81 // The subscription emits as (int) the index of pieces as their state changes.
82 // A state change is when the PieceState for a piece alters in value.
83 func (t *Torrent) SubscribePieceStateChanges() *pubsub.Subscription {
84         return t.pieceStateChanges.Subscribe()
85 }
86
87 // Returns true if the torrent is currently being seeded. This occurs when the
88 // client is willing to upload without wanting anything in return.
89 func (t *Torrent) Seeding() bool {
90         t.cl.mu.Lock()
91         defer t.cl.mu.Unlock()
92         return t.seeding()
93 }
94
95 // Clobbers the torrent display name. The display name is used as the torrent
96 // name if the metainfo is not available.
97 func (t *Torrent) SetDisplayName(dn string) {
98         t.cl.mu.Lock()
99         defer t.cl.mu.Unlock()
100         t.setDisplayName(dn)
101 }
102
103 // The current working name for the torrent. Either the name in the info dict,
104 // or a display name given such as by the dn value in a magnet link, or "".
105 func (t *Torrent) Name() string {
106         t.cl.mu.Lock()
107         defer t.cl.mu.Unlock()
108         return t.name()
109 }
110
111 // The completed length of all the torrent data, in all its files. This is
112 // derived from the torrent info, when it is available.
113 func (t *Torrent) Length() int64 {
114         if t.info == nil {
115                 panic("not valid until info obtained")
116         }
117         return t.length
118 }
119
120 // Returns a run-time generated metainfo for the torrent that includes the
121 // info bytes and announce-list as currently known to the client.
122 func (t *Torrent) Metainfo() metainfo.MetaInfo {
123         t.cl.mu.Lock()
124         defer t.cl.mu.Unlock()
125         return t.newMetaInfo()
126 }
127
128 func (t *Torrent) addReader(r *Reader) {
129         t.cl.mu.Lock()
130         defer t.cl.mu.Unlock()
131         if t.readers == nil {
132                 t.readers = make(map[*Reader]struct{})
133         }
134         t.readers[r] = struct{}{}
135         r.posChanged()
136 }
137
138 func (t *Torrent) deleteReader(r *Reader) {
139         delete(t.readers, r)
140         t.readersChanged()
141 }
142
143 func (t *Torrent) DownloadPieces(begin, end int) {
144         t.cl.mu.Lock()
145         defer t.cl.mu.Unlock()
146         t.pendPieceRange(begin, end)
147 }
148
149 func (t *Torrent) CancelPieces(begin, end int) {
150         t.cl.mu.Lock()
151         defer t.cl.mu.Unlock()
152         t.unpendPieceRange(begin, end)
153 }
154
155 // Returns handles to the files in the torrent. This requires the metainfo is
156 // available first.
157 func (t *Torrent) Files() (ret []File) {
158         t.cl.mu.Lock()
159         info := t.Info()
160         t.cl.mu.Unlock()
161         if info == nil {
162                 return
163         }
164         var offset int64
165         for _, fi := range info.UpvertedFiles() {
166                 ret = append(ret, File{
167                         t,
168                         strings.Join(append([]string{info.Name}, fi.Path...), "/"),
169                         offset,
170                         fi.Length,
171                         fi,
172                 })
173                 offset += fi.Length
174         }
175         return
176 }
177
178 func (t *Torrent) AddPeers(pp []Peer) {
179         cl := t.cl
180         cl.mu.Lock()
181         defer cl.mu.Unlock()
182         t.addPeers(pp)
183 }
184
185 // Marks the entire torrent for download. Requires the info first, see
186 // GotInfo.
187 func (t *Torrent) DownloadAll() {
188         t.cl.mu.Lock()
189         defer t.cl.mu.Unlock()
190         t.pendPieceRange(0, t.numPieces())
191 }
192
193 func (t *Torrent) String() string {
194         s := t.name()
195         if s == "" {
196                 s = fmt.Sprintf("%x", t.infoHash)
197         }
198         return s
199 }
200
201 func (t *Torrent) AddTrackers(announceList [][]string) {
202         t.cl.mu.Lock()
203         defer t.cl.mu.Unlock()
204         t.addTrackers(announceList)
205 }