This change updates our urfave/cli dependency to the v2 branch of the library. There are some Go API changes in cli v2: - Flag values can now be accessed using the methods ctx.Bool, ctx.Int, ctx.String, ... regardless of whether the flag is 'local' or 'global'. - v2 has built-in support for flag categories. Our home-grown category system is removed and the categories of flags are assigned as part of the flag definition. For users, there is only one observable difference with cli v2: flags must now strictly appear before regular arguments. For example, the following command is now invalid: geth account import mykey.json --password file.txt Instead, the command must be invoked as follows: geth account import --password file.txt mykey.json
		
			
				
	
	
		
			248 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			248 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2016 The go-ethereum Authors
 | |
| // This file is part of go-ethereum.
 | |
| //
 | |
| // go-ethereum is free software: you can redistribute it and/or modify
 | |
| // it under the terms of the GNU General Public License as published by
 | |
| // the Free Software Foundation, either version 3 of the License, or
 | |
| // (at your option) any later version.
 | |
| //
 | |
| // go-ethereum 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 General Public License for more details.
 | |
| //
 | |
| // You should have received a copy of the GNU General Public License
 | |
| // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
 | |
| 
 | |
| package main
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| 	"fmt"
 | |
| 	"io"
 | |
| 	"os"
 | |
| 	"regexp"
 | |
| 	"strings"
 | |
| 
 | |
| 	"github.com/ethereum/go-ethereum/accounts/abi/bind"
 | |
| 	"github.com/ethereum/go-ethereum/cmd/utils"
 | |
| 	"github.com/ethereum/go-ethereum/common/compiler"
 | |
| 	"github.com/ethereum/go-ethereum/crypto"
 | |
| 	"github.com/ethereum/go-ethereum/internal/flags"
 | |
| 	"github.com/ethereum/go-ethereum/log"
 | |
| 	"github.com/urfave/cli/v2"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	// Git SHA1 commit hash of the release (set via linker flags)
 | |
| 	gitCommit = ""
 | |
| 	gitDate   = ""
 | |
| 
 | |
| 	app *cli.App
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	// Flags needed by abigen
 | |
| 	abiFlag = &cli.StringFlag{
 | |
| 		Name:  "abi",
 | |
| 		Usage: "Path to the Ethereum contract ABI json to bind, - for STDIN",
 | |
| 	}
 | |
| 	binFlag = &cli.StringFlag{
 | |
| 		Name:  "bin",
 | |
| 		Usage: "Path to the Ethereum contract bytecode (generate deploy method)",
 | |
| 	}
 | |
| 	typeFlag = &cli.StringFlag{
 | |
| 		Name:  "type",
 | |
| 		Usage: "Struct name for the binding (default = package name)",
 | |
| 	}
 | |
| 	jsonFlag = &cli.StringFlag{
 | |
| 		Name:  "combined-json",
 | |
| 		Usage: "Path to the combined-json file generated by compiler, - for STDIN",
 | |
| 	}
 | |
| 	excFlag = &cli.StringFlag{
 | |
| 		Name:  "exc",
 | |
| 		Usage: "Comma separated types to exclude from binding",
 | |
| 	}
 | |
| 	pkgFlag = &cli.StringFlag{
 | |
| 		Name:  "pkg",
 | |
| 		Usage: "Package name to generate the binding into",
 | |
| 	}
 | |
| 	outFlag = &cli.StringFlag{
 | |
| 		Name:  "out",
 | |
| 		Usage: "Output file for the generated binding (default = stdout)",
 | |
| 	}
 | |
| 	langFlag = &cli.StringFlag{
 | |
| 		Name:  "lang",
 | |
| 		Usage: "Destination language for the bindings (go, java, objc)",
 | |
| 		Value: "go",
 | |
| 	}
 | |
| 	aliasFlag = &cli.StringFlag{
 | |
| 		Name:  "alias",
 | |
| 		Usage: "Comma separated aliases for function and event renaming, e.g. original1=alias1, original2=alias2",
 | |
| 	}
 | |
