github.com/ava-labs/subnet-evm@v0.6.4/accounts/abi/utils.go (about) 1 // (c) 2022, Ava Labs, Inc. 2 // 3 // This file is a derived work, based on the go-ethereum library whose original 4 // notices appear below. 5 // 6 // It is distributed under a license compatible with the licensing terms of the 7 // original code from which it is derived. 8 // 9 // Much love to the original authors for their work. 10 // ********** 11 // Copyright 2022 The go-ethereum Authors 12 // This file is part of the go-ethereum library. 13 // 14 // The go-ethereum library is free software: you can redistribute it and/or modify 15 // it under the terms of the GNU Lesser General Public License as published by 16 // the Free Software Foundation, either version 3 of the License, or 17 // (at your option) any later version. 18 // 19 // The go-ethereum library is distributed in the hope that it will be useful, 20 // but WITHOUT ANY WARRANTY; without even the implied warranty of 21 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 22 // GNU Lesser General Public License for more details. 23 // 24 // You should have received a copy of the GNU Lesser General Public License 25 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 26 27 package abi 28 29 import "fmt" 30 31 // ResolveNameConflict returns the next available name for a given thing. 32 // This helper can be used for lots of purposes: 33 // 34 // - In solidity function overloading is supported, this function can fix 35 // the name conflicts of overloaded functions. 36 // - In golang binding generation, the parameter(in function, event, error, 37 // and struct definition) name will be converted to camelcase style which 38 // may eventually lead to name conflicts. 39 // 40 // Name conflicts are mostly resolved by adding number suffix. e.g. if the abi contains 41 // Methods "send" and "send1", ResolveNameConflict would return "send2" for input "send". 42 func ResolveNameConflict(rawName string, used func(string) bool) string { 43 name := rawName 44 ok := used(name) 45 for idx := 0; ok; idx++ { 46 name = fmt.Sprintf("%s%d", rawName, idx) 47 ok = used(name) 48 } 49 return name 50 }