2018-03-24 00:18:00 +01:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2018-06-15 04:30:37 +02:00
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
"os/signal"
|
|
|
|
"strconv"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
|
2018-03-24 00:18:00 +01:00
|
|
|
"github.com/lbryio/reflector.go/dht"
|
2018-06-14 17:48:02 +02:00
|
|
|
"github.com/lbryio/reflector.go/dht/bits"
|
2018-03-24 00:18:00 +01:00
|
|
|
|
2018-06-15 04:30:37 +02:00
|
|
|
log "github.com/sirupsen/logrus"
|
2018-03-24 00:18:00 +01:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2018-06-15 04:30:37 +02:00
|
|
|
var dhtPort int
|
|
|
|
|
2018-03-24 00:18:00 +01:00
|
|
|
func init() {
|
|
|
|
var cmd = &cobra.Command{
|
2018-07-10 23:30:47 +02:00
|
|
|
Use: "dht [bootstrap|connect]",
|
2018-06-15 04:30:37 +02:00
|
|
|
Short: "Run dht node",
|
|
|
|
ValidArgs: []string{"start", "bootstrap"},
|
|
|
|
Args: argFuncs(cobra.ExactArgs(1), cobra.OnlyValidArgs),
|
|
|
|
Run: dhtCmd,
|
2018-03-24 00:18:00 +01:00
|
|
|
}
|
2018-06-15 04:30:37 +02:00
|
|
|
cmd.PersistentFlags().IntVar(&dhtPort, "port", 4567, "Port to start DHT on")
|
2018-05-30 03:38:55 +02:00
|
|
|
rootCmd.AddCommand(cmd)
|
2018-03-24 00:18:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func dhtCmd(cmd *cobra.Command, args []string) {
|
2018-06-15 04:30:37 +02:00
|
|
|
if args[0] == "bootstrap" {
|
2018-06-19 19:47:13 +02:00
|
|
|
node := dht.NewBootstrapNode(bits.Rand(), 1*time.Millisecond, 1*time.Minute)
|
2018-06-15 04:30:37 +02:00
|
|
|
|
|
|
|
listener, err := net.ListenPacket(dht.Network, "127.0.0.1:"+strconv.Itoa(dhtPort))
|
|
|
|
checkErr(err)
|
|
|
|
conn := listener.(*net.UDPConn)
|
|
|
|
|
|
|
|
err = node.Connect(conn)
|
|
|
|
checkErr(err)
|
|
|
|
|
|
|
|
interruptChan := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(interruptChan, os.Interrupt, syscall.SIGTERM)
|
|
|
|
<-interruptChan
|
|
|
|
log.Printf("shutting down bootstrap node")
|
|
|
|
node.Shutdown()
|
|
|
|
} else {
|
|
|
|
log.Fatal("not implemented")
|
2018-07-10 23:30:47 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
|
2018-04-25 00:12:17 +02:00
|
|
|
}
|
2018-03-24 00:18:00 +01:00
|
|
|
}
|