go-ethereum/javascript/javascript_runtime.go

103 lines
1.9 KiB
Go
Raw Normal View History

package javascript
2014-05-15 21:45:19 +03:00
import (
"fmt"
2014-08-06 10:53:12 +03:00
"io/ioutil"
"os"
"path"
"path/filepath"
2014-10-31 13:56:05 +02:00
"github.com/ethereum/go-ethereum/logger"
2014-10-31 15:30:08 +02:00
"github.com/ethereum/go-ethereum/xeth"
"github.com/obscuren/otto"
2014-05-15 21:45:19 +03:00
)
2014-10-31 13:56:05 +02:00
var jsrelogger = logger.NewLogger("JSRE")
2014-06-23 13:39:09 +03:00
2014-05-17 16:15:46 +03:00
type JSRE struct {
2015-03-04 13:18:26 +02:00
Vm *otto.Otto
xeth *xeth.XEth
2014-05-19 13:15:03 +03:00
objectCb map[string][]otto.Value
2014-05-15 21:45:19 +03: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 13:18:26 +02:00
func NewJSRE(xeth *xeth.XEth) *JSRE {
2014-05-19 13:15:03 +03:00
re := &JSRE{
otto.New(),
2015-03-04 13:18:26 +02:00
xeth,
2014-05-19 13:15:03 +03:00
make(map[string][]otto.Value),
}
2014-05-19 17:32:45 +03:00
// Init the JS lib
re.Vm.Run(jsLib)
2014-05-19 17:32:45 +03:00
// Load extra javascript files
re.LoadIntFile("bignumber.min.js")
2015-03-04 13:18:26 +02:00
re.Bind("eth", &JSEthereum{re.xeth, re.Vm})
2014-05-19 13:15:03 +03:00
2014-05-20 13:48:34 +03:00
re.initStdFuncs()
2014-05-19 13:15:03 +03:00
2014-06-23 13:39:09 +03:00
jsrelogger.Infoln("started")
2014-05-20 13:48:34 +03:00
return re
}
2014-05-19 13:15:03 +03:00
2014-05-20 13:48:34 +03:00
func (self *JSRE) Bind(name string, v interface{}) {
self.Vm.Set(name, v)
2014-05-20 13:48:34 +03:00
}
2014-05-17 16:15:46 +03:00
2014-05-20 13:48:34 +03:00
func (self *JSRE) Run(code string) (otto.Value, error) {
return self.Vm.Run(code)
2014-05-17 16:15:46 +03:00
}
2015-03-04 13:18:26 +02:00
func (self *JSRE) initStdFuncs() {
t, _ := self.Vm.Get("eth")
eth := t.Object()
eth.Set("require", self.require)
}
2014-05-20 20:28:48 +03: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 23:15:14 +03:00
return otto.UndefinedValue()
2014-05-20 20:28:48 +03:00
}
if err := self.Require(file); err != nil {
fmt.Println("err:", err)
return otto.UndefinedValue()
}
t, _ := self.Vm.Get("exports")
2014-05-15 23:15:14 +03:00
2014-05-20 20:28:48 +03:00
return t
2014-05-15 21:45:19 +03:00
}