forked from TrueCloudLab/neoneo-go
19a430b262
* Adds basic RPC supporting files * Adds interrupt handling and error chan * Add getblock RPC method * Update request structure * Update names of nodes * Allow bad addresses to be registered in discovery externally * Small tidy up * Few tweaks * Check if error is close error in tcp transport * Fix tests * Fix priv port * Small tweak to param name * Comment fix * Remove version from server * Moves submitblock to TODO block * Remove old field * Bumps version and fix hex issues
62 lines
1.1 KiB
Go
62 lines
1.1 KiB
Go
package rpc
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
type (
|
|
// Params represent the JSON-RPC params.
|
|
Params []Param
|
|
)
|
|
|
|
// UnmarshalJSON implements the Unmarshaller
|
|
// interface.
|
|
func (p *Params) UnmarshalJSON(data []byte) error {
|
|
var params []interface{}
|
|
|
|
err := json.Unmarshal(data, ¶ms)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for i := 0; i < len(params); i++ {
|
|
param := Param{
|
|
RawValue: params[i],
|
|
}
|
|
|
|
switch val := params[i].(type) {
|
|
case string:
|
|
param.StringVal = val
|
|
param.Type = "string"
|
|
|
|
case float64:
|
|
newVal, _ := params[i].(float64)
|
|
param.IntVal = int(newVal)
|
|
param.Type = "number"
|
|
}
|
|
|
|
*p = append(*p, param)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ValueAt returns the param struct for the given
|
|
// index if it exists.
|
|
func (p Params) ValueAt(index int) (*Param, bool) {
|
|
if len(p) > index {
|
|
return &p[index], true
|
|
}
|
|
|
|
return nil, false
|
|
}
|
|
|
|
// ValueAtAndType returns the param struct at the given index if it
|
|
// exists and matches the given type.
|
|
func (p Params) ValueAtAndType(index int, valueType string) (*Param, bool) {
|
|
if len(p) > index && valueType == p[index].Type {
|
|
return &p[index], true
|
|
}
|
|
|
|
return nil, false
|
|
}
|