Documentation
¶
Overview ¶
Package torrent implements a torrent client
- simple api.
- performant.
BitTorrent features implemented include:
- Protocol obfuscation
- DHT
- uTP
- PEX
- Magnet links
- IP Blocklists
- Some IPv6
- HTTP and UDP tracker clients
- BEPs:
- 3: Basic BitTorrent protocol
- 5: DHT
- 6: Fast Extension (have all/none only)
- 7: IPv6 Tracker Extension
- 9: ut_metadata
- 10: Extension protocol
- 11: PEX
- 12: Multitracker metadata extension
- 15: UDP Tracker Protocol
- 20: Peer ID convention ("-GTnnnn-")
- 23: Tracker Returns Compact Peer Lists
- 27: Private torrents
- 29: uTorrent transport protocol
- 41: UDP Tracker Protocol Extensions
- 42: DHT Security extension
- 43: Read-only DHT Nodes
Example (CustomNetworkProtocols) ¶
package main
import (
"context"
"io"
"log"
"net"
"os"
"github.com/james-lawrence/torrent"
"github.com/james-lawrence/torrent/sockets"
"github.com/james-lawrence/torrent/storage"
)
func main() {
var (
err error
metadata torrent.Metadata
)
l, err := net.Listen("unix", "")
if err != nil {
log.Fatalln(err)
return
}
defer l.Close()
s := sockets.New(l, &net.Dialer{LocalAddr: l.Addr()})
c, _ := torrent.NewSocketsBind(s).Bind(torrent.NewClient(torrent.NewDefaultClientConfig(
torrent.NewMetadataCache(os.TempDir()),
storage.NewFile(os.TempDir()),
// torrent.ClientConfigBootstrapGlobal,
)))
defer c.Close()
if metadata, err = torrent.NewFromMagnet("magnet:?xt=urn:btih:ZOCMZQIPFFW7OLLMIC5HUB6BPCSDEOQU"); err != nil {
log.Fatalln(err)
return
}
dl, _, err := c.Start(metadata)
if err != nil {
log.Fatalln(err)
return
}
if _, err = torrent.DownloadInto(context.Background(), io.Discard, dl); err != nil {
log.Fatalln(err)
return
}
log.Print("torrent downloaded")
}
Example (Download) ¶
package main
import (
"context"
"io"
"log"
"github.com/james-lawrence/torrent"
"github.com/james-lawrence/torrent/autobind"
)
func main() {
var (
err error
metadata torrent.Metadata
)
c, _ := autobind.NewDefaultClient()
defer c.Close()
if metadata, err = torrent.NewFromMagnet("magnet:?xt=urn:btih:ZOCMZQIPFFW7OLLMIC5HUB6BPCSDEOQU"); err != nil {
log.Fatalln(err)
return
}
dl, _, err := c.Start(metadata)
if err != nil {
log.Fatalln(err)
return
}
if _, err = torrent.DownloadInto(context.Background(), io.Discard, dl); err != nil {
// if _, err = c.DownloadInto(context.Background(), metadata, io.Discard); err != nil {
log.Fatalln(err)
return
}
log.Print("torrent downloaded")
}
Example (FileReader) ¶
package main
import (
"github.com/james-lawrence/torrent"
)
func main() {
var f torrent.File
// Accesses the parts of the torrent pertaining to f. Data will be
// downloaded as required, per the configuration of the torrent.Reader.
r := f.NewReader()
defer r.Close()
}
Index ¶
- Constants
- func ClientConfigEnableEncryption(cc *ClientConfig)
- func ClientConfigNoop(c *ClientConfig)
- func ConnExtensions(ctx context.Context, cn *connection) error
- func DHTAnnounce(ctx context.Context, d *dht.Server, id int160.T) (iterx.Seq[dht.PeersValues], error)
- func DHTAnnounceOnce(ctx context.Context, cln *Client, d *dht.Server, id int160.T) (err error)
- func DownloadInto(ctx context.Context, dst io.Writer, m Torrent, options ...Tuner) (n int64, err error)
- func DownloadRange(ctx context.Context, m Torrent, off int64, length int64, options ...Tuner) (_ io.ReadSeekCloser)
- func ErrTorrentClosed() error
- func LogDiscard() discard
- func NewBitmapCache(root string) bitmapfilestore
- func NewCache(s MetadataStore, b BitmapStore) *memoryseeding
- func NewMagnet(md Metadata) metainfo.Magnet
- func NewMetadataCache(root string) metadatafilestore
- func NewSocketsBind(s ...sockets.Socket) binder
- func OptionNoop(t *Metadata)
- func RunHandshookConn(c *connection, t *torrent) error
- func TrackerAnnounceUntil(ctx context.Context, t *torrent, donefn func() bool, ...)
- func TrackerEvent(ctx context.Context, l Torrent, announceuri string, ...) (ret *tracker.AnnounceResponse, err error)
- func TuneAnnounceUntilComplete(t *torrent) error
- func TuneAutoDownload(t *torrent) error
- func TuneDisableTrackers(t *torrent) error
- func TuneNewConns(t *torrent) error
- func TuneNoop(t *torrent) error
- func TuneRecordMetadata(t *torrent) error
- func TuneResetBitmaps(t *torrent) error
- func TuneSeeding(t *torrent) error
- func TuneVerifyAsync(t *torrent) error
- func TuneVerifyFull(t *torrent) error
- func Verify(ctx context.Context, t Torrent) error
- func VerifyStored(ctx context.Context, md *metainfo.MetaInfo, t io.ReaderAt) (missing *roaring.Bitmap, readable *roaring.Bitmap, _ error)
- type Binder
- type BinderOption
- type BitmapStore
- type Client
- func (cl *Client) AddDHTNodes(nodes []string)
- func (cl *Client) Bind(s sockets.Socket) (err error)
- func (cl *Client) BindDHT(d *dht.Server, s sockets.Socket) (err error)
- func (cl *Client) Close() error
- func (cl *Client) Closed() <-chan struct{}
- func (cl *Client) Config() *ClientConfig
- func (cl *Client) Info(ctx context.Context, m Metadata, options ...Tuner) (i *metainfo.Info, err error)
- func (cl *Client) ListenAddrs() (ret []net.Addr)
- func (cl *Client) LocalPort16() (port uint16)
- func (cl *Client) MaybeStart(t Metadata, failed error, options ...Tuner) (dl Torrent, added bool, err error)
- func (cl *Client) Start(t Metadata, options ...Tuner) (dl Torrent, added bool, err error)
- func (cl *Client) Stop(t Metadata) (err error)
- func (cl *Client) String() string
- func (cl *Client) Tune(ops ...ClientOperation) error
- type ClientConfig
- type ClientConfigOption
- func ClientConfigAcceptLimit(l *rate.Limiter) ClientConfigOption
- func ClientConfigCacheDirectory(s string) ClientConfigOption
- func ClientConfigCompose(options ...ClientConfigOption) ClientConfigOption
- func ClientConfigConnectionClosed(fn func(ih int160.T, stats ConnStats, remaining int)) ClientConfigOption
- func ClientConfigDebugLogger(l logging) ClientConfigOption
- func ClientConfigDialPoolSize[T constraints.Integer](n T) ClientConfigOption
- func ClientConfigDialRateLimit(l *rate.Limiter) ClientConfigOption
- func ClientConfigDialTimeouts(healthy, starving time.Duration) ClientConfigOption
- func ClientConfigDialer(d netx.Dialer) ClientConfigOption
- func ClientConfigDownloadLimit(l *rate.Limiter) ClientConfigOption
- func ClientConfigExtension(name pp.ExtensionName) ClientConfigOption
- func ClientConfigExtensionBits(bits ...uint) ClientConfigOption
- func ClientConfigFirewall(fw connections.FirewallStateful) ClientConfigOption
- func ClientConfigHTTPUserAgent(s string) ClientConfigOption
- func ClientConfigHandshakeTimeout(d time.Duration) ClientConfigOption
- func ClientConfigIDPrefix(prefix string) ClientConfigOption
- func ClientConfigInfoLogger(l logging) ClientConfigOption
- func ClientConfigMaxConnecting[T constraints.Integer](connecting T) ClientConfigOption
- func ClientConfigMaxOutstandingRequests(n int) ClientConfigOption
- func ClientConfigMetadata(b bool) ClientConfigOption
- func ClientConfigPEX(b bool) ClientConfigOption
- func ClientConfigPeerLimits[T constraints.Integer](low, high T) ClientConfigOption
- func ClientConfigSeed(b bool) ClientConfigOption
- func ClientConfigStorage(s storage.ClientImpl) ClientConfigOption
- func ClientConfigStorageDir(dir string) ClientConfigOption
- func ClientConfigUploadLimit(l *rate.Limiter) ClientConfigOption
- type ClientOperation
- type ConnStats
- type File
- type Handle
- type HeaderObfuscationPolicy
- type Metadata
- func New(info metainfo.Hash, options ...Option) (t Metadata, err error)
- func NewFromFile(path string, options ...Option) (t Metadata, err error)
- func NewFromInfo(i *metainfo.Info, options ...Option) (t Metadata, err error)
- func NewFromInfoFile(path string, options ...Option) (t Metadata, err error)
- func NewFromMagnet(uri string, options ...Option) (t Metadata, err error)
- func NewFromMetaInfo(mi *metainfo.MetaInfo, options ...Option) (t Metadata, err error)
- func NewFromMetaInfoFile(path string, options ...Option) (t Metadata, err error)
- func NewFromMetaInfoReader(src io.Reader, options ...Option) (t Metadata, err error)
- type MetadataStore
- type Option
- func OptionChunk[T constraints.Integer](s T) Option
- func OptionDisplayName(dn string) Option
- func OptionInfo(i []byte) Option
- func OptionNodes(nodes ...string) Option
- func OptionPublicTrackers(private bool, trackers ...string) Option
- func OptionResetTrackers(trackers ...string) Option
- func OptionStorage(s storage.ClientImpl) Option
- func OptionTrackers(trackers ...string) Option
- func OptionWebseeds(seeds []string) Option
- type Peer
- type PeerOption
- type Peers
- type Reader
- type Stats
- type Torrent
- type Tuner
- func TuneAnnounceOnce(options ...tracker.AnnounceOption) Tuner
- func TuneClientPeer(cl *Client) Tuner
- func TuneDownloadRange(offset int64, length int64) Tuner
- func TuneMaxConnections(max int) Tuner
- func TunePeers(peers ...Peer) Tuner
- func TunePublicTrackers(trackers ...string) Tuner
- func TuneReadAnnounce(v *tracker.Announce) Tuner
- func TuneReadBytesRemaining(v *int64) Tuner
- func TuneReadHashID(id *int160.T) Tuner
- func TuneReadPeerID(id *int160.T) Tuner
- func TuneReadPort(v *uint16) Tuner
- func TuneReadUserAgent(v *string) Tuner
- func TuneResetTrackingStats(s *Stats) Tuner
- func TuneSubscribe(sub *pubsub.Subscription) Tuner
- func TuneTrackers(trackers ...string) Tuner
- func TuneVerifyRange(offset, length int64) Tuner
- func TuneVerifySample(n uint64) Tuner
Examples ¶
Constants ¶
const ( ErrTorrentNotActive = errorsx.String("torrent not active") ErrTorrentAttemptedToPersistNilMetadata = errorsx.String("cannot persist torrent metadata when missing info") )
const DefaultHTTPUserAgent = "Ghost-Torrent/1.0"
DefaultHTTPUserAgent ...
const ErrNoPeers = errorsx.String("failed to locate any peers for torrent")
Variables ¶
This section is empty.
Functions ¶
func ClientConfigEnableEncryption ¶
func ClientConfigEnableEncryption(cc *ClientConfig)
func ClientConfigNoop ¶
func ClientConfigNoop(c *ClientConfig)
useful for default noop configurations.
func ConnExtensions ¶
See the order given in Transmission's tr_peerMsgsNew.
func DHTAnnounce ¶
func DHTAnnounceOnce ¶
func DownloadInto ¶
func DownloadInto(ctx context.Context, dst io.Writer, m Torrent, options ...Tuner) (n int64, err error)
Download a torrent into a writer blocking until completion.
func DownloadRange ¶
func DownloadRange(ctx context.Context, m Torrent, off int64, length int64, options ...Tuner) (_ io.ReadSeekCloser)
Return a ReadSeeker for the given range
func ErrTorrentClosed ¶
func ErrTorrentClosed() error
func LogDiscard ¶
func LogDiscard() discard
func NewBitmapCache ¶
func NewBitmapCache(root string) bitmapfilestore
func NewCache ¶
func NewCache(s MetadataStore, b BitmapStore) *memoryseeding
func NewMetadataCache ¶
func NewMetadataCache(root string) metadatafilestore
func NewSocketsBind ¶
NewSocketsBind binds a set of sockets to the client. it bypasses any disable checks (tcp,udp, ip4/6) from the configuration.
func OptionNoop ¶
func OptionNoop(t *Metadata)
OptionNoop does nothing, stand in during configurations.
func RunHandshookConn ¶
func RunHandshookConn(c *connection, t *torrent) error
func TrackerAnnounceUntil ¶
func TrackerAnnounceUntil(ctx context.Context, t *torrent, donefn func() bool, options ...tracker.AnnounceOption)
func TrackerEvent ¶
func TrackerEvent(ctx context.Context, l Torrent, announceuri string, options ...tracker.AnnounceOption) (ret *tracker.AnnounceResponse, err error)
func TuneAnnounceUntilComplete ¶
func TuneAnnounceUntilComplete(t *torrent) error
func TuneAutoDownload ¶
func TuneAutoDownload(t *torrent) error
used after info has been received to mark all chunks missing. will only happen if missing and completed are zero.
func TuneDisableTrackers ¶
func TuneDisableTrackers(t *torrent) error
func TuneRecordMetadata ¶
func TuneRecordMetadata(t *torrent) error
func TuneSeeding ¶
func TuneSeeding(t *torrent) error
func TuneVerifyFull ¶
func TuneVerifyFull(t *torrent) error
Verify the entirety of the torrent. will block
Types ¶
type Binder ¶
type Binder interface {
// Bind to the given client if err is nil.
Bind(cl *Client, err error) (*Client, error)
Close() error
}
Binder binds network sockets to the client.
type BinderOption ¶
type BinderOption func(v *binder)
type BitmapStore ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client contain zero or more Torrents. A Client manages a blocklist, the TCP/UDP protocol ports, and DHT as desired.
func NewClient ¶
func NewClient(cfg *ClientConfig) (_ *Client, err error)
NewClient create a new client from the provided config. nil is acceptable.
func (*Client) AddDHTNodes ¶
AddDHTNodes adds nodes to the DHT servers.
func (*Client) Close ¶
Close stops the client. All connections to peers are closed and all activity will come to a halt.
func (*Client) Closed ¶
func (cl *Client) Closed() <-chan struct{}
Closed returns a channel to detect when the client is closed.
func (*Client) Config ¶
func (cl *Client) Config() *ClientConfig
Config underlying configuration for the client.
func (*Client) Info ¶
func (cl *Client) Info(ctx context.Context, m Metadata, options ...Tuner) (i *metainfo.Info, err error)
Query torrent info from the dht
func (*Client) ListenAddrs ¶
ListenAddrs addresses currently being listened to.
func (*Client) LocalPort16 ¶
LocalPort16 returns the local port being listened on. this is method is odd given a client can be attached to multiple ports on different listeners.
func (*Client) MaybeStart ¶
func (cl *Client) MaybeStart(t Metadata, failed error, options ...Tuner) (dl Torrent, added bool, err error)
MaybeStart is a convience method that consumes the return types of the torrent creation methods: New, NewFromFile, etc. it is all respects identical to the Start method.
func (*Client) Start ¶
Start the specified torrent. Start adds starts up the torrent within the client downloading the missing pieces as needed. if you want to wait until the torrent is completed use Download.
func (*Client) Stop ¶
Stop the specified torrent, this halts all network activity around the torrent for this client.
func (*Client) Tune ¶
func (cl *Client) Tune(ops ...ClientOperation) error
type ClientConfig ¶
type ClientConfig struct {
UpnpID string
// Upload even after there's nothing in it for us.
Seed bool `long:"seed"`
// Only applies to chunks uploaded to peers, to maintain responsiveness
// communicating local Client state to peers. Each limiter token
// represents one byte. The Limiter's burst must be large enough to fit a
// whole chunk, which is usually 16 KiB (see TorrentSpec.ChunkSize).
UploadRateLimiter *rate.Limiter
// Rate limits all reads from connections to peers. Each limiter token
// represents one byte. The Limiter's burst must be bigger than the
// largest Read performed on a the underlying rate-limiting io.Reader
// minus one. This is likely to be the larger of the main read loop buffer
// (~4096), and the requested chunk size (~16KiB, see
// TorrentSpec.ChunkSize).
DownloadRateLimiter *rate.Limiter
HeaderObfuscationPolicy HeaderObfuscationPolicy
// The crypto methods to offer when initiating connections with header obfuscation.
CryptoProvides mse.CryptoMethod
// Chooses the crypto method to use when receiving connections with header obfuscation.
CryptoSelector mse.CryptoSelector
Error logging // standard logging for errors, defaults to stderr
Warn logging // warn logging
Logger logging // informational logging
Debug logging // debug logging, defaults to discard
// HTTPProxy defines proxy for HTTP requests.
// Format: func(*Request) (*url.URL, error),
// or result of http.ProxyURL(HTTPProxy).
// By default, it is composed from ClientConfig.ProxyURL,
// if not set explicitly in ClientConfig struct
HTTPProxy func(*http.Request) (*url.URL, error)
// HTTPUserAgent changes default UserAgent for HTTP requests
HTTPUserAgent string
// Peer dial timeout to use when there are limited peers.
NominalDialTimeout time.Duration
// Minimum peer dial timeout to use (even if we have lots of peers).
MinDialTimeout time.Duration
// Maximum number of peer addresses in reserve.
TorrentPeersHighWater int
// Minumum number of peers before effort is made to obtain more peers.
TorrentPeersLowWater int
ConnTracker *conntrack.Instance
Handshaker connections.Handshaker
ConnectionClosed func(ih int160.T, stats ConnStats, remaining int)
// contains filtered or unexported fields
}
ClientConfig not safe to modify this after it's given to a Client.
func NewDefaultClientConfig ¶
func NewDefaultClientConfig(mdstore MetadataStore, store storage.ClientImpl, options ...ClientConfigOption) *ClientConfig
NewDefaultClientConfig default client configuration.
func (*ClientConfig) AnnounceRequest ¶
func (cfg *ClientConfig) AnnounceRequest(s *Client) tracker.Announce
func (*ClientConfig) Storage ¶
func (cfg *ClientConfig) Storage() storage.ClientImpl
type ClientConfigOption ¶
type ClientConfigOption func(*ClientConfig)
ClientConfigOption options for the client configuration
func ClientConfigAcceptLimit ¶
func ClientConfigAcceptLimit(l *rate.Limiter) ClientConfigOption
specify the global capacity for accepting inbound connections
func ClientConfigCacheDirectory ¶
func ClientConfigCacheDirectory(s string) ClientConfigOption
func ClientConfigCompose ¶
func ClientConfigCompose(options ...ClientConfigOption) ClientConfigOption
func ClientConfigConnectionClosed ¶
func ClientConfigConnectionClosed(fn func(ih int160.T, stats ConnStats, remaining int)) ClientConfigOption
func ClientConfigDebugLogger ¶
func ClientConfigDebugLogger(l logging) ClientConfigOption
func ClientConfigDialPoolSize ¶
func ClientConfigDialPoolSize[T constraints.Integer](n T) ClientConfigOption
specify the number of routines for dialing peers
func ClientConfigDialRateLimit ¶
func ClientConfigDialRateLimit(l *rate.Limiter) ClientConfigOption
func ClientConfigDialTimeouts ¶
func ClientConfigDialTimeouts(healthy, starving time.Duration) ClientConfigOption
specify dialing timeouts healthy timeout for when the the torrent has sufficient peers connected. and starving when it lacks peers. defaults are 4 and 16 respectively. generally, when starving you'll want to be more forgiving and set a larger timeout.
func ClientConfigDialer ¶
func ClientConfigDialer(d netx.Dialer) ClientConfigOption
func ClientConfigDownloadLimit ¶
func ClientConfigDownloadLimit(l *rate.Limiter) ClientConfigOption
specify the global capacity for downloading pieces from peers.
func ClientConfigExtension ¶
func ClientConfigExtension(name pp.ExtensionName) ClientConfigOption
func ClientConfigExtensionBits ¶
func ClientConfigExtensionBits(bits ...uint) ClientConfigOption
change what extension bits are set.
func ClientConfigFirewall ¶
func ClientConfigFirewall(fw connections.FirewallStateful) ClientConfigOption
func ClientConfigHTTPUserAgent ¶
func ClientConfigHTTPUserAgent(s string) ClientConfigOption
func ClientConfigHandshakeTimeout ¶
func ClientConfigHandshakeTimeout(d time.Duration) ClientConfigOption
how long we should wait for handshakes
func ClientConfigIDPrefix ¶
func ClientConfigIDPrefix(prefix string) ClientConfigOption
peer id prefix for BEP20 implementation.
func ClientConfigInfoLogger ¶
func ClientConfigInfoLogger(l logging) ClientConfigOption
ClientConfigInfoLogger set the info logger
func ClientConfigMaxConnecting ¶
func ClientConfigMaxConnecting[T constraints.Integer](connecting T) ClientConfigOption
specify the limit to the number of peers a torrent will attempt to connect to concurrently.
func ClientConfigMaxOutstandingRequests ¶
func ClientConfigMaxOutstandingRequests(n int) ClientConfigOption
func ClientConfigMetadata ¶
func ClientConfigMetadata(b bool) ClientConfigOption
func ClientConfigPEX ¶
func ClientConfigPEX(b bool) ClientConfigOption
func ClientConfigPeerLimits ¶
func ClientConfigPeerLimits[T constraints.Integer](low, high T) ClientConfigOption
specify the low and high watermarks for torrent peering
func ClientConfigSeed ¶
func ClientConfigSeed(b bool) ClientConfigOption
ClientConfigSeed enable/disable seeding
func ClientConfigStorage ¶
func ClientConfigStorage(s storage.ClientImpl) ClientConfigOption
func ClientConfigStorageDir ¶
func ClientConfigStorageDir(dir string) ClientConfigOption
func ClientConfigUploadLimit ¶
func ClientConfigUploadLimit(l *rate.Limiter) ClientConfigOption
specify the global capacity for uploading pieces to peers.
type ClientOperation ¶
func ClientOperationClearIdleTorrents ¶
func ClientOperationClearIdleTorrents(idle func(Stats) bool) ClientOperation
type ConnStats ¶
type ConnStats struct {
// Total bytes on the wire. Includes handshakes and encryption.
BytesWritten count
BytesWrittenData count
BytesRead count
BytesReadData count
BytesReadUsefulData count
ChunksWritten count
ChunksRead count
ChunksReadUseful count
ChunksReadWasted count
MetadataChunksRead count
// Number of pieces data was written to, that subsequently passed verification.
PiecesDirtiedGood count
// Number of pieces data was written to, that subsequently failed
// verification. Note that a connection may not have been the sole dirtier
// of a piece.
PiecesDirtiedBad count
DHTAnnounce count
}
ConnStats various connection-level metrics. At the Torrent level these are aggregates. Chunks are messages with data payloads. Data is actual torrent content without any overhead. Useful is something we needed locally. Unwanted is something we didn't ask for (but may still be useful). Written is things sent to the peer, and Read is stuff received from them.
func (ConnStats) ResetTransferMetrics ¶
type File ¶
type File struct {
// contains filtered or unexported fields
}
File provides access to regions of torrent data that correspond to its files.
func (*File) BytesCompleted ¶
BytesCompleted number of bytes of the entire file we have completed. This is the sum of completed pieces, and dirtied chunks of incomplete pieces.
func (*File) DisplayPath ¶
DisplayPath the relative file path for a multi-file torrent, and the torrent name for a single-file torrent.
type HeaderObfuscationPolicy ¶
type HeaderObfuscationPolicy struct {
Required bool // Whether the value of Preferred is a strict requirement.
Preferred bool // Whether header obfuscation is preferred.
}
HeaderObfuscationPolicy ...
type Metadata ¶
type Metadata struct {
// The tiered tracker URIs.
Trackers []string
ID int160.T
InfoBytes []byte
// The name to use if the Name field from the Info isn't available.
DisplayName string
Webseeds []string
DHTNodes []string
// The chunk size to use for outbound requests. Defaults to 16KiB if not
// set.
ChunkSize uint64
Storage storage.ClientImpl
}
Metadata specifies the metadata of a torrent for adding to a client. There are helpers for magnet URIs and torrent metainfo files.
func NewFromFile ¶
NewFromFile convience method to create a torrent directly from a file.
func NewFromInfo ¶
NewFromInfo creates a torrent from metainfo.Info
func NewFromInfoFile ¶
NewFromMetaInfoFile loads torrent info stored in a file.
func NewFromMagnet ¶
NewFromMagnet creates a torrent from a magnet uri.
func NewFromMetaInfo ¶
NewFromMetaInfo create a torrent from metainfo
func NewFromMetaInfoFile ¶
NewFromMetaInfoFile loads torrent metadata stored in a file.
func NewFromMetaInfoReader ¶
type MetadataStore ¶
type Option ¶
type Option func(*Metadata)
Option for the torrent.
func OptionChunk ¶
func OptionChunk[T constraints.Integer](s T) Option
OptionChunk sets the size of the chunks to use for outbound requests
func OptionDisplayName ¶
OptionDisplayName set the display name for the torrent.
func OptionNodes ¶
OptionNodes supplimental nodes to add to the dht of the client.
func OptionPublicTrackers ¶
func OptionResetTrackers ¶
OptionTrackers set the trackers for the torrent.
func OptionStorage ¶
func OptionStorage(s storage.ClientImpl) Option
OptionStorage set the storage implementation for the torrent.
func OptionTrackers ¶
OptionTrackers add the trackers to the torrent.
func OptionWebseeds ¶
OptionWebseeds set the webseed hosts for the torrent.
type Peer ¶
type Peer struct {
ID int160.T
netip.AddrPort
btprotocol.PexPeerFlags
LastAttempt time.Time
Attempts uint64
Source peerSource
SupportsEncryption bool // Peer is known to support encryption.
Trusted bool // Whether we can ignore poor or bad behaviour from the peer.
}
Peer connection info, handed about publicly.
func NewPeerDeprecated ¶
func NewPeersFromURI ¶
generate a peer from a uri in the form of: p0000000000000000000000000000000000000000://127.0.0.1:3196 aka: p{nodeID}://ip:port
func (*Peer) FromPex ¶
func (me *Peer) FromPex(na krpc.NodeAddr, fs btprotocol.PexPeerFlags)
FromPex generate Peer from peer exchange
type PeerOption ¶
type PeerOption func(*Peer)
func PeerOptionEncrypted ¶
func PeerOptionEncrypted(b bool) PeerOption
func PeerOptionSource ¶
func PeerOptionSource(src peerSource) PeerOption
func PeerOptionTrusted ¶
func PeerOptionTrusted(b bool) PeerOption
type Peers ¶
type Peers []Peer
func TrackerAnnounceOnce ¶
func (*Peers) AppendFromPex ¶
func (me *Peers) AppendFromPex(nas []krpc.NodeAddr, fs []btprotocol.PexPeerFlags)
type Stats ¶
type Stats struct {
// Aggregates stats over all connections past and present. Some values may
// not have much meaning in the aggregate context.
ConnStats
// metrics marking the progress of the torrent
// these are in chunks.
Missing int
Outstanding int
Unverified int
Failed int
Completed int
// Ordered by expected descending quantities (if all is well).
MaximumAllowedPeers int
TotalPeers int
PendingPeers int
ActivePeers int
HalfOpenPeers int
Seeders int
Seeding bool
LastConnection time.Time
}
Stats high level stats about the torrent.
type Torrent ¶
type Torrent interface {
Metadata() Metadata
Tune(...Tuner) error
Stats() Stats
BytesCompleted() int64 // TODO: maybe should be pulled from torrent, it has a reference to the storage implementation. or maybe part of the Stats call?
Info() *metainfo.Info // TODO: remove, this should be pulled from Metadata()
GotInfo() <-chan struct{} // TODO: remove, torrents should never be returned if they don't have the meta info.
Storage() storage.TorrentImpl // temporary replacement for reader.
}
Torrent represents the state of a torrent within a client. interface is currently being used to ease the transition of to a cleaner API. Many methods should not be called before the info is available, see .Info and .GotInfo.
type Tuner ¶
type Tuner func(*torrent) error
Tuner runtime tuning of an actively running torrent.
func TuneAnnounceOnce ¶
func TuneAnnounceOnce(options ...tracker.AnnounceOption) Tuner
Announce to trackers looking for at least one successful request that returns peers.
func TuneClientPeer ¶
TuneClientPeer adds a trusted, pending peer for each of the Client's addresses. used for tests.
func TuneDownloadRange ¶
mark missing the provided range of bytes.
func TuneMaxConnections ¶
TuneMaxConnections adjust the maximum connections allowed for a torrent.
func TunePublicTrackers ¶
func TuneReadAnnounce ¶
func TuneReadBytesRemaining ¶
func TuneReadHashID ¶
func TuneReadPort ¶
func TuneReadUserAgent ¶
func TuneResetTrackingStats ¶
Reset tracking data for tracker events
func TuneSubscribe ¶
func TuneSubscribe(sub *pubsub.Subscription) Tuner
The subscription emits as (int) the index of pieces as their state changes. A state change is when the PieceState for a piece alters in value.
func TuneVerifyRange ¶
Verify the provided byte range (expanding as needed to match piece boundaries). will block.
func TuneVerifySample ¶
Verify a random selection of n pieces. will block until complete blocks. if any of the sampled pieces failed it'll perform a full verify. it always checks the first and last piece regardless of the random set, as a result at most n+2 pieces will be verified. this makes it easy to test certain behaviors live. NOTE: torrents with a low completed rate will almost always performa full verify. but since there will also be a smaller amount of data on disk this is a fair trade off.
Source Files
¶
- announce.dht.go
- autobind.go
- bep40.go
- bitmap.storage.go
- bitqueue.go
- chunks.go
- client.go
- config.go
- conn_stats.go
- connection.go
- connection.reader.go
- connection.writer.go
- deadlineio.go
- digests.go
- doc.go
- errors.go
- file.go
- global.go
- hacks.go
- logging.go
- metadata.cache.go
- metadata.go
- misc.go
- peer.go
- peer_pool.go
- peers.go
- pex.go
- ratelimitreader.go
- reader.go
- socket.go
- torrent.cache.go
- torrent.go
- torrent.stats.go
- tracker.event.go
- worst_conns.go
Directories
¶
| Path | Synopsis |
|---|---|
|
Package autobind for automically binding on the local server this package is only for convience and it's suggested to use torrent.NewSocketsBind instead.
|
Package autobind for automically binding on the local server this package is only for convience and it's suggested to use torrent.NewSocketsBind instead. |
|
Package bep0051 implements DHT infohash indexing https://www.bittorrent.org/beps/bep_0051.html
|
Package bep0051 implements DHT infohash indexing https://www.bittorrent.org/beps/bep_0051.html |
|
Package dht implements a Distributed Hash Table (DHT) part of the BitTorrent protocol, as specified by BEP 5: http://www.bittorrent.org/beps/bep_0005.html
|
Package dht implements a Distributed Hash Table (DHT) part of the BitTorrent protocol, as specified by BEP 5: http://www.bittorrent.org/beps/bep_0005.html |
|
internal
|
|
|
chansync
Package chansync is cloned from github.com/anacrolix/chansync to reduce dependency tree.
|
Package chansync is cloned from github.com/anacrolix/chansync to reduce dependency tree. |
|
envx
Package envx provides utility functions for extracting information from environment variables
|
Package envx provides utility functions for extracting information from environment variables |
|
errorsx
Package errorsx provides simple error handling primitives.
|
Package errorsx provides simple error handling primitives. |
|
langx
Package langx provides small utility functions to extend the standard golang language.
|
Package langx provides small utility functions to extend the standard golang language. |
|
testutil
Package testutil contains stuff for testing torrent-related behaviour.
|
Package testutil contains stuff for testing torrent-related behaviour. |
|
Package iplist handles the P2P Plaintext Format described by https://en.wikipedia.org/wiki/PeerGuardian#P2P_plaintext_format.
|
Package iplist handles the P2P Plaintext Format described by https://en.wikipedia.org/wiki/PeerGuardian#P2P_plaintext_format. |
|
cmd/pack-blocklist
command
Takes P2P blocklist text format in stdin, and outputs the packed format from the iplist package.
|
Takes P2P blocklist text format in stdin, and outputs the packed format from the iplist package. |
|
Package logonce implements an io.Writer facade that only performs distinct writes.
|
Package logonce implements an io.Writer facade that only performs distinct writes. |
|
cmd/mse
command
|
|
|
Package sockets implements examples of how to write sockets for the torrent client.
|
Package sockets implements examples of how to write sockets for the torrent client. |
|
Package storage implements storage backends for package torrent.
|
Package storage implements storage backends for package torrent. |
|
Package upnp implements UPnP InternetGatewayDevice discovery, querying, and port mapping.
|
Package upnp implements UPnP InternetGatewayDevice discovery, querying, and port mapping. |
|
util
|
|
|
dirwatch
Package dirwatch provides filesystem-notification based tracking of torrent info files and magnet URIs in a directory.
|
Package dirwatch provides filesystem-notification based tracking of torrent info files and magnet URIs in a directory. |
|
x
|
|