js.go 6.77 KB
Newer Older
obscuren's avatar
obscuren committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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
Felix Lange's avatar
Felix Lange committed
17

18 19 20
package main

import (
21
	"bufio"
22
	"fmt"
23 24
	"io/ioutil"
	"os"
25 26
	"path"
	"strings"
27

28
	"github.com/ethereum/go-ethereum/core/types"
zelig's avatar
zelig committed
29
	"github.com/ethereum/go-ethereum/eth"
30
	"github.com/ethereum/go-ethereum/ethutil"
31
	"github.com/ethereum/go-ethereum/javascript"
32
	"github.com/ethereum/go-ethereum/state"
obscuren's avatar
obscuren committed
33
	"github.com/ethereum/go-ethereum/xeth"
34 35
	"github.com/obscuren/otto"
	"github.com/peterh/liner"
36 37
)

38 39 40 41 42 43
type prompter interface {
	AppendHistory(string)
	Prompt(p string) (string, error)
	PasswordPrompt(p string) (string, error)
}

44
type dumbterm struct{ r *bufio.Reader }
45

46
func (r dumbterm) Prompt(p string) (string, error) {
47 48
	fmt.Print(p)
	return r.r.ReadString('\n')
49
}
50

51
func (r dumbterm) PasswordPrompt(p string) (string, error) {
52 53 54 55 56 57 58
	fmt.Println("!! Unsupported terminal, password will echo.")
	fmt.Print(p)
	input, err := bufio.NewReader(os.Stdin).ReadString('\n')
	fmt.Println()
	return input, err
}

59
func (r dumbterm) AppendHistory(string) {}
60 61

type jsre struct {
62 63 64
	re       *javascript.JSRE
	ethereum *eth.Ethereum
	xeth     *xeth.XEth
65
	ps1      string
66
	atexit   func()
67

68
	prompter
69 70
}

71 72 73 74 75 76
func newJSRE(ethereum *eth.Ethereum) *jsre {
	js := &jsre{ethereum: ethereum, ps1: "> "}
	js.xeth = xeth.New(ethereum, js)
	js.re = javascript.NewJSRE(js.xeth)
	js.initStdFuncs()

77
	if !liner.TerminalSupported() {
78
		js.prompter = dumbterm{bufio.NewReader(os.Stdin)}
79 80
	} else {
		lr := liner.NewLiner()
81
		js.withHistory(func(hist *os.File) { lr.ReadHistory(hist) })
82
		lr.SetCtrlCAborts(true)
83
		js.prompter = lr
84 85 86 87
		js.atexit = func() {
			js.withHistory(func(hist *os.File) { hist.Truncate(0); lr.WriteHistory(hist) })
			lr.Close()
		}
88
	}
89
	return js
90 91
}

92 93
func (self *jsre) ConfirmTransaction(tx *types.Transaction) bool {
	p := fmt.Sprintf("Confirm Transaction %v\n[y/n] ", tx)
94
	answer, _ := self.Prompt(p)
95
	return strings.HasPrefix(strings.Trim(answer, " "), "y")
96 97
}

98 99
func (self *jsre) UnlockAccount(addr []byte) bool {
	fmt.Printf("Please unlock account %x.\n", addr)
100
	pass, err := self.PasswordPrompt("Passphrase: ")
101
	if err != nil {
102 103 104 105 106 107 108 109
		return false
	}
	// TODO: allow retry
	if err := self.ethereum.AccountManager().Unlock(addr, pass); err != nil {
		return false
	} else {
		fmt.Println("Account is now unlocked for this session.")
		return true
110 111 112
	}
}

113 114 115 116 117 118 119 120
func (self *jsre) exec(filename string) error {
	file, err := os.Open(filename)
	if err != nil {
		return err
	}
	content, err := ioutil.ReadAll(file)
	if err != nil {
		return err
121
	}
122 123 124 125
	if _, err := self.re.Run(string(content)); err != nil {
		return fmt.Errorf("Javascript Error: %v", err)
	}
	return nil
126 127
}

128
func (self *jsre) interactive() {
129
	for {
130
		input, err := self.Prompt(self.ps1)
131
		if err != nil {
132
			break
133 134 135 136 137 138 139 140
		}
		if input == "" {
			continue
		}
		str += input + "\n"
		self.setIndent()
		if indentCount <= 0 {
			if input == "exit" {
141
				break
142 143
			}
			hist := str[:len(str)-1]
144
			self.AppendHistory(hist)
145 146 147 148
			self.parseInput(str)
			str = ""
		}
	}
149 150 151
	if self.atexit != nil {
		self.atexit()
	}
152 153
}