| )
 | |
| 
 | |
| func init() {
 | |
| 	app = flags.NewApp(gitCommit, gitDate, "ethereum checkpoint helper tool")
 | |
| 	app.Name = "abigen"
 | |
| 	app.Flags = []cli.Flag{
 | |
| 		abiFlag,
 | |
| 		binFlag,
 | |
| 		typeFlag,
 | |
| 		jsonFlag,
 | |
| 		excFlag,
 | |
| 		pkgFlag,
 | |
| 		outFlag,
 | |
| 		langFlag,
 | |
| 		aliasFlag,
 | |
| 	}
 | |
| 	app.Action = abigen
 | |
| }
 | |
| 
 | |
| func abigen(c *cli.Context) error {
 | |
| 	utils.CheckExclusive(c, abiFlag, jsonFlag) // Only one source can be selected.
 | |
| 
 | |
| 	if c.String(pkgFlag.Name) == "" {
 | |
| 		utils.Fatalf("No destination package specified (--pkg)")
 | |
| 	}
 | |
| 	var lang bind.Lang
 | |
| 	switch c.String(langFlag.Name) {
 | |
| 	case "go":
 | |
| 		lang = bind.LangGo
 | |
| 	case "java":
 | |
| 		lang = bind.LangJava
 | |
| 	case "objc":
 | |
| 		lang = bind.LangObjC
 | |
| 		utils.Fatalf("Objc binding generation is uncompleted")
 | |
| 	default:
 | |
| 		utils.Fatalf("Unsupported destination language \"%s\" (--lang)", c.String(langFlag.Name))
 | |
| 	}
 | |
| 	// If the entire solidity code was specified, build and bind based on that
 | |
| 	var (
 | |
| 		abis    []string
 | |
| 		bins    []string
 | |
| 		types   []string
 | |
| 		sigs    []map[string]string
 | |
| 		libs    = make(map[string]string)
 | |
| 		aliases = make(map[string]string)
 | |
| 	)
 | |
| 	if c.String(abiFlag.Name) != "" {
 | |
| 		// Load up the ABI, optional bytecode and type name from the parameters
 | |
| 		var (
 | |
| 			abi []byte
 | |
| 			err error
 | |
| 		)
 | |
| 		input := c.String(abiFlag.Name)
 | |
| 		if input == "-" {
 | |
| 			abi, err = io.ReadAll(os.Stdin)
 | |
| 		} else {
 | |
| 			abi, err = os.ReadFile(input)
 | |
| 		}
 | |
| 		if err != nil {
 | |
| 			utils.Fatalf("Failed to read input ABI: %v", err)
 | |
| 		}
 | |
| 		abis = append(abis, string(abi))
 | |
| 
 | |
| 		var bin []byte
 | |
| 		if binFile := c.String(binFlag.Name); binFile != "" {
 | |
| 			if bin, err = os.ReadFile(binFile); err != nil {
 | |
| 				utils.Fatalf("Failed to read input bytecode: %v", err)
 | |
| 			}
 | |
| 			if strings.Contains(string(bin), "//") {
 | |
| 				utils.Fatalf("Contract has additional library references, please use other mode(e.g. --combined-json) to catch library infos")
 | |
| 			}
 | |
| 		}
 | |
| 		bins = append(bins, string(bin))
 | |
| 
 | |
| 		kind := c.String(typeFlag.Name)
 | |
| 		if kind == "" {
 | |
| 			kind = c.String(pkgFlag.Name)
 | |
| 		}
 | |
| 		types = append(types, kind)
 | |
| 	} else {
 | |
| 		// Generate the list of types to exclude from binding
 | |
| 		exclude := make(map[string]bool)
 | |
| 		for _, kind := range strings.Split(c.String(excFlag.Name), ",") {
 | |
| 			exclude[strings.ToLower(kind)] = true
 | |
| 		}
 | |
| 		var contracts map[string]*compiler.Contract
 | |
| 
 | |
| 		if c.IsSet(jsonFlag.Name) {
 | |
| 			var (
 | |
| 				input      = c.String(jsonFlag.Name)
 | |
| 				jsonOutput []byte
 | |
| 				err        error
 | |
| 			)
 | |
| 			if input == "-" {
 | |
| 				jsonOutput, err = io.ReadAll(os.Stdin)
 | |
| 			} else {
 | |
| 				jsonOutput, err = os.ReadFile(input)
 | |
| 			}
 | |
| 			if err != nil {
 | |
| 				utils.Fatalf("Failed to read combined-json: %v", err)
 | |
| 			}
 | |
| 			contracts, err = compiler.ParseCombinedJSON(jsonOutput, "", "", "", "")
 | |
| 			if err != nil {
 | |
| 				utils.Fatalf("Failed to read contract information from json output: %v", err)
 | |
| 			}
 | |
| 		}
 | |
| 		// Gather all non-excluded contract for binding
 | |
| 		for name, contract := range contracts {
 | |
| 			if exclude[strings.ToLower(name)] {
 | |
| 				continue
 | |
| 			}
 | |
| 			abi, err := json.Marshal(contract.Info.AbiDefinition) // Flatten the compiler parse
 | |
| 			if err != nil {
 | |
| 				utils.Fatalf("Failed to parse ABIs from compiler output: %v", err)
 | |
| 			}
 | |
| 			abis = append(abis, string(abi))
 | |
| 			bins = append(bins, contract.Code)
 | |
| 			sigs = append(sigs, contract.Hashes)
 | |
| 			nameParts := strings.Split(name, ":")
 | |
| 			types = append(types, nameParts[len(nameParts)-1])
 | |
| 
 | |
| 			// Derive the library placeholder which is a 34 character prefix of the
 | |
| 			// hex encoding of the keccak256 hash of the fully qualified library name.
 | |
| 			// Note that the fully qualified library name is the path of its source
 | |
| 			// file and the library name separated by ":".
 | |
| 			libPattern := crypto.Keccak256Hash([]byte(name)).String()[2:36] // the first 2 chars are 0x
 | |
| 			libs[libPattern] = nameParts[len(nameParts)-1]
 | |
| 		}
 | |
| 	}
 | |
| 	// Extract all aliases from the flags
 | |
| 	if c.IsSet(aliasFlag.Name) {
 | |
| 		// We support multi-versions for aliasing
 | |
| 		// e.g.
 | |
| 		//      foo=bar,foo2=bar2
 | |
| 		//      foo:bar,foo2:bar2
 | |
| 		re := regexp.MustCompile(`(?:(\w+)[:=](\w+))`)
 | |
| 		submatches := re.FindAllStringSubmatch(c.String(aliasFlag.Name), -1)
 | |
| 		for _, match := range submatches {
 | |
| 			aliases[match[1]] = match[2]
 | |
| 		}
 | |
| 	}
 | |
| 	// Generate the contract binding
 | |
| 	code, err := bind.Bind(types, abis, bins, sigs, c.String(pkgFlag.Name), lang, libs, aliases)
 | |
| 	if err != nil {
 | |
| 		utils.Fatalf("Failed to generate ABI binding: %v", err)
 | |
| 	}
 | |
| 	// Either flush it out to a file or display on the standard output
 | |
| 	if !c.IsSet(outFlag.Name) {
 | |
| 		fmt.Printf("%s\n", code)
 | |
| 		return nil
 | |
| 	}
 | |
| 	if err := os.WriteFile(c.String(outFlag.Name), []byte(code), 0600); err != nil {
 | |
| 		utils.Fatalf("Failed to write ABI binding: %v", err)
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func main() {
 | |
| 	log.Root().SetHandler(log.LvlFilterHandler(log.LvlInfo, log.StreamHandler(os.Stderr, log.TerminalFormat(true))))
 | |
| 
 | |
| 	if err := app.Run(os.Args); err != nil {
 | |
| 		fmt.Fprintln(os.Stderr, err)
 | |
| 		os.Exit(1)
 | |
| 	}
 | |
| }
 |