-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypes.h
454 lines (405 loc) · 13.3 KB
/
types.h
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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#ifndef SRC_TYPES_H_
#define SRC_TYPES_H_
#include <assert.h>
#include <node_api.h>
#include <cstring>
#include <optional>
#include "src/template_util.h"
namespace ki {
template<typename T, typename Enable = void>
struct TypeBridge {};
template<typename T, typename Enable = void>
struct Type {};
template<>
struct Type<napi_value> {
static constexpr const char* name = "Value";
static inline napi_status ToNode(napi_env env,
napi_value value,
napi_value* result) {
*result = value;
return napi_ok;
}
static inline std::optional<napi_value> FromNode(napi_env env,
napi_value value) {
return value;
}
};
template<>
struct Type<std::nullptr_t> {
static constexpr const char* name = "Null";
static inline napi_status ToNode(napi_env env,
std::nullptr_t value,
napi_value* result) {
return napi_get_null(env, result);
}
};
template<>
struct Type<void*> {
static constexpr const char* name = "Buffer";
static inline napi_status ToNode(napi_env env,
void* value,
napi_value* result) {
void* data;
napi_status s = napi_create_buffer(env, sizeof(void*), &data, result);
if (s != napi_ok)
return s;
std::memcpy(data, &value, sizeof(void*));
return napi_ok;
}
};
template<>
struct Type<uint8_t> {
static constexpr const char* name = "Integer";
static inline napi_status ToNode(napi_env env,
uint8_t value,
napi_value* result) {
return napi_create_uint32(env, value, result);
}
static inline std::optional<uint8_t> FromNode(napi_env env,
napi_value value) {
uint32_t val;
if (napi_get_value_uint32(env, value, &val) != napi_ok)
return std::nullopt;
return static_cast<uint8_t>(val);
}
};
template<>
struct Type<uint16_t> {
static constexpr const char* name = "Integer";
static inline napi_status ToNode(napi_env env,
uint16_t value,
napi_value* result) {
return napi_create_uint32(env, value, result);
}
static inline std::optional<uint16_t> FromNode(napi_env env,
napi_value value) {
uint32_t val;
if (napi_get_value_uint32(env, value, &val) != napi_ok)
return std::nullopt;
return static_cast<uint16_t>(val);
}
};
template<>
struct Type<int8_t> {
static constexpr const char* name = "Integer";
static inline napi_status ToNode(napi_env env,
int8_t value,
napi_value* result) {
return napi_create_int32(env, value, result);
}
static inline std::optional<int8_t> FromNode(napi_env env, napi_value value) {
int32_t val;
if (napi_get_value_int32(env, value, &val) != napi_ok)
return std::nullopt;
return static_cast<int8_t>(val);
}
};
template<>
struct Type<int16_t> {
static constexpr const char* name = "Integer";
static inline napi_status ToNode(napi_env env,
int16_t value,
napi_value* result) {
return napi_create_int32(env, value, result);
}
static inline std::optional<int16_t> FromNode(napi_env env,
napi_value value) {
int32_t val;
if (napi_get_value_int32(env, value, &val) != napi_ok)
return std::nullopt;
return static_cast<int16_t>(val);
}
};
template<>
struct Type<int32_t> {
static constexpr const char* name = "Integer";
static inline napi_status ToNode(napi_env env,
int32_t value,
napi_value* result) {
return napi_create_int32(env, value, result);
}
static inline std::optional<int32_t> FromNode(napi_env env,
napi_value value) {
int32_t result;
if (napi_get_value_int32(env, value, &result) == napi_ok)
return result;
return std::nullopt;
}
};
template<>
struct Type<uint32_t> {
static constexpr const char* name = "Integer";
static inline napi_status ToNode(napi_env env,
uint32_t value,
napi_value* result) {
return napi_create_uint32(env, value, result);
}
static inline std::optional<uint32_t> FromNode(napi_env env,
napi_value value) {
uint32_t result;
if (napi_get_value_uint32(env, value, &result) == napi_ok)
return result;
return std::nullopt;
}
};
template<>
struct Type<int64_t> {
static constexpr const char* name = "Integer";
static inline napi_status ToNode(napi_env env,
int64_t value,
napi_value* result) {
return napi_create_int64(env, value, result);
}
static inline std::optional<int64_t> FromNode(napi_env env,
napi_value value) {
int64_t result;
if (napi_get_value_int64(env, value, &result) == napi_ok)
return result;
return std::nullopt;
}
};
#if defined(__APPLE__)
template<>
struct Type<size_t> {
static constexpr const char* name = "Integer";
static inline napi_status ToNode(napi_env env,
size_t value,
napi_value* result) {
return napi_create_int64(env, value, result);
}
static inline std::optional<size_t> FromNode(napi_env env,
napi_value value) {
int64_t result;
if (napi_get_value_int64(env, value, &result) == napi_ok)
return result;
return std::nullopt;
}
};
#endif
template<>
struct Type<float> {
static constexpr const char* name = "Number";
static inline napi_status ToNode(napi_env env,
float value,
napi_value* result) {
return napi_create_double(env, value, result);
}
static inline std::optional<float> FromNode(napi_env env,
napi_value value) {
double intermediate;
if (napi_get_value_double(env, value, &intermediate) == napi_ok)
return static_cast<float>(intermediate);
return std::nullopt;
}
};
template<>
struct Type<double> {
static constexpr const char* name = "Number";
static inline napi_status ToNode(napi_env env,
double value,
napi_value* result) {
return napi_create_double(env, value, result);
}
static inline std::optional<double> FromNode(napi_env env,
napi_value value) {
double result;
if (napi_get_value_double(env, value, &result) == napi_ok)
return result;
return std::nullopt;
}
};
template<>
struct Type<uint64_t> {
static constexpr const char* name = "Integer";
static inline napi_status ToNode(napi_env env,
uint64_t value,
napi_value* result) {
return Type<double>::ToNode(env, static_cast<double>(value), result);
}
static inline std::optional<uint64_t> FromNode(napi_env env,
napi_value value) {
auto result = Type<double>::FromNode(env, value);
if (!result)
return std::nullopt;
return static_cast<uint64_t>(*result);
}
};
template<>
struct Type<bool> {
static constexpr const char* name = "Boolean";
static inline napi_status ToNode(napi_env env,
bool value,
napi_value* result) {
return napi_get_boolean(env, value, result);
}
static inline std::optional<bool> FromNode(napi_env env,
napi_value value) {
bool result;
if (napi_get_value_bool(env, value, &result) == napi_ok)
return result;
return std::nullopt;
}
};
template<>
struct Type<const char*> {
static constexpr const char* name = "String";
static inline napi_status ToNode(napi_env env,
const char* value,
napi_value* result) {
return napi_create_string_utf8(env, value, NAPI_AUTO_LENGTH, result);
}
};
template<>
struct Type<char*> {
static constexpr const char* name = "String";
static inline napi_status ToNode(napi_env env,
const char* value,
napi_value* result) {
return napi_create_string_utf8(env, value, NAPI_AUTO_LENGTH, result);
}
};
template<size_t n>
struct Type<char[n]> {
static constexpr const char* name = "String";
static inline napi_status ToNode(napi_env env,
const char* value,
napi_value* result) {
return napi_create_string_utf8(env, value, n - 1, result);
}
};
template<>
struct Type<const char16_t*> {
static constexpr const char* name = "String";
static inline napi_status ToNode(napi_env env,
const char16_t* value,
napi_value* result) {
return napi_create_string_utf16(env, value, NAPI_AUTO_LENGTH, result);
}
};
template<>
struct Type<char16_t*> {
static constexpr const char* name = "String";
static inline napi_status ToNode(napi_env env,
const char16_t* value,
napi_value* result) {
return napi_create_string_utf16(env, value, NAPI_AUTO_LENGTH, result);
}
};
template<size_t n>
struct Type<char16_t[n]> {
static constexpr const char* name = "String";
static inline napi_status ToNode(napi_env env,
const char16_t* value,
napi_value* result) {
return napi_create_string_utf16(env, value, n - 1, result);
}
};
template<>
struct Type<napi_env> {
static constexpr const char* name = "Environment";
};
// Optimized helper for creating symbols.
struct SymbolHolder {
bool symbol_for;
const char* str;
};
inline SymbolHolder Symbol(const char* str) {
return {false, str};
}
inline SymbolHolder SymbolFor(const char* str) {
return {true, str};
}
template<>
struct Type<SymbolHolder> {
static constexpr const char* name = "Symbol";
static inline napi_status ToNode(napi_env env,
SymbolHolder value,
napi_value* result) {
napi_value symbol;
if (value.symbol_for) {
return node_api_symbol_for(env, value.str, NAPI_AUTO_LENGTH, result);
} else {
napi_status s = Type<const char*>::ToNode(env, value.str, &symbol);
if (s != napi_ok)
return s;
return napi_create_symbol(env, symbol, result);
}
}
};
// Some builtin types.
inline napi_value Global(napi_env env) {
napi_value result;
napi_status s = napi_get_global(env, &result);
assert(s == napi_ok);
return result;
}
inline napi_value Undefined(napi_env env) {
napi_value result;
napi_status s = napi_get_undefined(env, &result);
assert(s == napi_ok);
return result;
}
inline napi_value Null(napi_env env) {
napi_value result;
napi_status s = napi_get_null(env, &result);
assert(s == napi_ok);
return result;
}
// Object helpers.
inline napi_value CreateObject(napi_env env) {
napi_value value = nullptr;
napi_status s = napi_create_object(env, &value);
assert(s == napi_ok);
return value;
}
inline bool IsTypeHelper(napi_env env,
napi_value value,
napi_status (*func)(napi_env, napi_value, bool*)) {
bool result = false;
func(env, value, &result);
return result;
}
inline bool IsArray(napi_env env, napi_value value) {
return IsTypeHelper(env, value, napi_is_array);
}
inline bool IsArrayBuffer(napi_env env, napi_value value) {
return IsTypeHelper(env, value, napi_is_arraybuffer);
}
inline bool IsBuffer(napi_env env, napi_value value) {
return IsTypeHelper(env, value, napi_is_buffer);
}
inline bool IsDataView(napi_env env, napi_value value) {
return IsTypeHelper(env, value, napi_is_dataview);
}
inline bool IsTypedArray(napi_env env, napi_value value) {
return IsTypeHelper(env, value, napi_is_typedarray);
}
inline bool IsType(napi_env env, napi_value value, napi_valuetype target) {
napi_valuetype type;
napi_status s = napi_typeof(env, value, &type);
return s == napi_ok && type == target;
}
// Function helpers.
template<typename T>
inline napi_status ConvertToNode(napi_env env, T&& value,
napi_value* result) {
return Type<std::decay_t<T>>::ToNode(env, std::forward<T>(value), result);
}
template<typename In>
inline napi_value ToNodeValue(napi_env env, In&& value) {
napi_value result = nullptr;
napi_status s = ConvertToNode(env, std::forward<In>(value), &result);
// Return undefined on error.
if (s != napi_ok)
return Undefined(env);
return result;
}
// The short version of FromNode.
template<typename T>
inline std::optional<T> FromNodeTo(napi_env env, napi_value value) {
return Type<T>::FromNode(env, value);
}
} // namespace ki
#endif // SRC_TYPES_H_