quorum/ethutil/script_unix.go

50 lines
931 B
Go
Raw Normal View History

// +build !windows
2014-05-02 04:55:43 -07:00
package ethutil
import (
"fmt"
2014-08-23 15:16:32 -07:00
"strings"
2014-11-04 15:32:51 -08:00
"github.com/ethereum/serpent-go"
2014-05-02 04:55:43 -07:00
"github.com/obscuren/mutan"
2014-06-25 08:26:34 -07:00
"github.com/obscuren/mutan/backends"
2014-05-02 04:55:43 -07:00
)
// General compile function
func Compile(script string, silent bool) (ret []byte, err error) {
if len(script) > 2 {
line := strings.Split(script, "\n")[0]
2014-06-20 17:40:25 -07:00
2014-07-04 04:34:50 -07:00
if len(line) > 1 && line[0:2] == "#!" {
switch line {
2014-08-23 15:16:32 -07:00
case "#!serpent":
byteCode, err := serpent.Compile(script)
if err != nil {
return nil, err
}
2014-08-23 15:16:32 -07:00
return byteCode, nil
}
} else {
2014-06-20 17:40:25 -07:00
compiler := mutan.NewCompiler(backend.NewEthereumBackend())
compiler.Silent = silent
byteCode, errors := compiler.Compile(strings.NewReader(script))
if len(errors) > 0 {
var errs string
for _, er := range errors {
if er != nil {
errs += er.Error()
}
2014-06-20 17:40:25 -07:00
}
return nil, fmt.Errorf("%v", errs)
2014-05-02 04:55:43 -07:00
}
return byteCode, nil
}
2014-06-20 17:40:25 -07:00
}
return nil, nil
2014-05-02 04:55:43 -07:00
}