2014-10-24 02:04:10 +03:00
|
|
|
// +build !windows
|
|
|
|
|
2014-05-02 14:55:43 +03:00
|
|
|
package ethutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-08-24 01:16:32 +03:00
|
|
|
"strings"
|
|
|
|
|
2014-05-02 14:55:43 +03:00
|
|
|
"github.com/obscuren/mutan"
|
2014-06-25 18:26:34 +03:00
|
|
|
"github.com/obscuren/mutan/backends"
|
2014-08-24 01:16:32 +03:00
|
|
|
"github.com/obscuren/serpent-go"
|
2014-05-02 14:55:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// General compile function
|
2014-07-04 16:32:10 +03:00
|
|
|
func Compile(script string, silent bool) (ret []byte, err error) {
|
2014-07-04 14:05:07 +03:00
|
|
|
if len(script) > 2 {
|
|
|
|
line := strings.Split(script, "\n")[0]
|
2014-06-21 03:40:25 +03:00
|
|
|
|
2014-07-04 14:34:50 +03:00
|
|
|
if len(line) > 1 && line[0:2] == "#!" {
|
2014-07-04 14:05:07 +03:00
|
|
|
switch line {
|
2014-08-24 01:16:32 +03:00
|
|
|
case "#!serpent":
|
|
|
|
byteCode, err := serpent.Compile(script)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-07-04 14:05:07 +03:00
|
|
|
|
2014-08-24 01:16:32 +03:00
|
|
|
return byteCode, nil
|
2014-07-04 14:05:07 +03:00
|
|
|
}
|
|
|
|
} else {
|
2014-06-21 03:40:25 +03:00
|
|
|
|
2014-07-04 14:05:07 +03:00
|
|
|
compiler := mutan.NewCompiler(backend.NewEthereumBackend())
|
2014-07-04 16:32:10 +03:00
|
|
|
compiler.Silent = silent
|
2014-07-04 14:05:07 +03:00
|
|
|
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-21 03:40:25 +03:00
|
|
|
}
|
2014-07-04 14:05:07 +03:00
|
|
|
return nil, fmt.Errorf("%v", errs)
|
2014-05-02 14:55:43 +03:00
|
|
|
}
|
|
|
|
|
2014-07-04 14:05:07 +03:00
|
|
|
return byteCode, nil
|
|
|
|
}
|
2014-06-21 03:40:25 +03:00
|
|
|
}
|
2014-07-04 14:05:07 +03:00
|
|
|
|
|
|
|
return nil, nil
|
2014-05-02 14:55:43 +03:00
|
|
|
}
|