| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379 |
- // 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 bind generates Ethereum contract Go bindings.
- //
- // Detailed usage document and tutorial available on the go-ethereum Wiki page:
- // https://github.com/ethereum/go-ethereum/wiki/Native-DApps:-Go-bindings-to-Ethereum-contracts
- package bind
- import (
- "bytes"
- "fmt"
- "go/format"
- "regexp"
- "strings"
- "text/template"
- "unicode"
- "github.com/ethereum/go-ethereum/accounts/abi"
- )
- // Lang is a target programming language selector to generate bindings for.
- type Lang int
- const (
- LangGo Lang = iota
- LangJava
- )
- // Bind generates a Go wrapper around a contract ABI. This wrapper isn't meant
- // to be used as is in client code, but rather as an intermediate struct which
- // enforces compile time type safety and naming convention opposed to having to
- // manually maintain hard coded strings that break on runtime.
- func Bind(types []string, abis []string, bytecodes []string, pkg string, lang Lang) (string, error) {
- // Process each individual contract requested binding
- contracts := make(map[string]*tmplContract)
- for i := 0; i < len(types); i++ {
- // Parse the actual ABI to generate the binding for
- evmABI, err := abi.JSON(strings.NewReader(abis[i]))
- if err != nil {
- return "", err
- }
- // Strip any whitespace from the JSON ABI
- strippedABI := strings.Map(func(r rune) rune {
- if unicode.IsSpace(r) {
- return -1
- }
- return r
- }, abis[i])
- // Extract the call and transact methods; events; and sort them alphabetically
- var (
- calls = make(map[string]*tmplMethod)
- transacts = make(map[string]*tmplMethod)
- events = make(map[string]*tmplEvent)
- )
- for _, original := range evmABI.Methods {
- // Normalize the method for capital cases and non-anonymous inputs/outputs
- normalized := original
- normalized.Name = methodNormalizer[lang](original.Name)
- normalized.Inputs = make([]abi.Argument, len(original.Inputs))
- copy(normalized.Inputs, original.Inputs)
- for j, input := range normalized.Inputs {
- if input.Name == "" {
- normalized.Inputs[j].Name = fmt.Sprintf("arg%d", j)
- }
- }
- normalized.Outputs = make([]abi.Argument, len(original.Outputs))
- copy(normalized.Outputs, original.Outputs)
- for j, output := range normalized.Outputs {
- if output.Name != "" {
- normalized.Outputs[j].Name = capitalise(output.Name)
- }
- }
- // Append the methods to the call or transact lists
- if original.Const {
- calls[original.Name] = &tmplMethod{Original: original, Normalized: normalized, Structured: structured(original.Outputs)}
- } else {
- transacts[original.Name] = &tmplMethod{Original: original, Normalized: normalized, Structured: structured(original.Outputs)}
- }
- }
- for _, original := range evmABI.Events {
- // Skip anonymous events as they don't support explicit filtering
- if original.Anonymous {
- continue
- }
- // Normalize the event for capital cases and non-anonymous outputs
- normalized := original
- normalized.Name = methodNormalizer[lang](original.Name)
- normalized.Inputs = make([]abi.Argument, len(original.Inputs))
- copy(normalized.Inputs, original.Inputs)
- for j, input := range normalized.Inputs {
- // Indexed fields are input, non-indexed ones are outputs
- if input.Indexed {
- if input.Name == "" {
- normalized.Inputs[j].Name = fmt.Sprintf("arg%d", j)
- }
- }
- }
- // Append the event to the accumulator list
- events[original.Name] = &tmplEvent{Original: original, Normalized: normalized}
- }
- contracts[types[i]] = &tmplContract{
- Type: capitalise(types[i]),
- InputABI: strings.Replace(strippedABI, "\"", "\\\"", -1),
- InputBin: strings.TrimSpace(bytecodes[i]),
- Constructor: evmABI.Constructor,
- Calls: calls,
- Transacts: transacts,
- Events: events,
- }
- }
- // Generate the contract template data content and render it
- data := &tmplData{
- Package: pkg,
- Contracts: contracts,
- }
- buffer := new(bytes.Buffer)
- funcs := map[string]interface{}{
- "bindtype": bindType[lang],
- "bindtopictype": bindTopicType[lang],
- "namedtype": namedType[lang],
- "capitalise": capitalise,
- "decapitalise": decapitalise,
- }
- tmpl := template.Must(template.New("").Funcs(funcs).Parse(tmplSource[lang]))
- if err := tmpl.Execute(buffer, data); err != nil {
- return "", err
- }
- // For Go bindings pass the code through gofmt to clean it up
- if lang == LangGo {
- code, err := format.Source(buffer.Bytes())
- if err != nil {
- return "", fmt.Errorf("%v\n%s", err, buffer)
- }
- return string(code), nil
- }
- // For all others just return as is for now
- return buffer.String(), nil
- }
- // bindType is a set of type binders that convert Solidity types to some supported
- // programming language types.
- var bindType = map[Lang]func(kind abi.Type) string{
- LangGo: bindTypeGo,
- LangJava: bindTypeJava,
- }
- // bindBasicTypeGo converts basic solidity types(except array, slice and tuple) to Go one.
- func bindBasicTypeGo(kind abi.Type) string {
- switch kind.T {
- case abi.AddressTy:
- return "common.Address"
- case abi.IntTy, abi.UintTy:
- parts := regexp.MustCompile(`(u)?int([0-9]*)`).FindStringSubmatch(kind.String())
- switch parts[2] {
- case "8", "16", "32", "64":
- return fmt.Sprintf("%sint%s", parts[1], parts[2])
- }
- return "*big.Int"
- case abi.FixedBytesTy:
- return fmt.Sprintf("[%d]byte", kind.Size)
- case abi.BytesTy:
- return "[]byte"
- case abi.FunctionTy:
- // todo(rjl493456442)
- return ""
- default:
- // string, bool types
- return kind.String()
- }
- }
- // bindTypeGo converts solidity types to Go ones. Since there is no clear mapping
- // from all Solidity types to Go ones (e.g. uint17), those that cannot be exactly
- // mapped will use an upscaled type (e.g. BigDecimal).
- func bindTypeGo(kind abi.Type) string {
- // todo(rjl493456442) tuple
- switch kind.T {
- case abi.ArrayTy:
- return fmt.Sprintf("[%d]", kind.Size) + bindTypeGo(*kind.Elem)
- case abi.SliceTy:
- return "[]" + bindTypeGo(*kind.Elem)
- default:
- return bindBasicTypeGo(kind)
- }
- }
- // bindBasicTypeJava converts basic solidity types(except array, slice and tuple) to Java one.
- func bindBasicTypeJava(kind abi.Type) string {
- switch kind.T {
- case abi.AddressTy:
- return "Address"
- case abi.IntTy, abi.UintTy:
- // Note that uint and int (without digits) are also matched,
- // these are size 256, and will translate to BigInt (the default).
- parts := regexp.MustCompile(`(u)?int([0-9]*)`).FindStringSubmatch(kind.String())
- if len(parts) != 3 {
- return kind.String()
- }
- // All unsigned integers should be translated to BigInt since gomobile doesn't
- // support them.
- if parts[1] == "u" {
- return "BigInt"
- }
- namedSize := map[string]string{
- "8": "byte",
- "16": "short",
- "32": "int",
- "64": "long",
- }[parts[2]]
- // default to BigInt
- if namedSize == "" {
- namedSize = "BigInt"
- }
- return namedSize
- case abi.FixedBytesTy, abi.BytesTy:
- return "byte[]"
- case abi.BoolTy:
- return "boolean"
- case abi.StringTy:
- return "String"
- case abi.FunctionTy:
- // todo(rjl493456442)
- return ""
- default:
- return kind.String()
- }
- }
- // bindTypeJava converts a Solidity type to a Java one. Since there is no clear mapping
- // from all Solidity types to Java ones (e.g. uint17), those that cannot be exactly
- // mapped will use an upscaled type (e.g. BigDecimal).
- func bindTypeJava(kind abi.Type) string {
- switch kind.T {
- case abi.ArrayTy, abi.SliceTy:
- // Explicitly convert multidimensional types to predefined type in go side.
- inner := bindTypeJava(*kind.Elem)
- switch inner {
- case "boolean":
- return "Bools"
- case "String":
- return "Strings"
- case "Address":
- return "Addresses"
- case "byte[]":
- return "Binaries"
- case "BigInt":
- return "BigInts"
- }
- return inner + "[]"
- default:
- return bindBasicTypeJava(kind)
- }
- }
- // bindTopicType is a set of type binders that convert Solidity types to some
- // supported programming language topic types.
- var bindTopicType = map[Lang]func(kind abi.Type) string{
- LangGo: bindTopicTypeGo,
- LangJava: bindTopicTypeJava,
- }
- // bindTypeGo converts a Solidity topic type to a Go one. It is almost the same
- // funcionality as for simple types, but dynamic types get converted to hashes.
- func bindTopicTypeGo(kind abi.Type) string {
- bound := bindTypeGo(kind)
- if bound == "string" || bound == "[]byte" {
- bound = "common.Hash"
- }
- return bound
- }
- // bindTypeGo converts a Solidity topic type to a Java one. It is almost the same
- // funcionality as for simple types, but dynamic types get converted to hashes.
- func bindTopicTypeJava(kind abi.Type) string {
- bound := bindTypeJava(kind)
- if bound == "String" || bound == "byte[]" {
- bound = "Hash"
- }
- return bound
- }
- // namedType is a set of functions that transform language specific types to
- // named versions that my be used inside method names.
- var namedType = map[Lang]func(string, abi.Type) string{
- LangGo: func(string, abi.Type) string { panic("this shouldn't be needed") },
- LangJava: namedTypeJava,
- }
- // namedTypeJava converts some primitive data types to named variants that can
- // be used as parts of method names.
- func namedTypeJava(javaKind string, solKind abi.Type) string {
- switch javaKind {
- case "byte[]":
- return "Binary"
- case "boolean":
- return "Bool"
- default:
- parts := regexp.MustCompile(`(u)?int([0-9]*)(\[[0-9]*\])?`).FindStringSubmatch(solKind.String())
- if len(parts) != 4 {
- return javaKind
- }
- switch parts[2] {
- case "8", "16", "32", "64":
- if parts[3] == "" {
- return capitalise(fmt.Sprintf("%sint%s", parts[1], parts[2]))
- }
- return capitalise(fmt.Sprintf("%sint%ss", parts[1], parts[2]))
- default:
- return javaKind
- }
- }
- }
- // methodNormalizer is a name transformer that modifies Solidity method names to
- // conform to target language naming concentions.
- var methodNormalizer = map[Lang]func(string) string{
- LangGo: abi.ToCamelCase,
- LangJava: decapitalise,
- }
- // capitalise makes a camel-case string which starts with an upper case character.
- func capitalise(input string) string {
- return abi.ToCamelCase(input)
- }
- // decapitalise makes a camel-case string which starts with a lower case character.
- func decapitalise(input string) string {
- if len(input) == 0 {
- return input
- }
- goForm := abi.ToCamelCase(input)
- return strings.ToLower(goForm[:1]) + goForm[1:]
- }
- // structured checks whether a list of ABI data types has enough information to
- // operate through a proper Go struct or if flat returns are needed.
- func structured(args abi.Arguments) bool {
- if len(args) < 2 {
- return false
- }
- exists := make(map[string]bool)
- for _, out := range args {
- // If the name is anonymous, we can't organize into a struct
- if out.Name == "" {
- return false
- }
- // If the field name is empty when normalized or collides (var, Var, _var, _Var),
- // we can't organize into a struct
- field := capitalise(out.Name)
- if field == "" || exists[field] {
- return false
- }
- exists[field] = true
- }
- return true
- }
|