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
|
|
|
|
2022-05-23 12:29:23 +00:00
|
|
|
// Package compiler wraps the ABI compilation outputs.
|
2015-04-22 22:11:11 +00:00
|
|
|
package compiler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
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
|
|
|
// 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.
|
2022-08-01 11:47:21 +00:00
|
|
|
var abi, userdoc, devdoc 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
|
|
|
}
|
2022-08-01 11:47:21 +00:00
|
|
|
if err := json.Unmarshal([]byte(info.Userdoc), &userdoc); err != nil {
|
|
|
|
return nil, fmt.Errorf("solc: error reading userdoc definition (%v)", err)
|
|
|
|
}
|
|
|
|
if err := json.Unmarshal([]byte(info.Devdoc), &devdoc); err != nil {
|
|
|
|
return nil, fmt.Errorf("solc: error reading devdoc definition (%v)", err)
|
|
|
|
}
|
2019-07-08 12:59:07 +00:00
|
|
|
|
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
|
|
|
|
}
|