quorum/javascript/javascript_runtime.go

104 lines
1.9 KiB
Go
Raw Normal View History

package javascript
2014-05-15 11:45:19 -07:00
import (
"fmt"
2014-08-06 00:53:12 -07:00
"io/ioutil"
"os"
"path"
"path/filepath"
2015-03-07 16:52:49 -08:00
2014-10-31 04:56:05 -07:00
"github.com/ethereum/go-ethereum/logger"
2014-10-31 06:30:08 -07:00
"github.com/ethereum/go-ethereum/xeth"
"github.com/obscuren/otto"
2014-05-15 11:45:19 -07:00
)
2014-10-31 04:56:05 -07:00
var jsrelogger = logger.NewLogger("JSRE")
2014-06-23 03:39:09 -07:00
2014-05-17 06:15:46 -07:00
type JSRE struct {
2015-03-04 03:18:26 -08:00
Vm *otto.Otto
xeth *xeth.XEth
2014-05-19 03:15:03 -07:00
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 {
jsrelogger.Infoln("Could not load file:", path)
}
}
func (jsre *JSRE) LoadIntFile(file string) {
assetPath := path.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "cmd", "mist", "assets", "ext")
jsre.LoadExtFile(path.Join(assetPath, file))
}
2015-03-04 03:18:26 -08:00
func NewJSRE(xeth *xeth.XEth) *JSRE {
2014-05-19 03:15:03 -07:00
re := &JSRE{
otto.New(),
2015-03-04 03:18:26 -08:00
xeth,
2014-05-19 03:15:03 -07:00
make(map[string][]otto.Value),
}
2014-05-19 07:32:45 -07:00
// Init the JS lib
re.Vm.Run(jsLib)
2014-05-19 07:32:45 -07:00
// Load extra javascript files
re.LoadIntFile("bignumber.min.js")
2015-03-04 03:18:26 -08:00
re.Bind("eth", &JSEthereum{re.xeth, 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-20 03:48:34 -07:00
}
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
}
2015-03-04 03:18:26 -08:00
func (self *JSRE) initStdFuncs() {
t, _ := self.Vm.Get("eth")
eth := t.Object()
eth.Set("require", self.require)
}
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
}
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
}