2014-06-23 12:20:59 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ethereum/eth-go/ethlog"
|
2014-07-11 16:04:27 +02:00
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
2014-06-26 18:41:36 +01:00
|
|
|
"github.com/ethereum/go-ethereum/utils"
|
2014-06-23 12:20:59 +01:00
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
2014-07-03 17:36:24 +01:00
|
|
|
const (
|
|
|
|
ClientIdentifier = "Ethereum(G)"
|
2014-07-17 15:36:16 +02:00
|
|
|
Version = "0.5.17"
|
2014-07-03 17:36:24 +01:00
|
|
|
)
|
|
|
|
|
2014-06-23 12:20:59 +01:00
|
|
|
var logger = ethlog.NewLogger("CLI")
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
|
|
|
|
2014-06-26 10:47:45 +01:00
|
|
|
utils.HandleInterrupt()
|
|
|
|
|
2014-06-23 12:20:59 +01:00
|
|
|
// precedence: code-internal flag default < config file < environment variables < command line
|
|
|
|
Init() // parsing command line
|
2014-07-11 16:04:27 +02:00
|
|
|
|
|
|
|
// If the difftool option is selected ignore all other log output
|
|
|
|
if DiffTool {
|
|
|
|
LogLevel = 0
|
|
|
|
}
|
|
|
|
|
2014-07-03 17:36:24 +01:00
|
|
|
utils.InitConfig(ConfigFile, Datadir, "ETH")
|
2014-07-11 16:04:27 +02:00
|
|
|
ethutil.Config.Diff = DiffTool
|
2014-07-15 20:34:25 +02:00
|
|
|
ethutil.Config.DiffType = DiffType
|
2014-06-23 12:20:59 +01:00
|
|
|
|
|
|
|
utils.InitDataDir(Datadir)
|
|
|
|
|
|
|
|
utils.InitLogging(Datadir, LogFile, LogLevel, DebugFile)
|
|
|
|
|
2014-06-29 18:37:22 +01:00
|
|
|
db := utils.NewDatabase()
|
|
|
|
|
|
|
|
keyManager := utils.NewKeyManager(KeyStore, Datadir, db)
|
2014-06-23 12:20:59 +01:00
|
|
|
|
|
|
|
// create, import, export keys
|
2014-06-29 18:37:22 +01:00
|
|
|
utils.KeyTasks(keyManager, KeyRing, GenAddr, SecretFile, ExportDir, NonInteractive)
|
|
|
|
|
2014-07-03 17:36:24 +01:00
|
|
|
clientIdentity := utils.NewClientIdentity(ClientIdentifier, Version, Identifier)
|
|
|
|
|
|
|
|
ethereum := utils.NewEthereum(db, clientIdentity, keyManager, UseUPnP, OutboundPort, MaxPeer)
|
2014-06-23 12:20:59 +01:00
|
|
|
|
2014-06-26 18:41:36 +01:00
|
|
|
if ShowGenesis {
|
|
|
|
utils.ShowGenesis(ethereum)
|
|
|
|
}
|
2014-06-23 12:20:59 +01:00
|
|
|
|
|
|
|
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)
|
2014-06-26 16:26:14 +01:00
|
|
|
|
|
|
|
// this blocks the thread
|
2014-06-26 18:41:36 +01:00
|
|
|
ethereum.WaitForShutdown()
|
|
|
|
ethlog.Flush()
|
2014-06-23 12:20:59 +01:00
|
|
|
}
|