github.com/daeglee/go-ethereum@v0.0.0-20190504220456-cad3e8d18e9b/common/compiler/helpers.go (about)

     1  // Copyright 2019 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  	"io/ioutil"
    23  	"regexp"
    24  )
    25  
    26  var versionRegexp = regexp.MustCompile(`([0-9]+)\.([0-9]+)\.([0-9]+)`)
    27  
    28  // Contract contains information about a compiled contract, alongside its code and runtime code.
    29  type Contract struct {
    30  	Code        string       `json:"code"`
    31  	RuntimeCode string       `json:"runtime-code"`
    32  	Info        ContractInfo `json:"info"`
    33  }
    34  
    35  // ContractInfo contains information about a compiled contract, including access
    36  // to the ABI definition, source mapping, user and developer docs, and metadata.
    37  //
    38  // Depending on the source, language version, compiler version, and compiler
    39  // options will provide information about how the contract was compiled.
    40  type ContractInfo struct {
    41  	Source          string      `json:"source"`
    42  	Language        string      `json:"language"`
    43  	LanguageVersion string      `json:"languageVersion"`
    44  	CompilerVersion string      `json:"compilerVersion"`
    45  	CompilerOptions string      `json:"compilerOptions"`
    46  	SrcMap          interface{} `json:"srcMap"`
    47  	SrcMapRuntime   string      `json:"srcMapRuntime"`
    48  	AbiDefinition   interface{} `json:"abiDefinition"`
    49  	UserDoc         interface{} `json:"userDoc"`
    50  	DeveloperDoc    interface{} `json:"developerDoc"`
    51  	Metadata        string      `json:"metadata"`
    52  }
    53  
    54  func slurpFiles(files []string) (string, error) {
    55  	var concat bytes.Buffer
    56  	for _, file := range files {
    57  		content, err := ioutil.ReadFile(file)
    58  		if err != nil {
    59  			return "", err
    60  		}
    61  		concat.Write(content)
    62  	}
    63  	return concat.String(), nil
    64  }