2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
|
|
|
// This file is part of go-ethereum.
|
|
|
|
//
|
|
|
|
// go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// go-ethereum 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 Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-03-15 06:21:54 +00:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import (
|
2015-06-17 14:33:34 +00:00
|
|
|
"encoding/json"
|
|
|
|
|
2015-07-03 10:22:20 +00:00
|
|
|
"fmt"
|
|
|
|
|
2015-03-20 12:22:01 +00:00
|
|
|
"github.com/ethereum/go-ethereum/jsre"
|
2015-06-09 07:48:18 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rpc/comms"
|
2015-06-08 10:43:58 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rpc/shared"
|
2015-06-09 07:48:18 +00:00
|
|
|
"github.com/robertkrimen/otto"
|
2015-03-15 06:21:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Jeth struct {
|
2015-06-22 10:47:32 +00:00
|
|
|
ethApi shared.EthereumApi
|
2015-06-17 14:22:35 +00:00
|
|
|
re *jsre.JSRE
|
|
|
|
client comms.EthereumClient
|
2015-03-15 06:21:54 +00:00
|
|
|
}
|
|
|
|
|
2015-06-22 10:47:32 +00:00
|
|
|
func NewJeth(ethApi shared.EthereumApi, re *jsre.JSRE, client comms.EthereumClient) *Jeth {
|
2015-06-17 14:22:35 +00:00
|
|
|
return &Jeth{ethApi, re, client}
|
2015-03-15 06:21:54 +00:00
|
|
|
}
|
|
|
|
|
2015-04-22 00:31:59 +00:00
|
|
|
func (self *Jeth) err(call otto.FunctionCall, code int, msg string, id interface{}) (response otto.Value) {
|
2015-07-03 10:22:20 +00:00
|
|
|
errObj := fmt.Sprintf("{\"message\": \"%s\", \"code\": %d}", msg, code)
|
|
|
|
retResponse := fmt.Sprintf("ret_response = JSON.parse('{\"jsonrpc\": \"%s\", \"id\": %v, \"error\": %s}');", shared.JsonRpcVersion, id, errObj)
|
|
|
|
|
|
|
|
call.Otto.Run("ret_error = " + errObj)
|
|
|
|
res, _ := call.Otto.Run(retResponse)
|
|
|
|
|
|
|
|
return res
|
2015-03-15 06:21:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (self *Jeth) Send(call otto.FunctionCall) (response otto.Value) {
|
|
|
|
reqif, err := call.Argument(0).Export()
|
|
|
|
if err != nil {
|
2015-04-22 00:31:59 +00:00
|
|
|
return self.err(call, -32700, err.Error(), nil)
|
2015-03-15 06:21:54 +00:00
|
|
|
}
|
|
|
|
|
2015-06-08 11:21:24 +00:00
|
|
|
jsonreq, err := json.Marshal(reqif)
|
2015-06-17 14:22:35 +00:00
|
|
|
var reqs []shared.Request
|
2015-06-08 11:21:24 +00:00
|
|
|
batch := true
|
|
|
|
err = json.Unmarshal(jsonreq, &reqs)
|
|
|
|
if err != nil {
|
2015-06-17 14:22:35 +00:00
|
|
|
reqs = make([]shared.Request, 1)
|
2015-06-08 11:21:24 +00:00
|
|
|
err = json.Unmarshal(jsonreq, &reqs[0])
|
|
|
|
batch = false
|
|
|
|
}
|
|
|
|
|
|
|
|
call.Otto.Set("response_len", len(reqs))
|
|
|
|
call.Otto.Run("var ret_response = new Array(response_len);")
|
|
|
|
|
|
|
|
for i, req := range reqs {
|
|
|
|
var respif interface{}
|
2015-06-17 14:33:34 +00:00
|
|
|
err := self.client.Send(&req)
|
2015-06-17 14:22:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return self.err(call, -32603, err.Error(), req.Id)
|
|
|
|
}
|
|
|
|
respif, err = self.client.Recv()
|
2015-07-03 10:22:20 +00:00
|
|
|
|
2015-06-08 11:21:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return self.err(call, -32603, err.Error(), req.Id)
|
|
|
|
}
|
2015-06-17 14:22:35 +00:00
|
|
|
|
2015-06-22 10:47:32 +00:00
|
|
|
call.Otto.Set("ret_jsonrpc", shared.JsonRpcVersion)
|
2015-06-08 11:21:24 +00:00
|
|
|
call.Otto.Set("ret_id", req.Id)
|
|
|
|
|
|
|
|
res, _ := json.Marshal(respif)
|
|
|
|
|
|
|
|
call.Otto.Set("ret_result", string(res))
|
|
|
|
call.Otto.Set("response_idx", i)
|
|
|
|
response, err = call.Otto.Run(`
|
|
|
|
ret_response[response_idx] = { jsonrpc: ret_jsonrpc, id: ret_id, result: JSON.parse(ret_result) };
|
|
|
|
`)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !batch {
|
|
|
|
call.Otto.Run("ret_response = ret_response[0];")
|
|
|
|
}
|
|
|
|
|
|
|
|
if call.Argument(1).IsObject() {
|
|
|
|
call.Otto.Set("callback", call.Argument(1))
|
|
|
|
call.Otto.Run(`
|
|
|
|
if (Object.prototype.toString.call(callback) == '[object Function]') {
|
|
|
|
callback(null, ret_response);
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|