torrent/file.go

179 lines
4.7 KiB
Go
Raw Normal View History

package torrent
import (
"github.com/RoaringBitmap/roaring"
"github.com/anacrolix/missinggo/v2/bitmap"
"github.com/anacrolix/torrent/metainfo"
)
// Provides access to regions of torrent data that correspond to its files.
type File struct {
t *Torrent
path string
offset int64
length int64
fi metainfo.FileInfo
displayPath string
prio piecePriority
}
2016-04-03 08:40:43 +00:00
func (f *File) Torrent() *Torrent {
2015-11-11 16:25:04 +00:00
return f.t
}
// Data for this file begins this many bytes into the Torrent.
func (f *File) Offset() int64 {
return f.offset
}
// The FileInfo from the metainfo.Info to which this file corresponds.
func (f File) FileInfo() metainfo.FileInfo {
return f.fi
}
// The file's path components joined by '/'.
func (f File) Path() string {
return f.path
}
// The file's length in bytes.
func (f *File) Length() int64 {
return f.length
}
// Number of bytes of the entire file we have completed. This is the sum of
// completed pieces, and dirtied chunks of incomplete pieces.
func (f *File) BytesCompleted() int64 {
f.t.cl.rLock()
defer f.t.cl.rUnlock()
return f.bytesCompleted()
}
func (f *File) bytesCompleted() int64 {
return f.length - f.bytesLeft()
}
2020-03-24 00:21:42 +00:00
func fileBytesLeft(
torrentUsualPieceSize int64,
fileFirstPieceIndex int,
fileEndPieceIndex int,
fileTorrentOffset int64,
fileLength int64,
torrentCompletedPieces *roaring.Bitmap,
2020-03-24 00:21:42 +00:00
) (left int64) {
numPiecesSpanned := fileEndPieceIndex - fileFirstPieceIndex
switch numPiecesSpanned {
case 0:
case 1:
if !torrentCompletedPieces.Contains(bitmap.BitIndex(fileFirstPieceIndex)) {
left += fileLength
}
default:
if !torrentCompletedPieces.Contains(bitmap.BitIndex(fileFirstPieceIndex)) {
left += torrentUsualPieceSize - (fileTorrentOffset % torrentUsualPieceSize)
}
if !torrentCompletedPieces.Contains(bitmap.BitIndex(fileEndPieceIndex - 1)) {
left += fileTorrentOffset + fileLength - int64(fileEndPieceIndex-1)*torrentUsualPieceSize
}
completedMiddlePieces := torrentCompletedPieces.Clone()
2021-05-20 01:16:54 +00:00
completedMiddlePieces.RemoveRange(0, bitmap.BitRange(fileFirstPieceIndex+1))
completedMiddlePieces.RemoveRange(bitmap.BitRange(fileEndPieceIndex-1), bitmap.ToEnd)
left += int64(numPiecesSpanned-2-pieceIndex(completedMiddlePieces.GetCardinality())) * torrentUsualPieceSize
}
return
}
2020-03-24 00:19:11 +00:00
func (f *File) bytesLeft() (left int64) {
return fileBytesLeft(int64(f.t.usualPieceSize()), f.firstPieceIndex(), f.endPieceIndex(), f.offset, f.length, &f.t._completedPieces)
2020-03-24 00:19:11 +00:00
}
// The relative file path for a multi-file torrent, and the torrent name for a
// single-file torrent. Dir separators are '/'.
func (f *File) DisplayPath() string {
return f.displayPath
}
// The download status of a piece that comprises part of a File.
type FilePieceState struct {
Bytes int64 // Bytes within the piece that are part of this File.
PieceState
}
// Returns the state of pieces in this file.
func (f *File) State() (ret []FilePieceState) {
2018-07-25 03:41:50 +00:00
f.t.cl.rLock()
defer f.t.cl.rUnlock()
2016-04-03 08:40:43 +00:00
pieceSize := int64(f.t.usualPieceSize())
off := f.offset % pieceSize
remaining := f.length
for i := pieceIndex(f.offset / pieceSize); ; i++ {
if remaining == 0 {
break
}
len1 := pieceSize - off
if len1 > remaining {
len1 = remaining
}
2016-04-03 08:40:43 +00:00
ps := f.t.pieceState(i)
ret = append(ret, FilePieceState{len1, ps})
off = 0
remaining -= len1
}
return
}
2016-03-19 06:40:30 +00:00
// Requests that all pieces containing data in the file be downloaded.
func (f *File) Download() {
2018-01-21 11:49:12 +00:00
f.SetPriority(PiecePriorityNormal)
}
2016-02-04 14:18:54 +00:00
func byteRegionExclusivePieces(off, size, pieceSize int64) (begin, end int) {
begin = int((off + pieceSize - 1) / pieceSize)
end = int((off + size) / pieceSize)
return
}
2018-01-21 11:49:12 +00:00
// Deprecated: Use File.SetPriority.
2016-02-04 14:18:54 +00:00
func (f *File) Cancel() {
2018-01-21 11:49:12 +00:00
f.SetPriority(PiecePriorityNone)
2016-02-04 14:18:54 +00:00
}
2018-01-06 05:37:13 +00:00
func (f *File) NewReader() Reader {
2021-09-09 07:41:12 +00:00
return f.t.newReader(f.Offset(), f.Length())
2018-01-06 05:37:13 +00:00
}
2018-01-21 11:49:12 +00:00
// Sets the minimum priority for pieces in the File.
func (f *File) SetPriority(prio piecePriority) {
2018-07-25 03:41:50 +00:00
f.t.cl.lock()
defer f.t.cl.unlock()
2018-01-21 11:49:12 +00:00
if prio == f.prio {
return
}
f.prio = prio
f.t.updatePiecePriorities(f.firstPieceIndex(), f.endPieceIndex())
2018-01-21 11:49:12 +00:00
}
// Returns the priority per File.SetPriority.
func (f *File) Priority() piecePriority {
2018-07-25 03:41:50 +00:00
f.t.cl.lock()
defer f.t.cl.unlock()
2018-01-21 11:49:12 +00:00
return f.prio
}
// Returns the index of the first piece containing data for the file.
func (f *File) firstPieceIndex() pieceIndex {
if f.t.usualPieceSize() == 0 {
return 0
}
return pieceIndex(f.offset / int64(f.t.usualPieceSize()))
2018-01-21 11:49:12 +00:00
}
// Returns the index of the piece after the last one containing data for the file.
func (f *File) endPieceIndex() pieceIndex {
if f.t.usualPieceSize() == 0 {
return 0
}
return pieceIndex((f.offset + f.length + int64(f.t.usualPieceSize()) - 1) / int64(f.t.usualPieceSize()))
2018-01-21 11:49:12 +00:00
}