ipld-eth-state-snapshot/cmd/stateSnapshot.go

84 lines
3.0 KiB
Go
Raw Normal View History

2020-06-30 16:54:10 +00:00
// Copyright © 2020 Vulcanize, Inc
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package cmd
import (
2020-07-01 18:44:59 +00:00
"github.com/sirupsen/logrus"
2020-06-30 16:54:10 +00:00
"github.com/spf13/cobra"
2020-07-01 18:44:59 +00:00
"github.com/spf13/viper"
2021-12-14 06:50:19 +00:00
2020-07-01 18:44:59 +00:00
"github.com/vulcanize/eth-pg-ipfs-state-snapshot/pkg/snapshot"
2020-06-30 16:54:10 +00:00
)
// stateSnapshotCmd represents the stateSnapshot command
var stateSnapshotCmd = &cobra.Command{
Use: "stateSnapshot",
2020-07-01 18:44:59 +00:00
Short: "Extract the entire Ethereum state from leveldb and publish into PG-IPFS",
2020-07-15 04:43:11 +00:00
Long: `Usage
2020-06-30 16:54:10 +00:00
2020-07-15 04:43:11 +00:00
./eth-pg-ipfs-state-snapshot stateSnapshot --config={path to toml config file}`,
2020-06-30 16:54:10 +00:00
Run: func(cmd *cobra.Command, args []string) {
2020-07-01 18:44:59 +00:00
subCommand = cmd.CalledAs()
logWithCommand = *logrus.WithField("SubCommand", subCommand)
stateSnapshot()
2020-06-30 16:54:10 +00:00
},
}
2020-07-01 18:44:59 +00:00
func stateSnapshot() {
2021-12-14 06:50:19 +00:00
snapConfig := &snapshot.Config{}
2020-07-01 18:44:59 +00:00
snapConfig.Init()
2022-01-11 00:59:26 +00:00
pgDB, err := snapshot.NewPostgresDB(snapConfig.DB)
if err != nil {
logWithCommand.Fatal(err)
}
2022-01-11 05:37:27 +00:00
edb, err := snapshot.NewLevelDB(snapConfig.Eth)
if err != nil {
logWithCommand.Fatal(err)
}
snapshotService, err := snapshot.NewSnapshotService(edb, snapshot.NewPublisher(pgDB))
2020-07-01 18:44:59 +00:00
if err != nil {
logWithCommand.Fatal(err)
}
height := viper.GetInt64("snapshot.blockHeight")
workers := viper.GetUint("snapshot.workers")
if height < 0 {
2022-01-11 00:06:29 +00:00
if err := snapshotService.CreateLatestSnapshot(workers); err != nil {
logWithCommand.Fatal(err)
}
} else {
2022-01-11 00:06:29 +00:00
params := snapshot.SnapshotParams{Workers: workers, Height: uint64(height)}
2020-08-20 10:23:36 +00:00
if err := snapshotService.CreateSnapshot(params); err != nil {
logWithCommand.Fatal(err)
}
2020-07-01 18:44:59 +00:00
}
2020-07-15 04:43:11 +00:00
logWithCommand.Infof("state snapshot at height %d is complete", height)
2020-07-01 18:44:59 +00:00
}
2020-06-30 16:54:10 +00:00
func init() {
rootCmd.AddCommand(stateSnapshotCmd)
2020-08-03 15:46:35 +00:00
stateSnapshotCmd.PersistentFlags().String("leveldb-path", "", "path to primary datastore")
stateSnapshotCmd.PersistentFlags().String("ancient-path", "", "path to ancient datastore")
2020-07-01 18:44:59 +00:00
stateSnapshotCmd.PersistentFlags().String("block-height", "", "blockheight to extract state at")
stateSnapshotCmd.PersistentFlags().Int("workers", 0, "number of concurrent workers to use")
2020-06-30 16:54:10 +00:00
2020-07-01 18:44:59 +00:00
viper.BindPFlag("leveldb.path", stateSnapshotCmd.PersistentFlags().Lookup("leveldb-path"))
2020-08-03 15:46:35 +00:00
viper.BindPFlag("leveldb.ancient", stateSnapshotCmd.PersistentFlags().Lookup("ancient-path"))
2020-07-01 18:44:59 +00:00
viper.BindPFlag("snapshot.blockHeight", stateSnapshotCmd.PersistentFlags().Lookup("block-height"))
viper.BindPFlag("snapshot.workers", stateSnapshotCmd.PersistentFlags().Lookup("workers"))
2020-06-30 16:54:10 +00:00
}