github.com/SmartMeshFoundation/Spectrum@v0.0.0-20220621030607-452a266fee1e/accounts/abi/abi.go (about) 1 // Copyright 2015 The Spectrum Authors 2 // This file is part of the Spectrum library. 3 // 4 // The Spectrum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The Spectrum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the Spectrum library. If not, see <http://www.gnu.org/licenses/>. 16 17 package abi 18 19 import ( 20 "bytes" 21 "encoding/json" 22 "fmt" 23 "io" 24 ) 25 26 // The ABI holds information about a contract's context and available 27 // invokable methods. It will allow you to type check function calls and 28 // packs data accordingly. 29 type ABI struct { 30 Constructor Method 31 Methods map[string]Method 32 Events map[string]Event 33 } 34 35 // JSON returns a parsed ABI interface and error if it failed. 36 func JSON(reader io.Reader) (ABI, error) { 37 dec := json.NewDecoder(reader) 38 39 var abi ABI 40 if err := dec.Decode(&abi); err != nil { 41 return ABI{}, err 42 } 43 44 return abi, nil 45 } 46 47 // Pack the given method name to conform the ABI. Method call's data 48 // will consist of method_id, args0, arg1, ... argN. Method id consists 49 // of 4 bytes and arguments are all 32 bytes. 50 // Method ids are created from the first 4 bytes of the hash of the 51 // methods string signature. (signature = baz(uint32,string32)) 52 func (abi ABI) Pack(name string, args ...interface{}) ([]byte, error) { 53 // Fetch the ABI of the requested method 54 if name == "" { 55 // constructor 56 arguments, err := abi.Constructor.Inputs.Pack(args...) 57 if err != nil { 58 return nil, err 59 } 60 return arguments, nil 61 62 } 63 method, exist := abi.Methods[name] 64 if !exist { 65 return nil, fmt.Errorf("method '%s' not found", name) 66 } 67 68 arguments, err := method.Inputs.Pack(args...) 69 if err != nil { 70 return nil, err 71 } 72 // Pack up the method ID too if not a constructor and return 73 return append(method.Id(), arguments...), nil 74 } 75 76 // Unpack output in v according to the abi specification 77 func (abi ABI) Unpack(v interface{}, name string, output []byte) (err error) { 78 if len(output) == 0 { 79 return fmt.Errorf("abi: unmarshalling empty output") 80 } 81 // since there can't be naming collisions with contracts and events, 82 // we need to decide whether we're calling a method or an event 83 if method, ok := abi.Methods[name]; ok { 84 if len(output)%32 != 0 { 85 return fmt.Errorf("abi: improperly formatted output") 86 } 87 return method.Outputs.Unpack(v, output) 88 } else if event, ok := abi.Events[name]; ok { 89 return event.Inputs.Unpack(v, output) 90 } 91 return fmt.Errorf("abi: could not locate named method or event") 92 } 93 94 // UnmarshalJSON implements json.Unmarshaler interface 95 func (abi *ABI) UnmarshalJSON(data []byte) error { 96 var fields []struct { 97 Type string 98 Name string 99 Constant bool 100 Indexed bool 101 Anonymous bool 102 Inputs []Argument 103 Outputs []Argument 104 } 105 106 if err := json.Unmarshal(data, &fields); err != nil { 107 return err 108 } 109 110 abi.Methods = make(map[string]Method) 111 abi.Events = make(map[string]Event) 112 for _, field := range fields { 113 switch field.Type { 114 case "constructor": 115 abi.Constructor = Method{ 116 Inputs: field.Inputs, 117 } 118 // empty defaults to function according to the abi spec 119 case "function", "": 120 abi.Methods[field.Name] = Method{ 121 Name: field.Name, 122 Const: field.Constant, 123 Inputs: field.Inputs, 124 Outputs: field.Outputs, 125 } 126 case "event": 127 abi.Events[field.Name] = Event{ 128 Name: field.Name, 129 Anonymous: field.Anonymous, 130 Inputs: field.Inputs, 131 } 132 } 133 } 134 135 return nil 136 } 137 138 // MethodById looks up a method by the 4-byte id 139 // returns nil if none found 140 func (abi *ABI) MethodById(sigdata []byte) *Method { 141 for _, method := range abi.Methods { 142 if bytes.Equal(method.Id(), sigdata[:4]) { 143 return &method 144 } 145 } 146 return nil 147 }