2014-10-21 11:24:48 +00:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import (
|
2015-03-06 03:37:45 +00:00
|
|
|
"encoding/json"
|
2014-10-21 11:24:48 +00:00
|
|
|
"math/big"
|
2015-03-09 22:00:27 +00:00
|
|
|
"path"
|
2014-10-21 11:24:48 +00:00
|
|
|
"strings"
|
2015-01-29 15:52:00 +00:00
|
|
|
"sync"
|
2014-10-21 11:24:48 +00:00
|
|
|
|
2015-03-16 18:46:46 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-01-29 15:52:00 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2015-01-28 23:24:00 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2015-01-29 19:39:26 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2014-10-31 13:30:08 +00:00
|
|
|
"github.com/ethereum/go-ethereum/xeth"
|
2014-10-21 11:24:48 +00:00
|
|
|
)
|
|
|
|
|
2015-01-29 15:52:00 +00:00
|
|
|
type EthereumApi struct {
|
2015-02-26 10:14:54 +00:00
|
|
|
eth *xeth.XEth
|
|
|
|
xethMu sync.RWMutex
|
|
|
|
|
2015-03-20 02:58:07 +00:00
|
|
|
// // Register keeps a list of accounts and transaction data
|
|
|
|
// regmut sync.Mutex
|
|
|
|
// register map[string][]*NewTxArgs
|
2015-01-29 19:39:26 +00:00
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
db common.Database
|
2015-01-29 15:52:00 +00:00
|
|
|
}
|
|
|
|
|
2015-03-09 22:00:27 +00:00
|
|
|
func NewEthereumApi(eth *xeth.XEth, dataDir string) *EthereumApi {
|
2015-03-20 03:34:35 +00:00
|
|
|
// What about when dataDir is empty?
|
2015-03-09 22:00:27 +00:00
|
|
|
db, _ := ethdb.NewLDBDatabase(path.Join(dataDir, "dapps"))
|
2015-01-29 15:52:00 +00:00
|
|
|
api := &EthereumApi{
|
2015-03-20 02:58:07 +00:00
|
|
|
eth: eth,
|
|
|
|
db: db,
|
2015-01-29 15:52:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return api
|
2015-01-25 20:50:43 +00:00
|
|
|
}
|
|
|
|
|
2015-03-20 03:20:54 +00:00
|
|
|
func (self *EthereumApi) xeth() *xeth.XEth {
|
|
|
|
self.xethMu.RLock()
|
|
|
|
defer self.xethMu.RUnlock()
|
|
|
|
|
|
|
|
return self.eth
|
|
|
|
}
|
|
|
|
|
2015-03-06 03:37:45 +00:00
|
|
|
func (p *EthereumApi) GetStorageAt(args *GetStorageAtArgs, reply *interface{}) error {
|
|
|
|
if err := args.requirements(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-01-13 05:25:29 +00:00
|
|
|
|
2015-03-20 03:28:45 +00:00
|
|
|
state := p.xeth().AtStateNum(args.BlockNumber).State().SafeGet(args.Address)
|
2015-01-29 19:39:26 +00:00
|
|
|
value := state.StorageString(args.Key)
|
2015-03-19 23:58:59 +00:00
|
|
|
|
2015-01-13 05:25:29 +00:00
|
|
|
var hx string
|
|
|
|
if strings.Index(args.Key, "0x") == 0 {
|
|
|
|
hx = string([]byte(args.Key)[2:])
|
|
|
|
} else {
|
|
|
|
// Convert the incoming string (which is a bigint) into hex
|
|
|
|
i, _ := new(big.Int).SetString(args.Key, 10)
|
2015-03-16 10:27:38 +00:00
|
|
|
hx = common.Bytes2Hex(i.Bytes())
|
2015-01-13 05:25:29 +00:00
|
|
|
}
|
2015-01-29 19:39:26 +00:00
|
|
|
rpclogger.Debugf("GetStateAt(%s, %s)\n", args.Address, hx)
|
|
|
|
*reply = map[string]string{args.Key: value.Str()}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-20 04:24:23 +00:00
|
|
|
// func (self *EthereumApi) Register(args string, reply *interface{}) error {
|
|
|
|
// self.regmut.Lock()
|
|
|
|
// defer self.regmut.Unlock()
|
|
|
|
|
|
|
|
// if _, ok := self.register[args]; ok {
|
|
|
|
// self.register[args] = nil // register with empty
|
|
|
|
// }
|
|
|
|
// return nil
|
|
|
|
// }
|
|
|
|
|
|
|
|
// func (self *EthereumApi) Unregister(args string, reply *interface{}) error {
|
|
|
|
// self.regmut.Lock()
|
|
|
|
// defer self.regmut.Unlock()
|
|
|
|
|
|
|
|
// delete(self.register, args)
|
|
|
|
|
|
|
|
// return nil
|
|
|
|
// }
|
|
|
|
|
|
|
|
// func (self *EthereumApi) WatchTx(args string, reply *interface{}) error {
|
|
|
|
// self.regmut.Lock()
|
|
|
|
// defer self.regmut.Unlock()
|
|
|
|
|
|
|
|
// txs := self.register[args]
|
|
|
|
// self.register[args] = nil
|
|
|
|
|
|
|
|
// *reply = txs
|
|
|
|
// return nil
|
|
|
|
// }
|
|
|
|
|
2015-01-20 19:58:51 +00:00
|
|
|
func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error {
|
2015-02-24 18:05:03 +00:00
|
|
|
// Spec at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC
|
2015-03-19 15:19:54 +00:00
|
|
|
rpclogger.Infof("%s %s", req.Method, req.Params)
|
2015-01-20 19:58:51 +00:00
|
|
|
switch req.Method {
|
2015-03-05 14:58:46 +00:00
|
|
|
case "web3_sha3":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(Sha3Args)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-05 14:58:46 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-16 14:17:19 +00:00
|
|
|
*reply = common.ToHex(crypto.Sha3(common.FromHex(args.Data)))
|
2015-03-13 00:20:46 +00:00
|
|
|
case "web3_clientVersion":
|
|
|
|
*reply = p.xeth().Backend().Version()
|
|
|
|
case "net_version":
|
|
|
|
return NewNotImplementedError(req.Method)
|
2015-03-05 14:58:46 +00:00
|
|
|
case "net_listening":
|
2015-03-06 03:37:45 +00:00
|
|
|
*reply = p.xeth().IsListening()
|
2015-03-05 14:58:46 +00:00
|
|
|
case "net_peerCount":
|
2015-03-16 14:17:19 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(int64(p.xeth().PeerCount())).Bytes())
|
2015-01-20 19:58:51 +00:00
|
|
|
case "eth_coinbase":
|
2015-03-13 18:32:11 +00:00
|
|
|
// TODO handling of empty coinbase due to lack of accounts
|
|
|
|
res := p.xeth().Coinbase()
|
|
|
|
if res == "0x" || res == "0x0" {
|
|
|
|
*reply = nil
|
|
|
|
} else {
|
|
|
|
*reply = res
|
|
|
|
}
|
2015-01-20 19:58:51 +00:00
|
|
|
case "eth_mining":
|
2015-03-06 03:37:45 +00:00
|
|
|
*reply = p.xeth().IsMining()
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_gasPrice":
|
2015-03-20 04:23:48 +00:00
|
|
|
*reply = common.ToHex(p.xeth().DefaultGas().Bytes())
|
2015-01-29 19:39:26 +00:00
|
|
|
case "eth_accounts":
|
2015-03-06 03:37:45 +00:00
|
|
|
*reply = p.xeth().Accounts()
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_blockNumber":
|
2015-03-16 14:17:19 +00:00
|
|
|
*reply = common.ToHex(p.xeth().Backend().ChainManager().CurrentBlock().Number().Bytes())
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getBalance":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(GetBalanceArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-20 19:58:51 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:00:41 +00:00
|
|
|
|
|
|
|
if err := args.requirements(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-20 03:28:45 +00:00
|
|
|
*reply = common.ToHex(p.xeth().AtStateNum(args.BlockNumber).State().SafeGet(args.Address).Balance().Bytes())
|
2015-03-10 19:14:38 +00:00
|
|
|
case "eth_getStorage", "eth_storageAt":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(GetStorageArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 19:39:26 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:02:31 +00:00
|
|
|
|
|
|
|
if err := args.requirements(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-20 03:28:45 +00:00
|
|
|
*reply = p.xeth().AtStateNum(args.BlockNumber).State().SafeGet(args.Address).Storage()
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getStorageAt":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(GetStorageAtArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-20 19:58:51 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return p.GetStorageAt(args, reply)
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getTransactionCount":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(GetTxCountArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-20 19:58:51 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:03:27 +00:00
|
|
|
|
|
|
|
err := args.requirements()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-20 03:28:45 +00:00
|
|
|
*reply = p.xeth().AtStateNum(args.BlockNumber).TxCountAt(args.Address)
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getBlockTransactionCountByHash":
|
2015-03-10 17:52:45 +00:00
|
|
|
args := new(GetBlockByHashArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-20 00:31:40 +00:00
|
|
|
block := p.xeth().EthBlockByHash(args.BlockHash)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
*reply = common.ToHex(big.NewInt(int64(len(br.Transactions))).Bytes())
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getBlockTransactionCountByNumber":
|
2015-03-10 17:52:45 +00:00
|
|
|
args := new(GetBlockByNumberArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-20 00:30:42 +00:00
|
|
|
block := p.xeth().EthBlockByNumber(args.BlockNumber)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
*reply = common.ToHex(big.NewInt(int64(len(br.Transactions))).Bytes())
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getUncleCountByBlockHash":
|
2015-03-10 17:52:45 +00:00
|
|
|
args := new(GetBlockByHashArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-20 00:29:46 +00:00
|
|
|
block := p.xeth().EthBlockByHash(args.BlockHash)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
*reply = common.ToHex(big.NewInt(int64(len(br.Uncles))).Bytes())
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getUncleCountByBlockNumber":
|
2015-03-10 17:52:45 +00:00
|
|
|
args := new(GetBlockByNumberArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-20 00:28:25 +00:00
|
|
|
block := p.xeth().EthBlockByNumber(args.BlockNumber)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
*reply = common.ToHex(big.NewInt(int64(len(br.Uncles))).Bytes())
|
2015-03-14 17:57:12 +00:00
|
|
|
case "eth_getData", "eth_getCode":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(GetDataArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-05 14:58:46 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:04:02 +00:00
|
|
|
if err := args.requirements(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:28:45 +00:00
|
|
|
*reply = p.xeth().AtStateNum(args.BlockNumber).CodeAt(args.Address)
|
2015-03-10 19:28:20 +00:00
|
|
|
case "eth_sendTransaction", "eth_transact":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(NewTxArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 11:01:51 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 06:15:34 +00:00
|
|
|
|
|
|
|
if err := args.requirements(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
v, err := p.xeth().Transact(args.From, args.To, args.Value.String(), args.Gas.String(), args.GasPrice.String(), args.Data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*reply = v
|
2015-01-29 12:10:34 +00:00
|
|
|
case "eth_call":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(NewTxArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 12:10:34 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 05:58:53 +00:00
|
|
|
|
|
|
|
result, err := p.xeth().AtStateNum(args.BlockNumber).Call(args.From, args.To, args.Value.String(), args.Gas.String(), args.GasPrice.String(), args.Data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
*reply = result
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_flush":
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewNotImplementedError(req.Method)
|
2015-03-05 17:07:05 +00:00
|
|
|
case "eth_getBlockByHash":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(GetBlockByHashArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 15:52:00 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-10 17:52:45 +00:00
|
|
|
|
2015-03-20 05:53:24 +00:00
|
|
|
block := p.xeth().EthBlockByHash(args.BlockHash)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
br.fullTx = args.IncludeTxs
|
|
|
|
|
|
|
|
*reply = br
|
2015-03-06 03:37:45 +00:00
|
|
|
case "eth_getBlockByNumber":
|
|
|
|
args := new(GetBlockByNumberArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-10 17:52:45 +00:00
|
|
|
|
2015-03-20 05:57:23 +00:00
|
|
|
block := p.xeth().EthBlockByNumber(args.BlockNumber)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
br.fullTx = args.IncludeTxs
|
|
|
|
|
|
|
|
*reply = br
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getTransactionByHash":
|
2015-03-12 14:59:07 +00:00
|
|
|
// HashIndexArgs used, but only the "Hash" part we need.
|
|
|
|
args := new(HashIndexArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
}
|
2015-03-20 00:26:09 +00:00
|
|
|
tx := p.xeth().EthTransactionByHash(args.Hash)
|
2015-03-20 00:12:12 +00:00
|
|
|
if tx != nil {
|
|
|
|
*reply = NewTransactionRes(tx)
|
|
|
|
}
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getTransactionByBlockHashAndIndex":
|
2015-03-11 03:25:07 +00:00
|
|
|
args := new(HashIndexArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-20 05:53:24 +00:00
|
|
|
block := p.xeth().EthBlockByHash(args.Hash)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
br.fullTx = true
|
|
|
|
|
|
|
|
if args.Index > int64(len(br.Transactions)) || args.Index < 0 {
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewValidationError("Index", "does not exist")
|
2015-03-11 03:25:07 +00:00
|
|
|
}
|
2015-03-20 05:53:24 +00:00
|
|
|
*reply = br.Transactions[args.Index]
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getTransactionByBlockNumberAndIndex":
|
2015-03-11 03:25:07 +00:00
|
|
|
args := new(BlockNumIndexArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-20 05:57:23 +00:00
|
|
|
block := p.xeth().EthBlockByNumber(args.BlockNumber)
|
|
|
|
v := NewBlockRes(block)
|
|
|
|
v.fullTx = true
|
|
|
|
|
2015-03-11 15:25:15 +00:00
|
|
|
if args.Index > int64(len(v.Transactions)) || args.Index < 0 {
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewValidationError("Index", "does not exist")
|
2015-03-11 03:25:07 +00:00
|
|
|
}
|
2015-03-11 15:25:15 +00:00
|
|
|
*reply = v.Transactions[args.Index]
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getUncleByBlockHashAndIndex":
|
2015-03-11 15:27:32 +00:00
|
|
|
args := new(HashIndexArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-20 05:53:24 +00:00
|
|
|
br := NewBlockRes(p.xeth().EthBlockByHash(args.Hash))
|
|
|
|
|
|
|
|
if args.Index > int64(len(br.Uncles)) || args.Index < 0 {
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewValidationError("Index", "does not exist")
|
2015-03-11 15:27:32 +00:00
|
|
|
}
|
|
|
|
|
2015-03-20 05:53:24 +00:00
|
|
|
uhash := common.ToHex(br.Uncles[args.Index])
|
|
|
|
uncle := NewBlockRes(p.xeth().EthBlockByHash(uhash))
|
|
|
|
|
2015-03-11 15:27:32 +00:00
|
|
|
*reply = uncle
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getUncleByBlockNumberAndIndex":
|
2015-03-11 15:27:32 +00:00
|
|
|
args := new(BlockNumIndexArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-20 05:57:23 +00:00
|
|
|
block := p.xeth().EthBlockByNumber(args.BlockNumber)
|
|
|
|
v := NewBlockRes(block)
|
|
|
|
v.fullTx = true
|
|
|
|
|
2015-03-11 15:27:32 +00:00
|
|
|
if args.Index > int64(len(v.Uncles)) || args.Index < 0 {
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewValidationError("Index", "does not exist")
|
2015-03-11 15:27:32 +00:00
|
|
|
}
|
|
|
|
|
2015-03-20 05:53:24 +00:00
|
|
|
uhash := common.ToHex(v.Uncles[args.Index])
|
|
|
|
uncle := NewBlockRes(p.xeth().EthBlockByHash(uhash))
|
|
|
|
|
2015-03-11 15:27:32 +00:00
|
|
|
*reply = uncle
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getCompilers":
|
2015-03-20 00:04:40 +00:00
|
|
|
c := []string{""}
|
|
|
|
*reply = c
|
2015-03-13 00:20:46 +00:00
|
|
|
case "eth_compileSolidity", "eth_compileLLL", "eth_compileSerpent":
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewNotImplementedError(req.Method)
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_newFilter":
|
2015-03-20 03:55:17 +00:00
|
|
|
args := new(BlockFilterArgs)
|
2015-03-06 03:37:45 +00:00
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-02-05 19:55:03 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:03:53 +00:00
|
|
|
|
|
|
|
opts := toFilterOptions(args)
|
|
|
|
id := p.xeth().RegisterFilter(opts)
|
|
|
|
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
|
2015-03-05 17:07:05 +00:00
|
|
|
case "eth_newBlockFilter":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterStringArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-05 17:07:05 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:06:32 +00:00
|
|
|
if err := args.requirements(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
id := p.xeth().NewFilterString(args.Word)
|
|
|
|
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
|
2015-02-19 12:21:37 +00:00
|
|
|
case "eth_uninstallFilter":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterIdArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-02-19 12:21:37 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:05:23 +00:00
|
|
|
*reply = p.xeth().UninstallFilter(args.Id)
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getFilterChanges":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterIdArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 15:52:00 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:07:25 +00:00
|
|
|
*reply = NewLogsRes(p.xeth().FilterChanged(args.Id))
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getFilterLogs":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterIdArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-02-17 21:46:30 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:08:26 +00:00
|
|
|
*reply = NewLogsRes(p.xeth().Logs(args.Id))
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getLogs":
|
2015-03-20 03:55:17 +00:00
|
|
|
args := new(BlockFilterArgs)
|
2015-03-06 03:37:45 +00:00
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-02-22 12:12:01 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:10:23 +00:00
|
|
|
opts := toFilterOptions(args)
|
|
|
|
*reply = NewLogsRes(p.xeth().AllLogs(opts))
|
2015-03-13 00:20:46 +00:00
|
|
|
case "eth_getWork", "eth_submitWork":
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewNotImplementedError(req.Method)
|
2015-03-13 14:56:41 +00:00
|
|
|
case "db_putString":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(DbArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 19:39:26 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:05:48 +00:00
|
|
|
|
|
|
|
if err := args.requirements(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
p.db.Put([]byte(args.Database+args.Key), []byte(args.Value))
|
|
|
|
*reply = true
|
2015-03-13 14:56:41 +00:00
|
|
|
case "db_getString":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(DbArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-29 19:39:26 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:09:54 +00:00
|
|
|
|
2015-03-20 00:06:35 +00:00
|
|
|
if err := args.requirements(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
res, _ := p.db.Get([]byte(args.Database + args.Key))
|
|
|
|
*reply = string(res)
|
2015-03-13 14:56:41 +00:00
|
|
|
case "db_putHex", "db_getHex":
|
|
|
|
return NewNotImplementedError(req.Method)
|
2015-03-05 14:58:46 +00:00
|
|
|
case "shh_post":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(WhisperMessageArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-05 14:58:46 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:40:50 +00:00
|
|
|
|
|
|
|
err := p.xeth().Whisper().Post(args.Payload, args.To, args.From, args.Topics, args.Priority, args.Ttl)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
*reply = true
|
2015-01-30 12:25:12 +00:00
|
|
|
case "shh_newIdentity":
|
2015-03-20 00:09:54 +00:00
|
|
|
*reply = p.xeth().Whisper().NewIdentity()
|
2015-03-17 13:11:01 +00:00
|
|
|
// case "shh_removeIdentity":
|
|
|
|
// args := new(WhisperIdentityArgs)
|
|
|
|
// if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
// return err
|
|
|
|
// }
|
2015-03-20 00:10:05 +00:00
|
|
|
// *reply = p.xeth().Whisper().RemoveIdentity(args.Identity)
|
2015-03-05 14:58:46 +00:00
|
|
|
case "shh_hasIdentity":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(WhisperIdentityArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-03-05 14:58:46 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:00:18 +00:00
|
|
|
*reply = p.xeth().Whisper().HasIdentity(args.Identity)
|
2015-03-13 00:20:46 +00:00
|
|
|
case "shh_newGroup", "shh_addToGroup":
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewNotImplementedError(req.Method)
|
2015-01-30 12:25:12 +00:00
|
|
|
case "shh_newFilter":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(WhisperFilterArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-30 12:25:12 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:11:52 +00:00
|
|
|
opts := new(xeth.Options)
|
|
|
|
opts.From = args.From
|
|
|
|
opts.To = args.To
|
|
|
|
opts.Topics = args.Topics
|
|
|
|
id := p.xeth().NewWhisperFilter(opts)
|
|
|
|
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
|
2015-03-05 14:58:46 +00:00
|
|
|
case "shh_uninstallFilter":
|
2015-03-11 20:49:21 +00:00
|
|
|
args := new(FilterIdArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:13:52 +00:00
|
|
|
*reply = p.xeth().UninstallWhisperFilter(args.Id)
|
2015-03-05 17:07:05 +00:00
|
|
|
case "shh_getFilterChanges":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterIdArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-30 12:25:12 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 03:14:55 +00:00
|
|
|
*reply = p.xeth().MessagesChanged(args.Id)
|
2015-01-30 12:47:18 +00:00
|
|
|
case "shh_getMessages":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterIdArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-01-30 12:47:18 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-20 00:26:09 +00:00
|
|
|
*reply = p.xeth().Whisper().Messages(args.Id)
|
2015-03-06 03:48:03 +00:00
|
|
|
// case "eth_register":
|
|
|
|
// args, err := req.ToRegisterArgs()
|
|
|
|
// if err != nil {
|
|
|
|
// return err
|
|
|
|
// }
|
|
|
|
// return p.Register(args, reply)
|
|
|
|
// case "eth_unregister":
|
|
|
|
// args, err := req.ToRegisterArgs()
|
|
|
|
// if err != nil {
|
|
|
|
// return err
|
|
|
|
// }
|
|
|
|
// return p.Unregister(args, reply)
|
|
|
|
// case "eth_watchTx":
|
|
|
|
// args, err := req.ToWatchTxArgs()
|
|
|
|
// if err != nil {
|
|
|
|
// return err
|
|
|
|
// }
|
|
|
|
// return p.WatchTx(args, reply)
|
2015-01-20 19:58:51 +00:00
|
|
|
default:
|
2015-03-13 00:07:03 +00:00
|
|
|
return NewNotImplementedError(req.Method)
|
2015-01-20 19:58:51 +00:00
|
|
|
}
|
|
|
|
|
2015-01-25 20:50:43 +00:00
|
|
|
rpclogger.DebugDetailf("Reply: %T %s", reply, reply)
|
2015-01-13 15:27:36 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-02-26 10:14:54 +00:00
|
|
|
|
2015-03-20 03:55:17 +00:00
|
|
|
func toFilterOptions(options *BlockFilterArgs) *core.FilterOptions {
|
2015-03-06 03:48:03 +00:00
|
|
|
var opts core.FilterOptions
|
|
|
|
|
|
|
|
// Convert optional address slice/string to byte slice
|
|
|
|
if str, ok := options.Address.(string); ok {
|
2015-03-16 10:27:38 +00:00
|
|
|
opts.Address = [][]byte{common.FromHex(str)}
|
2015-03-06 03:48:03 +00:00
|
|
|
} else if slice, ok := options.Address.([]interface{}); ok {
|
|
|
|
bslice := make([][]byte, len(slice))
|
|
|
|
for i, addr := range slice {
|
|
|
|
if saddr, ok := addr.(string); ok {
|
2015-03-16 10:27:38 +00:00
|
|
|
bslice[i] = common.FromHex(saddr)
|
2015-03-06 03:48:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
opts.Address = bslice
|
|
|
|
}
|
|
|
|
|
|
|
|
opts.Earliest = options.Earliest
|
|
|
|
opts.Latest = options.Latest
|
2015-03-09 17:19:35 +00:00
|
|
|
|
|
|
|
topics := make([][][]byte, len(options.Topics))
|
|
|
|
for i, topicDat := range options.Topics {
|
|
|
|
if slice, ok := topicDat.([]interface{}); ok {
|
|
|
|
topics[i] = make([][]byte, len(slice))
|
|
|
|
for j, topic := range slice {
|
2015-03-16 10:27:38 +00:00
|
|
|
topics[i][j] = common.FromHex(topic.(string))
|
2015-03-09 17:19:35 +00:00
|
|
|
}
|
|
|
|
} else if str, ok := topicDat.(string); ok {
|
|
|
|
topics[i] = make([][]byte, 1)
|
2015-03-16 10:27:38 +00:00
|
|
|
topics[i][0] = common.FromHex(str)
|
2015-03-09 17:19:35 +00:00
|
|
|
}
|
2015-03-06 03:48:03 +00:00
|
|
|
}
|
2015-03-09 17:19:35 +00:00
|
|
|
opts.Topics = topics
|
2015-03-06 03:48:03 +00:00
|
|
|
|
2015-03-20 02:58:07 +00:00
|
|
|
return &opts
|
2015-03-19 18:28:31 +00:00
|
|
|
}
|