-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathexports.go
212 lines (177 loc) · 5.48 KB
/
exports.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
package wasmer
// #include <wasmer.h>
import "C"
import (
"fmt"
"runtime"
"unsafe"
)
// Exports is a special kind of map that allows easily unwrapping the
// types of instances.
type Exports struct {
_inner C.wasm_extern_vec_t
exports map[string]*Extern
instance *C.wasm_instance_t
}
func newExports(instance *C.wasm_instance_t, module *Module) *Exports {
self := &Exports{}
C.wasm_instance_exports(instance, &self._inner)
runtime.SetFinalizer(self, func(self *Exports) {
self.Close()
})
numberOfExports := int(self.inner().size)
exports := make(map[string]*Extern, numberOfExports)
firstExport := unsafe.Pointer(self.inner().data)
sizeOfExportPointer := unsafe.Sizeof(firstExport)
var currentExportPointer *C.wasm_extern_t
moduleExports := module.Exports()
for nth := 0; nth < numberOfExports; nth++ {
currentExportPointer = *(**C.wasm_extern_t)(unsafe.Pointer(uintptr(firstExport) + uintptr(nth)*sizeOfExportPointer))
export := newExtern(currentExportPointer, self)
exports[moduleExports[nth].Name()] = export
}
self.exports = exports
self.instance = instance
return self
}
func (self *Exports) inner() *C.wasm_extern_vec_t {
return &self._inner
}
// Get retrieves and returns an Extern by its name.
//
// Note: If the name does not refer to an existing export, Get will
// return an Error.
//
// instance, _ := NewInstance(module, NewImportObject())
// extern, error := instance.Exports.Get("an_export")
//
func (self *Exports) Get(name string) (*Extern, error) {
export, exists := self.exports[name]
if exists == false {
return nil, newErrorWith(fmt.Sprintf("Export `%s` does not exist", name))
}
return export, nil
}
// GetRawFunction retrieves and returns an exported Function by its name.
//
// Note: If the name does not refer to an existing export,
// GetRawFunction will return an Error.
//
// Note: If the export is not a function, GetRawFunction will return
// nil as its result.
//
// instance, _ := NewInstance(module, NewImportObject())
// exportedFunc, error := instance.Exports.GetRawFunction("an_exported_function")
//
// if error != nil && exportedFunc != nil {
// exportedFunc.Call()
// }
//
func (self *Exports) GetRawFunction(name string) (*Function, error) {
exports, err := self.Get(name)
if err != nil {
return nil, err
}
return exports.IntoFunction(), nil
}
// GetFunction retrieves a exported function by its name and returns
// it as a native Go function.
//
// The difference with GetRawFunction is that Function.Native has been
// called on the exported function.
//
// Note: If the name does not refer to an existing export, GetFunction
// will return an Error.
//
// Note: If the export is not a function, GetFunction will return nil
// as its result.
//
// instance, _ := NewInstance(module, NewImportObject())
// exportedFunc, error := instance.Exports.GetFunction("an_exported_function")
//
// if error != nil && exportedFunc != nil {
// exportedFunc()
// }
//
func (self *Exports) GetFunction(name string) (NativeFunction, error) {
function, err := self.GetRawFunction(name)
if err != nil {
return nil, err
}
return function.Native(), nil
}
// GetGlobal retrieves and returns a exported Global by its name.
//
// Note: If the name does not refer to an existing export, GetGlobal
// will return an Error.
//
// Note: If the export is not a global, GetGlobal will return nil as a
// result.
//
// instance, _ := NewInstance(module, NewImportObject())
// exportedGlobal, error := instance.Exports.GetGlobal("an_exported_global")
//
func (self *Exports) GetGlobal(name string) (*Global, error) {
exports, err := self.Get(name)
if err != nil {
return nil, err
}
return exports.IntoGlobal(), nil
}
// GetTable retrieves and returns a exported Table by its name.
//
// Note: If the name does not refer to an existing export, GetTable
// will return an Error.
//
// Note: If the export is not a table, GetTable will return nil as a
// result.
//
// instance, _ := NewInstance(module, NewImportObject())
// exportedTable, error := instance.Exports.GetTable("an_exported_table")
//
func (self *Exports) GetTable(name string) (*Table, error) {
exports, err := self.Get(name)
if err != nil {
return nil, err
}
return exports.IntoTable(), nil
}
// GetMemory retrieves and returns a exported Memory by its name.
//
// Note: If the name does not refer to an existing export, GetMemory
// will return an Error.
//
// Note: If the export is not a memory, GetMemory will return nil as a
// result.
//
// instance, _ := NewInstance(module, NewImportObject())
// exportedMemory, error := instance.Exports.GetMemory("an_exported_memory")
//
func (self *Exports) GetMemory(name string) (*Memory, error) {
exports, err := self.Get(name)
if err != nil {
return nil, err
}
return exports.IntoMemory(), nil
}
// GetWasiStartFunction is similar to GetFunction("_start"). It saves
// you the cost of knowing the name of the WASI start function.
func (self *Exports) GetWasiStartFunction() (NativeFunction, error) {
start := C.wasi_get_start_function(self.instance)
if start == nil {
return nil, newErrorWith("WASI start function was not found")
}
return newFunction(start, nil, nil).Native(), nil
}
// Force to close the Exports.
//
// A runtime finalizer is registered on the Exports, but it is
// possible to force the destruction of the Exports by calling Close
// manually.
func (self *Exports) Close() {
runtime.SetFinalizer(self, nil)
for extern := range self.exports {
delete(self.exports, extern)
}
C.wasm_extern_vec_delete(&self._inner)
}