-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwasi.ts
58 lines (53 loc) · 1.17 KB
/
wasi.ts
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
import {
MemoryFileSystem,
useArgs,
useEnviron,
useProc,
useRandom,
WASI,
} from 'uwasi'
import fs from 'node:fs/promises'
import { useMemoryFS } from 'uwasi'
import path from 'node:path'
import { glob } from 'tinyglobby'
export const setupSolar = async (
args: string[] = [],
) => {
const fileSystem = new MemoryFileSystem({
'/': '',
})
const filePaths = await glob('./**/*.sol')
for (const filePath of filePaths) {
fileSystem.addFile(filePath, await fs.readFile(filePath))
}
let stdout = ''
let stderr = ''
const wasi = new WASI({
args: ['-j1', ...args],
features: [
useEnviron,
useArgs,
useRandom(),
useProc,
useMemoryFS({
withFileSystem: fileSystem,
withStdio: {
stderr(lines) {
stderr += lines
},
stdout: (lines) => {
stdout += lines
},
},
}),
],
})
const bytes = await fs.readFile(
path.join(import.meta.dirname!, './solar.wasm'),
)
const { instance } = await WebAssembly.instantiate(bytes, {
wasi_snapshot_preview1: wasi.wasiImport,
})
wasi.start(instance)
return { stderr, stdout }
}