cmd.go 7.1 KB
Newer Older
O
obscuren 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
	This file is part of go-ethereum

	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>
 * 	Viktor Tron <viktor@ethdev.com>
 */
22 23 24
package utils

import (
Z
go fmt  
zelig 已提交
25
	"fmt"
26 27 28 29
	"os"
	"os/signal"
	"path"
	"path/filepath"
O
obscuren 已提交
30
	"regexp"
31 32 33
	"runtime"

	"bitbucket.org/kardianos/osext"
O
obscuren 已提交
34
	"github.com/ethereum/go-ethereum/core/types"
O
obscuren 已提交
35
	"github.com/ethereum/go-ethereum/crypto"
Z
zelig 已提交
36
	"github.com/ethereum/go-ethereum/eth"
37
	"github.com/ethereum/go-ethereum/ethutil"
O
obscuren 已提交
38
	"github.com/ethereum/go-ethereum/logger"
O
obscuren 已提交
39
	"github.com/ethereum/go-ethereum/miner"
O
obscuren 已提交
40
	"github.com/ethereum/go-ethereum/rlp"
41
	rpchttp "github.com/ethereum/go-ethereum/rpc/http"
O
obscuren 已提交
42
	"github.com/ethereum/go-ethereum/state"
T
Taylor Gerring 已提交
43
	"github.com/ethereum/go-ethereum/websocket"
O
obscuren 已提交
44
	"github.com/ethereum/go-ethereum/xeth"
45 46
)

O
obscuren 已提交
47
var clilogger = logger.NewLogger("CLI")
Z
zelig 已提交
48
var interruptCallbacks = []func(os.Signal){}
49

Z
zelig 已提交
50
// Register interrupt handlers callbacks
51
func RegisterInterrupt(cb func(os.Signal)) {
Z
go fmt  
zelig 已提交
52
	interruptCallbacks = append(interruptCallbacks, cb)
Z
zelig 已提交
53 54 55 56
}

// go routine that call interrupt handlers in order of registering
func HandleInterrupt() {
Z
go fmt  
zelig 已提交
57 58 59 60
	c := make(chan os.Signal, 1)
	go func() {
		signal.Notify(c, os.Interrupt)
		for sig := range c {
O
obscuren 已提交
61
			clilogger.Errorf("Shutting down (%v) ... \n", sig)
Z
go fmt  
zelig 已提交
62 63 64
			RunInterruptCallbacks(sig)
		}
	}()
65 66
}

Z
zelig 已提交
67
func RunInterruptCallbacks(sig os.Signal) {
Z
go fmt  
zelig 已提交
68 69 70
	for _, cb := range interruptCallbacks {
		cb(sig)
	}
Z
zelig 已提交
71 72
}

Z
go fmt  
zelig 已提交
73
func openLogFile(Datadir string, filename string) *os.File {
O
obscuren 已提交
74
	path := ethutil.AbsolutePath(Datadir, filename)
Z
go fmt  
zelig 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
	file, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
	if err != nil {
		panic(fmt.Sprintf("error opening log file '%s': %v", filename, err))
	}
	return file
}

func confirm(message string) bool {
	fmt.Println(message, "Are you sure? (y/n)")
	var r string
	fmt.Scanln(&r)
	for ; ; fmt.Scanln(&r) {
		if r == "n" || r == "y" {
			break
		} else {
O
obscuren 已提交
90
			fmt.Printf("Yes or no? (%s)", r)
Z
go fmt  
zelig 已提交
91 92 93
		}
	}
	return r == "y"
94
}
O
obscuren 已提交
95

O
obscuren 已提交
96
func initDataDir(Datadir string) {
Z
go fmt  
zelig 已提交
97 98 99
	_, err := os.Stat(Datadir)
	if err != nil {
		if os.IsNotExist(err) {
100
			fmt.Printf("Data directory '%s' doesn't exist, creating it\n", Datadir)
Z
go fmt  
zelig 已提交
101 102 103 104 105
			os.Mkdir(Datadir, 0777)
		}
	}
}

