forked from emscripten-core/emscripten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidbstore_sync_worker.c
104 lines (88 loc) · 2.43 KB
/
idbstore_sync_worker.c
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
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <stdlib.h>
#include <emscripten.h>
#define DB "THE_DB"
void test() {
void *buffer;
int num, error, exists;
int sum = 0;
printf("storing %s\n", SECRET);
emscripten_idb_store(DB, "the_secret", SECRET, strlen(SECRET)+1, &error);
assert(!error);
sum++;
printf("checking\n");
emscripten_idb_exists(DB, "the_secret", &exists, &error);
assert(!error);
assert(exists);
sum++;
printf("loading\n");
emscripten_idb_load(DB, "the_secret", &buffer, &num, &error);
assert(!error);
char *ptr = buffer;
printf("loaded %s\n", ptr);
assert(num == strlen(SECRET)+1);
assert(strcmp(ptr, SECRET) == 0);
free(buffer);
sum++;
printf("deleting the_secret\n");
emscripten_idb_delete(DB, "the_secret", &error);
assert(!error);
sum++;
printf("loading, should fail as we deleted\n");
emscripten_idb_load(DB, "the_secret", &buffer, &num, &error);
assert(error); // expected error!
sum++;
printf("last checking\n");
emscripten_idb_exists(DB, "the_secret", &exists, &error);
assert(!error);
assert(!exists);
sum++;
// worker-specific code
printf("save blobs\n");
const int CHUNK = /*50*/1*1024*1024;
buffer = malloc(CHUNK);
char *cbuffer = (char*)buffer;
cbuffer[0] = 1;
emscripten_idb_store_blob(DB, "chunk1", buffer, CHUNK, &error);
cbuffer[0] = 2;
emscripten_idb_store_blob(DB, "chunk2", buffer, CHUNK, &error);
assert(!error);
printf("blobs stored\n");
cbuffer[0] = 0;
int blob1, blob2;
printf("load first\n");
emscripten_idb_load_blob(DB, "chunk1", &blob1, &error);
printf("loaded first as %d\n", blob1);
assert(!error);
printf("load second\n");
emscripten_idb_load_blob(DB, "chunk2", &blob2, &error);
printf("loaded second as %d\n", blob2);
assert(!error);
printf("blobs loaded\n");
emscripten_idb_read_from_blob(blob1, 0, CHUNK, buffer);
printf("read %d\n", cbuffer[0]);
assert(cbuffer[0] == 1);
printf("moving on\n");
emscripten_idb_read_from_blob(blob2, 0, CHUNK, buffer);
printf("read %d\n", cbuffer[0]);
assert(cbuffer[0] == 2);
//EM_ASM({ alert('freeze') });
printf("freeing blobs\n");
emscripten_idb_free_blob(blob1);
emscripten_idb_free_blob(blob2);
// finish up
int result = sum;
REPORT_RESULT();
}
void never() {
EM_ASM({ alert('this should never be reached! runtime must not be shut down!') });
assert(0);
while (1) {}
}
int main() {
atexit(never);
test();
return 0;
}