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