2014-10-21 11:24:48 +00:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import (
|
2015-03-06 03:37:45 +00:00
|
|
|
"encoding/json"
|
2015-03-11 00:08:42 +00:00
|
|
|
"fmt"
|
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"
|
2015-02-20 11:59:54 +00:00
|
|
|
"time"
|
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-02-05 19:55:03 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
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"
|
2015-02-26 10:14:54 +00:00
|
|
|
"github.com/ethereum/go-ethereum/event"
|
2015-01-29 15:52:00 +00:00
|
|
|
"github.com/ethereum/go-ethereum/event/filter"
|
|
|
|
"github.com/ethereum/go-ethereum/state"
|
2014-10-31 13:30:08 +00:00
|
|
|
"github.com/ethereum/go-ethereum/xeth"
|
2014-10-21 11:24:48 +00:00
|
|
|
)
|
|
|
|
|
2015-02-24 16:32:11 +00:00
|
|
|
var (
|
2015-03-11 16:36:35 +00:00
|
|
|
defaultGasPrice = big.NewInt(150000000000)
|
|
|
|
defaultGas = big.NewInt(500000)
|
2015-03-14 17:57:12 +00:00
|
|
|
filterTickerTime = 5 * time.Minute
|
2015-02-05 02:34:29 +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
|
|
|
|
mux *event.TypeMux
|
|
|
|
|
2015-02-20 11:59:54 +00:00
|
|
|
quit chan struct{}
|
2015-01-29 15:52:00 +00:00
|
|
|
filterManager *filter.FilterManager
|
|
|
|
|
2015-01-30 12:25:12 +00:00
|
|
|
logMut sync.RWMutex
|
2015-02-20 11:59:54 +00:00
|
|
|
logs map[int]*logFilter
|
2015-01-30 12:25:12 +00:00
|
|
|
|
|
|
|
messagesMut sync.RWMutex
|
2015-02-20 11:59:54 +00:00
|
|
|
messages map[int]*whisperFilter
|
2015-02-17 15:54:52 +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 {
|
|
|
|
db, _ := ethdb.NewLDBDatabase(path.Join(dataDir, "dapps"))
|
2015-01-29 15:52:00 +00:00
|
|
|
api := &EthereumApi{
|
2015-03-02 15:36:48 +00:00
|
|
|
eth: eth,
|
|
|
|
mux: eth.Backend().EventMux(),
|
|
|
|
quit: make(chan struct{}),
|
|
|
|
filterManager: filter.NewFilterManager(eth.Backend().EventMux()),
|
|
|
|
logs: make(map[int]*logFilter),
|
|
|
|
messages: make(map[int]*whisperFilter),
|
|
|
|
db: db,
|
2015-01-29 15:52:00 +00:00
|
|
|
}
|
|
|
|
go api.filterManager.Start()
|
2015-02-20 11:59:54 +00:00
|
|
|
go api.start()
|
2015-01-29 15:52:00 +00:00
|
|
|
|
|
|
|
return api
|
2015-01-25 20:50:43 +00:00
|
|
|
}
|
|
|
|
|
2015-03-11 16:00:20 +00:00
|
|
|
func (self *EthereumApi) xethWithStateNum(num int64) *xeth.XEth {
|
|
|
|
chain := self.xeth().Backend().ChainManager()
|
|
|
|
var block *types.Block
|
2015-02-26 11:06:10 +00:00
|
|
|
|
2015-03-11 16:00:20 +00:00
|
|
|
if num < 0 {
|
|
|
|
num = chain.CurrentBlock().Number().Int64() + num + 1
|
|
|
|
}
|
|
|
|
block = chain.GetBlockByNumber(uint64(num))
|
2015-02-26 11:06:10 +00:00
|
|
|
|
2015-03-11 16:00:20 +00:00
|
|
|
var st *state.StateDB
|
|
|
|
if block != nil {
|
|
|
|
st = state.New(block.Root(), self.xeth().Backend().StateDb())
|
|
|
|
} else {
|
|
|
|
st = chain.State()
|
|
|
|
}
|
|
|
|
return self.xeth().WithState(st)
|
|
|
|
}
|
|
|
|
|
2015-02-24 18:54:18 +00:00
|
|
|
func (self *EthereumApi) start() {
|
|
|
|
timer := time.NewTicker(filterTickerTime)
|
|
|
|
done:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-timer.C:
|
|
|
|
self.logMut.Lock()
|
|
|
|
self.messagesMut.Lock()
|
|
|
|
for id, filter := range self.logs {
|
|
|
|
if time.Since(filter.timeout) > 20*time.Second {
|
|
|
|
self.filterManager.UninstallFilter(id)
|
|
|
|
delete(self.logs, id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for id, filter := range self.messages {
|
|
|
|
if time.Since(filter.timeout) > 20*time.Second {
|
2015-02-26 10:14:54 +00:00
|
|
|
self.xeth().Whisper().Unwatch(id)
|
2015-02-24 18:54:18 +00:00
|
|
|
delete(self.messages, id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.logMut.Unlock()
|
|
|
|
self.messagesMut.Unlock()
|
|
|
|
case <-self.quit:
|
|
|
|
break done
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *EthereumApi) stop() {
|
|
|
|
close(self.quit)
|
|
|
|
}
|
|
|
|
|
2015-03-06 03:48:03 +00:00
|
|
|
// func (self *EthereumApi) Register(args string, reply *interface{}) error {
|
|
|
|
// self.regmut.Lock()
|
|
|
|
// defer self.regmut.Unlock()
|
2015-02-17 15:54:52 +00:00
|
|
|
|
2015-03-06 03:48:03 +00:00
|
|
|
// if _, ok := self.register[args]; ok {
|
|
|
|
// self.register[args] = nil // register with empty
|
|
|
|
// }
|
|
|
|
// return nil
|
|
|
|
// }
|
2015-02-17 15:54:52 +00:00
|
|
|
|
2015-03-06 03:48:03 +00:00
|
|
|
// func (self *EthereumApi) Unregister(args string, reply *interface{}) error {
|
|
|
|
// self.regmut.Lock()
|
|
|
|
// defer self.regmut.Unlock()
|
2015-02-17 15:54:52 +00:00
|
|
|
|
2015-03-06 03:48:03 +00:00
|
|
|
// delete(self.register, args)
|
2015-02-17 15:54:52 +00:00
|
|
|
|
2015-03-06 03:48:03 +00:00
|
|
|
// return nil
|
|
|
|
// }
|
2015-02-17 15:54:52 +00:00
|
|
|
|
2015-03-06 03:37:45 +00:00
|
|
|
// func (self *EthereumApi) WatchTx(args string, reply *interface{}) error {
|
|
|
|
// self.regmut.Lock()
|
|
|
|
// defer self.regmut.Unlock()
|
2015-02-17 15:54:52 +00:00
|
|
|
|
2015-03-06 03:37:45 +00:00
|
|
|
// txs := self.register[args]
|
|
|
|
// self.register[args] = nil
|
2015-02-17 15:54:52 +00:00
|
|
|
|
2015-03-06 03:37:45 +00:00
|
|
|
// *reply = txs
|
|
|
|
// return nil
|
|
|
|
// }
|
2015-02-17 15:54:52 +00:00
|
|
|
|
2015-01-29 15:52:00 +00:00
|
|
|
func (self *EthereumApi) NewFilter(args *FilterOptions, reply *interface{}) error {
|
|
|
|
var id int
|
2015-02-26 10:14:54 +00:00
|
|
|
filter := core.NewFilter(self.xeth().Backend())
|
2015-02-05 01:28:54 +00:00
|
|
|
filter.SetOptions(toFilterOptions(args))
|
2015-01-29 15:52:00 +00:00
|
|
|
filter.LogsCallback = func(logs state.Logs) {
|
2015-01-30 12:25:12 +00:00
|
|
|
self.logMut.Lock()
|
|
|
|
defer self.logMut.Unlock()
|
2015-01-29 15:52:00 +00:00
|
|
|
|
2015-02-20 11:59:54 +00:00
|
|
|
self.logs[id].add(logs...)
|
2015-01-29 15:52:00 +00:00
|
|
|
}
|
|
|
|
id = self.filterManager.InstallFilter(filter)
|
2015-02-20 15:59:08 +00:00
|
|
|
self.logs[id] = &logFilter{timeout: time.Now()}
|
|
|
|
|
2015-03-18 15:10:08 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
|
2015-01-29 15:52:00 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-02-19 12:21:37 +00:00
|
|
|
func (self *EthereumApi) UninstallFilter(id int, reply *interface{}) error {
|
2015-03-12 05:01:18 +00:00
|
|
|
if _, ok := self.logs[id]; ok {
|
|
|
|
delete(self.logs, id)
|
|
|
|
}
|
|
|
|
|
2015-02-19 12:21:37 +00:00
|
|
|
self.filterManager.UninstallFilter(id)
|
|
|
|
*reply = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-13 14:03:19 +00:00
|
|
|
func (self *EthereumApi) NewFilterString(args *FilterStringArgs, reply *interface{}) error {
|
2015-02-05 19:55:03 +00:00
|
|
|
var id int
|
2015-02-26 10:14:54 +00:00
|
|
|
filter := core.NewFilter(self.xeth().Backend())
|
2015-02-05 19:55:03 +00:00
|
|
|
|
|
|
|
callback := func(block *types.Block) {
|
2015-02-17 21:20:47 +00:00
|
|
|
self.logMut.Lock()
|
|
|
|
defer self.logMut.Unlock()
|
|
|
|
|
2015-02-20 11:59:54 +00:00
|
|
|
self.logs[id].add(&state.StateLog{})
|
2015-02-05 19:55:03 +00:00
|
|
|
}
|
2015-03-13 14:03:19 +00:00
|
|
|
|
|
|
|
switch args.Word {
|
|
|
|
case "pending":
|
2015-02-05 19:55:03 +00:00
|
|
|
filter.PendingCallback = callback
|
2015-03-13 14:03:19 +00:00
|
|
|
case "latest":
|
2015-02-05 19:55:03 +00:00
|
|
|
filter.BlockCallback = callback
|
2015-03-13 14:03:19 +00:00
|
|
|
default:
|
|
|
|
return NewValidationError("Word", "Must be `latest` or `pending`")
|
2015-02-05 19:55:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
id = self.filterManager.InstallFilter(filter)
|
2015-02-23 14:43:41 +00:00
|
|
|
self.logs[id] = &logFilter{timeout: time.Now()}
|
2015-03-18 15:10:08 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
|
2015-02-05 19:55:03 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-01-29 15:52:00 +00:00
|
|
|
func (self *EthereumApi) FilterChanged(id int, reply *interface{}) error {
|
2015-02-15 01:12:14 +00:00
|
|
|
self.logMut.Lock()
|
|
|
|
defer self.logMut.Unlock()
|
2015-01-29 15:52:00 +00:00
|
|
|
|
2015-02-20 11:59:54 +00:00
|
|
|
if self.logs[id] != nil {
|
2015-03-19 18:19:52 +00:00
|
|
|
*reply = NewLogsRes(self.logs[id].get())
|
2015-02-20 11:59:54 +00:00
|
|
|
}
|
2015-01-29 15:52:00 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *EthereumApi) Logs(id int, reply *interface{}) error {
|
2015-02-17 21:20:47 +00:00
|
|
|
self.logMut.Lock()
|
|
|
|
defer self.logMut.Unlock()
|
|
|
|
|
2015-01-29 15:52:00 +00:00
|
|
|
filter := self.filterManager.GetFilter(id)
|
2015-02-17 21:46:30 +00:00
|
|
|
if filter != nil {
|
2015-03-19 18:19:52 +00:00
|
|
|
*reply = NewLogsRes(filter.Find())
|
2015-02-17 21:46:30 +00:00
|
|
|
}
|
2015-01-29 15:52:00 +00:00
|
|
|
|
|
|
|
return nil
|
2014-10-21 11:24:48 +00:00
|
|
|
}
|
|
|
|
|
2015-02-22 12:12:01 +00:00
|
|
|
func (self *EthereumApi) AllLogs(args *FilterOptions, reply *interface{}) error {
|
2015-02-26 10:14:54 +00:00
|
|
|
filter := core.NewFilter(self.xeth().Backend())
|
2015-02-22 12:12:01 +00:00
|
|
|
filter.SetOptions(toFilterOptions(args))
|
|
|
|
|
2015-03-19 18:19:52 +00:00
|
|
|
*reply = NewLogsRes(filter.Find())
|
2015-02-22 12:12:01 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-11 00:08:42 +00:00
|
|
|
func (p *EthereumApi) Transact(args *NewTxArgs, reply *interface{}) (err error) {
|
2015-02-17 15:54:52 +00:00
|
|
|
// TODO if no_private_key then
|
2015-02-26 10:14:54 +00:00
|
|
|
//if _, exists := p.register[args.From]; exists {
|
|
|
|
// p.register[args.From] = append(p.register[args.From], args)
|
|
|
|
//} else {
|
|
|
|
/*
|
2015-03-16 10:27:38 +00:00
|
|
|
account := accounts.Get(common.FromHex(args.From))
|
2015-02-26 10:14:54 +00:00
|
|
|
if account != nil {
|
|
|
|
if account.Unlocked() {
|
|
|
|
if !unlockAccount(account) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
result, _ := account.Transact(common.FromHex(args.To), common.FromHex(args.Value), common.FromHex(args.Gas), common.FromHex(args.GasPrice), common.FromHex(args.Data))
|
2015-02-26 10:14:54 +00:00
|
|
|
if len(result) > 0 {
|
2015-03-16 14:17:19 +00:00
|
|
|
*reply = common.ToHex(result)
|
2015-02-26 10:14:54 +00:00
|
|
|
}
|
|
|
|
} else if _, exists := p.register[args.From]; exists {
|
|
|
|
p.register[ags.From] = append(p.register[args.From], args)
|
|
|
|
}
|
|
|
|
*/
|
2015-02-26 12:22:09 +00:00
|
|
|
// TODO: align default values to have the same type, e.g. not depend on
|
2015-03-16 10:27:38 +00:00
|
|
|
// common.Value conversions later on
|
2015-03-11 00:08:42 +00:00
|
|
|
if args.Gas.Cmp(big.NewInt(0)) == 0 {
|
|
|
|
args.Gas = defaultGas
|
2015-02-05 02:34:29 +00:00
|
|
|
}
|
|
|
|
|
2015-03-11 00:08:42 +00:00
|
|
|
if args.GasPrice.Cmp(big.NewInt(0)) == 0 {
|
|
|
|
args.GasPrice = defaultGasPrice
|
2015-01-13 05:25:29 +00:00
|
|
|
}
|
2015-02-05 02:34:29 +00:00
|
|
|
|
2015-03-11 00:08:42 +00:00
|
|
|
*reply, err = p.xeth().Transact(args.From, args.To, args.Value.String(), args.Gas.String(), args.GasPrice.String(), args.Data)
|
2015-03-04 14:22:59 +00:00
|
|
|
if err != nil {
|
2015-03-11 00:08:42 +00:00
|
|
|
fmt.Println("err:", err)
|
2015-03-04 14:22:59 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-02-19 21:33:22 +00:00
|
|
|
|
2015-01-29 12:10:34 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *EthereumApi) Call(args *NewTxArgs, reply *interface{}) error {
|
2015-03-11 16:00:20 +00:00
|
|
|
result, err := p.xethWithStateNum(args.BlockNumber).Call(args.From, args.To, args.Value.String(), args.Gas.String(), args.GasPrice.String(), args.Data)
|
2015-01-29 12:10:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-01-13 05:25:29 +00:00
|
|
|
*reply = result
|
|
|
|
return nil
|
2014-10-21 11:24:48 +00:00
|
|
|
}
|
|
|
|
|
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-19 23:58:59 +00:00
|
|
|
state := p.xethWithStateNum(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-06 03:37:45 +00:00
|
|
|
func (p *EthereumApi) GetData(args *GetDataArgs, reply *interface{}) error {
|
|
|
|
if err := args.requirements(); err != nil {
|
2015-01-13 15:27:36 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-11 16:00:20 +00:00
|
|
|
*reply = p.xethWithStateNum(args.BlockNumber).CodeAt(args.Address)
|
2015-01-13 15:27:36 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-02-19 17:41:50 +00:00
|
|
|
func (p *EthereumApi) GetCompilers(reply *interface{}) error {
|
2015-03-09 15:55:18 +00:00
|
|
|
c := []string{""}
|
2015-02-19 17:41:50 +00:00
|
|
|
*reply = c
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-01-29 19:39:26 +00:00
|
|
|
func (p *EthereumApi) DbPut(args *DbArgs, reply *interface{}) error {
|
2015-03-06 03:37:45 +00:00
|
|
|
if err := args.requirements(); err != nil {
|
2015-01-29 19:39:26 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
p.db.Put([]byte(args.Database+args.Key), []byte(args.Value))
|
|
|
|
*reply = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *EthereumApi) DbGet(args *DbArgs, reply *interface{}) error {
|
2015-03-06 03:37:45 +00:00
|
|
|
if err := args.requirements(); err != nil {
|
2015-01-29 19:39:26 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
res, _ := p.db.Get([]byte(args.Database + args.Key))
|
|
|
|
*reply = string(res)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-01-30 12:25:12 +00:00
|
|
|
func (p *EthereumApi) NewWhisperIdentity(reply *interface{}) error {
|
2015-02-26 10:14:54 +00:00
|
|
|
*reply = p.xeth().Whisper().NewIdentity()
|
2015-01-30 12:25:12 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-17 13:11:01 +00:00
|
|
|
// func (p *EthereumApi) RemoveWhisperIdentity(args *WhisperIdentityArgs, reply *interface{}) error {
|
|
|
|
// *reply = p.xeth().Whisper().RemoveIdentity(args.Identity)
|
|
|
|
// return nil
|
|
|
|
// }
|
2015-03-16 18:46:46 +00:00
|
|
|
|
2015-03-06 03:37:45 +00:00
|
|
|
func (p *EthereumApi) NewWhisperFilter(args *WhisperFilterArgs, reply *interface{}) error {
|
2015-01-30 12:25:12 +00:00
|
|
|
var id int
|
2015-03-06 03:37:45 +00:00
|
|
|
opts := new(xeth.Options)
|
|
|
|
opts.From = args.From
|
|
|
|
opts.To = args.To
|
|
|
|
opts.Topics = args.Topics
|
|
|
|
opts.Fn = func(msg xeth.WhisperMessage) {
|
2015-01-30 12:25:12 +00:00
|
|
|
p.messagesMut.Lock()
|
|
|
|
defer p.messagesMut.Unlock()
|
2015-02-20 11:59:54 +00:00
|
|
|
p.messages[id].add(msg) // = append(p.messages[id], msg)
|
2015-01-30 12:25:12 +00:00
|
|
|
}
|
2015-03-06 03:37:45 +00:00
|
|
|
id = p.xeth().Whisper().Watch(opts)
|
2015-02-23 14:43:41 +00:00
|
|
|
p.messages[id] = &whisperFilter{timeout: time.Now()}
|
2015-03-16 14:17:19 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
|
2015-01-30 12:25:12 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-11 20:49:21 +00:00
|
|
|
func (p *EthereumApi) UninstallWhisperFilter(id int, reply *interface{}) error {
|
|
|
|
delete(p.messages, id)
|
|
|
|
*reply = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-01-30 12:25:12 +00:00
|
|
|
func (self *EthereumApi) MessagesChanged(id int, reply *interface{}) error {
|
2015-02-15 01:12:14 +00:00
|
|
|
self.messagesMut.Lock()
|
|
|
|
defer self.messagesMut.Unlock()
|
2015-01-30 12:25:12 +00:00
|
|
|
|
2015-02-20 11:59:54 +00:00
|
|
|
if self.messages[id] != nil {
|
|
|
|
*reply = self.messages[id].get()
|
|
|
|
}
|
2015-01-30 12:25:12 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *EthereumApi) WhisperPost(args *WhisperMessageArgs, reply *interface{}) error {
|
2015-03-11 15:56:44 +00:00
|
|
|
err := p.xeth().Whisper().Post(args.Payload, args.To, args.From, args.Topics, args.Priority, args.Ttl)
|
2015-01-30 12:25:12 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
*reply = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-01-30 12:47:18 +00:00
|
|
|
func (p *EthereumApi) WhisperMessages(id int, reply *interface{}) error {
|
2015-02-26 10:14:54 +00:00
|
|
|
*reply = p.xeth().Whisper().Messages(id)
|
2015-01-30 12:47:18 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-12 14:59:07 +00:00
|
|
|
func (p *EthereumApi) GetTransactionByHash(hash string, reply *interface{}) error {
|
|
|
|
tx := p.xeth().EthTransactionByHash(hash)
|
|
|
|
if tx != nil {
|
|
|
|
*reply = NewTransactionRes(tx)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-10 17:52:45 +00:00
|
|
|
func (p *EthereumApi) GetBlockByHash(blockhash string, includetx bool) (*BlockRes, error) {
|
|
|
|
block := p.xeth().EthBlockByHash(blockhash)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
br.fullTx = includetx
|
|
|
|
return br, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *EthereumApi) GetBlockByNumber(blocknum int64, includetx bool) (*BlockRes, error) {
|
|
|
|
block := p.xeth().EthBlockByNumber(blocknum)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
br.fullTx = includetx
|
|
|
|
return br, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *EthereumApi) GetBlockTransactionCountByHash(blockhash string) (int64, error) {
|
|
|
|
block := p.xeth().EthBlockByHash(blockhash)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
return int64(len(br.Transactions)), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *EthereumApi) GetBlockTransactionCountByNumber(blocknum int64) (int64, error) {
|
|
|
|
block := p.xeth().EthBlockByNumber(blocknum)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
return int64(len(br.Transactions)), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *EthereumApi) GetBlockUncleCountByHash(blockhash string) (int64, error) {
|
|
|
|
block := p.xeth().EthBlockByHash(blockhash)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
return int64(len(br.Uncles)), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *EthereumApi) GetBlockUncleCountByNumber(blocknum int64) (int64, error) {
|
|
|
|
block := p.xeth().EthBlockByNumber(blocknum)
|
|
|
|
br := NewBlockRes(block)
|
|
|
|
return int64(len(br.Uncles)), 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-11 00:10:02 +00:00
|
|
|
rpclogger.Debugf("%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-16 14:17:19 +00:00
|
|
|
*reply = common.ToHex(defaultGasPrice.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
|
|
|
|
}
|
|
|
|
|
|
|
|
*reply = common.ToHex(p.xethWithStateNum(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
|
|
|
|
}
|
|
|
|
|
|
|
|
*reply = p.xethWithStateNum(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
|
|
|
|
}
|
|
|
|
|
|
|
|
*reply = p.xethWithStateNum(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
|
|
|
|
}
|
|
|
|
|
|
|
|
v, err := p.GetBlockTransactionCountByHash(args.BlockHash)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-16 14:17:19 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(v).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
|
|
|
|
}
|
|
|
|
|
|
|
|
v, err := p.GetBlockTransactionCountByNumber(args.BlockNumber)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-16 14:17:19 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(v).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
|
|
|
|
}
|
|
|
|
|
|
|
|
v, err := p.GetBlockUncleCountByHash(args.BlockHash)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-16 14:17:19 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(v).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
|
|
|
|
}
|
|
|
|
|
|
|
|
v, err := p.GetBlockUncleCountByNumber(args.BlockNumber)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-16 14:17:19 +00:00
|
|
|
*reply = common.ToHex(big.NewInt(v).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-06 03:37:45 +00:00
|
|
|
return p.GetData(args, reply)
|
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
|
|
|
|
}
|
|
|
|
return p.Transact(args, reply)
|
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
|
|
|
|
}
|
|
|
|
return p.Call(args, reply)
|
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
|
|
|
|
|
|
|
v, err := p.GetBlockByHash(args.BlockHash, args.Transactions)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*reply = v
|
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
|
|
|
|
|
|
|
v, err := p.GetBlockByNumber(args.BlockNumber, args.Transactions)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*reply = v
|
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 {
|
|
|
|
}
|
|
|
|
return p.GetTransactionByHash(args.Hash, reply)
|
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-12 14:59:07 +00:00
|
|
|
v, err := p.GetBlockByHash(args.Hash, true)
|
2015-03-11 03:25:07 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
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_getTransactionByBlockNumberAndIndex":
|
2015-03-11 03:25:07 +00:00
|
|
|
args := new(BlockNumIndexArgs)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
v, err := p.GetBlockByNumber(args.BlockNumber, true)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
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-12 14:59:07 +00:00
|
|
|
v, err := p.GetBlockByHash(args.Hash, false)
|
2015-03-11 15:27:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
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-16 14:17:19 +00:00
|
|
|
uncle, err := p.GetBlockByHash(common.ToHex(v.Uncles[args.Index]), false)
|
2015-03-11 15:27:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*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
|
|
|
|
}
|
|
|
|
|
|
|
|
v, err := p.GetBlockByNumber(args.BlockNumber, true)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
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-16 14:17:19 +00:00
|
|
|
uncle, err := p.GetBlockByHash(common.ToHex(v.Uncles[args.Index]), false)
|
2015-03-11 15:27:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*reply = uncle
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getCompilers":
|
|
|
|
return p.GetCompilers(reply)
|
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-06 03:37:45 +00:00
|
|
|
args := new(FilterOptions)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-02-05 19:55:03 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-03-05 14:58:46 +00:00
|
|
|
return p.NewFilter(args, reply)
|
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-13 14:03:19 +00:00
|
|
|
return p.NewFilterString(args, reply)
|
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-06 03:37:45 +00:00
|
|
|
return p.UninstallFilter(args.Id, reply)
|
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-06 03:37:45 +00:00
|
|
|
return p.FilterChanged(args.Id, reply)
|
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-06 03:37:45 +00:00
|
|
|
return p.Logs(args.Id, reply)
|
2015-03-05 14:58:46 +00:00
|
|
|
case "eth_getLogs":
|
2015-03-06 03:37:45 +00:00
|
|
|
args := new(FilterOptions)
|
|
|
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
2015-02-22 12:12:01 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return p.AllLogs(args, reply)
|
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
|
|
|
|
}
|
|
|
|
return p.DbPut(args, reply)
|
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
|
|
|
|
}
|
|
|
|
return p.DbGet(args, reply)
|
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
|
|
|
|
}
|
|
|
|
return p.WhisperPost(args, reply)
|
2015-01-30 12:25:12 +00:00
|
|
|
case "shh_newIdentity":
|
|
|
|
return p.NewWhisperIdentity(reply)
|
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
|
|
|
|
// }
|
|
|
|
// return p.RemoveWhisperIdentity(args, reply)
|
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
|
|
|
|
}
|
|
|
|
return p.NewWhisperFilter(args, reply)
|
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
|
|
|
|
}
|
|
|
|
return p.UninstallWhisperFilter(args.Id, reply)
|
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-06 03:37:45 +00:00
|
|
|
return p.MessagesChanged(args.Id, reply)
|
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-06 03:37:45 +00:00
|
|
|
return p.WhisperMessages(args.Id, reply)
|
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
|
|
|
|
|
|
|
func (self *EthereumApi) xeth() *xeth.XEth {
|
|
|
|
self.xethMu.RLock()
|
|
|
|
defer self.xethMu.RUnlock()
|
|
|
|
|
|
|
|
return self.eth
|
|
|
|
}
|
|
|
|
|
2015-03-06 03:48:03 +00:00
|
|
|
func toFilterOptions(options *FilterOptions) core.FilterOptions {
|
|
|
|
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
|
|
|
|
|
|
|
return opts
|
|
|
|
}
|
2015-03-19 18:28:31 +00:00
|
|
|
|
|
|
|
type whisperFilter struct {
|
|
|
|
messages []xeth.WhisperMessage
|
|
|
|
timeout time.Time
|
|
|
|
id int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *whisperFilter) add(msgs ...xeth.WhisperMessage) {
|
|
|
|
w.messages = append(w.messages, msgs...)
|
|
|
|
}
|
|
|
|
func (w *whisperFilter) get() []xeth.WhisperMessage {
|
|
|
|
w.timeout = time.Now()
|
|
|
|
tmp := w.messages
|
|
|
|
w.messages = nil
|
|
|
|
return tmp
|
|
|
|
}
|
|
|
|
|
|
|
|
type logFilter struct {
|
|
|
|
logs state.Logs
|
|
|
|
timeout time.Time
|
|
|
|
id int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *logFilter) add(logs ...state.Log) {
|
|
|
|
l.logs = append(l.logs, logs...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *logFilter) get() state.Logs {
|
|
|
|
l.timeout = time.Now()
|
|
|
|
tmp := l.logs
|
|
|
|
l.logs = nil
|
|
|
|
return tmp
|
|
|
|
}
|