O
New VM  
obscuren 已提交
106
func InitConfig(vmType int, ConfigFile string, Datadir string, EnvPrefix string) *ethutil.ConfigManager {
O
obscuren 已提交
107
	initDataDir(Datadir)
O
New VM  
obscuren 已提交
108 109 110 111
	cfg := ethutil.ReadConfig(ConfigFile, Datadir, EnvPrefix)
	cfg.VmType = vmType

	return cfg
112
}
113

114 115 116
func exit(err error) {
	status := 0
	if err != nil {
O
obscuren 已提交
117
		clilogger.Errorln("Fatal: ", err)
118 119
		status = 1
	}
O
obscuren 已提交
120
	logger.Flush()
Z
go fmt  
zelig 已提交
121
	os.Exit(status)
122
}
O
obscuren 已提交
123

124
func StartEthereum(ethereum *eth.Ethereum, UseSeed bool) {
O
obscuren 已提交
125
	clilogger.Infof("Starting %s", ethereum.ClientIdentity())
O
obscuren 已提交
126 127 128 129 130
	err := ethereum.Start(UseSeed)
	if err != nil {
		exit(err)
	}

Z
go fmt  
zelig 已提交
131 132
	RegisterInterrupt(func(sig os.Signal) {
		ethereum.Stop()
O
obscuren 已提交
133
		logger.Flush()
Z
go fmt  
zelig 已提交
134
	})
135
}
O
obscuren 已提交
136

137 138 139 140 141 142
func DefaultAssetPath() string {
	var assetPath string
	// If the current working directory is the go-ethereum dir
	// assume a debug build and use the source directory as
	// asset directory.
	pwd, _ := os.Getwd()
143
	if pwd == path.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "cmd", "mist") {
144 145 146 147 148 149 150 151
		assetPath = path.Join(pwd, "assets")
	} else {
		switch runtime.GOOS {
		case "darwin":
			// Get Binary Directory
			exedir, _ := osext.ExecutableFolder()
			assetPath = filepath.Join(exedir, "../Resources")
		case "linux":
O
obscuren 已提交
152
			assetPath = "/usr/share/mist"
153 154 155 156 157 158 159 160
		case "windows":
			assetPath = "./assets"
		default:
			assetPath = "."
		}
	}
	return assetPath
}
161

O
obscuren 已提交
162
func KeyTasks(keyManager *crypto.KeyManager, KeyRing string, GenAddr bool, SecretFile string, ExportDir string, NonInteractive bool) {
163

164
	var err error
Z
go fmt  
zelig 已提交
165 166 167
	switch {
	case GenAddr:
		if NonInteractive || confirm("This action overwrites your old private key.") {
168
			err = keyManager.Init(KeyRing, 0, true)
Z
go fmt  
zelig 已提交
169
		}
170 171
		exit(err)
	case len(SecretFile) > 0:
O
obscuren 已提交
172 173
		SecretFile = ethutil.ExpandHomePath(SecretFile)

Z
go fmt  
zelig 已提交
174
		if NonInteractive || confirm("This action overwrites your old private key.") {
175
			err = keyManager.InitFromSecretsFile(KeyRing, 0, SecretFile)
Z
go fmt  
zelig 已提交
176
		}
177 178 179 180 181 182 183
		exit(err)
	case len(ExportDir) > 0:
		err = keyManager.Init(KeyRing, 0, false)
		if err == nil {
			err = keyManager.Export(ExportDir)
		}
		exit(err)
Z
go fmt  
zelig 已提交
184 185
	default:
		// Creates a keypair if none exists
186 187 188 189
		err = keyManager.Init(KeyRing, 0, false)
		if err != nil {
			exit(err)
		}
Z
go fmt  
zelig 已提交
190
	}
191
	clilogger.Infof("Main address %x\n", keyManager.Address())
192
}
O
obscuren 已提交
193

194
func StartRpc(ethereum *eth.Ethereum, RpcPort int) {
Z
go fmt  
zelig 已提交
195
	var err error
196
	ethereum.RpcServer, err = rpchttp.NewRpcHttpServer(xeth.NewJSXEth(ethereum), RpcPort)
Z
go fmt  
zelig 已提交
197
	if err != nil {
O
obscuren 已提交
198
		clilogger.Errorf("Could not start RPC interface (port %v): %v", RpcPort, err)
Z
go fmt  
zelig 已提交
199 200 201
	} else {
		go ethereum.RpcServer.Start()
	}
O
obscuren 已提交
202 203
}