154 155 156 157 158 159 160 161 162 163 164 165 166 167
func (self *jsre) withHistory(op func(*os.File)) {
	hist, err := os.OpenFile(path.Join(self.ethereum.DataDir, "history"), os.O_RDWR|os.O_CREATE, os.ModePerm)
	if err != nil {
		fmt.Printf("unable to open history file: %v\n", err)
		return
	}
	op(hist)
	hist.Close()
}

func (self *jsre) parseInput(code string) {
	defer func() {
		if r := recover(); r != nil {
			fmt.Println("[native] error", r)
168 169
		}
	}()
170 171 172 173 174 175 176
	value, err := self.re.Run(code)
	if err != nil {
		fmt.Println(err)
		return
	}
	self.printValue(value)
}
177

178 179
var indentCount = 0
var str = ""
180

181 182 183 184 185 186 187 188 189 190 191
func (self *jsre) setIndent() {
	open := strings.Count(str, "{")
	open += strings.Count(str, "(")
	closed := strings.Count(str, "}")
	closed += strings.Count(str, ")")
	indentCount = open - closed
	if indentCount <= 0 {
		self.ps1 = "> "
	} else {
		self.ps1 = strings.Join(make([]string, indentCount*2), "..")
		self.ps1 += " "
192 193 194
	}
}

195
func (self *jsre) printValue(v interface{}) {
196 197 198 199 200 201 202 203 204 205
	method, _ := self.re.Vm.Get("prettyPrint")
	v, err := self.re.Vm.ToValue(v)
	if err == nil {
		val, err := method.Call(method, v)
		if err == nil {
			fmt.Printf("%v", val)
		}
	}
}

206
func (self *jsre) initStdFuncs() {
207 208 209 210 211 212 213 214 215 216 217 218 219
	t, _ := self.re.Vm.Get("eth")
	eth := t.Object()
	eth.Set("connect", self.connect)
	eth.Set("stopMining", self.stopMining)
	eth.Set("startMining", self.startMining)
	eth.Set("dump", self.dump)
	eth.Set("export", self.export)
}

/*
 * The following methods are natively implemented javascript functions.
 */

220
func (self *jsre) dump(call otto.FunctionCall) otto.Value {
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
	var block *types.Block

	if len(call.ArgumentList) > 0 {
		if call.Argument(0).IsNumber() {
			num, _ := call.Argument(0).ToInteger()
			block = self.ethereum.ChainManager().GetBlockByNumber(uint64(num))
		} else if call.Argument(0).IsString() {
			hash, _ := call.Argument(0).ToString()
			block = self.ethereum.ChainManager().GetBlock(ethutil.Hex2Bytes(hash))
		} else {
			fmt.Println("invalid argument for dump. Either hex string or number")
		}

		if block == nil {
			fmt.Println("block not found")

			return otto.UndefinedValue()
		}

	} else {
		block = self.ethereum.ChainManager().CurrentBlock()
	}

244
	statedb := state.New(block.Root(), self.ethereum.StateDb())
245 246 247 248 249 250

	v, _ := self.re.Vm.ToValue(statedb.RawDump())

	return v
}

251
func (self *jsre) stopMining(call otto.FunctionCall) otto.Value {
252 253 254 255
	self.xeth.Miner().Stop()
	return otto.TrueValue()
}

256
func (self *jsre) startMining(call otto.FunctionCall) otto.Value {
257 258 259 260
	self.xeth.Miner().Start()
	return otto.TrueValue()
}

261
func (self *jsre) connect(call otto.FunctionCall) otto.Value {
262 263 264 265 266 267 268 269 270 271
	nodeURL, err := call.Argument(0).ToString()
	if err != nil {
		return otto.FalseValue()
	}
	if err := self.ethereum.SuggestPeer(nodeURL); err != nil {
		return otto.FalseValue()
	}
	return otto.TrueValue()
}

272
func (self *jsre) export(call otto.FunctionCall) otto.Value {
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
	if len(call.ArgumentList) == 0 {
		fmt.Println("err: require file name")
		return otto.FalseValue()
	}

	fn, err := call.Argument(0).ToString()
	if err != nil {
		fmt.Println(err)
		return otto.FalseValue()
	}

	data := self.ethereum.ChainManager().Export()

	if err := ethutil.WriteFile(fn, data); err != nil {
		fmt.Println(err)
		return otto.FalseValue()
	}

	return otto.TrueValue()
}