-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathwat.go
44 lines (34 loc) · 996 Bytes
/
wat.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package wasmer
// #include <wasmer.h>
import "C"
import (
"unsafe"
)
// Wat2Wasm parses a string as either WAT code or a binary Wasm module.
//
// See https://webassembly.github.io/spec/core/text/index.html.
//
// Note: This is not part of the standard Wasm C API. It is Wasmer specific.
//
// wat := "(module)"
// wasm, _ := Wat2Wasm(wat)
// engine := wasmer.NewEngine()
// store := wasmer.NewStore(engine)
// module, _ := wasmer.NewModule(store, wasmBytes)
func Wat2Wasm(wat string) ([]byte, error) {
var watBytes C.wasm_byte_vec_t
var watLength = len(wat)
C.wasm_byte_vec_new(&watBytes, C.size_t(watLength), C.CString(wat))
defer C.wasm_byte_vec_delete(&watBytes)
var wasm C.wasm_byte_vec_t
err := maybeNewErrorFromWasmer(func() bool {
C.wat2wasm(&watBytes, &wasm)
return wasm.data == nil
})
if err != nil {
return nil, err
}
defer C.wasm_byte_vec_delete(&wasm)
wasmBytes := C.GoBytes(unsafe.Pointer(wasm.data), C.int(wasm.size))
return wasmBytes, nil
}