quorum/ethereum/main.go

104 lines
2.2 KiB
Go
Raw Normal View History

package main
import (
2014-08-06 00:53:12 -07:00
"fmt"
"os"
2014-07-29 16:05:40 -07:00
"runtime"
2014-08-06 00:53:12 -07:00
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethlog"
2014-07-11 07:04:27 -07:00
"github.com/ethereum/eth-go/ethutil"
2014-06-26 10:41:36 -07:00
"github.com/ethereum/go-ethereum/utils"
)
const (
ClientIdentifier = "Ethereum(G)"
2014-08-22 03:12:41 -07:00
Version = "0.6.5"
)
var logger = ethlog.NewLogger("CLI")
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
2014-06-26 02:47:45 -07:00
utils.HandleInterrupt()
// precedence: code-internal flag default < config file < environment variables < command line
Init() // parsing command line
2014-07-11 07:04:27 -07:00
// If the difftool option is selected ignore all other log output
2014-08-06 00:53:12 -07:00
if DiffTool || Dump {
2014-07-11 07:04:27 -07:00
LogLevel = 0
}
utils.InitConfig(ConfigFile, Datadir, "ETH")
2014-07-11 07:04:27 -07:00
ethutil.Config.Diff = DiffTool
2014-07-15 11:34:25 -07:00
ethutil.Config.DiffType = DiffType
utils.InitDataDir(Datadir)
utils.InitLogging(Datadir, LogFile, LogLevel, DebugFile)
db := utils.NewDatabase()
keyManager := utils.NewKeyManager(KeyStore, Datadir, db)
// create, import, export keys
utils.KeyTasks(keyManager, KeyRing, GenAddr, SecretFile, ExportDir, NonInteractive)
clientIdentity := utils.NewClientIdentity(ClientIdentifier, Version, Identifier)
ethereum := utils.NewEthereum(db, clientIdentity, keyManager, UseUPnP, OutboundPort, MaxPeer)
2014-08-06 00:53:12 -07:00
if Dump {
var block *ethchain.Block
if len(DumpHash) == 0 && DumpNumber == -1 {
block = ethereum.BlockChain().CurrentBlock
} else if len(DumpHash) > 0 {
block = ethereum.BlockChain().GetBlock(ethutil.Hex2Bytes(DumpHash))
} else {
block = ethereum.BlockChain().GetBlockByNumber(uint64(DumpNumber))
}
if block == nil {
fmt.Fprintln(os.Stderr, "block not found")
// We want to output valid JSON
fmt.Println("{}")
os.Exit(1)
}
// Leave the Println. This needs clean output for piping
2014-08-17 03:41:23 -07:00
fmt.Printf("%s\n", block.State().Dump())
2014-08-06 00:53:12 -07:00
os.Exit(0)
}
2014-06-26 10:41:36 -07:00
if ShowGenesis {
utils.ShowGenesis(ethereum)
}
if StartMining {
utils.StartMining(ethereum)
}
// better reworked as cases
if StartJsConsole {
InitJsConsole(ethereum)
} else if len(InputFile) > 0 {
ExecJsFile(ethereum, InputFile)
}
if StartRpc {
utils.StartRpc(ethereum, RpcPort)
}
utils.StartEthereum(ethereum, UseSeed)
// this blocks the thread
2014-06-26 10:41:36 -07:00
ethereum.WaitForShutdown()
ethlog.Flush()
}