The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
woop/cmd/bootnode/main.go

86 lines
2.3 KiB

// bootnode provides peer discovery service to new node to connect to the p2p network
package main
import (
"context"
"flag"
"fmt"
"os"
"path"
"github.com/ethereum/go-ethereum/log"
"github.com/harmony-one/harmony/internal/utils"
"github.com/harmony-one/harmony/p2p"
"github.com/harmony-one/harmony/p2p/p2pimpl"
ds "github.com/ipfs/go-datastore"
dsync "github.com/ipfs/go-datastore/sync"
kaddht "github.com/libp2p/go-libp2p-kad-dht"
)
var (
version string
builtBy string
builtAt string
commit string
)
func printVersion(me string) {
fmt.Fprintf(os.Stderr, "Harmony (C) 2019. %v, version %v-%v (%v %v)\n", path.Base(me), version, commit, builtBy, builtAt)
os.Exit(0)
}
func main() {
ip := flag.String("ip", "127.0.0.1", "IP of the node")
port := flag.String("port", "9876", "port of the node.")
logFolder := flag.String("log_folder", "latest", "the folder collecting the logs of this execution")
logMaxSize := flag.Int("log_max_size", 100, "the max size in megabytes of the log file before it gets rotated")
keyFile := flag.String("key", "./.bnkey", "the private key file of the bootnode")
versionFlag := flag.Bool("version", false, "Output version info")
verbosity := flag.Int("verbosity", 5, "Logging verbosity: 0=silent, 1=error, 2=warn, 3=info, 4=debug, 5=detail (default: 5)")
logConn := flag.Bool("log_conn", false, "log incoming/outgoing connections")
flag.Parse()
if *versionFlag {
printVersion(os.Args[0])
}
// Logging setup
utils.SetLogContext(*port, *ip)
utils.SetLogVerbosity(log.Lvl(*verbosity))
filename := fmt.Sprintf("%v/bootnode-%v-%v.log", *logFolder, *ip, *port)
if err := utils.AddLogFile(filename, *logMaxSize); err != nil {
panic(err)
}
privKey, _, err := utils.LoadKeyFromFile(*keyFile)
if err != nil {
panic(err)
}
var selfPeer = p2p.Peer{IP: *ip, Port: *port}
host, err := p2pimpl.NewHost(&selfPeer, privKey)
if err != nil {
panic(err)
}
log.Info("bootnode", "BN_MA", fmt.Sprintf("/ip4/%s/tcp/%s/p2p/%s", *ip, *port, host.GetID().Pretty()))
if *logConn {
host.GetP2PHost().Network().Notify(utils.NewConnLogger(utils.GetLogInstance()))
}
dataStore := dsync.MutexWrap(ds.NewMapDatastore())
dht := kaddht.NewDHT(context.Background(), host.GetP2PHost(), dataStore)
if err := dht.Bootstrap(context.Background()); err != nil {
log.Error("failed to bootstrap DHT")
panic(err)
}
select {}
}