github.com/core-coin/go-core/v2@v2.1.9/common/compiler/ylem.go (about)

     1  // Copyright 2015 by the Authors
     2  // This file is part of the go-core library.
     3  //
     4  // The go-core 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-core 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-core library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  // Package compiler wraps the Ylem executable (ylem).
    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  // Ylem contains information about the ylem compiler.
    31  type Ylem struct {
    32  	Path, Version, FullVersion string
    33  	Major, Minor, Patch        int
    34  }
    35  
    36  // --combined-output format
    37  type ylemOutput 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  // ylem v.0.8 changes the way ABI, Devdoc and Userdoc are serialized
    48  type ylemOutputV8 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 *Ylem) 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  // YlemVersion runs ylem and parses its version output.
    74  func YlemVersion(ylem string) (*Ylem, error) {
    75  	if ylem == "" {
    76  		ylem = "ylem"
    77  	}
    78  	var out bytes.Buffer
    79  	cmd := exec.Command(ylem, "--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 ylem version %q", out.String())
    88  	}
    89  	s := &Ylem{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  // CompileYlemString builds and returns all the contracts contained within a source string.
   103  func CompileYlemString(ylem, source string) (map[string]*Contract, error) {
   104  	if len(source) == 0 {
   105  		return nil, errors.New("ylem: empty source string")
   106  	}
   107  	s, err := YlemVersion(ylem)
   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  // CompileYlem compiles all given Ylem source files.
   118  func CompileYlem(ylem string, sourcefiles ...string) (map[string]*Contract, error) {
   119  	if len(sourcefiles) == 0 {
   120  		return nil, errors.New("ylem: no source files")
   121  	}
   122  	source, err := slurpFiles(sourcefiles)
   123  	if err != nil {
   124  		return nil, err
   125  	}
   126  	s, err := YlemVersion(ylem)
   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 *Ylem) 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("ylem: %v\n%s", err, stderr.Bytes())
   141  	}
   142  
   143  	return ParseCombinedJSON(stdout.Bytes(), source, s.Version, s.Version, strings.Join(s.makeArgs(), " "))
   144  }
   145  
   146  // ParseCombinedJSON takes the direct output of a ylem --combined-output run and
   147  // parses it into a map of string contract name to Contract structs. The
   148  // provided source, language and compiler version, and compiler options are all
   149  // passed through into the Contract structs.
   150  //
   151  // The ylem output is expected to contain ABI, source mapping, user docs, and dev docs.
   152  //
   153  // Returns an error if the JSON is malformed or missing data, or if the JSON
   154  // embedded within the JSON is malformed.
   155  func ParseCombinedJSON(combinedJSON []byte, source string, languageVersion string, compilerVersion string, compilerOptions string) (map[string]*Contract, error) {
   156  	var output ylemOutput
   157  	if err := json.Unmarshal(combinedJSON, &output); err != nil {
   158  		// Try to parse the output with the new ylem v.0.8.0 rules
   159  		return parseCombinedJSONV8(combinedJSON, source, languageVersion, compilerVersion, compilerOptions)
   160  	}
   161  	// Compilation succeeded, assemble and return the contracts.
   162  	contracts := make(map[string]*Contract)
   163  	for name, info := range output.Contracts {
   164  		// Parse the individual compilation results.
   165  		var abi interface{}
   166  		if err := json.Unmarshal([]byte(info.Abi), &abi); err != nil {
   167  			return nil, fmt.Errorf("ylem: error reading abi definition (%v)", err)
   168  
   169  		}
   170  		var userdoc, devdoc interface{}
   171  		json.Unmarshal([]byte(info.Userdoc), &userdoc)
   172  		json.Unmarshal([]byte(info.Devdoc), &devdoc)
   173  
   174  		contracts[name] = &Contract{
   175  			Code:        "0x" + info.Bin,
   176  			RuntimeCode: "0x" + info.BinRuntime,
   177  			Hashes:      info.Hashes,
   178  			Info: ContractInfo{
   179  				Source:          source,
   180  				Language:        "Ylem",
   181  				LanguageVersion: languageVersion,
   182  				CompilerVersion: compilerVersion,
   183  				CompilerOptions: compilerOptions,
   184  				SrcMap:          info.SrcMap,
   185  				SrcMapRuntime:   info.SrcMapRuntime,
   186  				AbiDefinition:   abi,
   187  				UserDoc:         userdoc,
   188  				DeveloperDoc:    devdoc,
   189  				Metadata:        info.Metadata,
   190  			},
   191  		}
   192  	}
   193  	return contracts, nil
   194  }
   195  
   196  // parseCombinedJSONV8 parses the direct output of ylem --combined-output
   197  // and parses it using the rules from ylem v.0.8.0 and later.
   198  func parseCombinedJSONV8(combinedJSON []byte, source string, languageVersion string, compilerVersion string, compilerOptions string) (map[string]*Contract, error) {
   199  	var output ylemOutputV8
   200  	if err := json.Unmarshal(combinedJSON, &output); err != nil {
   201  		return nil, err
   202  	}
   203  	// Compilation succeeded, assemble and return the contracts.
   204  	contracts := make(map[string]*Contract)
   205  	for name, info := range output.Contracts {
   206  		contracts[name] = &Contract{
   207  			Code:        "0x" + info.Bin,
   208  			RuntimeCode: "0x" + info.BinRuntime,
   209  			Hashes:      info.Hashes,
   210  			Info: ContractInfo{
   211  				Source:          source,
   212  				Language:        "Solidity",
   213  				LanguageVersion: languageVersion,
   214  				CompilerVersion: compilerVersion,
   215  				CompilerOptions: compilerOptions,
   216  				SrcMap:          info.SrcMap,
   217  				SrcMapRuntime:   info.SrcMapRuntime,
   218  				AbiDefinition:   info.Abi,
   219  				UserDoc:         info.Userdoc,
   220  				DeveloperDoc:    info.Devdoc,
   221  				Metadata:        info.Metadata,
   222  			},
   223  		}
   224  	}
   225  	return contracts, nil
   226  }