quorum/cmd/ethereum/main.go

163 lines
3.6 KiB
Go
Raw Normal View History

2015-01-06 03:13:57 -08:00
/*
This file is part of go-ethereum
2014-10-23 06:48:53 -07:00
2015-01-06 03:13:57 -08:00
go-ethereum is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
go-ethereum 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @authors
* Jeffrey Wilcke <i@jev.io>
*/
package main
import (
2014-08-06 00:53:12 -07:00
"fmt"
"os"
2014-07-29 16:05:40 -07:00
"runtime"
2014-12-23 09:35:36 -08:00
"time"
2014-07-29 16:05:40 -07:00
2015-03-04 03:18:26 -08:00
"github.com/ethereum/go-ethereum/cmd/ethereum/repl"
2014-10-31 06:20:11 -07:00
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/core/types"
2015-01-04 05:20:16 -08:00
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/ethutil"
2014-10-31 04:56:05 -07:00
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/p2p"
2015-01-07 04:17:48 -08:00
"github.com/ethereum/go-ethereum/state"
)
const (
ClientIdentifier = "Ethereum(G)"
2015-02-26 11:26:37 -08:00
Version = "0.8.6"
)
2014-10-31 04:56:05 -07:00
var clilogger = logger.NewLogger("CLI")
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
2014-12-23 05:33:15 -08:00
defer func() {
logger.Flush()
}()
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
2015-01-06 16:21:55 -08:00
if PrintVersion {
printVersion()
return
}
2014-10-14 02:49:15 -07:00
utils.InitConfig(VmType, ConfigFile, Datadir, "ETH")
2015-01-04 05:20:16 -08:00
ethereum, err := eth.New(&eth.Config{
2015-02-28 14:01:41 -08:00
Name: p2p.MakeName(ClientIdentifier, Version),
KeyStore: KeyStore,
DataDir: Datadir,
LogFile: LogFile,
LogLevel: LogLevel,
LogFormat: LogFormat,
MaxPeers: MaxPeer,
Port: OutboundPort,
NAT: NAT,
KeyRing: KeyRing,
Shh: true,
Dial: Dial,
BootNodes: BootNodes,
NodeKey: NodeKey,
MinerThreads: MinerThreads,
2015-01-04 05:20:16 -08:00
})
2015-01-05 08:10:42 -08:00
2014-08-22 03:14:37 -07:00
if err != nil {
2015-01-04 05:20:16 -08:00
clilogger.Fatalln(err)
2014-08-22 03:14:37 -07:00
}
2015-01-05 08:10:42 -08:00
2015-01-04 05:20:16 -08:00
utils.KeyTasks(ethereum.KeyManager(), KeyRing, GenAddr, SecretFile, ExportDir, NonInteractive)
2014-08-06 00:53:12 -07:00
if Dump {
2014-11-18 10:52:45 -08:00
var block *types.Block
2014-08-06 00:53:12 -07:00
if len(DumpHash) == 0 && DumpNumber == -1 {
2014-12-18 04:17:24 -08:00
block = ethereum.ChainManager().CurrentBlock()
2014-08-06 00:53:12 -07:00
} else if len(DumpHash) > 0 {
2014-10-20 03:03:31 -07:00
block = ethereum.ChainManager().GetBlock(ethutil.Hex2Bytes(DumpHash))
2014-08-06 00:53:12 -07:00
} else {
2014-10-20 03:03:31 -07:00
block = ethereum.ChainManager().GetBlockByNumber(uint64(DumpNumber))
2014-08-06 00:53:12 -07:00
}
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
2015-01-07 04:17:48 -08:00
statedb := state.New(block.Root(), ethereum.Db())
fmt.Printf("%s\n", statedb.Dump())
2014-08-06 00:53:12 -07:00
2014-10-29 06:20:42 -07:00
fmt.Println(block)
2015-01-04 05:20:16 -08:00
return
2014-06-26 10:41:36 -07:00
}
2014-12-23 05:33:15 -08:00
if len(ImportChain) > 0 {
2014-12-23 09:35:36 -08:00
start := time.Now()
2014-12-23 06:37:03 -08:00
err := utils.ImportChain(ethereum, ImportChain)
2014-12-23 05:33:15 -08:00
if err != nil {
clilogger.Infoln(err)
}
2014-12-24 05:54:06 -08:00
clilogger.Infoln("import done in", time.Since(start))
2014-12-23 06:37:03 -08:00
return
2014-12-23 05:33:15 -08:00
}
if StartRpc {
2015-02-27 16:00:42 -08:00
utils.StartRpc(ethereum, RpcListenAddress, RpcPort)
}
utils.StartEthereum(ethereum)
2015-02-28 10:15:57 -08:00
fmt.Printf("Welcome to the FRONTIER\n")
2015-02-28 14:01:41 -08:00
if StartMining {
ethereum.Miner().Start()
}
2015-01-05 08:10:42 -08:00
if StartJsConsole {
2015-03-04 03:18:26 -08:00
repl := ethrepl.NewJSRepl(ethereum)
repl.Start()
utils.RegisterInterrupt(func(os.Signal) {
repl.Stop()
})
2015-01-05 08:10:42 -08:00
} else if len(InputFile) > 0 {
ExecJsFile(ethereum, InputFile)
}
// this blocks the thread
2014-06-26 10:41:36 -07:00
ethereum.WaitForShutdown()
}
2015-01-06 16:21:55 -08:00
func printVersion() {
fmt.Printf(`%v %v
PV=%d
GOOS=%s
GO=%s
GOPATH=%s
GOROOT=%s
`, ClientIdentifier, Version, eth.ProtocolVersion, runtime.GOOS, runtime.Version(), os.Getenv("GOPATH"), runtime.GOROOT())
}