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
|
#include <stdio.h>
#include <emscripten.h>
void success() {
int result = 1;
REPORT_RESULT();
}
int main() {
EM_ASM(
FS.mkdir('/working');
FS.mount(IDBFS, {}, '/working');
);
#if FIRST
// store local files to backing IDB. Note that we use the JS FS API for everything here, but we
// could use normal libc fwrite etc. to do the writing. All we need the JS FS API for is to
// mount the filesystem and do syncfs.
EM_ASM_ARGS({
FS.writeFile('/working/waka.txt', 'az');
FS.writeFile('/working/moar.txt', $0);
FS.syncfs(function (err) {
assert(!err);
ccall('success', 'v');
});
}, SECRET);
#else
// load files from backing IDB
EM_ASM_ARGS({
FS.syncfs(true, function (err) {
assert(!err);
var contents = FS.readFile('/working/waka.txt', { encoding: 'utf8' });
assert(contents === 'az', 'bad contents ' + contents);
// note we convert to a number here (using +), since we used writeFile, which writes a
// JS string.
var secret = +FS.readFile('/working/moar.txt', { encoding: 'utf8' });
assert(secret === $0, 'bad secret ' + [secret, $0, typeof secret, typeof $0]);
ccall('success', 'v', '', []);
});
}, SECRET);
#endif
emscripten_exit_with_live_runtime();
return 0;
}
|