aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/jeth.go
blob: 11d4599c9a2ae07b61956cb21068d49c7fe933bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package rpc

import (
    "encoding/json"
    // "fmt"
    "github.com/obscuren/otto"
)

type Jeth struct {
    ethApi *EthereumApi
    toVal  func(interface{}) otto.Value
}

func NewJeth(ethApi *EthereumApi, toVal func(interface{}) otto.Value) *Jeth {
    return &Jeth{ethApi, toVal}
}

func (self *Jeth) err(code int, msg string, id interface{}) otto.Value {
    rpcerr := &RpcErrorObject{code, msg}
    rpcresponse := &RpcErrorResponse{Jsonrpc: jsonrpcver, Id: id, Error: rpcerr}
    return self.toVal(rpcresponse)
}

func (self *Jeth) Send(call otto.FunctionCall) (response otto.Value) {
    reqif, err := call.Argument(0).Export()
    if err != nil {
        return self.err(-32700, err.Error(), nil)
    }

    jsonreq, err := json.Marshal(reqif)

    var req RpcRequest
    err = json.Unmarshal(jsonreq, &req)

    var respif interface{}
    err = self.ethApi.GetRequestReply(&req, &respif)
    if err != nil {
        return self.err(-32603, err.Error(), req.Id)
    }
    rpcresponse := &RpcSuccessResponse{Jsonrpc: jsonrpcver, Id: req.Id, Result: respif}
    response = self.toVal(rpcresponse)
    return
}