quorum/rpc/args.go

772 lines
15 KiB
Go
Raw Normal View History

2015-01-20 11:57:51 -08:00
package rpc
2015-03-04 06:22:59 -08:00
import (
2015-03-05 19:37:45 -08:00
"bytes"
2015-03-04 06:22:59 -08:00
"encoding/json"
"math/big"
2015-03-16 03:27:38 -07:00
"github.com/ethereum/go-ethereum/common"
2015-03-04 06:22:59 -08:00
)
2015-01-20 11:57:51 -08:00
func blockHeightFromJson(msg json.RawMessage, number *int64) error {
var raw interface{}
if err := json.Unmarshal(msg, &raw); err != nil {
return NewDecodeParamError(err.Error())
}
return blockHeight(raw, number)
}
func blockHeight(raw interface{}, number *int64) error {
2015-03-18 12:42:57 -07:00
// Parse as integer
2015-03-18 12:48:34 -07:00
num, ok := raw.(float64)
2015-03-18 12:42:57 -07:00
if ok {
2015-03-18 12:48:34 -07:00
*number = int64(num)
2015-03-18 12:42:57 -07:00
return nil
}
// Parse as string/hexstring
str, ok := raw.(string)
if !ok {
return NewInvalidTypeError("blockNumber", "not a number or string")
2015-03-10 05:40:49 -07:00
}
switch str {
case "latest":
*number = -1
case "pending":
*number = -2
default:
2015-03-16 03:27:38 -07:00
*number = common.String2Big(str).Int64()
2015-03-10 05:40:49 -07:00
}
2015-03-18 12:42:57 -07:00
2015-03-10 05:40:49 -07:00
return nil
}
func numString(raw interface{}, number *int64) error {
// Parse as integer
num, ok := raw.(float64)
if ok {
*number = int64(num)
return nil
}
// Parse as string/hexstring
str, ok := raw.(string)
if !ok {
return NewInvalidTypeError("", "not a number or string")
}
*number = common.String2Big(str).Int64()
return nil
}
2015-03-05 19:37:45 -08:00
type GetBlockByHashArgs struct {
2015-03-26 02:14:52 -07:00
BlockHash common.Hash
2015-03-19 20:20:54 -07:00
IncludeTxs bool
2015-01-20 11:57:51 -08:00
}
2015-03-05 19:37:45 -08:00
func (args *GetBlockByHashArgs) UnmarshalJSON(b []byte) (err error) {
var obj []interface{}
r := bytes.NewReader(b)
if err := json.NewDecoder(r).Decode(&obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
2015-01-20 11:57:51 -08:00
}
2015-03-11 08:27:24 -07:00
argstr, ok := obj[0].(string)
if !ok {
return NewInvalidTypeError("blockHash", "not a string")
2015-03-11 08:27:24 -07:00
}
2015-03-26 02:14:52 -07:00
args.BlockHash = common.HexToHash(argstr)
2015-03-05 19:37:45 -08:00
if len(obj) > 1 {
2015-03-19 20:20:54 -07:00
args.IncludeTxs = obj[1].(bool)
2015-01-20 11:57:51 -08:00
}
2015-03-05 19:37:45 -08:00
return nil
2015-01-20 11:57:51 -08:00
}
2015-03-05 19:37:45 -08:00
type GetBlockByNumberArgs struct {
2015-03-19 20:20:54 -07:00
BlockNumber int64
IncludeTxs bool
2015-01-20 11:57:51 -08:00
}
2015-03-05 19:37:45 -08:00
func (args *GetBlockByNumberArgs) UnmarshalJSON(b []byte) (err error) {
var obj []interface{}
r := bytes.NewReader(b)
if err := json.NewDecoder(r).Decode(&obj); err != nil {
return NewDecodeParamError(err.Error())
}
2015-03-05 19:37:45 -08:00
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
2015-03-05 19:37:45 -08:00
}
if v, ok := obj[0].(float64); ok {
args.BlockNumber = int64(v)
2015-03-26 03:07:14 -07:00
} else if v, ok := obj[0].(string); ok {
args.BlockNumber = common.Big(v).Int64()
} else {
return NewInvalidTypeError("blockNumber", "not a number or string")
}
2015-03-05 19:37:45 -08:00
if len(obj) > 1 {
2015-03-19 20:20:54 -07:00
args.IncludeTxs = obj[1].(bool)
}
2015-03-05 19:37:45 -08:00
return nil
}
2015-03-05 19:37:45 -08:00
type NewTxArgs struct {
2015-03-26 02:34:21 -07:00
From common.Address
To common.Address
2015-03-05 19:37:45 -08:00
Value *big.Int
Gas *big.Int
GasPrice *big.Int
Data string
2015-03-10 05:40:49 -07:00
BlockNumber int64
2015-01-20 11:57:51 -08:00
}
2015-03-05 19:37:45 -08:00
func (args *NewTxArgs) UnmarshalJSON(b []byte) (err error) {
2015-03-18 12:42:57 -07:00
var obj []json.RawMessage
var ext struct{ From, To, Value, Gas, GasPrice, Data string }
// Decode byte slice to array of RawMessages
if err := json.Unmarshal(b, &obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
2015-03-18 12:42:57 -07:00
// Check for sufficient params
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
}
// Decode 0th RawMessage to temporary struct
if err := json.Unmarshal(obj[0], &ext); err != nil {
return NewDecodeParamError(err.Error())
}
2015-03-26 02:34:21 -07:00
if len(ext.From) == 0 {
return NewValidationError("from", "is required")
}
args.From = common.HexToAddress(ext.From)
args.To = common.HexToAddress(ext.To)
2015-03-18 12:42:57 -07:00
args.Value = common.String2Big(ext.Value)
args.Gas = common.String2Big(ext.Gas)
args.GasPrice = common.String2Big(ext.GasPrice)
args.Data = ext.Data
// Check for optional BlockNumber param
if len(obj) > 1 {
2015-03-26 03:59:35 -07:00
if err := blockHeightFromJson(obj[1], &args.BlockNumber); err != nil {
2015-03-18 12:42:57 -07:00
return err
}
}
2015-03-05 19:37:45 -08:00
2015-01-20 11:57:51 -08:00
return nil
}
type GetStorageArgs struct {
2015-03-26 02:52:32 -07:00
Address common.Address
2015-03-06 07:54:08 -08:00
BlockNumber int64
2015-01-20 11:57:51 -08:00
}
2015-03-05 19:37:45 -08:00
func (args *GetStorageArgs) UnmarshalJSON(b []byte) (err error) {
2015-03-18 12:42:57 -07:00
var obj []interface{}
if err := json.Unmarshal(b, &obj); err != nil {
return NewDecodeParamError(err.Error())
}
2015-03-05 19:37:45 -08:00
2015-03-18 12:42:57 -07:00
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
}
addstr, ok := obj[0].(string)
if !ok {
return NewInvalidTypeError("address", "not a string")
2015-03-18 12:42:57 -07:00
}
2015-03-26 02:52:32 -07:00
args.Address = common.HexToAddress(addstr)
2015-03-18 12:42:57 -07:00
if len(obj) > 1 {
2015-03-23 08:34:50 -07:00
if err := blockHeight(obj[1], &args.BlockNumber); err != nil {
2015-03-18 12:42:57 -07:00
return err
}
}
2015-03-05 19:37:45 -08:00
return nil
}
2015-03-05 10:26:21 -08:00
type GetStorageAtArgs struct {
2015-03-26 04:11:28 -07:00
Address common.Address
Key common.Hash
2015-03-06 07:54:08 -08:00
BlockNumber int64
}
2015-03-05 19:37:45 -08:00
func (args *GetStorageAtArgs) UnmarshalJSON(b []byte) (err error) {
2015-03-18 12:42:57 -07:00
var obj []interface{}
if err := json.Unmarshal(b, &obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
2015-03-18 12:42:57 -07:00
2015-03-05 19:37:45 -08:00
if len(obj) < 2 {
return NewInsufficientParamsError(len(obj), 2)
2015-01-20 11:57:51 -08:00
}
2015-03-05 19:37:45 -08:00
2015-03-18 12:42:57 -07:00
addstr, ok := obj[0].(string)
if !ok {
return NewInvalidTypeError("address", "not a string")
2015-03-18 12:42:57 -07:00
}
2015-03-26 04:11:28 -07:00
args.Address = common.HexToAddress(addstr)
2015-03-18 12:42:57 -07:00
keystr, ok := obj[1].(string)
if !ok {
return NewInvalidTypeError("key", "not a string")
2015-03-18 12:42:57 -07:00
}
2015-03-26 04:11:28 -07:00
args.Key = common.HexToHash(keystr)
2015-03-18 12:42:57 -07:00
if len(obj) > 2 {
2015-03-23 08:34:50 -07:00
if err := blockHeight(obj[2], &args.BlockNumber); err != nil {
2015-03-18 12:42:57 -07:00
return err
}
}
2015-03-05 19:37:45 -08:00
return nil
2015-01-20 11:57:51 -08:00
}
type GetTxCountArgs struct {
2015-03-26 04:47:00 -07:00
Address common.Address
2015-03-06 07:54:08 -08:00
BlockNumber int64
2015-01-20 11:57:51 -08:00
}
2015-03-05 19:37:45 -08:00
func (args *GetTxCountArgs) UnmarshalJSON(b []byte) (err error) {
2015-03-18 12:42:57 -07:00
var obj []interface{}
if err := json.Unmarshal(b, &obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
2015-03-18 12:42:57 -07:00
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
}
addstr, ok := obj[0].(string)
if !ok {
return NewInvalidTypeError("address", "not a string")
2015-03-18 12:42:57 -07:00
}
2015-03-26 04:47:00 -07:00
args.Address = common.HexToAddress(addstr)
2015-03-18 12:42:57 -07:00
if len(obj) > 1 {
2015-03-23 08:34:50 -07:00
if err := blockHeight(obj[1], &args.BlockNumber); err != nil {
2015-03-18 12:42:57 -07:00
return err
}
}
2015-03-05 19:37:45 -08:00
return nil
2015-01-20 11:57:51 -08:00
}
type GetBalanceArgs struct {
2015-03-26 05:10:31 -07:00
Address common.Address
2015-03-06 07:54:08 -08:00
BlockNumber int64
2015-01-20 11:57:51 -08:00
}
2015-03-05 19:37:45 -08:00
func (args *GetBalanceArgs) UnmarshalJSON(b []byte) (err error) {
2015-03-12 06:42:31 -07:00
var obj []interface{}
2015-03-18 12:42:57 -07:00
if err := json.Unmarshal(b, &obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-12 06:42:31 -07:00
}
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
2015-03-12 06:42:31 -07:00
}
addstr, ok := obj[0].(string)
if !ok {
return NewInvalidTypeError("address", "not a string")
2015-03-05 19:37:45 -08:00
}
2015-03-26 05:10:31 -07:00
args.Address = common.HexToAddress(addstr)
2015-03-12 06:42:31 -07:00
if len(obj) > 1 {
2015-03-23 08:34:50 -07:00
if err := blockHeight(obj[1], &args.BlockNumber); err != nil {
2015-03-18 12:42:57 -07:00
return err
2015-03-12 06:42:31 -07:00
}
}
2015-03-05 19:37:45 -08:00
return nil
2015-01-20 11:57:51 -08:00
}
2015-03-05 19:37:45 -08:00
type GetDataArgs struct {
2015-03-26 05:50:22 -07:00
Address common.Address
2015-03-06 07:54:08 -08:00
BlockNumber int64
2015-01-20 11:57:51 -08:00
}
2015-03-05 19:37:45 -08:00
func (args *GetDataArgs) UnmarshalJSON(b []byte) (err error) {
2015-03-18 12:42:57 -07:00
var obj []interface{}
if err := json.Unmarshal(b, &obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
2015-03-18 12:42:57 -07:00
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
}
addstr, ok := obj[0].(string)
if !ok {
return NewInvalidTypeError("address", "not a string")
2015-03-18 12:42:57 -07:00
}
2015-03-26 05:50:22 -07:00
args.Address = common.HexToAddress(addstr)
2015-03-18 12:42:57 -07:00
if len(obj) > 1 {
2015-03-23 08:34:50 -07:00
if err := blockHeight(obj[1], &args.BlockNumber); err != nil {
2015-03-18 12:42:57 -07:00
return err
}
}
2015-03-05 19:37:45 -08:00
return nil
2015-01-20 11:57:51 -08:00
}
2015-03-10 20:25:07 -07:00
type BlockNumIndexArgs struct {
BlockNumber int64
2015-03-11 08:25:15 -07:00
Index int64
2015-03-10 20:25:07 -07:00
}
2015-03-11 13:26:28 -07:00
func (args *BlockNumIndexArgs) UnmarshalJSON(b []byte) (err error) {
var obj []interface{}
r := bytes.NewReader(b)
if err := json.NewDecoder(r).Decode(&obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-11 13:26:28 -07:00
}
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
2015-03-11 13:26:28 -07:00
}
2015-03-26 05:57:41 -07:00
if err := blockHeight(obj[0], &args.BlockNumber); err != nil {
return err
2015-03-11 13:26:28 -07:00
}
if len(obj) > 1 {
arg1, ok := obj[1].(string)
if !ok {
return NewInvalidTypeError("index", "not a string")
2015-03-11 13:26:28 -07:00
}
2015-03-16 03:27:38 -07:00
args.Index = common.Big(arg1).Int64()
2015-03-11 13:26:28 -07:00
}
return nil
}
2015-03-10 20:25:07 -07:00
type HashIndexArgs struct {
2015-03-26 06:17:32 -07:00
Hash common.Hash
Index int64
2015-03-10 20:25:07 -07:00
}
2015-03-11 13:26:28 -07:00
func (args *HashIndexArgs) UnmarshalJSON(b []byte) (err error) {
var obj []interface{}
r := bytes.NewReader(b)
if err := json.NewDecoder(r).Decode(&obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-11 13:26:28 -07:00
}
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
2015-03-11 13:26:28 -07:00
}
arg0, ok := obj[0].(string)
if !ok {
return NewInvalidTypeError("hash", "not a string")
2015-03-11 13:26:28 -07:00
}
2015-03-26 06:17:32 -07:00
args.Hash = common.HexToHash(arg0)
2015-03-11 13:26:28 -07:00
if len(obj) > 1 {
arg1, ok := obj[1].(string)
if !ok {
return NewInvalidTypeError("index", "not a string")
2015-03-11 13:26:28 -07:00
}
2015-03-16 03:27:38 -07:00
args.Index = common.Big(arg1).Int64()
2015-03-11 13:26:28 -07:00
}
return nil
}
type Sha3Args struct {
Data string
}
2015-03-05 19:37:45 -08:00
func (args *Sha3Args) UnmarshalJSON(b []byte) (err error) {
var obj []interface{}
r := bytes.NewReader(b)
if err := json.NewDecoder(r).Decode(&obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
2015-03-05 19:37:45 -08:00
}
2015-03-26 08:19:33 -07:00
argstr, ok := obj[0].(string)
if !ok {
return NewInvalidTypeError("data", "is not a string")
}
args.Data = argstr
2015-03-05 19:37:45 -08:00
return nil
}
type BlockFilterArgs struct {
Earliest int64
Latest int64
Address interface{}
2015-03-09 10:19:35 -07:00
Topics []interface{}
Skip int
Max int
}
func (args *BlockFilterArgs) UnmarshalJSON(b []byte) (err error) {
2015-03-05 19:37:45 -08:00
var obj []struct {
2015-03-16 07:38:57 -07:00
FromBlock interface{} `json:"fromBlock"`
ToBlock interface{} `json:"toBlock"`
Limit interface{} `json:"limit"`
Offset interface{} `json:"offset"`
2015-03-09 09:55:01 -07:00
Address string `json:"address"`
Topics []interface{} `json:"topics"`
2015-03-05 19:37:45 -08:00
}
if err = json.Unmarshal(b, &obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
2015-03-05 19:37:45 -08:00
}
var num int64
if err := blockHeight(obj[0].FromBlock, &num); err != nil {
return err
}
if num < 0 {
args.Earliest = -1 //latest block
} else {
args.Earliest = num
}
if err := blockHeight(obj[0].ToBlock, &num); err != nil {
return err
2015-03-16 07:38:57 -07:00
}
args.Latest = num
2015-03-16 07:38:57 -07:00
if err := numString(obj[0].Limit, &num); err != nil {
return err
}
args.Max = int(num)
if err := numString(obj[0].Offset, &num); err != nil {
return err
2015-03-16 07:38:57 -07:00
}
args.Skip = int(num)
2015-03-16 07:38:57 -07:00
2015-03-05 19:37:45 -08:00
args.Address = obj[0].Address
2015-03-09 10:19:35 -07:00
args.Topics = obj[0].Topics
2015-03-05 19:37:45 -08:00
return nil
}
type DbArgs struct {
Database string
Key string
2015-03-23 08:04:21 -07:00
Value []byte
}
2015-03-05 19:37:45 -08:00
func (args *DbArgs) UnmarshalJSON(b []byte) (err error) {
var obj []interface{}
2015-03-23 08:04:21 -07:00
if err := json.Unmarshal(b, &obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
if len(obj) < 2 {
return NewInsufficientParamsError(len(obj), 2)
2015-03-05 19:37:45 -08:00
}
2015-03-23 08:04:21 -07:00
var objstr string
var ok bool
if objstr, ok = obj[0].(string); !ok {
return NewInvalidTypeError("database", "not a string")
2015-03-23 08:04:21 -07:00
}
args.Database = objstr
if objstr, ok = obj[1].(string); !ok {
return NewInvalidTypeError("key", "not a string")
2015-03-23 08:04:21 -07:00
}
args.Key = objstr
2015-03-05 19:37:45 -08:00
if len(obj) > 2 {
2015-03-23 08:04:21 -07:00
objstr, ok = obj[2].(string)
if !ok {
return NewInvalidTypeError("value", "not a string")
2015-03-23 08:04:21 -07:00
}
args.Value = []byte(objstr)
2015-03-05 19:37:45 -08:00
}
return nil
}
func (a *DbArgs) requirements() error {
if len(a.Database) == 0 {
return NewValidationError("Database", "cannot be blank")
}
if len(a.Key) == 0 {
return NewValidationError("Key", "cannot be blank")
}
return nil
}
2015-03-23 08:04:21 -07:00
type DbHexArgs struct {
Database string
Key string
Value []byte
}
func (args *DbHexArgs) UnmarshalJSON(b []byte) (err error) {
var obj []interface{}
if err := json.Unmarshal(b, &obj); err != nil {
return NewDecodeParamError(err.Error())
}
if len(obj) < 2 {
return NewInsufficientParamsError(len(obj), 2)
}
var objstr string
var ok bool
if objstr, ok = obj[0].(string); !ok {
return NewInvalidTypeError("database", "not a string")
2015-03-23 08:04:21 -07:00
}
args.Database = objstr
if objstr, ok = obj[1].(string); !ok {
return NewInvalidTypeError("key", "not a string")
2015-03-23 08:04:21 -07:00
}
args.Key = objstr
if len(obj) > 2 {
objstr, ok = obj[2].(string)
if !ok {
return NewInvalidTypeError("value", "not a string")
2015-03-23 08:04:21 -07:00
}
args.Value = common.FromHex(objstr)
}
return nil
}
func (a *DbHexArgs) requirements() error {
if len(a.Database) == 0 {
return NewInvalidTypeError("Database", "cannot be blank")
2015-03-23 08:04:21 -07:00
}
if len(a.Key) == 0 {
return NewInvalidTypeError("Key", "cannot be blank")
2015-03-23 08:04:21 -07:00
}
return nil
}
type WhisperMessageArgs struct {
Payload string
To string
From string
2015-03-11 08:56:44 -07:00
Topics []string
Priority uint32
Ttl uint32
}
2015-03-05 19:37:45 -08:00
func (args *WhisperMessageArgs) UnmarshalJSON(b []byte) (err error) {
var obj []struct {
Payload string
To string
From string
2015-03-11 08:56:44 -07:00
Topics []string
2015-03-05 19:37:45 -08:00
Priority string
Ttl string
}
if err = json.Unmarshal(b, &obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
2015-03-05 19:37:45 -08:00
}
args.Payload = obj[0].Payload
args.To = obj[0].To
args.From = obj[0].From
2015-03-11 08:56:44 -07:00
args.Topics = obj[0].Topics
2015-03-16 03:27:38 -07:00
args.Priority = uint32(common.Big(obj[0].Priority).Int64())
args.Ttl = uint32(common.Big(obj[0].Ttl).Int64())
2015-03-05 19:37:45 -08:00
return nil
}
type CompileArgs struct {
Source string
}
func (args *CompileArgs) UnmarshalJSON(b []byte) (err error) {
var obj []interface{}
r := bytes.NewReader(b)
if err := json.NewDecoder(r).Decode(&obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
if len(obj) > 0 {
args.Source = obj[0].(string)
}
return nil
}
type FilterStringArgs struct {
Word string
}
func (args *FilterStringArgs) UnmarshalJSON(b []byte) (err error) {
2015-03-13 07:03:19 -07:00
var obj []interface{}
2015-03-05 19:37:45 -08:00
r := bytes.NewReader(b)
if err := json.NewDecoder(r).Decode(&obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
2015-03-05 19:37:45 -08:00
}
2015-03-13 07:03:19 -07:00
var argstr string
argstr, ok := obj[0].(string)
if !ok {
return NewInvalidTypeError("filter", "not a string")
2015-03-13 07:03:19 -07:00
}
args.Word = argstr
2015-03-05 19:37:45 -08:00
return nil
}
2015-03-19 19:58:07 -07:00
func (args *FilterStringArgs) requirements() error {
switch args.Word {
case "latest", "pending":
break
default:
return NewValidationError("Word", "Must be `latest` or `pending`")
}
return nil
}
2015-03-05 19:37:45 -08:00
type FilterIdArgs struct {
Id int
}
func (args *FilterIdArgs) UnmarshalJSON(b []byte) (err error) {
var obj []string
r := bytes.NewReader(b)
if err := json.NewDecoder(r).Decode(&obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
2015-03-05 19:37:45 -08:00
}
2015-03-16 03:27:38 -07:00
args.Id = int(common.Big(obj[0]).Int64())
2015-03-05 19:37:45 -08:00
return nil
}
type WhisperIdentityArgs struct {
Identity string
}
func (args *WhisperIdentityArgs) UnmarshalJSON(b []byte) (err error) {
var obj []string
r := bytes.NewReader(b)
if err := json.NewDecoder(r).Decode(&obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
2015-03-05 19:37:45 -08:00
}
args.Identity = obj[0]
return nil
}
type WhisperFilterArgs struct {
2015-03-06 07:54:08 -08:00
To string `json:"to"`
2015-03-05 19:37:45 -08:00
From string
Topics []string
}
func (args *WhisperFilterArgs) UnmarshalJSON(b []byte) (err error) {
2015-03-06 07:54:08 -08:00
var obj []struct {
To string
From string
Topics []string
}
2015-03-05 19:37:45 -08:00
if err = json.Unmarshal(b, &obj); err != nil {
return NewDecodeParamError(err.Error())
2015-03-05 19:37:45 -08:00
}
if len(obj) < 1 {
return NewInsufficientParamsError(len(obj), 1)
2015-03-05 19:37:45 -08:00
}
args.To = obj[0].To
args.From = obj[0].From
args.Topics = obj[0].Topics
return nil
}
type SubmitWorkArgs struct {
Nonce uint64
Header common.Hash
Digest common.Hash
}
func (args *SubmitWorkArgs) UnmarshalJSON(b []byte) (err error) {
var obj []interface{}
if err = json.Unmarshal(b, &obj); err != nil {
return NewDecodeParamError(err.Error())
}
if len(obj) < 3 {
return NewInsufficientParamsError(len(obj), 3)
}
var objstr string
var ok bool
if objstr, ok = obj[0].(string); !ok {
return NewInvalidTypeError("nonce", "not a string")
}
2015-03-23 09:33:01 -07:00
args.Nonce = common.String2Big(objstr).Uint64()
if objstr, ok = obj[1].(string); !ok {
return NewInvalidTypeError("header", "not a string")
}
args.Header = common.HexToHash(objstr)
if objstr, ok = obj[2].(string); !ok {
return NewInvalidTypeError("digest", "not a string")
}
args.Digest = common.HexToHash(objstr)
return nil
}