2014-10-23 16:48:53 +03: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
|
|
|
|
|
2014-06-23 14:20:59 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-08-06 10:53:12 +03:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2014-07-30 02:05:40 +03:00
|
|
|
"runtime"
|
2014-12-23 19:35:36 +02:00
|
|
|
"time"
|
2014-07-30 02:05:40 +03:00
|
|
|
|
2014-10-31 15:20:11 +02:00
|
|
|
"github.com/ethereum/go-ethereum/cmd/utils"
|
2014-12-04 11:53:49 +02:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2014-10-23 16:01:27 +03:00
|
|
|
"github.com/ethereum/go-ethereum/ethutil"
|
2014-10-31 13:56:05 +02:00
|
|
|
"github.com/ethereum/go-ethereum/logger"
|
2014-06-23 14:20:59 +03:00
|
|
|
)
|
|
|
|
|
2014-07-03 19:36:24 +03:00
|
|
|
const (
|
|
|
|
ClientIdentifier = "Ethereum(G)"
|
2014-12-24 12:30:04 +02:00
|
|
|
Version = "0.7.11"
|
2014-07-03 19:36:24 +03:00
|
|
|
)
|
|
|
|
|
2014-10-31 13:56:05 +02:00
|
|
|
var clilogger = logger.NewLogger("CLI")
|
2014-06-23 14:20:59 +03:00
|
|
|
|
|
|
|
func main() {
|
|
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
|
|
|
|
2014-12-23 15:33:15 +02:00
|
|
|
defer func() {
|
|
|
|
logger.Flush()
|
|
|
|
}()
|
|
|
|
|
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
|
2014-08-06 10:53:12 +03:00
|
|
|
if DiffTool || Dump {
|
2014-07-11 17:04:27 +03:00
|
|
|
LogLevel = 0
|
|
|
|
}
|
|
|
|
|
2014-10-14 12:49:15 +03:00
|
|
|
utils.InitConfig(VmType, 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()
|
2014-08-22 13:14:37 +03:00
|
|
|
err := utils.DBSanityCheck(db)
|
|
|
|
if err != nil {
|
2014-10-23 01:59:35 +03:00
|
|
|
fmt.Println(err)
|
2014-08-22 13:40:15 +03:00
|
|
|
|
2014-08-22 13:14:37 +03:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
2014-06-29 20:37:22 +03:00
|
|
|
|
|
|
|
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-12-14 20:29:05 +02:00
|
|
|
clientIdentity := utils.NewClientIdentity(ClientIdentifier, Version, Identifier, string(keyManager.PublicKey()))
|
2014-07-03 19:36:24 +03:00
|
|
|
|
2014-12-14 20:29:05 +02:00
|
|
|
ethereum := utils.NewEthereum(db, clientIdentity, keyManager, utils.NatType(NatType, PMPGateway), OutboundPort, MaxPeer)
|
2014-06-23 14:20:59 +03:00
|
|
|
|
2014-08-06 10:53:12 +03:00
|
|
|
if Dump {
|
2014-11-18 20:52:45 +02:00
|
|
|
var block *types.Block
|
2014-08-06 10:53:12 +03:00
|
|
|
|
|
|
|
if len(DumpHash) == 0 && DumpNumber == -1 {
|
2014-12-18 14:17:24 +02:00
|
|
|
block = ethereum.ChainManager().CurrentBlock()
|
2014-08-06 10:53:12 +03:00
|
|
|
} else if len(DumpHash) > 0 {
|
2014-10-20 13:03:31 +03:00
|
|
|
block = ethereum.ChainManager().GetBlock(ethutil.Hex2Bytes(DumpHash))
|
2014-08-06 10:53:12 +03:00
|
|
|
} else {
|
2014-10-20 13:03:31 +03:00
|
|
|
block = ethereum.ChainManager().GetBlockByNumber(uint64(DumpNumber))
|
2014-08-06 10:53:12 +03: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
|
2014-08-17 13:41:23 +03:00
|
|
|
fmt.Printf("%s\n", block.State().Dump())
|
2014-08-06 10:53:12 +03:00
|
|
|
|
2014-10-29 15:20:42 +02:00
|
|
|
fmt.Println(block)
|
|
|
|
|
2014-08-06 10:53:12 +03:00
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2014-12-23 15:33:15 +02:00
|
|
|
if len(ImportChain) > 0 {
|
2014-12-23 19:35:36 +02:00
|
|
|
start := time.Now()
|
2014-12-23 16:37:03 +02:00
|
|
|
err := utils.ImportChain(ethereum, ImportChain)
|
2014-12-23 15:33:15 +02:00
|
|
|
if err != nil {
|
|
|
|
clilogger.Infoln(err)
|
|
|
|
}
|
2014-12-24 15:54:06 +02:00
|
|
|
clilogger.Infoln("import done in", time.Since(start))
|
2014-12-23 16:37:03 +02:00
|
|
|
return
|
2014-12-23 15:33:15 +02:00
|
|
|
}
|
|
|
|
|
2014-06-23 14:20:59 +03:00
|
|
|
// better reworked as cases
|
|
|
|
if StartJsConsole {
|
|
|
|
InitJsConsole(ethereum)
|
|
|
|
} else if len(InputFile) > 0 {
|
|
|
|
ExecJsFile(ethereum, InputFile)
|
|
|
|
}
|
|
|
|
|
|
|
|
if StartRpc {
|
|
|
|
utils.StartRpc(ethereum, RpcPort)
|
|
|
|
}
|
|
|
|
|
2014-10-01 00:26:16 +03:00
|
|
|
if StartWebSockets {
|
|
|
|
utils.StartWebSockets(ethereum)
|
|
|
|
}
|
|
|
|
|
2014-06-23 14:20:59 +03:00
|
|
|
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()
|
2014-06-23 14:20:59 +03:00
|
|
|
}
|