quorum/rpc/args.go

621 lines
12 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 blockNumber(raw json.RawMessage, number *int64) (err error) {
var str string
if err = json.Unmarshal(raw, &str); err != nil {
return NewDecodeParamError(err.Error())
2015-03-10 05:40:49 -07:00
}
switch str {
case "latest":
*number = -1
case "pending":
*number = 0
default:
2015-03-16 03:27:38 -07:00
*number = common.String2Big(str).Int64()
2015-03-10 05:40:49 -07:00
}
return nil
}
2015-03-05 19:37:45 -08:00
type GetBlockByHashArgs struct {
BlockHash string
Transactions 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 NewDecodeParamError("BlockHash not a string")
2015-03-11 08:27:24 -07:00
}
args.BlockHash = argstr
2015-03-05 19:37:45 -08:00
if len(obj) > 1 {
args.Transactions = 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-06 07:54:08 -08:00
BlockNumber int64
2015-03-05 19:37:45 -08:00
Transactions 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)
} else {
2015-03-16 03:27:38 -07:00
args.BlockNumber = common.Big(obj[0].(string)).Int64()
}
2015-03-05 19:37:45 -08:00
if len(obj) > 1 {
args.Transactions = obj[1].(bool)
}
2015-03-05 19:37:45 -08:00
return nil
}
2015-03-05 19:37:45 -08:00
type NewTxArgs struct {
From string
To string
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) {
var obj struct{ From, To, Value, Gas, GasPrice, Data string }
if err = UnmarshalRawMessages(b, &obj, &args.BlockNumber); err != nil {
2015-03-10 05:40:49 -07:00
return err
2015-03-05 19:37:45 -08:00
}
2015-03-10 05:40:49 -07:00
args.From = obj.From
args.To = obj.To
2015-03-16 03:27:38 -07:00
args.Value = common.Big(obj.Value)
args.Gas = common.Big(obj.Gas)
args.GasPrice = common.Big(obj.GasPrice)
2015-03-10 05:40:49 -07:00
args.Data = obj.Data
2015-03-05 19:37:45 -08:00
2015-01-20 11:57:51 -08:00
return nil
}
type GetStorageArgs struct {
2015-03-05 19:37:45 -08:00
Address string
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) {
if err = UnmarshalRawMessages(b, &args.Address, &args.BlockNumber); err != nil {
return NewDecodeParamError(err.Error())
}
2015-03-05 19:37:45 -08:00
return nil
}
2015-03-05 19:37:45 -08:00
func (args *GetStorageArgs) requirements() error {
if len(args.Address) == 0 {
return NewValidationError("Address", "cannot be blank")
}
return nil
}
2015-03-05 10:26:21 -08:00
type GetStorageAtArgs struct {
2015-03-05 19:37:45 -08:00
Address string
Key string
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) {
var obj []string
if err = UnmarshalRawMessages(b, &obj, &args.BlockNumber); err != nil {
return NewDecodeParamError(err.Error())
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
args.Address = obj[0]
args.Key = obj[1]
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
func (args *GetStorageAtArgs) requirements() error {
if len(args.Address) == 0 {
return NewValidationError("Address", "cannot be blank")
2015-01-20 11:57:51 -08:00
}
2015-03-05 19:37:45 -08:00
if len(args.Key) == 0 {
return NewValidationError("Key", "cannot be blank")
2015-01-20 11:57:51 -08:00
}
return nil
}
type GetTxCountArgs struct {
2015-03-05 19:37:45 -08:00
Address string
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) {
if err = UnmarshalRawMessages(b, &args.Address, &args.BlockNumber); err != nil {
return NewDecodeParamError(err.Error())
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
func (args *GetTxCountArgs) requirements() error {
if len(args.Address) == 0 {
return NewValidationError("Address", "cannot be blank")
2015-01-20 11:57:51 -08:00
}
return nil
}
type GetBalanceArgs struct {
2015-03-05 19:37:45 -08:00
Address string
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{}
r := bytes.NewReader(b)
if err := json.NewDecoder(r).Decode(&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 NewDecodeParamError("Address is not a string")
2015-03-05 19:37:45 -08:00
}
2015-03-12 06:42:31 -07:00
args.Address = addstr
if len(obj) > 1 {
if obj[1].(string) == "latest" {
args.BlockNumber = -1
} else {
2015-03-16 03:27:38 -07:00
args.BlockNumber = common.Big(obj[1].(string)).Int64()
2015-03-12 06:42:31 -07:00
}
}
// if err = UnmarshalRawMessages(b, &args.Address, &args.BlockNumber); err != nil {
// return NewDecodeParamError(err.Error())
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
func (args *GetBalanceArgs) requirements() error {
if len(args.Address) == 0 {
return NewValidationError("Address", "cannot be blank")
2015-01-20 11:57:51 -08:00
}
return nil
}
2015-03-05 19:37:45 -08:00
type GetDataArgs struct {
Address string
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) {
if err = UnmarshalRawMessages(b, &args.Address, &args.BlockNumber); err != nil {
return NewDecodeParamError(err.Error())
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
func (args *GetDataArgs) requirements() error {
if len(args.Address) == 0 {
return NewValidationError("Address", "cannot be blank")
2015-01-20 11:57:51 -08:00
}
return nil
}
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
}
arg0, ok := obj[0].(string)
if !ok {
return NewDecodeParamError("BlockNumber is not string")
2015-03-11 13:26:28 -07:00
}
2015-03-16 03:27:38 -07:00
args.BlockNumber = common.Big(arg0).Int64()
2015-03-11 13:26:28 -07:00
if len(obj) > 1 {
arg1, ok := obj[1].(string)
if !ok {
return NewDecodeParamError("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 {
Hash string
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 NewDecodeParamError("Hash not a string")
2015-03-11 13:26:28 -07:00
}
args.Hash = arg0
2015-03-11 13:26:28 -07:00
if len(obj) > 1 {
arg1, ok := obj[1].(string)
if !ok {
return NewDecodeParamError("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
}
args.Data = obj[0].(string)
return nil
}
2015-03-06 07:54:08 -08:00
// type FilterArgs struct {
// FromBlock uint64
// ToBlock uint64
// Limit uint64
// Offset uint64
// Address string
// Topics []string
// }
2015-03-05 19:37:45 -08:00
2015-03-06 07:54:08 -08:00
// func (args *FilterArgs) UnmarshalJSON(b []byte) (err error) {
// var obj []struct {
// FromBlock string `json:"fromBlock"`
// ToBlock string `json:"toBlock"`
// Limit string `json:"limit"`
// Offset string `json:"offset"`
// Address string `json:"address"`
// Topics []string `json:"topics"`
// }
// if err = json.Unmarshal(b, &obj); err != nil {
// return errDecodeArgs
// }
// if len(obj) < 1 {
// return errArguments
// }
2015-03-16 03:27:38 -07:00
// args.FromBlock = uint64(common.Big(obj[0].FromBlock).Int64())
// args.ToBlock = uint64(common.Big(obj[0].ToBlock).Int64())
// args.Limit = uint64(common.Big(obj[0].Limit).Int64())
// args.Offset = uint64(common.Big(obj[0].Offset).Int64())
2015-03-06 07:54:08 -08:00
// args.Address = obj[0].Address
// args.Topics = obj[0].Topics
// return nil
// }
type FilterOptions struct {
Earliest int64
Latest int64
Address interface{}
2015-03-09 10:19:35 -07:00
Topics []interface{}
Skip int
Max int
}
2015-03-05 19:37:45 -08:00
func (args *FilterOptions) UnmarshalJSON(b []byte) (err error) {
var obj []struct {
2015-03-09 09:55:01 -07:00
FromBlock string `json:"fromBlock"`
ToBlock string `json:"toBlock"`
Limit string `json:"limit"`
Offset string `json:"offset"`
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
}
2015-03-16 03:27:38 -07:00
args.Earliest = int64(common.Big(obj[0].FromBlock).Int64())
args.Latest = int64(common.Big(obj[0].ToBlock).Int64())
args.Max = int(common.Big(obj[0].Limit).Int64())
args.Skip = int(common.Big(obj[0].Offset).Int64())
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 FilterChangedArgs struct {
// n int
// }
type DbArgs struct {
Database string
Key string
Value string
}
2015-03-05 19:37:45 -08:00
func (args *DbArgs) 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) < 2 {
return NewInsufficientParamsError(len(obj), 2)
2015-03-05 19:37:45 -08:00
}
args.Database = obj[0].(string)
args.Key = obj[1].(string)
if len(obj) > 2 {
args.Value = obj[2].(string)
}
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
}
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 NewDecodeParamError("Filter is not a string")
}
args.Word = argstr
2015-03-05 19:37:45 -08:00
return nil
}
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
}
// func (req *RpcRequest) ToRegisterArgs() (string, error) {
// if len(req.Params) < 1 {
// return "", errArguments
// }
// var args string
// err := json.Unmarshal(req.Params, &args)
// if err != nil {
// return "", err
// }
// return args, nil
// }
// func (req *RpcRequest) ToWatchTxArgs() (string, error) {
// if len(req.Params) < 1 {
// return "", errArguments
// }
// var args string
// err := json.Unmarshal(req.Params, &args)
// if err != nil {
// return "", err
// }
// return args, nil
// }