plugeth/cmd/ethereum/main.go

136 lines
3.3 KiB
Go
Raw Normal View History

2014-10-23 13:48:53 +00:00
// Copyright (c) 2013-2014, Jeffrey Wilcke. All rights reserved.
//
// This library 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 2.1 of the License, or (at your option) any later version.
//
// This library 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 this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
// MA 02110-1301 USA
package main
import (
2014-08-06 07:53:12 +00:00
"fmt"
"os"
2014-07-29 23:05:40 +00:00
"runtime"
2014-10-31 13:20:11 +00:00
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethutil"
2014-10-31 11:56:05 +00:00
"github.com/ethereum/go-ethereum/logger"
)
const (
ClientIdentifier = "Ethereum(G)"
2014-12-04 14:31:48 +00:00
Version = "0.7.8"
)
2014-10-31 11:56:05 +00:00
var clilogger = logger.NewLogger("CLI")
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
2014-06-26 09:47:45 +00:00
utils.HandleInterrupt()
// precedence: code-internal flag default < config file < environment variables < command line
Init() // parsing command line
2014-07-11 14:04:27 +00:00
// If the difftool option is selected ignore all other log output
2014-08-06 07:53:12 +00:00
if DiffTool || Dump {
2014-07-11 14:04:27 +00:00
LogLevel = 0
}
2014-10-14 09:49:15 +00:00
utils.InitConfig(VmType, ConfigFile, Datadir, "ETH")
2014-07-11 14:04:27 +00:00
ethutil.Config.Diff = DiffTool
2014-07-15 18:34:25 +00:00
ethutil.Config.DiffType = DiffType
utils.InitDataDir(Datadir)
utils.InitLogging(Datadir, LogFile, LogLevel, DebugFile)
db := utils.NewDatabase()
2014-08-22 10:14:37 +00:00
err := utils.DBSanityCheck(db)
if err != nil {
fmt.Println(err)
2014-08-22 10:14:37 +00:00
os.Exit(1)
}
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 07:53:12 +00:00
if Dump {
2014-11-18 18:52:45 +00:00
var block *types.Block
2014-08-06 07:53:12 +00:00
if len(DumpHash) == 0 && DumpNumber == -1 {
2014-10-20 10:03:31 +00:00
block = ethereum.ChainManager().CurrentBlock
2014-08-06 07:53:12 +00:00
} else if len(DumpHash) > 0 {
2014-10-20 10:03:31 +00:00
block = ethereum.ChainManager().GetBlock(ethutil.Hex2Bytes(DumpHash))
2014-08-06 07:53:12 +00:00
} else {
2014-10-20 10:03:31 +00:00
block = ethereum.ChainManager().GetBlockByNumber(uint64(DumpNumber))
2014-08-06 07:53:12 +00:00
}
if block == nil {
fmt.Fprintln(os.Stderr, "block not found")
// We want to output valid JSON
fmt.Println("{}")
os.Exit(1)
}
2014-11-14 21:53:45 +00:00
// block.GetRoot() does not exist
//fmt.Printf("RLP: %x\nstate: %x\nhash: %x\n", ethutil.Rlp(block), block.GetRoot(), block.Hash())
2014-09-19 11:32:52 +00:00
2014-08-06 07:53:12 +00:00
// Leave the Println. This needs clean output for piping
2014-08-17 10:41:23 +00:00
fmt.Printf("%s\n", block.State().Dump())
2014-08-06 07:53:12 +00:00
2014-10-29 13:20:42 +00:00
fmt.Println(block)
2014-08-06 07:53:12 +00:00
os.Exit(0)
}
2014-06-26 17:41:36 +00: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)
}
if StartWebSockets {
utils.StartWebSockets(ethereum)
}
utils.StartEthereum(ethereum, UseSeed)
// this blocks the thread
2014-06-26 17:41:36 +00:00
ethereum.WaitForShutdown()
2014-10-31 17:40:32 +00:00
logger.Flush()
}