github.com/JFJun/bsc@v1.0.0/cmd/devp2p/main.go (about)

     1  // Copyright 2019 The go-ethereum Authors
     2  // This file is part of go-ethereum.
     3  //
     4  // go-ethereum is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // go-ethereum is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU General Public License
    15  // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package main
    18  
    19  import (
    20  	"fmt"
    21  	"os"
    22  	"path/filepath"
    23  	"sort"
    24  
    25  	"github.com/JFJun/bsc/internal/debug"
    26  	"github.com/JFJun/bsc/p2p/enode"
    27  	"github.com/JFJun/bsc/params"
    28  	"gopkg.in/urfave/cli.v1"
    29  )
    30  
    31  var (
    32  	// Git information set by linker when building with ci.go.
    33  	gitCommit string
    34  	gitDate   string
    35  	app       = &cli.App{
    36  		Name:        filepath.Base(os.Args[0]),
    37  		Usage:       "go-ethereum devp2p tool",
    38  		Version:     params.VersionWithCommit(gitCommit, gitDate),
    39  		Writer:      os.Stdout,
    40  		HideVersion: true,
    41  	}
    42  )
    43  
    44  func init() {
    45  	// Set up the CLI app.
    46  	app.Flags = append(app.Flags, debug.Flags...)
    47  	app.Before = func(ctx *cli.Context) error {
    48  		return debug.Setup(ctx)
    49  	}
    50  	app.After = func(ctx *cli.Context) error {
    51  		debug.Exit()
    52  		return nil
    53  	}
    54  	app.CommandNotFound = func(ctx *cli.Context, cmd string) {
    55  		fmt.Fprintf(os.Stderr, "No such command: %s\n", cmd)
    56  		os.Exit(1)
    57  	}
    58  	// Add subcommands.
    59  	app.Commands = []cli.Command{
    60  		enrdumpCommand,
    61  		discv4Command,
    62  		discv5Command,
    63  		dnsCommand,
    64  		nodesetCommand,
    65  	}
    66  }
    67  
    68  func main() {
    69  	exit(app.Run(os.Args))
    70  }
    71  
    72  // commandHasFlag returns true if the current command supports the given flag.
    73  func commandHasFlag(ctx *cli.Context, flag cli.Flag) bool {
    74  	flags := ctx.FlagNames()
    75  	sort.Strings(flags)
    76  	i := sort.SearchStrings(flags, flag.GetName())
    77  	return i != len(flags) && flags[i] == flag.GetName()
    78  }
    79  
    80  // getNodeArg handles the common case of a single node descriptor argument.
    81  func getNodeArg(ctx *cli.Context) *enode.Node {
    82  	if ctx.NArg() != 1 {
    83  		exit("missing node as command-line argument")
    84  	}
    85  	n, err := parseNode(ctx.Args()[0])
    86  	if err != nil {
    87  		exit(err)
    88  	}
    89  	return n
    90  }
    91  
    92  func exit(err interface{}) {
    93  	if err == nil {
    94  		os.Exit(0)
    95  	}
    96  	fmt.Fprintln(os.Stderr, err)
    97  	os.Exit(1)
    98  }