mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
accounts/abi/bind: use store function to remove code duplication
This commit is contained in:
parent
2684fbb19f
commit
ad18014854
1 changed files with 36 additions and 43 deletions
|
|
@ -111,31 +111,28 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
// parseTopics converts the indexed topic fields into actual log field values.
|
// parseTopics converts the indexed topic fields into actual log field values.
|
||||||
//
|
|
||||||
// Note, dynamic types cannot be reconstructed since they get mapped to Keccak256
|
|
||||||
// hashes as the topic value!
|
|
||||||
func parseTopics(out interface{}, fields abi.Arguments, topics []common.Hash) error {
|
func parseTopics(out interface{}, fields abi.Arguments, topics []common.Hash) error {
|
||||||
// Sanity check that the fields and topics match up
|
store := func(arg abi.Argument, reconstr interface{}) {
|
||||||
if len(fields) != len(topics) {
|
|
||||||
return errors.New("topic/field count mismatch")
|
|
||||||
}
|
|
||||||
// Iterate over all the fields and reconstruct them from topics
|
|
||||||
for i, arg := range fields {
|
|
||||||
if !arg.Indexed {
|
|
||||||
return errors.New("non-indexed field in topic reconstruction")
|
|
||||||
}
|
|
||||||
field := reflect.ValueOf(out).Elem().FieldByName(capitalise(arg.Name))
|
field := reflect.ValueOf(out).Elem().FieldByName(capitalise(arg.Name))
|
||||||
reconstr, err := parseField(arg, topics[i])
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
field.Set(reflect.ValueOf(reconstr))
|
field.Set(reflect.ValueOf(reconstr))
|
||||||
}
|
}
|
||||||
return nil
|
return parseTopicIntoFunc(fields, topics, store)
|
||||||
}
|
}
|
||||||
|
|
||||||
// parseTopicsIntoMap converts the indexed topic field-value pairs into map key-value pairs
|
// parseTopicsIntoMap converts the indexed topic field-value pairs into map key-value pairs
|
||||||
func parseTopicsIntoMap(out map[string]interface{}, fields abi.Arguments, topics []common.Hash) error {
|
func parseTopicsIntoMap(out map[string]interface{}, fields abi.Arguments, topics []common.Hash) error {
|
||||||
|
store := func(arg abi.Argument, reconstr interface{}) {
|
||||||
|
out[arg.Name] = reconstr
|
||||||
|
}
|
||||||
|
return parseTopicIntoFunc(fields, topics, store)
|
||||||
|
}
|
||||||
|
|
||||||
|
// parseTopicIntoFunc converts the indexed topic field-value pairs and stores them using the
|
||||||
|
// provided store function.
|
||||||
|
//
|
||||||
|
// Note, dynamic types cannot be reconstructed since they get mapped to Keccak256
|
||||||
|
// hashes as the topic value!
|
||||||
|
func parseTopicIntoFunc(fields abi.Arguments, topics []common.Hash, store func(abi.Argument, interface{})) error {
|
||||||
// Sanity check that the fields and topics match up
|
// Sanity check that the fields and topics match up
|
||||||
if len(fields) != len(topics) {
|
if len(fields) != len(topics) {
|
||||||
return errors.New("topic/field count mismatch")
|
return errors.New("topic/field count mismatch")
|
||||||
|
|
@ -145,34 +142,30 @@ func parseTopicsIntoMap(out map[string]interface{}, fields abi.Arguments, topics
|
||||||
if !arg.Indexed {
|
if !arg.Indexed {
|
||||||
return errors.New("non-indexed field in topic reconstruction")
|
return errors.New("non-indexed field in topic reconstruction")
|
||||||
}
|
}
|
||||||
reconstr, err := parseField(arg, topics[i])
|
//reconstr, err := parseField(arg, topics[i])
|
||||||
if err != nil {
|
var reconstr interface{}
|
||||||
return err
|
|
||||||
}
|
|
||||||
out[arg.Name] = reconstr
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func parseField(arg abi.Argument, topic common.Hash) (interface{}, error) {
|
|
||||||
if !arg.Indexed {
|
|
||||||
return nil, errors.New("non-indexed field in topic reconstruction")
|
|
||||||
}
|
|
||||||
|
|
||||||
switch arg.Type.T {
|
switch arg.Type.T {
|
||||||
case abi.StringTy, abi.BytesTy, abi.SliceTy, abi.ArrayTy:
|
case abi.StringTy, abi.BytesTy, abi.SliceTy, abi.ArrayTy:
|
||||||
// Array types (including strings and bytes) have their keccak256 hashes stored in the topic- not a hash
|
// Array types (including strings and bytes) have their keccak256 hashes stored in the topic- not a hash
|
||||||
// whose bytes can be decoded to the actual value- so the best we can do is retrieve that hash
|
// whose bytes can be decoded to the actual value- so the best we can do is retrieve that hash
|
||||||
return topic, nil
|
reconstr = topics[i]
|
||||||
case abi.FunctionTy:
|
case abi.FunctionTy:
|
||||||
if garbage := binary.BigEndian.Uint64(topic[0:8]); garbage != 0 {
|
if garbage := binary.BigEndian.Uint64(topics[i][0:8]); garbage != 0 {
|
||||||
return nil, fmt.Errorf("bind: got improperly encoded function type, got %v", topic.Bytes())
|
return fmt.Errorf("bind: got improperly encoded function type, got %v", topics[i].Bytes())
|
||||||
}
|
}
|
||||||
var tmp [24]byte
|
var tmp [24]byte
|
||||||
copy(tmp[:], topic[8:32])
|
copy(tmp[:], topics[i][8:32])
|
||||||
return tmp, nil
|
reconstr = tmp
|
||||||
default:
|
default:
|
||||||
return abi.ToGoType(0, arg.Type, topic.Bytes())
|
var err error
|
||||||
|
reconstr, err = abi.ToGoType(0, arg.Type, topics[i].Bytes())
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
// Use the store function to store the value
|
||||||
|
store(arg, reconstr)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue