2018-11-07 21:50:43 +00:00
|
|
|
// VulcanizeDB
|
2019-03-12 15:46:42 +00:00
|
|
|
// Copyright © 2019 Vulcanize
|
2018-11-07 21:50:43 +00:00
|
|
|
|
|
|
|
// 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/>.
|
2018-07-17 21:23:07 +00:00
|
|
|
|
2018-01-25 19:21:55 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2019-01-23 18:44:09 +00:00
|
|
|
"fmt"
|
2019-02-06 12:27:30 +00:00
|
|
|
"strings"
|
2018-09-19 15:14:49 +00:00
|
|
|
"time"
|
2018-01-25 19:21:55 +00:00
|
|
|
|
2019-01-23 06:55:26 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethclient"
|
2018-09-19 15:14:49 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
2018-11-21 04:47:01 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2018-01-25 19:21:55 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/viper"
|
2018-11-15 18:53:08 +00:00
|
|
|
|
2018-02-08 16:12:08 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/config"
|
2018-09-19 15:14:49 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth/client"
|
|
|
|
vRpc "github.com/vulcanize/vulcanizedb/pkg/geth/converters/rpc"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth/node"
|
2018-01-25 19:21:55 +00:00
|
|
|
)
|
|
|
|
|
2018-02-08 16:12:08 +00:00
|
|
|
var (
|
2019-05-02 16:32:03 +00:00
|
|
|
cfgFile string
|
|
|
|
databaseConfig config.Database
|
|
|
|
genConfig config.Plugin
|
|
|
|
ipc string
|
|
|
|
levelDbPath string
|
2019-04-29 20:21:32 +00:00
|
|
|
queueRecheckInterval time.Duration
|
2019-05-02 16:32:03 +00:00
|
|
|
startingBlockNumber int64
|
|
|
|
storageDiffsPath string
|
|
|
|
syncAll bool
|
|
|
|
endingBlockNumber int64
|
|
|
|
recheckHeadersArg bool
|
2019-07-19 01:58:01 +00:00
|
|
|
SubCommand string
|
|
|
|
LogWithCommand log.Entry
|
2019-10-01 15:09:00 +00:00
|
|
|
storageDiffsSource string
|
2018-02-08 16:12:08 +00:00
|
|
|
)
|
2018-01-25 19:21:55 +00:00
|
|
|
|
2018-09-19 15:14:49 +00:00
|
|
|
const (
|
2019-05-02 16:32:03 +00:00
|
|
|
pollingInterval = 7 * time.Second
|
|
|
|
validationWindow = 15
|
2018-09-19 15:14:49 +00:00
|
|
|
)
|
|
|
|
|
2018-01-25 19:21:55 +00:00
|
|
|
var rootCmd = &cobra.Command{
|
2018-01-25 21:46:55 +00:00
|
|
|
Use: "vulcanizedb",
|
2019-06-26 00:24:56 +00:00
|
|
|
PersistentPreRun: initFuncs,
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func Execute() {
|
2019-03-05 10:30:22 +00:00
|
|
|
log.Info("----- Starting vDB -----")
|
2018-01-25 19:21:55 +00:00
|
|
|
if err := rootCmd.Execute(); err != nil {
|
2018-11-21 04:47:01 +00:00
|
|
|
log.Fatal(err)
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-26 00:24:56 +00:00
|
|
|
func initFuncs(cmd *cobra.Command, args []string) {
|
2019-07-19 01:58:01 +00:00
|
|
|
setViperConfigs()
|
2019-07-17 23:07:55 +00:00
|
|
|
logLvlErr := logLevel()
|
2019-07-18 07:21:40 +00:00
|
|
|
if logLvlErr != nil {
|
|
|
|
log.Fatal("Could not set log level: ", logLvlErr)
|
|
|
|
}
|
2019-06-26 00:24:56 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-07-19 01:58:01 +00:00
|
|
|
func setViperConfigs() {
|
2018-01-25 19:21:55 +00:00
|
|
|
ipc = viper.GetString("client.ipcpath")
|
2018-05-02 16:17:02 +00:00
|
|
|
levelDbPath = viper.GetString("client.leveldbpath")
|
2019-01-28 22:52:47 +00:00
|
|
|
storageDiffsPath = viper.GetString("filesystem.storageDiffsPath")
|
2019-10-01 15:09:00 +00:00
|
|
|
storageDiffsSource = viper.GetString("storageDiffs.source")
|
2018-01-25 19:21:55 +00:00
|
|
|
databaseConfig = config.Database{
|
|
|
|
Name: viper.GetString("database.name"),
|
|
|
|
Hostname: viper.GetString("database.hostname"),
|
|
|
|
Port: viper.GetInt("database.port"),
|
2018-06-22 15:28:34 +00:00
|
|
|
User: viper.GetString("database.user"),
|
|
|
|
Password: viper.GetString("database.password"),
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
viper.Set("database.config", databaseConfig)
|
|
|
|
}
|
|
|
|
|
2019-07-11 23:57:37 +00:00
|
|
|
func logLevel() error {
|
2019-06-26 00:24:56 +00:00
|
|
|
lvl, err := log.ParseLevel(viper.GetString("log.level"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.SetLevel(lvl)
|
2019-07-11 23:57:37 +00:00
|
|
|
if lvl > log.InfoLevel {
|
|
|
|
log.SetReportCaller(true)
|
|
|
|
}
|
2019-06-26 00:24:56 +00:00
|
|
|
log.Info("Log level set to ", lvl.String())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-01-25 19:21:55 +00:00
|
|
|
func init() {
|
|
|
|
cobra.OnInitialize(initConfig)
|
2019-02-06 12:27:30 +00:00
|
|
|
// When searching for env variables, replace dots in config keys with underscores
|
|
|
|
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
|
|
|
|
viper.AutomaticEnv()
|
2018-01-25 19:21:55 +00:00
|
|
|
|
2019-01-23 18:44:09 +00:00
|
|
|
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file location")
|
2018-01-25 21:46:55 +00:00
|
|
|
rootCmd.PersistentFlags().String("database-name", "vulcanize_public", "database name")
|
|
|
|
rootCmd.PersistentFlags().Int("database-port", 5432, "database port")
|
|
|
|
rootCmd.PersistentFlags().String("database-hostname", "localhost", "database hostname")
|
2018-06-22 15:28:34 +00:00
|
|
|
rootCmd.PersistentFlags().String("database-user", "", "database user")
|
|
|
|
rootCmd.PersistentFlags().String("database-password", "", "database password")
|
2018-01-25 21:46:55 +00:00
|
|
|
rootCmd.PersistentFlags().String("client-ipcPath", "", "location of geth.ipc file")
|
2018-05-02 16:17:02 +00:00
|
|
|
rootCmd.PersistentFlags().String("client-levelDbPath", "", "location of levelDb chaindata")
|
2019-01-28 22:52:47 +00:00
|
|
|
rootCmd.PersistentFlags().String("filesystem-storageDiffsPath", "", "location of storage diffs csv file")
|
2019-10-01 15:09:00 +00:00
|
|
|
rootCmd.PersistentFlags().String("storageDiffs-source", "csv", "where to get the state diffs: csv or geth")
|
2019-01-25 08:59:23 +00:00
|
|
|
rootCmd.PersistentFlags().String("exporter-name", "exporter", "name of exporter plugin")
|
2019-06-26 00:24:56 +00:00
|
|
|
rootCmd.PersistentFlags().String("log-level", log.InfoLevel.String(), "Log level (trace, debug, info, warn, error, fatal, panic")
|
2018-01-25 19:21:55 +00:00
|
|
|
|
|
|
|
viper.BindPFlag("database.name", rootCmd.PersistentFlags().Lookup("database-name"))
|
|
|
|
viper.BindPFlag("database.port", rootCmd.PersistentFlags().Lookup("database-port"))
|
|
|
|
viper.BindPFlag("database.hostname", rootCmd.PersistentFlags().Lookup("database-hostname"))
|
2018-06-22 15:28:34 +00:00
|
|
|
viper.BindPFlag("database.user", rootCmd.PersistentFlags().Lookup("database-user"))
|
|
|
|
viper.BindPFlag("database.password", rootCmd.PersistentFlags().Lookup("database-password"))
|
2018-01-25 19:21:55 +00:00
|
|
|
viper.BindPFlag("client.ipcPath", rootCmd.PersistentFlags().Lookup("client-ipcPath"))
|
2018-05-02 16:17:02 +00:00
|
|
|
viper.BindPFlag("client.levelDbPath", rootCmd.PersistentFlags().Lookup("client-levelDbPath"))
|
2019-01-28 22:52:47 +00:00
|
|
|
viper.BindPFlag("filesystem.storageDiffsPath", rootCmd.PersistentFlags().Lookup("filesystem-storageDiffsPath"))
|
2019-10-01 15:09:00 +00:00
|
|
|
viper.BindPFlag("storageDiffs.source", rootCmd.PersistentFlags().Lookup("storageDiffs-source"))
|
2019-01-25 08:59:23 +00:00
|
|
|
viper.BindPFlag("exporter.fileName", rootCmd.PersistentFlags().Lookup("exporter-name"))
|
2019-06-26 00:24:56 +00:00
|
|
|
viper.BindPFlag("log.level", rootCmd.PersistentFlags().Lookup("log-level"))
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func initConfig() {
|
|
|
|
if cfgFile != "" {
|
|
|
|
viper.SetConfigFile(cfgFile)
|
|
|
|
} else {
|
2019-01-23 18:44:09 +00:00
|
|
|
noConfigError := "No config file passed with --config flag"
|
|
|
|
fmt.Println("Error: ", noConfigError)
|
|
|
|
log.Fatal(noConfigError)
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := viper.ReadInConfig(); err == nil {
|
2018-11-21 04:47:01 +00:00
|
|
|
log.Printf("Using config file: %s\n\n", viper.ConfigFileUsed())
|
2019-01-23 18:44:09 +00:00
|
|
|
} else {
|
|
|
|
invalidConfigError := "Couldn't read config file"
|
2019-06-27 14:38:00 +00:00
|
|
|
formattedError := fmt.Sprintf("%s: %s", invalidConfigError, err.Error())
|
|
|
|
log.Fatal(formattedError)
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-19 15:14:49 +00:00
|
|
|
|
2019-07-19 01:58:01 +00:00
|
|
|
func getBlockChain() *geth.BlockChain {
|
2019-07-10 20:20:14 +00:00
|
|
|
rpcClient, ethClient := getClients()
|
|
|
|
vdbEthClient := client.NewEthClient(ethClient)
|
|
|
|
vdbNode := node.MakeNode(rpcClient)
|
|
|
|
transactionConverter := vRpc.NewRpcTransactionConverter(ethClient)
|
|
|
|
return geth.NewBlockChain(vdbEthClient, rpcClient, vdbNode, transactionConverter)
|
|
|
|
}
|
|
|
|
|
|
|
|
func getClients() (client.RpcClient, *ethclient.Client) {
|
2018-09-19 15:14:49 +00:00
|
|
|
rawRpcClient, err := rpc.Dial(ipc)
|
|
|
|
|
|
|
|
if err != nil {
|
2019-07-19 01:58:01 +00:00
|
|
|
LogWithCommand.Fatal(err)
|
2018-09-19 15:14:49 +00:00
|
|
|
}
|
|
|
|
rpcClient := client.NewRpcClient(rawRpcClient, ipc)
|
|
|
|
ethClient := ethclient.NewClient(rawRpcClient)
|
2019-07-10 20:20:14 +00:00
|
|
|
|
|
|
|
return rpcClient, ethClient
|
2018-09-19 15:14:49 +00:00
|
|
|
}
|