-
Notifications
You must be signed in to change notification settings - Fork 0
/
cfdjs_wasm_jsonapi.js
172 lines (166 loc) · 5.14 KB
/
cfdjs_wasm_jsonapi.js
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
const ccallCfd = async function(module, func, returnType, argTypes, args) {
const UTF8Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf8') : undefined;
const stringToUTF8Array = function(str, heap, outIdx, maxBytesToWrite) {
if (!(maxBytesToWrite > 0)) return 0;
const startIdx = outIdx;
const endIdx = outIdx + maxBytesToWrite - 1;
for (let i = 0; i < str.length; ++i) {
let u;
if (str.charCodeAt) {
u = str.charCodeAt(i);
if (u >= 55296 && u <= 57343) {
const u1 = str.charCodeAt(++i);
u = 65536 + ((u & 1023) << 10) | u1 & 1023;
}
} else {
u = str[i];
if (u >= 55296 && u <= 57343) {
const u1 = str[++i];
u = 65536 + ((u & 1023) << 10) | u1 & 1023;
}
}
if (u <= 127) {
if (outIdx >= endIdx) break;
heap[outIdx++] = u;
} else if (u <= 2047) {
if (outIdx + 1 >= endIdx) break;
heap[outIdx++] = 192 | u >> 6;
heap[outIdx++] = 128 | u & 63;
} else if (u <= 65535) {
if (outIdx + 2 >= endIdx) break;
heap[outIdx++] = 224 | u >> 12;
heap[outIdx++] = 128 | u >> 6 & 63;
heap[outIdx++] = 128 | u & 63;
} else {
if (outIdx + 3 >= endIdx) break;
heap[outIdx++] = 240 | u >> 18;
heap[outIdx++] = 128 | u >> 12 & 63;
heap[outIdx++] = 128 | u >> 6 & 63;
heap[outIdx++] = 128 | u & 63;
}
}
heap[outIdx] = 0;
return outIdx - startIdx;
};
const stringToUTF8 = function(str, outPtr, maxBytesToWrite) {
return stringToUTF8Array(str, module['HEAPU8'], outPtr, maxBytesToWrite);
};
const UTF8ArrayToString = function(heap, idx, maxBytesToRead) {
const endIdx = idx + maxBytesToRead;
let endPtr = idx;
let str = '';
while (heap[endPtr] && !(endPtr >= endIdx)) ++endPtr;
if (endPtr - idx > 16 && heap.subarray && UTF8Decoder) {
return UTF8Decoder.decode(heap.subarray(idx, endPtr));
} else {
while (idx < endPtr) {
let u0 = heap[idx++];
if (!(u0 & 128)) {
str += String.fromCharCode(u0);
continue;
}
const u1 = heap[idx++] & 63;
if ((u0 & 224) == 192) {
str += String.fromCharCode((u0 & 31) << 6 | u1);
continue;
}
const u2 = heap[idx++] & 63;
if ((u0 & 240) == 224) {
u0 = (u0 & 15) << 12 | u1 << 6 | u2;
} else {
u0 = (u0 & 7) << 18 | u1 << 12 | u2 << 6 | heap[idx++] & 63;
}
if (u0 < 65536) {
str += String.fromCharCode(u0);
} else {
const ch = u0 - 65536;
str += String.fromCharCode(55296 | ch >> 10, 56320 | ch & 1023);
}
}
}
return str;
};
const UTF8ToString = function(ptr, maxBytesToRead) {
return ptr ? UTF8ArrayToString(module['HEAPU8'], ptr, maxBytesToRead) : '';
};
const writeArrayToMemory = function(array, buffer) {
module['HEAPU8'].set(array, buffer);
};
const toC = {
'string': function(str) {
let ret = 0;
if (str !== null && str !== undefined && str !== 0) {
const len = (str.length << 2) + 1;
ret = module['stackAlloc'](len);
stringToUTF8(str, ret, len);
}
return ret;
},
'array': function(arr) {
const ret = module['stackAlloc'](arr.length);
writeArrayToMemory(arr, ret);
return ret;
},
};
const convertReturnValue = function(ret) {
if (returnType === 'string') {
const result = UTF8ToString(ret);
module['_cfdjsFreeString'](ret);
return result;
}
if (returnType === 'boolean') return Boolean(ret);
return ret;
};
// const func = getCFunc(ident);
const cArgs = [];
let stack = 0;
if (args) {
for (let i = 0; i < args.length; i++) {
const converter = toC[argTypes[i]];
if (converter) {
if (stack === 0) stack = module['stackSave']();
cArgs[i] = converter(args[i]);
} else {
cArgs[i] = args[i];
}
}
}
// eslint-disable-next-line prefer-spread
let ret = func.apply(null, cArgs);
ret = convertReturnValue(ret);
if (stack !== 0) module['stackRestore'](stack);
return ret;
};
const callJsonApi = async function(wasmModule, reqName, arg) {
let retObj;
try {
// stringify all arguments
let argStr = '';
if (arg) {
argStr = JSON.stringify(arg, (key, value) =>
typeof value === 'bigint' ? value.toString() : value);
}
const retJson = await ccallCfd(wasmModule, wasmModule['_cfdjsJsonApi'],
'string', ['string', 'string'], [reqName, argStr]);
retObj = JSON.parse(retJson);
} catch (err) {
console.log(err);
throw new Error('ERROR: Invalid function call:' +
` func=[${reqName}], args=[${args}]`);
}
if (retObj.hasOwnProperty('error')) {
throw new Error(JSON.stringify(retObj.error));
}
return retObj;
};
const PLATFORM_IS_NODE = typeof process === 'object' &&
typeof process.versions === 'object' &&
typeof process.versions.node === 'string';
if (PLATFORM_IS_NODE) {
if (typeof module !== 'undefined') {
module['exports'] = {
callJsonApi: callJsonApi,
ccallCfd: ccallCfd,
};
}
}