2015-04-06 21:04:18 +08:00
|
|
|
// Downloads torrents from the command-line.
|
2013-09-26 17:49:15 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2013-11-04 21:07:28 +08:00
|
|
|
"fmt"
|
2013-09-26 17:49:15 +08:00
|
|
|
"log"
|
2013-09-29 06:11:24 +08:00
|
|
|
"net"
|
2013-11-04 21:07:28 +08:00
|
|
|
"net/http"
|
|
|
|
"os"
|
2014-06-26 22:57:07 +08:00
|
|
|
"strings"
|
2015-03-25 14:32:42 +08:00
|
|
|
"time"
|
|
|
|
|
2015-01-29 11:51:23 +08:00
|
|
|
_ "github.com/anacrolix/envpprof"
|
2015-11-05 20:21:39 +08:00
|
|
|
"github.com/anacrolix/tagflag"
|
2015-03-26 14:18:08 +08:00
|
|
|
"github.com/dustin/go-humanize"
|
2015-11-22 15:45:06 +08:00
|
|
|
"github.com/gosuri/uiprogress"
|
2014-03-20 13:58:09 +08:00
|
|
|
|
2015-03-20 13:37:44 +08:00
|
|
|
"github.com/anacrolix/torrent"
|
2015-04-28 13:24:17 +08:00
|
|
|
"github.com/anacrolix/torrent/metainfo"
|
2016-03-28 18:57:04 +08:00
|
|
|
"github.com/anacrolix/torrent/storage"
|
2013-09-26 17:49:15 +08:00
|
|
|
)
|
|
|
|
|
2015-03-25 12:41:15 +08:00
|
|
|
func resolvedPeerAddrs(ss []string) (ret []torrent.Peer, err error) {
|
|
|
|
for _, s := range ss {
|
|
|
|
var addr *net.TCPAddr
|
|
|
|
addr, err = net.ResolveTCPAddr("tcp", s)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ret = append(ret, torrent.Peer{
|
|
|
|
IP: addr.IP,
|
|
|
|
Port: addr.Port,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return
|
2015-03-20 20:18:32 +08:00
|
|
|
}
|
|
|
|
|
2016-04-03 16:40:43 +08:00
|
|
|
func torrentBar(t *torrent.Torrent) {
|
2015-11-22 15:45:06 +08:00
|
|
|
bar := uiprogress.AddBar(1)
|
|
|
|
bar.AppendCompleted()
|
|
|
|
bar.AppendFunc(func(*uiprogress.Bar) (ret string) {
|
|
|
|
select {
|
|
|
|
case <-t.GotInfo():
|
|
|
|
default:
|
|
|
|
return "getting info"
|
2015-03-25 14:32:42 +08:00
|
|
|
}
|
2015-11-22 15:45:06 +08:00
|
|
|
if t.Seeding() {
|
|
|
|
return "seeding"
|
|
|
|
} else if t.BytesCompleted() == t.Info().TotalLength() {
|
|
|
|
return "completed"
|
|
|
|
} else {
|
|
|
|
return fmt.Sprintf("downloading (%s/%s)", humanize.Bytes(uint64(t.BytesCompleted())), humanize.Bytes(uint64(t.Info().TotalLength())))
|
2015-03-25 14:32:42 +08:00
|
|
|
}
|
2015-11-22 15:45:06 +08:00
|
|
|
})
|
|
|
|
bar.PrependFunc(func(*uiprogress.Bar) string {
|
2016-01-06 09:19:49 +08:00
|
|
|
return t.Name()
|
2015-11-22 15:45:06 +08:00
|
|
|
})
|
|
|
|
go func() {
|
|
|
|
<-t.GotInfo()
|
|
|
|
bar.Total = int(t.Info().TotalLength())
|
|
|
|
for {
|
|
|
|
bc := t.BytesCompleted()
|
|
|
|
bar.Set(int(bc))
|
|
|
|
time.Sleep(time.Second)
|
2015-10-23 09:42:19 +08:00
|
|
|
}
|
2015-11-22 15:45:06 +08:00
|
|
|
}()
|
|
|
|
}
|
2015-03-25 12:41:15 +08:00
|
|
|
|
2015-11-22 15:45:06 +08:00
|
|
|
func addTorrents(client *torrent.Client) {
|
|
|
|
for _, arg := range opts.Torrent {
|
2016-04-03 16:40:43 +08:00
|
|
|
t := func() *torrent.Torrent {
|
2014-12-01 17:37:33 +08:00
|
|
|
if strings.HasPrefix(arg, "magnet:") {
|
|
|
|
t, err := client.AddMagnet(arg)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("error adding magnet: %s", err)
|
|
|
|
}
|
|
|
|
return t
|
|
|
|
} else {
|
|
|
|
metaInfo, err := metainfo.LoadFromFile(arg)
|
|
|
|
if err != nil {
|
2015-11-05 20:21:39 +08:00
|
|
|
fmt.Fprintf(os.Stderr, "error loading torrent file %q: %s\n", arg, err)
|
|
|
|
os.Exit(1)
|
2014-12-01 17:37:33 +08:00
|
|
|
}
|
|
|
|
t, err := client.AddTorrent(metaInfo)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
return t
|
2014-06-26 22:57:07 +08:00
|
|
|
}
|
2014-12-01 17:37:33 +08:00
|
|
|
}()
|
2015-11-22 15:45:06 +08:00
|
|
|
torrentBar(t)
|
2015-11-05 20:21:39 +08:00
|
|
|
err := t.AddPeers(func() (ret []torrent.Peer) {
|
|
|
|
for _, ta := range opts.TestPeer {
|
|
|
|
ret = append(ret, torrent.Peer{
|
|
|
|
IP: ta.IP,
|
|
|
|
Port: ta.Port,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}())
|
2013-09-29 06:11:24 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2014-12-01 17:37:33 +08:00
|
|
|
go func() {
|
2015-04-29 22:30:19 +08:00
|
|
|
<-t.GotInfo()
|
2014-12-01 17:37:33 +08:00
|
|
|
t.DownloadAll()
|
|
|
|
}()
|
2013-09-26 17:49:15 +08:00
|
|
|
}
|
2015-11-22 15:45:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var opts struct {
|
2016-04-18 19:30:28 +08:00
|
|
|
Mmap bool `help:"memory-map torrent data"`
|
|
|
|
TestPeer []*net.TCPAddr `short:"p" help:"addresses of some starting peers"`
|
|
|
|
Seed bool `help:"seed after download is complete"`
|
|
|
|
tagflag.StartPos
|
|
|
|
Torrent []string `type:"pos" arity:"+" help:"torrent file path or magnet uri"`
|
2015-11-22 15:45:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
log.SetFlags(log.LstdFlags | log.Lshortfile)
|
2016-04-18 19:30:28 +08:00
|
|
|
tagflag.Parse(&opts)
|
|
|
|
var clientConfig torrent.Config
|
2015-11-22 15:45:06 +08:00
|
|
|
if opts.Mmap {
|
2016-03-28 18:57:04 +08:00
|
|
|
clientConfig.DefaultStorage = storage.NewMMap("")
|
2015-03-25 14:32:42 +08:00
|
|
|
}
|
2015-11-22 15:45:06 +08:00
|
|
|
|
|
|
|
client, err := torrent.NewClient(&clientConfig)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("error creating client: %s", err)
|
|
|
|
}
|
|
|
|
defer client.Close()
|
|
|
|
http.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
|
|
|
|
client.WriteStatus(w)
|
|
|
|
})
|
|
|
|
uiprogress.Start()
|
|
|
|
addTorrents(client)
|
|
|
|
if client.WaitAll() {
|
|
|
|
log.Print("downloaded ALL the torrents")
|
|
|
|
} else {
|
|
|
|
log.Fatal("y u no complete torrents?!")
|
|
|
|
}
|
2015-11-05 20:21:39 +08:00
|
|
|
if opts.Seed {
|
2014-05-21 15:38:09 +08:00
|
|
|
select {}
|
|
|
|
}
|
2013-09-26 17:49:15 +08:00
|
|
|
}
|