github.com/juliankolbe/go-ethereum@v1.9.992/common/compiler/solidity.go (about) 1 // Copyright 2015 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 // Package compiler wraps the Solidity and Vyper compiler executables (solc; vyper). 18 package compiler 19 20 import ( 21 "bytes" 22 "encoding/json" 23 "errors" 24 "fmt" 25 "os/exec" 26 "strconv" 27 "strings" 28 ) 29 30 // Solidity contains information about the solidity compiler. 31 type Solidity struct { 32 Path, Version, FullVersion string 33 Major, Minor, Patch int 34 } 35 36 // --combined-output format 37 type solcOutput struct { 38 Contracts map[string]struct { 39 BinRuntime string `json:"bin-runtime"` 40 SrcMapRuntime string `json:"srcmap-runtime"` 41 Bin, SrcMap, Abi, Devdoc, Userdoc, Metadata string 42 Hashes map[string]string 43 } 44 Version string 45 } 46 47 // solidity v.0.8 changes the way ABI, Devdoc and Userdoc are serialized 48 type solcOutputV8 struct { 49 Contracts map[string]struct { 50 BinRuntime string `json:"bin-runtime"` 51 SrcMapRuntime string `json:"srcmap-runtime"` 52 Bin, SrcMap, Metadata string 53 Abi interface{} 54 Devdoc interface{} 55 Userdoc interface{} 56 Hashes map[string]string 57 } 58 Version string 59 } 60 61 func (s *Solidity) makeArgs() []string { 62 p := []string{ 63 "--combined-json", "bin,bin-runtime,srcmap,srcmap-runtime,abi,userdoc,devdoc", 64 "--optimize", // code optimizer switched on 65 "--allow-paths", "., ./, ../", // default to support relative paths 66 } 67 if s.Major > 0 || s.Minor > 4 || s.Patch > 6 { 68 p[1] += ",metadata,hashes" 69 } 70 return p 71 } 72 73 // SolidityVersion runs solc and parses its version output. 74 func SolidityVersion(solc string) (*Solidity, error) { 75 if solc == "" { 76 solc = "solc" 77 } 78 var out bytes.Buffer 79 cmd := exec.Command(solc, "--version") 80 cmd.Stdout = &out 81 err := cmd.Run() 82 if err != nil { 83 return nil, err 84 } 85 matches := versionRegexp.FindStringSubmatch(out.String()) 86 if len(matches) != 4 { 87 return nil, fmt.Errorf("can't parse solc version %q", out.String()) 88 } 89 s := &Solidity{Path: cmd.Path, FullVersion: out.String(), Version: matches[0]} 90 if s.Major, err = strconv.Atoi(matches[1]); err != nil { 91 return nil, err 92 } 93 if s.Minor, err = strconv.Atoi(matches[2]); err != nil { 94 return nil, err 95 } 96 if s.Patch, err = strconv.Atoi(matches[3]); err != nil { 97 return nil, err 98 } 99 return s, nil 100 } 101 102 // CompileSolidityString builds and returns all the contracts contained within a source string. 103 func CompileSolidityString(solc, source string) (map[string]*Contract, error) { 104 if len(source) == 0 { 105 return nil, errors.New("solc: empty source string") 106 } 107 s, err := SolidityVersion(solc) 108 if err != nil { 109 return nil, err 110 } 111 args := append(s.makeArgs(), "--") 112 cmd := exec.Command(s.Path, append(args, "-")...) 113 cmd.Stdin = strings.NewReader(source) 114 return s.run(cmd, source) 115 } 116 117 // CompileSolidity compiles all given Solidity source files. 118 func CompileSolidity(solc string, sourcefiles ...string) (map[string]*Contract, error) { 119 if len(sourcefiles) == 0 { 120 return nil, errors.New("solc: no source files") 121 } 122 source, err := slurpFiles(sourcefiles) 123 if err != nil { 124 return nil, err 125 } 126 s, err := SolidityVersion(solc) 127 if err != nil { 128 return nil, err 129 } 130 args := append(s.makeArgs(), "--") 131 cmd := exec.Command(s.Path, append(args, sourcefiles...)...) 132 return s.run(cmd, source) 133 } 134 135 func (s *Solidity) run(cmd *exec.Cmd, source string) (map[string]*Contract, error) { 136 var stderr, stdout bytes.Buffer 137 cmd.Stderr = &stderr 138 cmd.Stdout = &stdout 139 if err := cmd.Run(); err != nil { 140 return nil, fmt.Errorf("solc: %v\n%s", err, stderr.Bytes()) 141 } 142 return ParseCombinedJSON(stdout.Bytes(), source, s.Version, s.Version, strings.Join(s.makeArgs(), " ")) 143 } 144 145 // ParseCombinedJSON takes the direct output of a solc --combined-output run and 146 // parses it into a map of string contract name to Contract structs. The 147 // provided source, language and compiler version, and compiler options are all 148 // passed through into the Contract structs. 149 // 150 // The solc output is expected to contain ABI, source mapping, user docs, and dev docs. 151 // 152 // Returns an error if the JSON is malformed or missing data, or if the JSON 153 // embedded within the JSON is malformed. 154 func ParseCombinedJSON(combinedJSON []byte, source string, languageVersion string, compilerVersion string, compilerOptions string) (map[string]*Contract, error) { 155 var output solcOutput 156 if err := json.Unmarshal(combinedJSON, &output); err != nil { 157 // Try to parse the output with the new solidity v.0.8.0 rules 158 return parseCombinedJSONV8(combinedJSON, source, languageVersion, compilerVersion, compilerOptions) 159 } 160 // Compilation succeeded, assemble and return the contracts. 161 contracts := make(map[string]*Contract) 162 for name, info := range output.Contracts { 163 // Parse the individual compilation results. 164 var abi interface{} 165 if err := json.Unmarshal([]byte(info.Abi), &abi); err != nil { 166 return nil, fmt.Errorf("solc: error reading abi definition (%v)", err) 167 } 168 var userdoc, devdoc interface{} 169 json.Unmarshal([]byte(info.Userdoc), &userdoc) 170 json.Unmarshal([]byte(info.Devdoc), &devdoc) 171 172 contracts[name] = &Contract{ 173 Code: "0x" + info.Bin, 174 RuntimeCode: "0x" + info.BinRuntime, 175 Hashes: info.Hashes, 176 Info: ContractInfo{ 177 Source: source, 178 Language: "Solidity", 179 LanguageVersion: languageVersion, 180 CompilerVersion: compilerVersion, 181 CompilerOptions: compilerOptions, 182 SrcMap: info.SrcMap, 183 SrcMapRuntime: info.SrcMapRuntime, 184 AbiDefinition: abi, 185 UserDoc: userdoc, 186 DeveloperDoc: devdoc, 187 Metadata: info.Metadata, 188 }, 189 } 190 } 191 return contracts, nil 192 } 193 194 // parseCombinedJSONV8 parses the direct output of solc --combined-output 195 // and parses it using the rules from solidity v.0.8.0 and later. 196 func parseCombinedJSONV8(combinedJSON []byte, source string, languageVersion string, compilerVersion string, compilerOptions string) (map[string]*Contract, error) { 197 var output solcOutputV8 198 if err := json.Unmarshal(combinedJSON, &output); err != nil { 199 return nil, err 200 } 201 // Compilation succeeded, assemble and return the contracts. 202 contracts := make(map[string]*Contract) 203 for name, info := range output.Contracts { 204 contracts[name] = &Contract{ 205 Code: "0x" + info.Bin, 206 RuntimeCode: "0x" + info.BinRuntime, 207 Hashes: info.Hashes, 208 Info: ContractInfo{ 209 Source: source, 210 Language: "Solidity", 211 LanguageVersion: languageVersion, 212 CompilerVersion: compilerVersion, 213 CompilerOptions: compilerOptions, 214 SrcMap: info.SrcMap, 215 SrcMapRuntime: info.SrcMapRuntime, 216 AbiDefinition: info.Abi, 217 UserDoc: info.Userdoc, 218 DeveloperDoc: info.Devdoc, 219 Metadata: info.Metadata, 220 }, 221 } 222 } 223 return contracts, nil 224 }