plugeth/rpc/api.go

516 lines
14 KiB
Go
Raw Normal View History

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"
"path"
"sync"
2014-10-21 11:24:48 +00:00
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/crypto"
"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
)
type EthereumApi struct {
2015-02-26 10:14:54 +00:00
eth *xeth.XEth
xethMu sync.RWMutex
2015-03-20 13:12:07 +00:00
db common.Database
// Miner agent
agent *Agent
}
func NewEthereumApi(eth *xeth.XEth, dataDir string) *EthereumApi {
2015-03-20 03:34:35 +00:00
// What about when dataDir is empty?
db, _ := ethdb.NewLDBDatabase(path.Join(dataDir, "dapps"))
api := &EthereumApi{
eth: eth,
db: db,
agent: NewAgent(),
}
eth.Backend().Miner().Register(api.agent)
return api
}
2015-03-20 03:20:54 +00:00
func (self *EthereumApi) xeth() *xeth.XEth {
self.xethMu.RLock()
defer self.xethMu.RUnlock()
2015-03-10 17:52:45 +00:00
2015-03-20 03:20:54 +00:00
return self.eth
2015-03-10 17:52:45 +00:00
}
2015-03-20 13:56:55 +00:00
func (self *EthereumApi) xethAtStateNum(num int64) *xeth.XEth {
return self.xeth().AtStateNum(num)
2015-03-10 17:52:45 +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:59:54 +00:00
rpclogger.Debugf("%s %s", req.Method, req.Params)
switch req.Method {
case "web3_sha3":
2015-03-06 03:37:45 +00:00
args := new(Sha3Args)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
*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)
case "net_listening":
2015-03-06 03:37:45 +00:00
*reply = p.xeth().IsListening()
case "net_peerCount":
2015-03-20 12:37:56 +00:00
v := p.xeth().PeerCount()
*reply = common.ToHex(big.NewInt(int64(v)).Bytes())
case "eth_coinbase":
// TODO handling of empty coinbase due to lack of accounts
res := p.xeth().Coinbase()
if res == "0x" || res == "0x0" {
*reply = nil
} else {
*reply = res
}
case "eth_mining":
2015-03-06 03:37:45 +00:00
*reply = p.xeth().IsMining()
case "eth_gasPrice":
2015-03-20 12:37:56 +00:00
v := p.xeth().DefaultGas()
*reply = common.ToHex(v.Bytes())
case "eth_accounts":
2015-03-06 03:37:45 +00:00
*reply = p.xeth().Accounts()
case "eth_blockNumber":
2015-03-20 12:37:56 +00:00
v := p.xeth().Backend().ChainManager().CurrentBlock().Number()
*reply = common.ToHex(v.Bytes())
case "eth_getBalance":
2015-03-06 03:37:45 +00:00
args := new(GetBalanceArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-20 00:00:41 +00:00
if err := args.requirements(); err != nil {
return err
}
2015-03-20 13:56:55 +00:00
v := p.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address).Balance()
2015-03-20 12:37:56 +00:00
*reply = common.ToHex(v.Bytes())
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 {
return err
}
2015-03-20 00:02:31 +00:00
if err := args.requirements(); err != nil {
return err
}
2015-03-20 13:56:55 +00:00
*reply = p.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address).Storage()
case "eth_getStorageAt":
2015-03-06 03:37:45 +00:00
args := new(GetStorageAtArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-20 12:45:07 +00:00
if err := args.requirements(); err != nil {
return err
}
2015-03-20 13:56:55 +00:00
state := p.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address)
2015-03-20 12:45:07 +00:00
value := state.StorageString(args.Key)
*reply = common.Bytes2Hex(value.Bytes())
case "eth_getTransactionCount":
2015-03-06 03:37:45 +00:00
args := new(GetTxCountArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-20 00:03:27 +00:00
err := args.requirements()
if err != nil {
return err
}
2015-03-20 13:56:55 +00:00
*reply = p.xethAtStateNum(args.BlockNumber).TxCountAt(args.Address)
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 12:37:56 +00:00
block := NewBlockRes(p.xeth().EthBlockByHash(args.BlockHash))
*reply = common.ToHex(big.NewInt(int64(len(block.Transactions))).Bytes())
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 12:37:56 +00:00
block := NewBlockRes(p.xeth().EthBlockByNumber(args.BlockNumber))
*reply = common.ToHex(big.NewInt(int64(len(block.Transactions))).Bytes())
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())
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())
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 {
return err
}
2015-03-20 00:04:02 +00:00
if err := args.requirements(); err != nil {
return err
}
2015-03-20 13:56:55 +00:00
*reply = p.xethAtStateNum(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
case "eth_call":
2015-03-06 03:37:45 +00:00
args := new(NewTxArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-20 05:58:53 +00:00
2015-03-20 13:56:55 +00:00
v, err := p.xethAtStateNum(args.BlockNumber).Call(args.From, args.To, args.Value.String(), args.Gas.String(), args.GasPrice.String(), args.Data)
2015-03-20 05:58:53 +00:00
if err != nil {
return err
}
2015-03-20 12:37:56 +00:00
*reply = v
case "eth_flush":
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 {
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
case "eth_getTransactionByHash":
// 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)
}
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 {
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]
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 {
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]
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 {
return NewValidationError("Index", "does not exist")
2015-03-11 15:27:32 +00:00
}
2015-03-20 15:02:01 +00:00
uhash := br.Uncles[args.Index].Hex()
2015-03-20 05:53:24 +00:00
uncle := NewBlockRes(p.xeth().EthBlockByHash(uhash))
2015-03-11 15:27:32 +00:00
*reply = uncle
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 {
return NewValidationError("Index", "does not exist")
2015-03-11 15:27:32 +00:00
}
2015-03-20 15:02:01 +00:00
uhash := v.Uncles[args.Index].Hex()
2015-03-20 05:53:24 +00:00
uncle := NewBlockRes(p.xeth().EthBlockByHash(uhash))
2015-03-11 15:27:32 +00:00
*reply = uncle
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":
return NewNotImplementedError(req.Method)
case "eth_newFilter":
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)
case "eth_getFilterChanges":
2015-03-06 03:37:45 +00:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-20 03:07:25 +00:00
*reply = NewLogsRes(p.xeth().FilterChanged(args.Id))
case "eth_getFilterLogs":
2015-03-06 03:37:45 +00:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-20 03:08:26 +00:00
*reply = NewLogsRes(p.xeth().Logs(args.Id))
case "eth_getLogs":
args := new(BlockFilterArgs)
2015-03-06 03:37:45 +00:00
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-20 03:10:23 +00:00
opts := toFilterOptions(args)
*reply = NewLogsRes(p.xeth().AllLogs(opts))
case "eth_getWork":
*reply = p.getWork()
case "eth_submitWork":
// TODO what is the reply here?
// TODO what are the arguments?
p.agent.SetResult(0, common.Hash{}, common.Hash{})
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 {
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 {
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)
case "shh_post":
2015-03-06 03:37:45 +00:00
args := new(WhisperMessageArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
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
case "shh_newIdentity":
2015-03-20 00:09:54 +00:00
*reply = p.xeth().Whisper().NewIdentity()
// 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)
case "shh_hasIdentity":
2015-03-06 03:37:45 +00:00
args := new(WhisperIdentityArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
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":
return NewNotImplementedError(req.Method)
case "shh_newFilter":
2015-03-06 03:37:45 +00:00
args := new(WhisperFilterArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
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())
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 {
return err
}
2015-03-20 03:14:55 +00:00
*reply = p.xeth().MessagesChanged(args.Id)
case "shh_getMessages":
2015-03-06 03:37:45 +00:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
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":
2015-03-20 13:12:07 +00:00
// // Placeholder for actual type
// args := new(HashIndexArgs)
// if err := json.Unmarshal(req.Params, &args); err != nil {
2015-03-06 03:48:03 +00:00
// return err
// }
2015-03-20 13:12:07 +00:00
// *reply = p.xeth().Register(args.Hash)
2015-03-06 03:48:03 +00:00
// case "eth_unregister":
2015-03-20 13:12:07 +00:00
// args := new(HashIndexArgs)
// if err := json.Unmarshal(req.Params, &args); err != nil {
2015-03-06 03:48:03 +00:00
// return err
// }
2015-03-20 13:12:07 +00:00
// *reply = p.xeth().Unregister(args.Hash)
2015-03-06 03:48:03 +00:00
// case "eth_watchTx":
2015-03-20 13:12:07 +00:00
// args := new(HashIndexArgs)
// if err := json.Unmarshal(req.Params, &args); err != nil {
2015-03-06 03:48:03 +00:00
// return err
// }
2015-03-20 13:12:07 +00:00
// *reply = p.xeth().PullWatchTx(args.Hash)
default:
return NewNotImplementedError(req.Method)
}
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 (p *EthereumApi) getWork() string {
p.xeth().SetMining(true)
return p.agent.GetWork().Hex()
}
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-18 12:00:01 +00:00
opts.Address = []common.Address{common.HexToAddress(str)}
2015-03-06 03:48:03 +00:00
} else if slice, ok := options.Address.([]interface{}); ok {
2015-03-18 12:00:01 +00:00
bslice := make([]common.Address, len(slice))
2015-03-06 03:48:03 +00:00
for i, addr := range slice {
if saddr, ok := addr.(string); ok {
2015-03-18 12:00:01 +00:00
bslice[i] = common.HexToAddress(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
2015-03-18 12:00:01 +00:00
topics := make([][]common.Hash, len(options.Topics))
2015-03-09 17:19:35 +00:00
for i, topicDat := range options.Topics {
if slice, ok := topicDat.([]interface{}); ok {
2015-03-18 12:00:01 +00:00
topics[i] = make([]common.Hash, len(slice))
2015-03-09 17:19:35 +00:00
for j, topic := range slice {
2015-03-18 12:00:01 +00:00
topics[i][j] = common.HexToHash(topic.(string))
2015-03-09 17:19:35 +00:00
}
} else if str, ok := topicDat.(string); ok {
2015-03-18 12:00:01 +00:00
topics[i] = []common.Hash{common.HexToHash(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-06 03:48:03 +00:00
}
2015-03-20 16:42:09 +00:00
/*
Work() chan<- *types.Block
SetWorkCh(chan<- Work)
Stop()
Start()
Rate() uint64
*/