helpers.go 2.4 KB

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