2019-07-22 09:17:27 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2019-03-18 12:29:26 +00:00
|
|
|
// Package compiler wraps the Solidity and Vyper compiler executables (solc; vyper).
|
2015-04-22 22:11:11 +00:00
|
|
|
package compiler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2015-08-25 16:42:05 +00:00
|
|
|
"errors"
|
2015-04-22 22:11:11 +00:00
|
|
|
"fmt"
|
|
|
|
"os/exec"
|
2017-01-25 22:57:13 +00:00
|
|
|
"strconv"
|
2015-04-22 22:11:11 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2016-06-14 22:36:31 +00:00
|
|
|
// Solidity contains information about the solidity compiler.
|
2015-04-22 22:11:11 +00:00
|
|
|
type Solidity struct {
|
2016-06-14 22:36:31 +00:00
|
|
|
Path, Version, FullVersion string
|
2017-01-25 22:57:13 +00:00
|
|
|
Major, Minor, Patch int
|
2022-03-29 20:38:59 +00:00
|
|
|
ExtraAllowedPath []string
|
2015-04-22 22:11:11 +00:00
|
|
|
}
|
|
|
|
|
2016-06-14 22:36:31 +00:00
|
|
|
// --combined-output format
|
|
|
|
type solcOutput struct {
|
2017-01-25 22:57:13 +00:00
|
|
|
Contracts map[string]struct {
|
2018-11-08 12:09:25 +00:00
|
|
|
BinRuntime string `json:"bin-runtime"`
|
|
|
|
SrcMapRuntime string `json:"srcmap-runtime"`
|
|
|
|
Bin, SrcMap, Abi, Devdoc, Userdoc, Metadata string
|
2019-07-02 07:52:58 +00:00
|
|
|
Hashes map[string]string
|
2017-01-25 22:57:13 +00:00
|
|
|
}
|
|
|
|
Version string
|
|
|
|
}
|
|
|
|
|
2021-01-05 13:48:22 +00:00
|
|
|
// solidity v.0.8 changes the way ABI, Devdoc and Userdoc are serialized
|
|
|
|
type solcOutputV8 struct {
|
|
|
|
Contracts map[string]struct {
|
|
|
|
BinRuntime string `json:"bin-runtime"`
|
|
|
|
SrcMapRuntime string `json:"srcmap-runtime"`
|
|
|
|
Bin, SrcMap, Metadata string
|
|
|
|
Abi interface{}
|
|
|
|
Devdoc interface{}
|
|
|
|
Userdoc interface{}
|
|
|
|
Hashes map[string]string
|
|
|
|
}
|
|
|
|
Version string
|
|
|
|
}
|
|
|
|
|
2022-03-29 20:38:59 +00:00
|
|
|
func (s *Solidity) allowedPaths() string {
|
|
|
|
paths := []string{".", "./", "../"} // default to support relative paths
|
|
|
|
if len(s.ExtraAllowedPath) > 0 {
|
|
|
|
paths = append(paths, s.ExtraAllowedPath...)
|
|
|
|
}
|
|
|
|
return strings.Join(paths, ", ")
|
|
|
|
}
|
|
|
|
|
2017-01-25 22:57:13 +00:00
|
|
|
func (s *Solidity) makeArgs() []string {
|
|
|
|
p := []string{
|
2018-11-08 12:09:25 +00:00
|
|
|
"--combined-json", "bin,bin-runtime,srcmap,srcmap-runtime,abi,userdoc,devdoc",
|
2022-03-29 20:38:59 +00:00
|
|
|
"--optimize", // code optimizer switched on
|
|
|
|
"--allow-paths", s.allowedPaths(),
|
2017-01-25 22:57:13 +00:00
|
|
|
}
|
|
|
|
if s.Major > 0 || s.Minor > 4 || s.Patch > 6 {
|
2019-07-02 07:52:58 +00:00
|
|
|
p[1] += ",metadata,hashes"
|
2017-01-25 22:57:13 +00:00
|
|
|
}
|
|
|
|
return p
|
2016-06-14 22:36:31 +00:00
|
|
|
}
|
2015-04-22 22:11:11 +00:00
|
|
|
|
2016-06-14 22:36:31 +00:00
|
|
|
// SolidityVersion runs solc and parses its version output.
|
|
|
|
func SolidityVersion(solc string) (*Solidity, error) {
|
|
|
|
if solc == "" {
|
|
|
|
solc = "solc"
|
|
|
|
}
|
2015-04-22 22:11:11 +00:00
|
|
|
var out bytes.Buffer
|
2016-06-14 22:36:31 +00:00
|
|
|
cmd := exec.Command(solc, "--version")
|
2015-04-22 22:11:11 +00:00
|
|
|
cmd.Stdout = &out
|
2017-01-25 22:57:13 +00:00
|
|
|
err := cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
matches := versionRegexp.FindStringSubmatch(out.String())
|
|
|
|
if len(matches) != 4 {
|
|
|
|
return nil, fmt.Errorf("can't parse solc version %q", out.String())
|
|
|
|
}
|
|
|
|
s := &Solidity{Path: cmd.Path, FullVersion: out.String(), Version: matches[0]}
|
|
|
|
if s.Major, err = strconv.Atoi(matches[1]); err != nil {
|
2016-06-14 22:36:31 +00:00
|
|
|
return nil, err
|
2015-04-22 22:11:11 +00:00
|
|
|
}
|
2017-01-25 22:57:13 +00:00
|
|
|
if s.Minor, err = strconv.Atoi(matches[2]); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if s.Patch, err = strconv.Atoi(matches[3]); err != nil {
|
|
|
|
return nil, err
|
2015-04-22 22:11:11 +00:00
|
|
|
}
|
2016-06-14 22:36:31 +00:00
|
|
|
return s, nil
|
2015-05-10 11:46:38 +00:00
|
|
|
}
|
|
|
|
|
2016-06-14 22:36:31 +00:00
|
|
|
// CompileSolidityString builds and returns all the contracts contained within a source string.
|
|
|
|
func CompileSolidityString(solc, source string) (map[string]*Contract, error) {
|
2015-04-22 22:11:11 +00:00
|
|
|
if len(source) == 0 {
|
2015-08-25 16:42:05 +00:00
|
|
|
return nil, errors.New("solc: empty source string")
|
2015-04-22 22:11:11 +00:00
|
|
|
}
|
2017-01-25 22:57:13 +00:00
|
|
|
s, err := SolidityVersion(solc)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2016-06-14 22:36:31 +00:00
|
|
|
}
|
2022-03-29 20:38:59 +00:00
|
|
|
return s.CompileSource(source)
|
2016-06-14 22:36:31 +00:00
|
|
|
}
|
2015-08-25 16:42:05 +00:00
|
|
|
|
2016-06-14 22:36:31 +00:00
|
|
|
// CompileSolidity compiles all given Solidity source files.
|
|
|
|
func CompileSolidity(solc string, sourcefiles ...string) (map[string]*Contract, error) {
|
|
|
|
if len(sourcefiles) == 0 {
|
2017-01-06 14:39:35 +00:00
|
|
|
return nil, errors.New("solc: no source files")
|
2016-06-14 22:36:31 +00:00
|
|
|
}
|
2022-03-29 20:38:59 +00:00
|
|
|
s, err := SolidityVersion(solc)
|
2016-06-14 22:36:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-03-29 20:38:59 +00:00
|
|
|
|
|
|
|
return s.CompileFiles(sourcefiles...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CompileSource builds and returns all the contracts contained within a source string.
|
|
|
|
func (s *Solidity) CompileSource(source string) (map[string]*Contract, error) {
|
|
|
|
args := append(s.makeArgs(), "--")
|
|
|
|
cmd := exec.Command(s.Path, append(args, "-")...)
|
|
|
|
cmd.Stdin = strings.NewReader(source)
|
|
|
|
return s.run(cmd, source)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CompileFiles compiles all given Solidity source files.
|
|
|
|
func (s *Solidity) CompileFiles(sourcefiles ...string) (map[string]*Contract, error) {
|
|
|
|
source, err := slurpFiles(sourcefiles)
|
2017-01-25 22:57:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2015-09-10 12:12:41 +00:00
|
|
|
}
|
2017-01-25 22:57:13 +00:00
|
|
|
args := append(s.makeArgs(), "--")
|
|
|
|
cmd := exec.Command(s.Path, append(args, sourcefiles...)...)
|
|
|
|
return s.run(cmd, source)
|
2017-01-06 14:39:35 +00:00
|
|
|
}
|
|
|
|
|
2017-01-25 22:57:13 +00:00
|
|
|
func (s *Solidity) run(cmd *exec.Cmd, source string) (map[string]*Contract, error) {
|
2017-01-06 14:39:35 +00:00
|
|
|
var stderr, stdout bytes.Buffer
|
2016-06-14 22:36:31 +00:00
|
|
|
cmd.Stderr = &stderr
|
|
|
|
cmd.Stdout = &stdout
|
2015-08-25 16:42:05 +00:00
|
|
|
if err := cmd.Run(); err != nil {
|
2016-06-14 22:36:31 +00:00
|
|
|
return nil, fmt.Errorf("solc: %v\n%s", err, stderr.Bytes())
|
2015-08-25 16:42:05 +00:00
|
|
|
}
|
cmd/abigen: support for reading solc output from stdin (#16683)
Allow the --abi flag to be given - to indicate that it should read the
ABI information from standard input. It expects to read the solc output
with the --combined-json flag providing bin, abi, userdoc, devdoc, and
metadata, and works very similarly to the internal invocation of solc,
except it allows external invocation of solc.
This facilitates integration with more complex solc invocations, such
as invocations that require path remapping or --allow-paths tweaks.
Simple usage example:
solc --combined-json bin,abi,userdoc,devdoc,metadata *.sol | abigen --abi -
2018-06-05 10:22:02 +00:00
|
|
|
return ParseCombinedJSON(stdout.Bytes(), source, s.Version, s.Version, strings.Join(s.makeArgs(), " "))
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseCombinedJSON takes the direct output of a solc --combined-output run and
|
|
|
|
// parses it into a map of string contract name to Contract structs. The
|
|
|
|
// provided source, language and compiler version, and compiler options are all
|
|
|
|
// passed through into the Contract structs.
|
|
|
|
//
|
2018-11-08 12:09:25 +00:00
|
|
|
// The solc output is expected to contain ABI, source mapping, user docs, and dev docs.
|
cmd/abigen: support for reading solc output from stdin (#16683)
Allow the --abi flag to be given - to indicate that it should read the
ABI information from standard input. It expects to read the solc output
with the --combined-json flag providing bin, abi, userdoc, devdoc, and
metadata, and works very similarly to the internal invocation of solc,
except it allows external invocation of solc.
This facilitates integration with more complex solc invocations, such
as invocations that require path remapping or --allow-paths tweaks.
Simple usage example:
solc --combined-json bin,abi,userdoc,devdoc,metadata *.sol | abigen --abi -
2018-06-05 10:22:02 +00:00
|
|
|
//
|
|
|
|
// Returns an error if the JSON is malformed or missing data, or if the JSON
|
|
|
|
// embedded within the JSON is malformed.
|
|
|
|
func ParseCombinedJSON(combinedJSON []byte, source string, languageVersion string, compilerVersion string, compilerOptions string) (map[string]*Contract, error) {
|
2016-06-14 22:36:31 +00:00
|
|
|
var output solcOutput
|
cmd/abigen: support for reading solc output from stdin (#16683)
Allow the --abi flag to be given - to indicate that it should read the
ABI information from standard input. It expects to read the solc output
with the --combined-json flag providing bin, abi, userdoc, devdoc, and
metadata, and works very similarly to the internal invocation of solc,
except it allows external invocation of solc.
This facilitates integration with more complex solc invocations, such
as invocations that require path remapping or --allow-paths tweaks.
Simple usage example:
solc --combined-json bin,abi,userdoc,devdoc,metadata *.sol | abigen --abi -
2018-06-05 10:22:02 +00:00
|
|
|
if err := json.Unmarshal(combinedJSON, &output); err != nil {
|
2021-01-05 13:48:22 +00:00
|
|
|
// Try to parse the output with the new solidity v.0.8.0 rules
|
|
|
|
return parseCombinedJSONV8(combinedJSON, source, languageVersion, compilerVersion, compilerOptions)
|
2015-04-22 22:11:11 +00:00
|
|
|
}
|
2016-06-14 22:36:31 +00:00
|
|
|
// Compilation succeeded, assemble and return the contracts.
|
|
|
|
contracts := make(map[string]*Contract)
|
|
|
|
for name, info := range output.Contracts {
|
|
|
|
// Parse the individual compilation results.
|
2015-08-25 16:42:05 +00:00
|
|
|
var abi interface{}
|
2016-06-14 22:36:31 +00:00
|
|
|
if err := json.Unmarshal([]byte(info.Abi), &abi); err != nil {
|
|
|
|
return nil, fmt.Errorf("solc: error reading abi definition (%v)", err)
|
2015-05-20 03:11:48 +00:00
|
|
|
}
|
2019-07-08 12:59:07 +00:00
|
|
|
var userdoc, devdoc interface{}
|
|
|
|
json.Unmarshal([]byte(info.Userdoc), &userdoc)
|
|
|
|
json.Unmarshal([]byte(info.Devdoc), &devdoc)
|
|
|
|
|
2016-06-14 22:36:31 +00:00
|
|
|
contracts[name] = &Contract{
|
2018-11-08 12:09:25 +00:00
|
|
|
Code: "0x" + info.Bin,
|
|
|
|
RuntimeCode: "0x" + info.BinRuntime,
|
2019-07-02 07:52:58 +00:00
|
|
|
Hashes: info.Hashes,
|
2015-05-20 03:11:48 +00:00
|
|
|
Info: ContractInfo{
|
|
|
|
Source: source,
|
|
|
|
Language: "Solidity",
|
cmd/abigen: support for reading solc output from stdin (#16683)
Allow the --abi flag to be given - to indicate that it should read the
ABI information from standard input. It expects to read the solc output
with the --combined-json flag providing bin, abi, userdoc, devdoc, and
metadata, and works very similarly to the internal invocation of solc,
except it allows external invocation of solc.
This facilitates integration with more complex solc invocations, such
as invocations that require path remapping or --allow-paths tweaks.
Simple usage example:
solc --combined-json bin,abi,userdoc,devdoc,metadata *.sol | abigen --abi -
2018-06-05 10:22:02 +00:00
|
|
|
LanguageVersion: languageVersion,
|
|
|
|
CompilerVersion: compilerVersion,
|
|
|
|
CompilerOptions: compilerOptions,
|
2018-11-08 12:09:25 +00:00
|
|
|
SrcMap: info.SrcMap,
|
|
|
|
SrcMapRuntime: info.SrcMapRuntime,
|
2015-08-25 16:42:05 +00:00
|
|
|
AbiDefinition: abi,
|
|
|
|
UserDoc: userdoc,
|
|
|
|
DeveloperDoc: devdoc,
|
2017-01-25 22:57:13 +00:00
|
|
|
Metadata: info.Metadata,
|
2015-05-20 03:11:48 +00:00
|
|
|
},
|
|
|
|
}
|
2015-04-22 22:11:11 +00:00
|
|
|
}
|
2015-08-25 16:42:05 +00:00
|
|
|
return contracts, nil
|
2015-04-22 22:11:11 +00:00
|
|
|
}
|
2021-01-05 13:48:22 +00:00
|
|
|
|
|
|
|
// parseCombinedJSONV8 parses the direct output of solc --combined-output
|
|
|
|
// and parses it using the rules from solidity v.0.8.0 and later.
|
|
|
|
func parseCombinedJSONV8(combinedJSON []byte, source string, languageVersion string, compilerVersion string, compilerOptions string) (map[string]*Contract, error) {
|
|
|
|
var output solcOutputV8
|
|
|
|
if err := json.Unmarshal(combinedJSON, &output); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Compilation succeeded, assemble and return the contracts.
|
|
|
|
contracts := make(map[string]*Contract)
|
|
|
|
for name, info := range output.Contracts {
|
|
|
|
contracts[name] = &Contract{
|
|
|
|
Code: "0x" + info.Bin,
|
|
|
|
RuntimeCode: "0x" + info.BinRuntime,
|
|
|
|
Hashes: info.Hashes,
|
|
|
|
Info: ContractInfo{
|
|
|
|
Source: source,
|
|
|
|
Language: "Solidity",
|
|
|
|
LanguageVersion: languageVersion,
|
|
|
|
CompilerVersion: compilerVersion,
|
|
|
|
CompilerOptions: compilerOptions,
|
|
|
|
SrcMap: info.SrcMap,
|
|
|
|
SrcMapRuntime: info.SrcMapRuntime,
|
|
|
|
AbiDefinition: info.Abi,
|
|
|
|
UserDoc: info.Userdoc,
|
|
|
|
DeveloperDoc: info.Devdoc,
|
|
|
|
Metadata: info.Metadata,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return contracts, nil
|
|
|
|
}
|