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