| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | // Copyright 2016 The go-ethereum Authors | 
					
						
							|  |  |  | // This file is part of the go-ethereum library. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The go-ethereum library is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | // it under the terms of the GNU Lesser General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The go-ethereum library is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							|  |  |  | // GNU Lesser General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Lesser General Public License | 
					
						
							|  |  |  | // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package abi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2020-09-16 13:15:22 +02:00
										 |  |  | 	"errors" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2017-06-27 03:05:33 -05:00
										 |  |  | 	"math/big" | 
					
						
							| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | 	"reflect" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							| 
									
										
										
										
											2017-02-28 15:09:11 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common/math" | 
					
						
							| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // packBytesSlice packs the given bytes as [L, V] as the canonical representation | 
					
						
							| 
									
										
										
										
											2020-09-20 11:43:57 +03:00
										 |  |  | // bytes slice. | 
					
						
							| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | func packBytesSlice(bytes []byte, l int) []byte { | 
					
						
							| 
									
										
										
										
											2016-06-02 18:43:27 +02:00
										 |  |  | 	len := packNum(reflect.ValueOf(l)) | 
					
						
							| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | 	return append(len, common.RightPadBytes(bytes, (l+31)/32*32)...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // packElement packs the given reflect value according to the abi specification in | 
					
						
							|  |  |  | // t. | 
					
						
							| 
									
										
										
										
											2020-09-16 13:15:22 +02:00
										 |  |  | func packElement(t Type, reflectValue reflect.Value) ([]byte, error) { | 
					
						
							| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | 	switch t.T { | 
					
						
							|  |  |  | 	case IntTy, UintTy: | 
					
						
							| 
									
										
										
										
											2020-09-16 13:15:22 +02:00
										 |  |  | 		return packNum(reflectValue), nil | 
					
						
							| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | 	case StringTy: | 
					
						
							| 
									
										
										
										
											2020-09-16 13:15:22 +02:00
										 |  |  | 		return packBytesSlice([]byte(reflectValue.String()), reflectValue.Len()), nil | 
					
						
							| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | 	case AddressTy: | 
					
						
							|  |  |  | 		if reflectValue.Kind() == reflect.Array { | 
					
						
							|  |  |  | 			reflectValue = mustArrayToByteSlice(reflectValue) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-16 13:15:22 +02:00
										 |  |  | 		return common.LeftPadBytes(reflectValue.Bytes(), 32), nil | 
					
						
							| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | 	case BoolTy: | 
					
						
							|  |  |  | 		if reflectValue.Bool() { | 
					
						
							| 
									
										
										
										
											2020-09-16 13:15:22 +02:00
										 |  |  | 			return math.PaddedBigBytes(common.Big1, 32), nil | 
					
						
							| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-09-16 13:15:22 +02:00
										 |  |  | 		return math.PaddedBigBytes(common.Big0, 32), nil | 
					
						
							| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | 	case BytesTy: | 
					
						
							|  |  |  | 		if reflectValue.Kind() == reflect.Array { | 
					
						
							|  |  |  | 			reflectValue = mustArrayToByteSlice(reflectValue) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-09-16 13:15:22 +02:00
										 |  |  | 		if reflectValue.Type() != reflect.TypeOf([]byte{}) { | 
					
						
							|  |  |  | 			return []byte{}, errors.New("Bytes type is neither slice nor array") | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return packBytesSlice(reflectValue.Bytes(), reflectValue.Len()), nil | 
					
						
							| 
									
										
										
										
											2017-01-05 04:46:44 -06:00
										 |  |  | 	case FixedBytesTy, FunctionTy: | 
					
						
							| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | 		if reflectValue.Kind() == reflect.Array { | 
					
						
							|  |  |  | 			reflectValue = mustArrayToByteSlice(reflectValue) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-09-16 13:15:22 +02:00
										 |  |  | 		return common.RightPadBytes(reflectValue.Bytes(), 32), nil | 
					
						
							| 
									
										
										
										
											2017-10-17 06:07:08 -05:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2020-09-16 13:15:22 +02:00
										 |  |  | 		return []byte{}, fmt.Errorf("Could not pack element, unknown type: %v", t.T) | 
					
						
							| 
									
										
										
										
											2016-04-07 11:39:22 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-06-27 03:05:33 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-20 11:43:57 +03:00
										 |  |  | // packNum packs the given number (using the reflect value) and will cast it to appropriate number representation. | 
					
						
							| 
									
										
										
										
											2017-06-27 03:05:33 -05:00
										 |  |  | func packNum(value reflect.Value) []byte { | 
					
						
							|  |  |  | 	switch kind := value.Kind(); kind { | 
					
						
							|  |  |  | 	case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: | 
					
						
							| 
									
										
										
										
											2020-05-04 14:09:14 +02:00
										 |  |  | 		return math.U256Bytes(new(big.Int).SetUint64(value.Uint())) | 
					
						
							| 
									
										
										
										
											2017-06-27 03:05:33 -05:00
										 |  |  | 	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: | 
					
						
							| 
									
										
										
										
											2020-05-04 14:09:14 +02:00
										 |  |  | 		return math.U256Bytes(big.NewInt(value.Int())) | 
					
						
							| 
									
										
										
										
											2017-06-27 03:05:33 -05:00
										 |  |  | 	case reflect.Ptr: | 
					
						
							| 
									
										
										
										
											2020-05-04 14:09:14 +02:00
										 |  |  | 		return math.U256Bytes(new(big.Int).Set(value.Interface().(*big.Int))) | 
					
						
							| 
									
										
										
										
											2017-10-17 06:07:08 -05:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		panic("abi: fatal error") | 
					
						
							| 
									
										
										
										
											2017-06-27 03:05:33 -05:00
										 |  |  | 	} | 
					
						
							|  |  |  | } |