package commands import ( "context" "encoding/json" "fmt" "os" "os/signal" "path" "syscall" "github.com/ledgerwatch/turbo-geth/cmd/utils" "github.com/ledgerwatch/turbo-geth/core" "github.com/ledgerwatch/turbo-geth/internal/debug" "github.com/ledgerwatch/turbo-geth/log" "github.com/spf13/cobra" ) var ( genesisPath string genesis *core.Genesis ) func init() { utils.CobraFlags(rootCmd, append(debug.Flags, utils.MetricFlags...)) rootCmd.PersistentFlags().StringVar(&genesisPath, "genesis", "", "path to genesis.json file") } func rootContext() context.Context { ctx, cancel := context.WithCancel(context.Background()) go func() { ch := make(chan os.Signal, 1) signal.Notify(ch, os.Interrupt, syscall.SIGTERM) defer signal.Stop(ch) select { case <-ch: log.Info("Got interrupt, shutting down...") case <-ctx.Done(): } cancel() }() return ctx } var rootCmd = &cobra.Command{ Use: "state", Short: "state is a utility for Stateless ethereum clients", PersistentPreRun: func(cmd *cobra.Command, args []string) { if err := debug.SetupCobra(cmd); err != nil { panic(err) } genesis = core.DefaultGenesisBlock() if genesisPath != "" { genesis = genesisFromFile(genesisPath) } if chaindata == "" { chaindata = path.Join(datadir, "tg", "chaindata") } }, PersistentPostRun: func(cmd *cobra.Command, args []string) { debug.Exit() }, } func genesisFromFile(genesisPath string) *core.Genesis { file, err := os.Open(genesisPath) if err != nil { utils.Fatalf("Failed to read genesis file: %v", err) } defer file.Close() genesis := new(core.Genesis) if err := json.NewDecoder(file).Decode(genesis); err != nil { utils.Fatalf("invalid genesis file: %v", err) } return genesis } func Execute() { if err := rootCmd.ExecuteContext(rootContext()); err != nil { fmt.Println(err) os.Exit(1) } }