2018-11-07 21:50:43 +00:00
|
|
|
// VulcanizeDB
|
2018-07-17 21:23:07 +00:00
|
|
|
// Copyright © 2018 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"
|
2018-01-25 19:21:55 +00:00
|
|
|
"os"
|
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 (
|
2018-05-02 16:17:02 +00:00
|
|
|
cfgFile string
|
|
|
|
databaseConfig config.Database
|
|
|
|
ipc string
|
|
|
|
levelDbPath string
|
|
|
|
startingBlockNumber int64
|
2019-01-28 22:52:47 +00:00
|
|
|
storageDiffsPath string
|
2018-05-07 15:41:02 +00:00
|
|
|
syncAll bool
|
2018-05-02 16:17:02 +00:00
|
|
|
endingBlockNumber int64
|
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 (
|
|
|
|
pollingInterval = 7 * time.Second
|
|
|
|
validationWindow = 15
|
|
|
|
)
|
|
|
|
|
2018-01-25 19:21:55 +00:00
|
|
|
var rootCmd = &cobra.Command{
|
2018-01-25 21:46:55 +00:00
|
|
|
Use: "vulcanizedb",
|
2018-01-25 19:21:55 +00:00
|
|
|
PersistentPreRun: database,
|
|
|
|
}
|
|
|
|
|
|
|
|
func Execute() {
|
|
|
|
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
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func database(cmd *cobra.Command, args []string) {
|
|
|
|
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")
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cobra.OnInitialize(initConfig)
|
|
|
|
|
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")
|
2018-09-04 20:10:15 +00:00
|
|
|
rootCmd.PersistentFlags().String("datadog-name", "vulcanize-test", "datadog service name")
|
2019-01-28 22:52:47 +00:00
|
|
|
rootCmd.PersistentFlags().String("filesystem-storageDiffsPath", "", "location of storage diffs csv file")
|
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"))
|
2018-09-04 20:10:15 +00:00
|
|
|
viper.BindPFlag("datadog.name", rootCmd.PersistentFlags().Lookup("datadog-name"))
|
2019-01-28 22:52:47 +00:00
|
|
|
viper.BindPFlag("filesystem.storageDiffsPath", rootCmd.PersistentFlags().Lookup("filesystem-storageDiffsPath"))
|
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)
|
|
|
|
os.Exit(1)
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-29 16:09:08 +00:00
|
|
|
// Config values from environment overrides file
|
|
|
|
viper.AutomaticEnv()
|
|
|
|
|
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"
|
|
|
|
fmt.Println("Error: ", invalidConfigError)
|
|
|
|
log.Fatal(invalidConfigError)
|
|
|
|
os.Exit(1)
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-19 15:14:49 +00:00
|
|
|
|
|
|
|
func getBlockChain() *geth.BlockChain {
|
|
|
|
rawRpcClient, err := rpc.Dial(ipc)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
rpcClient := client.NewRpcClient(rawRpcClient, ipc)
|
|
|
|
ethClient := ethclient.NewClient(rawRpcClient)
|
|
|
|
vdbEthClient := client.NewEthClient(ethClient)
|
|
|
|
vdbNode := node.MakeNode(rpcClient)
|
|
|
|
transactionConverter := vRpc.NewRpcTransactionConverter(ethClient)
|
2018-09-18 19:46:16 +00:00
|
|
|
return geth.NewBlockChain(vdbEthClient, rpcClient, vdbNode, transactionConverter)
|
2018-09-19 15:14:49 +00:00
|
|
|
}
|