]> Sergey Matveev's repositories - btrtrc.git/blob - t.go
Switch to Client read locks for a few methods
[btrtrc.git] / t.go
1 package torrent
2
3 import (
4         "strings"
5
6         "github.com/anacrolix/missinggo/pubsub"
7         "github.com/anacrolix/torrent/metainfo"
8 )
9
10 // The torrent's infohash. This is fixed and cannot change. It uniquely
11 // identifies a torrent.
12 func (t *Torrent) InfoHash() metainfo.Hash {
13         return t.infoHash
14 }
15
16 // Returns a channel that is closed when the info (.Info()) for the torrent
17 // has become available.
18 func (t *Torrent) GotInfo() <-chan struct{} {
19         t.cl.lock()
20         defer t.cl.unlock()
21         return t.gotMetainfo.C()
22 }
23
24 // Returns the metainfo info dictionary, or nil if it's not yet available.
25 func (t *Torrent) Info() *metainfo.Info {
26         t.cl.lock()
27         defer t.cl.unlock()
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() Reader {
34         r := reader{
35                 mu:        t.cl.locker(),
36                 t:         t,
37                 readahead: 5 * 1024 * 1024,
38                 length:    *t.length,
39         }
40         t.addReader(&r)
41         return &r
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.rLock()
49         defer t.cl.rUnlock()
50         return t.pieceStateRuns()
51 }
52
53 func (t *Torrent) PieceState(piece pieceIndex) PieceState {
54         t.cl.rLock()
55         defer t.cl.rUnlock()
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() pieceIndex {
62         return t.numPieces()
63 }
64
65 // Get missing bytes count for specific piece.
66 func (t *Torrent) PieceBytesMissing(piece int) int64 {
67         t.cl.lock()
68         defer t.cl.unlock()
69
70         return int64(t.pieces[piece].bytesLeft())
71 }
72
73 // Drop the torrent from the client, and close it. It's always safe to do
74 // this. No data corruption can, or should occur to either the torrent's data,
75 // or connected peers.
76 func (t *Torrent) Drop() {
77         t.cl.lock()
78         t.cl.dropTorrent(t.infoHash)
79         t.cl.unlock()
80 }
81
82 // Number of bytes of the entire torrent we have completed. This is the sum of
83 // completed pieces, and dirtied chunks of incomplete pieces. Do not use this
84 // for download rate, as it can go down when pieces are lost or fail checks.
85 // Sample Torrent.Stats.DataBytesRead for actual file data download rate.
86 func (t *Torrent) BytesCompleted() int64 {
87         t.cl.rLock()
88         defer t.cl.rUnlock()
89         return t.bytesCompleted()
90 }
91
92 // The subscription emits as (int) the index of pieces as their state changes.
93 // A state change is when the PieceState for a piece alters in value.
94 func (t *Torrent) SubscribePieceStateChanges() *pubsub.Subscription {
95         return t.pieceStateChanges.Subscribe()
96 }
97
98 // Returns true if the torrent is currently being seeded. This occurs when the
99 // client is willing to upload without wanting anything in return.
100 func (t *Torrent) Seeding() bool {
101         t.cl.lock()
102         defer t.cl.unlock()
103         return t.seeding()
104 }
105
106 // Clobbers the torrent display name. The display name is used as the torrent
107 // name if the metainfo is not available.
108 func (t *Torrent) SetDisplayName(dn string) {
109         t.cl.lock()
110         defer t.cl.unlock()
111         t.setDisplayName(dn)
112 }
113
114 // The current working name for the torrent. Either the name in the info dict,
115 // or a display name given such as by the dn value in a magnet link, or "".
116 func (t *Torrent) Name() string {
117         t.cl.lock()
118         defer t.cl.unlock()
119         return t.name()
120 }
121
122 // The completed length of all the torrent data, in all its files. This is
123 // derived from the torrent info, when it is available.
124 func (t *Torrent) Length() int64 {
125         return *t.length
126 }
127
128 // Returns a run-time generated metainfo for the torrent that includes the
129 // info bytes and announce-list as currently known to the client.
130 func (t *Torrent) Metainfo() metainfo.MetaInfo {
131         t.cl.lock()
132         defer t.cl.unlock()
133         return t.newMetaInfo()
134 }
135
136 func (t *Torrent) addReader(r *reader) {
137         t.cl.lock()
138         defer t.cl.unlock()
139         if t.readers == nil {
140                 t.readers = make(map[*reader]struct{})
141         }
142         t.readers[r] = struct{}{}
143         r.posChanged()
144 }
145
146 func (t *Torrent) deleteReader(r *reader) {
147         delete(t.readers, r)
148         t.readersChanged()
149 }
150
151 // Raise the priorities of pieces in the range [begin, end) to at least Normal
152 // priority. Piece indexes are not the same as bytes. Requires that the info
153 // has been obtained, see Torrent.Info and Torrent.GotInfo.
154 func (t *Torrent) DownloadPieces(begin, end pieceIndex) {
155         t.cl.lock()
156         defer t.cl.unlock()
157         t.downloadPiecesLocked(begin, end)
158 }
159
160 func (t *Torrent) downloadPiecesLocked(begin, end pieceIndex) {
161         for i := begin; i < end; i++ {
162                 if t.pieces[i].priority.Raise(PiecePriorityNormal) {
163                         t.updatePiecePriority(i)
164                 }
165         }
166 }
167
168 func (t *Torrent) CancelPieces(begin, end pieceIndex) {
169         t.cl.lock()
170         defer t.cl.unlock()
171         t.cancelPiecesLocked(begin, end)
172 }
173
174 func (t *Torrent) cancelPiecesLocked(begin, end pieceIndex) {
175         for i := begin; i < end; i++ {
176                 p := &t.pieces[i]
177                 if p.priority == PiecePriorityNone {
178                         continue
179                 }
180                 p.priority = PiecePriorityNone
181                 t.updatePiecePriority(i)
182         }
183 }
184
185 func (t *Torrent) initFiles() {
186         var offset int64
187         t.files = new([]*File)
188         for _, fi := range t.info.UpvertedFiles() {
189                 *t.files = append(*t.files, &File{
190                         t,
191                         strings.Join(append([]string{t.info.Name}, fi.Path...), "/"),
192                         offset,
193                         fi.Length,
194                         fi,
195                         PiecePriorityNone,
196                 })
197                 offset += fi.Length
198         }
199
200 }
201
202 // Returns handles to the files in the torrent. This requires that the Info is
203 // available first.
204 func (t *Torrent) Files() []*File {
205         return *t.files
206 }
207
208 func (t *Torrent) AddPeers(pp []Peer) {
209         cl := t.cl
210         cl.lock()
211         defer cl.unlock()
212         t.addPeers(pp)
213 }
214
215 // Marks the entire torrent for download. Requires the info first, see
216 // GotInfo. Sets piece priorities for historical reasons.
217 func (t *Torrent) DownloadAll() {
218         t.DownloadPieces(0, t.numPieces())
219 }
220
221 func (t *Torrent) String() string {
222         s := t.name()
223         if s == "" {
224                 s = t.infoHash.HexString()
225         }
226         return s
227 }
228
229 func (t *Torrent) AddTrackers(announceList [][]string) {
230         t.cl.lock()
231         defer t.cl.unlock()
232         t.addTrackers(announceList)
233 }
234
235 func (t *Torrent) Piece(i pieceIndex) *Piece {
236         t.cl.lock()
237         defer t.cl.unlock()
238         return &t.pieces[i]
239 }