aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-02 19:55:43 +0800
committerobscuren <geffobscura@gmail.com>2014-05-02 19:55:43 +0800
commite798f221dd9d6aaffaa709d559f01a41447e4896 (patch)
tree914796876afccf0b7cafd9788c9e84efa66eece7 /ethutil
parent70c8656640a861d93ac40181c6c0bdd8faef856b (diff)
downloadgo-tangerine-e798f221dd9d6aaffaa709d559f01a41447e4896.tar
go-tangerine-e798f221dd9d6aaffaa709d559f01a41447e4896.tar.gz
go-tangerine-e798f221dd9d6aaffaa709d559f01a41447e4896.tar.bz2
go-tangerine-e798f221dd9d6aaffaa709d559f01a41447e4896.tar.lz
go-tangerine-e798f221dd9d6aaffaa709d559f01a41447e4896.tar.xz
go-tangerine-e798f221dd9d6aaffaa709d559f01a41447e4896.tar.zst
go-tangerine-e798f221dd9d6aaffaa709d559f01a41447e4896.zip
Added public interface
Diffstat (limited to 'ethutil')
-rw-r--r--ethutil/script.go41
1 files changed, 41 insertions, 0 deletions
diff --git a/ethutil/script.go b/ethutil/script.go
new file mode 100644
index 000000000..620658025
--- /dev/null
+++ b/ethutil/script.go
@@ -0,0 +1,41 @@
+package ethutil
+
+import (
+ "fmt"
+ "github.com/obscuren/mutan"
+ "strings"
+)
+
+// General compile function
+func Compile(script string) ([]byte, error) {
+ byteCode, errors := mutan.Compile(strings.NewReader(script), false)
+ if len(errors) > 0 {
+ var errs string
+ for _, er := range errors {
+ if er != nil {
+ errs += er.Error()
+ }
+ }
+ return nil, fmt.Errorf("%v", errs)
+ }
+
+ return byteCode, nil
+}
+
+func CompileScript(script string) ([]byte, []byte, error) {
+ // Preprocess
+ mainInput, initInput := mutan.PreProcess(script)
+ // Compile main script
+ mainScript, err := Compile(mainInput)
+ if err != nil {
+ return nil, nil, err
+ }
+
+ // Compile init script
+ initScript, err := Compile(initInput)
+ if err != nil {
+ return nil, nil, err
+ }
+
+ return mainScript, initScript, nil
+}