quorum/ethereum/repl/javascript_runtime.go

234 lines
5.3 KiB
Go
Raw Normal View History

2014-07-15 11:34:25 -07:00
package ethrepl
2014-05-15 11:45:19 -07:00
import (
"fmt"
"github.com/ethereum/eth-go"
2014-05-19 03:15:03 -07:00
"github.com/ethereum/eth-go/ethchain"
2014-06-26 10:41:36 -07:00
"github.com/ethereum/eth-go/ethlog"
2014-05-15 11:45:19 -07:00
"github.com/ethereum/eth-go/ethpub"
"github.com/ethereum/eth-go/ethreact"
2014-07-24 03:34:48 -07:00
"github.com/ethereum/eth-go/ethstate"
2014-05-19 03:15:03 -07:00
"github.com/ethereum/eth-go/ethutil"
2014-05-21 15:25:48 -07:00
"github.com/ethereum/go-ethereum/utils"
"github.com/obscuren/otto"
2014-05-20 10:28:48 -07:00
"io/ioutil"
"os"
"path"
2014-05-20 10:28:48 -07:00
"path/filepath"
2014-05-15 11:45:19 -07:00
)
2014-06-23 03:39:09 -07:00
var jsrelogger = ethlog.NewLogger("JSRE")
2014-05-17 06:15:46 -07:00
type JSRE struct {
2014-05-19 03:15:03 -07:00
ethereum *eth.Ethereum
vm *otto.Otto
lib *ethpub.PEthereum
blockChan chan ethreact.Event
changeChan chan ethreact.Event
2014-05-19 03:15:03 -07:00
quitChan chan bool
objectCb map[string][]otto.Value
2014-05-15 11:45:19 -07:00
}
func (jsre *JSRE) LoadExtFile(path string) {
result, err := ioutil.ReadFile(path)
if err == nil {
jsre.vm.Run(result)
} else {
2014-06-23 03:39:09 -07:00
jsrelogger.Debugln("Could not load file:", path)
}
}
func (jsre *JSRE) LoadIntFile(file string) {
assetPath := path.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "ethereal", "assets", "ext")
jsre.LoadExtFile(path.Join(assetPath, file))
}
2014-05-17 06:15:46 -07:00
func NewJSRE(ethereum *eth.Ethereum) *JSRE {
2014-05-19 03:15:03 -07:00
re := &JSRE{
ethereum,
otto.New(),
ethpub.NewPEthereum(ethereum),
make(chan ethreact.Event, 10),
make(chan ethreact.Event, 10),
2014-05-19 03:15:03 -07:00
make(chan bool),
make(map[string][]otto.Value),
}
2014-05-19 07:32:45 -07:00
// Init the JS lib
re.vm.Run(jsLib)
// Load extra javascript files
re.LoadIntFile("string.js")
re.LoadIntFile("big.js")
2014-05-19 03:15:03 -07:00
// We have to make sure that, whoever calls this, calls "Stop"
go re.mainLoop()
2014-05-17 06:15:46 -07:00
// Subscribe to events
reactor := ethereum.Reactor()
2014-07-30 09:02:43 -07:00
reactor.Subscribe("newBlock", re.blockChan)
2014-05-17 06:15:46 -07:00
re.Bind("eth", &JSEthereum{re.lib, re.vm})
2014-05-19 03:15:03 -07:00
2014-05-20 03:48:34 -07:00
re.initStdFuncs()
2014-05-19 03:15:03 -07:00
2014-06-23 03:39:09 -07:00
jsrelogger.Infoln("started")
2014-05-20 03:48:34 -07:00
return re
}
2014-05-19 03:15:03 -07:00
2014-05-20 03:48:34 -07:00
func (self *JSRE) Bind(name string, v interface{}) {
self.vm.Set(name, v)
}
2014-05-17 06:15:46 -07:00
2014-05-20 03:48:34 -07:00
func (self *JSRE) Run(code string) (otto.Value, error) {
return self.vm.Run(code)
2014-05-17 06:15:46 -07:00
}
2014-05-20 10:28:48 -07:00
func (self *JSRE) Require(file string) error {
if len(filepath.Ext(file)) == 0 {
file += ".js"
}
fh, err := os.Open(file)
if err != nil {
return err
}
content, _ := ioutil.ReadAll(fh)
self.Run("exports = {};(function() {" + string(content) + "})();")
return nil
}
2014-05-19 03:15:03 -07:00
func (self *JSRE) Stop() {
// Kill the main loop
self.quitChan <- true
close(self.blockChan)
close(self.quitChan)
close(self.changeChan)
2014-06-23 03:39:09 -07:00
jsrelogger.Infoln("stopped")
2014-05-19 03:15:03 -07:00
}
func (self *JSRE) mainLoop() {
out:
for {
select {
case <-self.quitChan:
break out
case block := <-self.blockChan:
if _, ok := block.Resource.(*ethchain.Block); ok {
}
case object := <-self.changeChan:
2014-07-24 03:34:48 -07:00
if stateObject, ok := object.Resource.(*ethstate.StateObject); ok {
2014-06-29 10:32:48 -07:00
for _, cb := range self.objectCb[ethutil.Bytes2Hex(stateObject.Address())] {
2014-05-19 03:15:03 -07:00
val, _ := self.vm.ToValue(ethpub.NewPStateObject(stateObject))
cb.Call(cb, val)
}
2014-07-24 03:34:48 -07:00
} else if storageObject, ok := object.Resource.(*ethstate.StorageState); ok {
2014-06-29 10:32:48 -07:00
for _, cb := range self.objectCb[ethutil.Bytes2Hex(storageObject.StateAddress)+ethutil.Bytes2Hex(storageObject.Address)] {
2014-05-20 10:28:48 -07:00
val, _ := self.vm.ToValue(ethpub.NewPStorageState(storageObject))
cb.Call(cb, val)
}
2014-05-19 03:15:03 -07:00
}
}
}
}
2014-05-20 03:48:34 -07:00
func (self *JSRE) initStdFuncs() {
t, _ := self.vm.Get("eth")
eth := t.Object()
2014-05-20 10:28:48 -07:00
eth.Set("watch", self.watch)
eth.Set("addPeer", self.addPeer)
2014-05-20 13:12:42 -07:00
eth.Set("require", self.require)
2014-05-21 15:25:48 -07:00
eth.Set("stopMining", self.stopMining)
eth.Set("startMining", self.startMining)
2014-06-24 00:36:05 -07:00
eth.Set("execBlock", self.execBlock)
2014-05-20 10:28:48 -07:00
}
/*
* The following methods are natively implemented javascript functions
*/
2014-05-21 15:25:48 -07:00
func (self *JSRE) stopMining(call otto.FunctionCall) otto.Value {
v, _ := self.vm.ToValue(utils.StopMining(self.ethereum))
return v
}
func (self *JSRE) startMining(call otto.FunctionCall) otto.Value {
v, _ := self.vm.ToValue(utils.StartMining(self.ethereum))
return v
}
2014-05-20 10:28:48 -07:00
// eth.watch
2014-05-21 15:25:48 -07:00
func (self *JSRE) watch(call otto.FunctionCall) otto.Value {
2014-05-20 10:28:48 -07:00
addr, _ := call.Argument(0).ToString()
var storageAddr string
var cb otto.Value
var storageCallback bool
if len(call.ArgumentList) > 2 {
storageCallback = true
storageAddr, _ = call.Argument(1).ToString()
cb = call.Argument(2)
} else {
cb = call.Argument(1)
}
if storageCallback {
self.objectCb[addr+storageAddr] = append(self.objectCb[addr+storageAddr], cb)
2014-05-15 11:45:19 -07:00
2014-06-29 10:32:48 -07:00
event := "storage:" + string(ethutil.Hex2Bytes(addr)) + ":" + string(ethutil.Hex2Bytes(storageAddr))
2014-05-20 10:28:48 -07:00
self.ethereum.Reactor().Subscribe(event, self.changeChan)
} else {
2014-05-20 03:48:34 -07:00
self.objectCb[addr] = append(self.objectCb[addr], cb)
2014-05-15 11:45:19 -07:00
2014-06-29 10:32:48 -07:00
event := "object:" + string(ethutil.Hex2Bytes(addr))
2014-05-20 03:48:34 -07:00
self.ethereum.Reactor().Subscribe(event, self.changeChan)
2014-05-20 10:28:48 -07:00
}
return otto.UndefinedValue()
}
2014-05-15 13:15:14 -07:00
2014-05-20 10:28:48 -07:00
func (self *JSRE) addPeer(call otto.FunctionCall) otto.Value {
host, err := call.Argument(0).ToString()
if err != nil {
return otto.FalseValue()
}
self.ethereum.ConnectToPeer(host)
return otto.TrueValue()
}
func (self *JSRE) require(call otto.FunctionCall) otto.Value {
file, err := call.Argument(0).ToString()
if err != nil {
2014-05-15 13:15:14 -07:00
return otto.UndefinedValue()
2014-05-20 10:28:48 -07:00
}
if err := self.Require(file); err != nil {
fmt.Println("err:", err)
return otto.UndefinedValue()
}
t, _ := self.vm.Get("exports")
2014-05-15 13:15:14 -07:00
2014-05-20 10:28:48 -07:00
return t
2014-05-15 11:45:19 -07:00
}
func (self *JSRE) execBlock(call otto.FunctionCall) otto.Value {
hash, err := call.Argument(0).ToString()
if err != nil {
return otto.UndefinedValue()
}
2014-06-29 10:32:48 -07:00
err = utils.BlockDo(self.ethereum, ethutil.Hex2Bytes(hash))
if err != nil {
fmt.Println(err)
return otto.FalseValue()
}
return otto.TrueValue()
}