T
Taylor Gerring 已提交
204 205 206 207 208 209 210
func StartWebSockets(eth *eth.Ethereum) {
	clilogger.Infoln("Starting WebSockets")

	sock := websocket.NewWebSocketServer(eth)
	go sock.Serv()
}

O
obscuren 已提交
211
var gminer *miner.Miner
O
obscuren 已提交
212

O
obscuren 已提交
213 214
func GetMiner() *miner.Miner {
	return gminer
M
Maran 已提交
215
}
O
obscuren 已提交
216

217
func StartMining(ethereum *eth.Ethereum) bool {
Z
go fmt  
zelig 已提交
218 219
	if !ethereum.Mining {
		ethereum.Mining = true
220
		addr := ethereum.KeyManager().Address()
Z
go fmt  
zelig 已提交
221 222

		go func() {
O
obscuren 已提交
223
			clilogger.Infoln("Start mining")
O
obscuren 已提交
224
			if gminer == nil {
225
				gminer = miner.New(addr, ethereum)
226
			}
O
obscuren 已提交
227
			gminer.Start()
Z
go fmt  
zelig 已提交
228 229 230 231 232 233 234
		}()
		RegisterInterrupt(func(os.Signal) {
			StopMining(ethereum)
		})
		return true
	}
	return false
235
}
O
obscuren 已提交
236

O
obscuren 已提交
237 238 239 240 241 242 243 244 245 246 247 248 249
func FormatTransactionData(data string) []byte {
	d := ethutil.StringToByteFunc(data, func(s string) (ret []byte) {
		slice := regexp.MustCompile("\\n|\\s").Split(s, 1000000000)
		for _, dataItem := range slice {
			d := ethutil.FormatData(dataItem)
			ret = append(ret, d...)
		}
		return
	})

	return d
}

250
func StopMining(ethereum *eth.Ethereum) bool {
O
obscuren 已提交
251 252
	if ethereum.Mining && gminer != nil {
		gminer.Stop()
O
obscuren 已提交
253
		clilogger.Infoln("Stopped mining")
Z
go fmt  
zelig 已提交
254
		ethereum.Mining = false
O
obscuren 已提交
255

Z
go fmt  
zelig 已提交
256 257
		return true
	}
O
obscuren 已提交
258

Z
go fmt  
zelig 已提交
259
	return false
O
obscuren 已提交
260
}
O
obscuren 已提交
261 262 263

// Replay block
func BlockDo(ethereum *eth.Ethereum, hash []byte) error {
O
obscuren 已提交
264
	block := ethereum.ChainManager().GetBlock(hash)
O
obscuren 已提交
265 266 267 268
	if block == nil {
		return fmt.Errorf("unknown block %x", hash)
	}

O
obscuren 已提交
269
	parent := ethereum.ChainManager().GetBlock(block.ParentHash())
O
obscuren 已提交
270

O
obscuren 已提交
271 272
	statedb := state.New(parent.Root(), ethereum.Db())
	_, err := ethereum.BlockProcessor().TransitionState(statedb, parent, block)
O
obscuren 已提交
273 274 275 276 277 278 279
	if err != nil {
		return err
	}

	return nil

}
O
obscuren 已提交
280 281

func ImportChain(ethereum *eth.Ethereum, fn string) error {
O
obscuren 已提交
282
	clilogger.Infof("importing chain '%s'\n", fn)
O
obscuren 已提交
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
	fh, err := os.OpenFile(fn, os.O_RDONLY, os.ModePerm)
	if err != nil {
		return err
	}
	defer fh.Close()

	var chain types.Blocks
	if err := rlp.Decode(fh, &chain); err != nil {
		return err
	}

	ethereum.ChainManager().Reset()
	if err := ethereum.ChainManager().InsertChain(chain); err != nil {
		return err
	}
	clilogger.Infof("imported %d blocks\n", len(chain))

	return nil
}