forked from emscripten-core/emscripten
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathval.h
More file actions
494 lines (401 loc) · 15.1 KB
/
val.h
File metadata and controls
494 lines (401 loc) · 15.1 KB
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
#pragma once
#include <stdint.h> // uintptr_t
#include <emscripten/wire.h>
#include <array>
#include <vector>
namespace emscripten {
class val;
namespace internal {
template<typename WrapperType>
val wrapped_extend(const std::string&, const val&);
// Implemented in JavaScript. Don't call these directly.
extern "C" {
void _emval_register_symbol(const char*);
enum {
_EMVAL_UNDEFINED = 1,
_EMVAL_NULL = 2,
_EMVAL_TRUE = 3,
_EMVAL_FALSE = 4
};
typedef struct _EM_VAL* EM_VAL;
typedef struct _EM_DESTRUCTORS* EM_DESTRUCTORS;
typedef struct _EM_METHOD_CALLER* EM_METHOD_CALLER;
typedef double EM_GENERIC_WIRE_TYPE;
typedef const void* EM_VAR_ARGS;
void _emval_incref(EM_VAL value);
void _emval_decref(EM_VAL value);
void _emval_run_destructors(EM_DESTRUCTORS handle);
EM_VAL _emval_new_array();
EM_VAL _emval_new_object();
EM_VAL _emval_new_cstring(const char*);
EM_VAL _emval_take_value(TYPEID type, EM_VAR_ARGS argv);
EM_VAL _emval_new(
EM_VAL value,
unsigned argCount,
const TYPEID argTypes[],
EM_VAR_ARGS argv);
EM_VAL _emval_get_global(const char* name);
EM_VAL _emval_get_module_property(const char* name);
EM_VAL _emval_get_property(EM_VAL object, EM_VAL key);
void _emval_set_property(EM_VAL object, EM_VAL key, EM_VAL value);
EM_GENERIC_WIRE_TYPE _emval_as(EM_VAL value, TYPEID returnType, EM_DESTRUCTORS* destructors);
bool _emval_equals(EM_VAL first, EM_VAL second);
bool _emval_strictly_equals(EM_VAL first, EM_VAL second);
EM_VAL _emval_call(
EM_VAL value,
unsigned argCount,
const TYPEID argTypes[],
EM_VAR_ARGS argv);
// DO NOT call this more than once per signature. It will
// leak generated function objects!
EM_METHOD_CALLER _emval_get_method_caller(
unsigned argCount, // including return value
const TYPEID argTypes[]);
EM_GENERIC_WIRE_TYPE _emval_call_method(
EM_METHOD_CALLER caller,
EM_VAL handle,
const char* methodName,
EM_DESTRUCTORS* destructors,
EM_VAR_ARGS argv);
void _emval_call_void_method(
EM_METHOD_CALLER caller,
EM_VAL handle,
const char* methodName,
EM_VAR_ARGS argv);
EM_VAL _emval_typeof(EM_VAL value);
}
template<const char* address>
struct symbol_registrar {
symbol_registrar() {
internal::_emval_register_symbol(address);
}
};
template<typename ReturnType, typename... Args>
struct Signature {
/*
typedef typename BindingType<ReturnType>::WireType (*MethodCaller)(
EM_VAL value,
const char* methodName,
EM_DESTRUCTORS* destructors,
typename BindingType<Args>::WireType...);
*/
static EM_METHOD_CALLER get_method_caller() {
static EM_METHOD_CALLER mc = init_method_caller();
return mc;
}
private:
static EM_METHOD_CALLER init_method_caller() {
WithPolicies<>::ArgTypeList<ReturnType, Args...> args;
return _emval_get_method_caller(args.getCount(), args.getTypes());
}
};
struct DestructorsRunner {
public:
explicit DestructorsRunner(EM_DESTRUCTORS d)
: destructors(d)
{}
~DestructorsRunner() {
_emval_run_destructors(destructors);
}
DestructorsRunner(const DestructorsRunner&) = delete;
void operator=(const DestructorsRunner&) = delete;
private:
EM_DESTRUCTORS destructors;
};
template<typename WireType>
struct GenericWireTypeConverter {
static WireType from(double wt) {
return static_cast<WireType>(wt);
}
};
template<typename Pointee>
struct GenericWireTypeConverter<Pointee*> {
static Pointee* from(double wt) {
return reinterpret_cast<Pointee*>(static_cast<uintptr_t>(wt));
}
};
template<typename T>
T fromGenericWireType(double g) {
typedef typename BindingType<T>::WireType WireType;
WireType wt = GenericWireTypeConverter<WireType>::from(g);
return BindingType<T>::fromWireType(wt);
}
template<typename... Args>
struct PackSize;
template<>
struct PackSize<> {
static constexpr size_t value = 0;
};
template<typename Arg, typename... Args>
struct PackSize<Arg, Args...> {
static constexpr size_t value = (sizeof(typename BindingType<Arg>::WireType) + 7) / 8 + PackSize<Args...>::value;
};
union GenericWireType {
union {
unsigned u;
float f;
const void* p;
} w[2];
double d;
};
static_assert(sizeof(GenericWireType) == 8, "GenericWireType must be 8 bytes");
static_assert(alignof(GenericWireType) == 8, "GenericWireType must be 8-byte-aligned");
inline void writeGenericWireType(GenericWireType*& cursor, float wt) {
cursor->w[0].f = wt;
++cursor;
}
inline void writeGenericWireType(GenericWireType*& cursor, double wt) {
cursor->d = wt;
++cursor;
}
template<typename T>
void writeGenericWireType(GenericWireType*& cursor, T* wt) {
cursor->w[0].p = wt;
++cursor;
}
template<typename ElementType>
inline void writeGenericWireType(GenericWireType*& cursor, const memory_view<ElementType>& wt) {
cursor->w[0].u = wt.size;
cursor->w[1].p = wt.data;
++cursor;
}
template<typename T>
void writeGenericWireType(GenericWireType*& cursor, T wt) {
cursor->w[0].u = static_cast<unsigned>(wt);
++cursor;
}
inline void writeGenericWireTypes(GenericWireType*&) {
}
template<typename First, typename... Rest>
EMSCRIPTEN_ALWAYS_INLINE void writeGenericWireTypes(GenericWireType*& cursor, First&& first, Rest&&... rest) {
writeGenericWireType(cursor, BindingType<First>::toWireType(std::forward<First>(first)));
writeGenericWireTypes(cursor, std::forward<Rest>(rest)...);
}
template<typename... Args>
struct WireTypePack {
WireTypePack(Args&&... args) {
GenericWireType* cursor = elements.data();
writeGenericWireTypes(cursor, std::forward<Args>(args)...);
}
operator EM_VAR_ARGS() const {
return elements.data();
}
private:
std::array<GenericWireType, PackSize<Args...>::value> elements;
};
template<typename ReturnType, typename... Args>
struct MethodCaller {
static ReturnType call(EM_VAL handle, const char* methodName, Args&&... args) {
auto caller = Signature<ReturnType, Args...>::get_method_caller();
WireTypePack<Args...> argv(std::forward<Args>(args)...);
EM_DESTRUCTORS destructors;
EM_GENERIC_WIRE_TYPE result = _emval_call_method(
caller,
handle,
methodName,
&destructors,
argv);
DestructorsRunner rd(destructors);
return fromGenericWireType<ReturnType>(result);
}
};
template<typename... Args>
struct MethodCaller<void, Args...> {
static void call(EM_VAL handle, const char* methodName, Args&&... args) {
auto caller = Signature<void, Args...>::get_method_caller();
WireTypePack<Args...> argv(std::forward<Args>(args)...);
_emval_call_void_method(
caller,
handle,
methodName,
argv);
}
};
}
#define EMSCRIPTEN_SYMBOL(name) \
static const char name##_symbol[] = #name; \
static const ::emscripten::internal::symbol_registrar<name##_symbol> name##_registrar
class val {
public:
// missing operators:
// * delete
// * in
// * instanceof
// * ! ~ - + ++ --
// * * / %
// * + -
// * << >> >>>
// * < <= > >=
// * == != === !==
// * & ^ | && || ?:
//
// exposing void, comma, and conditional is unnecessary
// same with: = += -= *= /= %= <<= >>= >>>= &= ^= |=
static val array() {
return val(internal::_emval_new_array());
}
static val object() {
return val(internal::_emval_new_object());
}
static val undefined() {
return val(internal::EM_VAL(internal::_EMVAL_UNDEFINED));
}
static val null() {
return val(internal::EM_VAL(internal::_EMVAL_NULL));
}
static val take_ownership(internal::EM_VAL e) {
return val(e);
}
static val global(const char* name = 0) {
return val(internal::_emval_get_global(name));
}
static val module_property(const char* name) {
return val(internal::_emval_get_module_property(name));
}
template<typename T>
explicit val(T&& value) {
using namespace internal;
typedef internal::BindingType<T> BT;
WireTypePack<T> argv(std::forward<T>(value));
handle = _emval_take_value(
internal::TypeID<T>::get(),
argv);
}
val() = delete;
explicit val(const char* v)
: handle(internal::_emval_new_cstring(v))
{}
val(val&& v)
: handle(v.handle)
{
v.handle = 0;
}
val(const val& v)
: handle(v.handle)
{
internal::_emval_incref(handle);
}
~val() {
internal::_emval_decref(handle);
}
val& operator=(val&& v) {
internal::_emval_decref(handle);
handle = v.handle;
v.handle = 0;
return *this;
}
val& operator=(const val& v) {
internal::_emval_incref(v.handle);
internal::_emval_decref(handle);
handle = v.handle;
return *this;
}
bool hasOwnProperty(const char* key) const {
return val::global("Object")["prototype"]["hasOwnProperty"].call<bool>("call", *this, val(key));
}
bool isNull() const {
return handle == internal::EM_VAL(internal::_EMVAL_NULL);
}
bool isUndefined() const {
return handle == internal::EM_VAL(internal::_EMVAL_UNDEFINED);
}
bool isTrue() const {
return handle == internal::EM_VAL(internal::_EMVAL_TRUE);
}
bool isFalse() const {
return handle == internal::EM_VAL(internal::_EMVAL_FALSE);
}
bool equals(const val& v) const {
return internal::_emval_equals(handle, v.handle);
}
bool strictlyEquals(const val& v) const {
return internal::_emval_strictly_equals(handle, v.handle);
}
template<typename... Args>
val new_(Args&&... args) const {
return internalCall(internal::_emval_new,std::forward<Args>(args)...);
}
template<typename T>
val operator[](const T& key) const {
return val(internal::_emval_get_property(handle, val(key).handle));
}
template<typename K>
void set(const K& key, const val& v) {
internal::_emval_set_property(handle, val(key).handle, v.handle);
}
template<typename K, typename V>
void set(const K& key, const V& value) {
internal::_emval_set_property(handle, val(key).handle, val(value).handle);
}
template<typename... Args>
val operator()(Args&&... args) {
return internalCall(internal::_emval_call, std::forward<Args>(args)...);
}
template<typename ReturnValue, typename... Args>
ReturnValue call(const char* name, Args&&... args) const {
using namespace internal;
return MethodCaller<ReturnValue, Args...>::call(handle, name, std::forward<Args>(args)...);
}
template<typename T>
T as() const {
using namespace internal;
typedef BindingType<T> BT;
EM_DESTRUCTORS destructors;
EM_GENERIC_WIRE_TYPE result = _emval_as(
handle,
TypeID<T>::get(),
&destructors);
DestructorsRunner dr(destructors);
return fromGenericWireType<T>(result);
}
val typeof() const {
return val(_emval_typeof(handle));
}
private:
// takes ownership, assumes handle already incref'd
explicit val(internal::EM_VAL handle)
: handle(handle)
{}
template<typename WrapperType>
friend val internal::wrapped_extend(const std::string& , const val& );
internal::EM_VAL __get_handle() const {
return handle;
}
template<typename Implementation, typename... Args>
val internalCall(Implementation impl, Args&&... args)const {
using namespace internal;
WithPolicies<>::ArgTypeList<Args...> argList;
WireTypePack<Args...> argv(std::forward<Args>(args)...);
return val(
impl(
handle,
argList.getCount(),
argList.getTypes(),
argv));
}
internal::EM_VAL handle;
friend struct internal::BindingType<val>;
};
namespace internal {
template<>
struct BindingType<val> {
typedef internal::EM_VAL WireType;
static WireType toWireType(const val& v) {
_emval_incref(v.handle);
return v.handle;
}
static val fromWireType(WireType v) {
return val::take_ownership(v);
}
};
}
template<typename T>
std::vector<T> vecFromJSArray(val v) {
auto l = v["length"].as<unsigned>();
std::vector<T> rv;
for(unsigned i = 0; i < l; ++i) {
rv.push_back(v[i].as<T>());
}
return rv;
};
}