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