-
-
Notifications
You must be signed in to change notification settings - Fork 660
Expand file tree
/
Copy pathmisc.go
More file actions
146 lines (129 loc) · 3.67 KB
/
misc.go
File metadata and controls
146 lines (129 loc) · 3.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package torrent
import (
"errors"
"net"
"github.com/RoaringBitmap/roaring"
"github.com/anacrolix/missinggo/v2"
"github.com/anacrolix/missinggo/v2/panicif"
"golang.org/x/time/rate"
"github.com/anacrolix/torrent/metainfo"
pp "github.com/anacrolix/torrent/peer_protocol"
"github.com/anacrolix/torrent/types"
"github.com/anacrolix/torrent/types/infohash"
)
type (
// TODO: Make this private. Use types.Request in the (one?) place it's exposed here.
Request = types.Request
ChunkSpec = types.ChunkSpec
PiecePriority = types.PiecePriority
)
const (
PiecePriorityNormal = types.PiecePriorityNormal
PiecePriorityNone = types.PiecePriorityNone
PiecePriorityNow = types.PiecePriorityNow
PiecePriorityReadahead = types.PiecePriorityReadahead
PiecePriorityNext = types.PiecePriorityNext
PiecePriorityHigh = types.PiecePriorityHigh
)
func newRequest(index, begin, length pp.Integer) Request {
return Request{Index: index, ChunkSpec: ChunkSpec{Begin: begin, Length: length}}
}
func newRequestFromMessage(msg *pp.Message) Request {
switch msg.Type {
case pp.Request, pp.Cancel, pp.Reject:
return newRequest(msg.Index, msg.Begin, msg.Length)
case pp.Piece:
return newRequest(msg.Index, msg.Begin, pp.Integer(len(msg.Piece)))
default:
panic(msg.Type)
}
}
// The size in bytes of a metadata extension piece.
func metadataPieceSize(totalSize, piece int) int {
ret := totalSize - piece*(1<<14)
if ret > 1<<14 {
ret = 1 << 14
}
return ret
}
// Return the request that would include the given offset into the torrent data.
func torrentOffsetRequest(
torrentLength, pieceSize, chunkSize, offset int64,
) (
r Request, ok bool,
) {
if offset < 0 || offset >= torrentLength {
return
}
r.Index = pp.Integer(offset / pieceSize)
r.Begin = pp.Integer(offset % pieceSize / chunkSize * chunkSize)
r.Length = pp.Integer(chunkSize)
pieceLeft := pp.Integer(pieceSize - int64(r.Begin))
if r.Length > pieceLeft {
r.Length = pieceLeft
}
torrentLeft := torrentLength - int64(r.Index)*pieceSize - int64(r.Begin)
if int64(r.Length) > torrentLeft {
r.Length = pp.Integer(torrentLeft)
}
ok = true
return
}
func torrentRequestOffset(torrentLength, pieceSize int64, r Request) (off int64) {
off = int64(r.Index)*pieceSize + int64(r.Begin)
if off < 0 || off >= torrentLength {
panic("invalid Request")
}
return
}
func validateInfo(info *metainfo.Info) error {
if len(info.Pieces)%20 != 0 {
return errors.New("pieces has invalid length")
}
if info.PieceLength == 0 {
if info.TotalLength() != 0 {
return errors.New("zero piece length")
}
} else if !info.HasV2() {
// TotalLength returns different values for V1 and V2 depending on whether v1 pad files are
// counted. Split the interface into several methods?
if int((info.TotalLength()+info.PieceLength-1)/info.PieceLength) != info.NumPieces() {
return errors.New("piece count and file lengths are at odds")
}
}
return nil
}
func chunkIndexSpec(index, pieceLength, chunkSize pp.Integer) ChunkSpec {
begin := index * chunkSize
panicif.GreaterThanOrEqual(begin, pieceLength)
return ChunkSpec{
Begin: begin,
Length: min(chunkSize, pieceLength-begin),
}
}
func comparePeerTrust(l, r *Peer) int {
return l.trust().Cmp(r.trust())
}
func connIsIpv6(nc interface {
LocalAddr() net.Addr
},
) bool {
ra := nc.LocalAddr()
rip := addrIpOrNil(ra)
return rip.To4() == nil && rip.To16() != nil
}
var unlimited = rate.NewLimiter(rate.Inf, 0)
type (
pieceIndex = int
// Deprecated: Use infohash.T directly to avoid unnecessary imports.
InfoHash = infohash.T
IpPort = missinggo.IpPort
)
func boolSliceToBitmap(slice []bool) (rb roaring.Bitmap) {
for i, b := range slice {
if b {
rb.AddInt(i)
}
}
return
}