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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
|
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2008 litl, LLC
// SPDX-FileCopyrightText: 2018-2020 Canonical, Ltd
#ifndef GJS_JSAPI_UTIL_H_
#define GJS_JSAPI_UTIL_H_
#include <config.h>
#include <stdint.h>
#include <stdlib.h> // for free
#include <sys/types.h> // for ssize_t
#include <limits>
#include <string> // for string, u16string
#include <type_traits> // for enable_if_t, add_pointer_t, add_const_t
#include <utility> // IWYU pragma: keep
#include <vector>
#include <girepository.h>
#include <glib-object.h>
#include <glib.h>
#include <js/BigInt.h>
#include <js/GCAPI.h>
#include <js/GCPolicyAPI.h> // for IgnoreGCPolicy
#include <js/Id.h>
#include <js/TypeDecls.h>
#include <js/Utility.h> // for UniqueChars
#include <jspubtd.h> // for JSProtoKey
#include "gjs/macros.h"
#include "util/log.h"
#if GJS_VERBOSE_ENABLE_MARSHAL
# include "gi/arg-types-inl.h" // for static_type_name
#endif
class JSErrorReport;
namespace JS {
class CallArgs;
struct Dummy {};
using GTypeNotUint64 =
std::conditional_t<!std::is_same_v<GType, uint64_t>, GType, Dummy>;
// The GC sweep method should ignore FundamentalTable and GTypeTable's key types
// Forward declarations
template <>
struct GCPolicy<void*> : public IgnoreGCPolicy<void*> {};
// We need GCPolicy<GType> for GTypeTable. SpiderMonkey already defines
// GCPolicy<uint64_t> which is equal to GType on some systems; for others we
// need to define it. (macOS's uint64_t is unsigned long long, which is a
// different type from unsigned long, even if they are the same width)
template <>
struct GCPolicy<GTypeNotUint64> : public IgnoreGCPolicy<GTypeNotUint64> {};
} // namespace JS
struct GjsAutoTakeOwnership {};
template <typename F = void>
using GjsAutoPointerRefFunction = F* (*)(F*);
template <typename F = void>
using GjsAutoPointerFreeFunction = void (*)(F*);
template <typename T, typename F = void,
GjsAutoPointerFreeFunction<F> free_func = free,
GjsAutoPointerRefFunction<F> ref_func = nullptr>
struct GjsAutoPointer {
using Tp =
std::conditional_t<std::is_array_v<T>, std::remove_extent_t<T>, T>;
using Ptr = std::add_pointer_t<Tp>;
using ConstPtr = std::add_pointer_t<std::add_const_t<Tp>>;
private:
template <typename FunctionType, FunctionType function>
static constexpr bool has_function() {
using NullType = std::integral_constant<FunctionType, nullptr>;
using ActualType = std::integral_constant<FunctionType, function>;
return !std::is_same_v<ActualType, NullType>;
}
public:
static constexpr bool has_free_function() {
return has_function<GjsAutoPointerFreeFunction<F>, free_func>();
}
static constexpr bool has_ref_function() {
return has_function<GjsAutoPointerRefFunction<F>, ref_func>();
}
constexpr GjsAutoPointer(Ptr ptr = nullptr) // NOLINT(runtime/explicit)
: m_ptr(ptr) {}
template <typename U, typename = std::enable_if_t<std::is_same_v<U, Tp> &&
std::is_array_v<T>>>
explicit constexpr GjsAutoPointer(U ptr[]) : m_ptr(ptr) {}
constexpr GjsAutoPointer(Ptr ptr, const GjsAutoTakeOwnership&)
: GjsAutoPointer(ptr) {
m_ptr = copy();
}
constexpr GjsAutoPointer(ConstPtr ptr, const GjsAutoTakeOwnership& o)
: GjsAutoPointer(const_cast<Ptr>(ptr), o) {}
constexpr GjsAutoPointer(GjsAutoPointer&& other) : GjsAutoPointer() {
this->swap(other);
}
constexpr GjsAutoPointer(GjsAutoPointer const& other) : GjsAutoPointer() {
*this = other;
}
constexpr GjsAutoPointer& operator=(Ptr ptr) {
reset(ptr);
return *this;
}
constexpr GjsAutoPointer& operator=(GjsAutoPointer&& other) {
this->swap(other);
return *this;
}
constexpr GjsAutoPointer& operator=(GjsAutoPointer const& other) {
GjsAutoPointer dup(other.get(), GjsAutoTakeOwnership());
this->swap(dup);
return *this;
}
template <typename U = T>
constexpr std::enable_if_t<!std::is_array_v<U>, Ptr> operator->() {
return m_ptr;
}
template <typename U = T>
constexpr std::enable_if_t<!std::is_array_v<U>, ConstPtr> operator->()
const {
return m_ptr;
}
constexpr Tp operator*() const { return *m_ptr; }
constexpr operator Ptr() { return m_ptr; }
constexpr operator Ptr() const { return m_ptr; }
constexpr operator ConstPtr() const { return m_ptr; }
constexpr operator bool() const { return m_ptr != nullptr; }
constexpr Ptr get() const { return m_ptr; }
constexpr Ptr* out() { return &m_ptr; }
constexpr ConstPtr* out() const { return &m_ptr; }
constexpr Ptr release() {
auto* ptr = m_ptr;
m_ptr = nullptr;
return ptr;
}
constexpr void reset(Ptr ptr = nullptr) {
Ptr old_ptr = m_ptr;
m_ptr = ptr;
if constexpr (has_free_function()) {
if (old_ptr)
free_func(reinterpret_cast<F*>(old_ptr));
}
}
constexpr void swap(GjsAutoPointer& other) {
std::swap(this->m_ptr, other.m_ptr);
}
/* constexpr */ ~GjsAutoPointer() { // one day, with -std=c++2a
reset();
}
template <typename U = T>
[[nodiscard]] constexpr std::enable_if_t<!std::is_array_v<U>, Ptr> copy()
const {
static_assert(has_ref_function(), "No ref function provided");
return m_ptr ? reinterpret_cast<Ptr>(
ref_func(reinterpret_cast<F*>(m_ptr)))
: nullptr;
}
template <typename C>
[[nodiscard]] constexpr C* as() const {
return const_cast<C*>(reinterpret_cast<const C*>(m_ptr));
}
private:
Ptr m_ptr;
};
template <typename T, GjsAutoPointerFreeFunction<T> free_func = free,
GjsAutoPointerRefFunction<T> ref_func = nullptr>
struct GjsAutoPointerSimple : GjsAutoPointer<T, T, free_func, ref_func> {
using GjsAutoPointer<T, T, free_func, ref_func>::GjsAutoPointer;
};
template <typename T, typename F = void,
GjsAutoPointerFreeFunction<F> free_func,
GjsAutoPointerRefFunction<F> ref_func>
constexpr bool operator==(
GjsAutoPointer<T, F, free_func, ref_func> const& lhs,
GjsAutoPointer<T, F, free_func, ref_func> const& rhs) {
return lhs.get() == rhs.get();
}
template <typename T>
using GjsAutoFree = GjsAutoPointer<T>;
struct GjsAutoCharFuncs {
static char* dup(char* str) { return g_strdup(str); }
static void free(char* str) { g_free(str); }
};
using GjsAutoChar =
GjsAutoPointer<char, char, GjsAutoCharFuncs::free, GjsAutoCharFuncs::dup>;
using GjsAutoChar16 = GjsAutoPointer<uint16_t, void, &g_free>;
struct GjsAutoErrorFuncs {
static GError* error_copy(GError* error) { return g_error_copy(error); }
};
using GjsAutoError =
GjsAutoPointer<GError, GError, g_error_free, GjsAutoErrorFuncs::error_copy>;
using GjsAutoStrv = GjsAutoPointer<char*, char*, g_strfreev, g_strdupv>;
template <typename T>
using GjsAutoUnref = GjsAutoPointer<T, void, g_object_unref, g_object_ref>;
using GjsAutoGVariant =
GjsAutoPointer<GVariant, GVariant, g_variant_unref, g_variant_ref>;
template <typename V, typename T>
constexpr void GjsAutoPointerDeleter(T v) {
if constexpr (std::is_array_v<V>)
delete[] reinterpret_cast<std::remove_extent_t<V>*>(v);
else
delete v;
}
template <typename T>
using GjsAutoCppPointer = GjsAutoPointer<T, T, GjsAutoPointerDeleter<T>>;
template <typename T = GTypeClass>
struct GjsAutoTypeClass : GjsAutoPointer<T, void, &g_type_class_unref> {
GjsAutoTypeClass(gpointer ptr = nullptr) // NOLINT(runtime/explicit)
: GjsAutoPointer<T, void, g_type_class_unref>(static_cast<T*>(ptr)) {}
explicit GjsAutoTypeClass(GType gtype)
: GjsAutoTypeClass(g_type_class_ref(gtype)) {}
};
// Use this class for owning a GIBaseInfo* of indeterminate type. Any type (e.g.
// GIFunctionInfo*, GIObjectInfo*) will fit. If you know that the info is of a
// certain type (e.g. you are storing the return value of a function that
// returns GIFunctionInfo*,) use one of the derived classes below.
struct GjsAutoBaseInfo : GjsAutoPointer<GIBaseInfo, GIBaseInfo,
g_base_info_unref, g_base_info_ref> {
using GjsAutoPointer::GjsAutoPointer;
[[nodiscard]] const char* name() const {
return g_base_info_get_name(*this);
}
[[nodiscard]] const char* ns() const {
return g_base_info_get_namespace(*this);
}
[[nodiscard]] GIInfoType type() const {
return g_base_info_get_type(*this);
}
};
// Use GjsAutoInfo, preferably its typedefs below, when you know for sure that
// the info is either of a certain type or null.
template <GIInfoType TAG>
struct GjsAutoInfo : GjsAutoBaseInfo {
using GjsAutoBaseInfo::GjsAutoBaseInfo;
// Normally one-argument constructors should be explicit, but we are trying
// to conform to the interface of std::unique_ptr here.
GjsAutoInfo(GIBaseInfo* ptr = nullptr) // NOLINT(runtime/explicit)
: GjsAutoBaseInfo(ptr) {
validate();
}
void reset(GIBaseInfo* other = nullptr) {
GjsAutoBaseInfo::reset(other);
validate();
}
// You should not need this method, because you already know the answer.
GIInfoType type() = delete;
private:
void validate() const {
if (GIBaseInfo* base = *this)
g_assert(g_base_info_get_type(base) == TAG);
}
};
using GjsAutoEnumInfo = GjsAutoInfo<GI_INFO_TYPE_ENUM>;
using GjsAutoFieldInfo = GjsAutoInfo<GI_INFO_TYPE_FIELD>;
using GjsAutoFunctionInfo = GjsAutoInfo<GI_INFO_TYPE_FUNCTION>;
using GjsAutoInterfaceInfo = GjsAutoInfo<GI_INFO_TYPE_INTERFACE>;
using GjsAutoObjectInfo = GjsAutoInfo<GI_INFO_TYPE_OBJECT>;
using GjsAutoPropertyInfo = GjsAutoInfo<GI_INFO_TYPE_PROPERTY>;
using GjsAutoStructInfo = GjsAutoInfo<GI_INFO_TYPE_STRUCT>;
using GjsAutoTypeInfo = GjsAutoInfo<GI_INFO_TYPE_TYPE>;
using GjsAutoValueInfo = GjsAutoInfo<GI_INFO_TYPE_VALUE>;
using GjsAutoVFuncInfo = GjsAutoInfo<GI_INFO_TYPE_VFUNC>;
// GICallableInfo can be one of several tags, so we have to have a separate
// class, and use GI_IS_CALLABLE_INFO() to validate.
struct GjsAutoCallableInfo : GjsAutoBaseInfo {
using GjsAutoBaseInfo::GjsAutoBaseInfo;
GjsAutoCallableInfo(GIBaseInfo* ptr = nullptr) // NOLINT(runtime/explicit)
: GjsAutoBaseInfo(ptr) {
validate();
}
void reset(GIBaseInfo* other = nullptr) {
GjsAutoBaseInfo::reset(other);
validate();
}
private:
void validate() const {
if (*this)
g_assert(GI_IS_CALLABLE_INFO(get()));
}
};
template <typename T>
struct GjsSmartPointer : GjsAutoPointer<T> {
using GjsAutoPointer<T>::GjsAutoPointer;
};
template <>
struct GjsSmartPointer<char*> : GjsAutoStrv {
using GjsAutoStrv::GjsAutoPointer;
};
template <>
struct GjsSmartPointer<GStrv> : GjsAutoStrv {
using GjsAutoStrv::GjsAutoPointer;
};
template <>
struct GjsSmartPointer<GObject> : GjsAutoUnref<GObject> {
using GjsAutoUnref<GObject>::GjsAutoUnref;
};
template <>
struct GjsSmartPointer<GIBaseInfo> : GjsAutoBaseInfo {
using GjsAutoBaseInfo::GjsAutoBaseInfo;
};
template <>
struct GjsSmartPointer<GError> : GjsAutoError {
using GjsAutoError::GjsAutoError;
};
template <>
struct GjsSmartPointer<GVariant> : GjsAutoGVariant {
using GjsAutoGVariant::GjsAutoPointer;
};
template <>
struct GjsSmartPointer<GList> : GjsAutoPointer<GList, GList, g_list_free> {
using GjsAutoPointer::GjsAutoPointer;
};
template <>
struct GjsSmartPointer<GSList> : GjsAutoPointer<GSList, GSList, g_slist_free> {
using GjsAutoPointer::GjsAutoPointer;
};
/* For use of GjsAutoInfo<TAG> in GC hash maps */
namespace JS {
template <GIInfoType TAG>
struct GCPolicy<GjsAutoInfo<TAG>> : public IgnoreGCPolicy<GjsAutoInfo<TAG>> {};
} // namespace JS
using GjsAutoParam = GjsAutoPointer<GParamSpec, GParamSpec, g_param_spec_unref,
g_param_spec_ref>;
/* For use of GjsAutoParam in GC hash maps */
namespace JS {
template <>
struct GCPolicy<GjsAutoParam> : public IgnoreGCPolicy<GjsAutoParam> {};
} // namespace JS
/* Flags that should be set on properties exported from native code modules.
* Basically set these on API, but do NOT set them on data.
*
* PERMANENT: forbid deleting the prop
* ENUMERATE: allows copyProperties to work among other reasons to have it
*/
#define GJS_MODULE_PROP_FLAGS (JSPROP_PERMANENT | JSPROP_ENUMERATE)
/*
* GJS_GET_THIS:
* @cx: JSContext pointer passed into JSNative function
* @argc: Number of arguments passed into JSNative function
* @vp: Argument value array passed into JSNative function
* @args: Name for JS::CallArgs variable defined by this code snippet
* @to: Name for JS::RootedObject variable referring to function's this
*
* A convenience macro for getting the 'this' object a function was called with.
* Use in any JSNative function.
*/
#define GJS_GET_THIS(cx, argc, vp, args, to) \
JS::CallArgs args = JS::CallArgsFromVp(argc, vp); \
JS::RootedObject to(cx); \
if (!args.computeThis(cx, &to)) \
return false;
[[nodiscard]] JSObject* gjs_get_import_global(JSContext* cx);
[[nodiscard]] JSObject* gjs_get_internal_global(JSContext* cx);
void gjs_throw_constructor_error (JSContext *context);
void gjs_throw_abstract_constructor_error(JSContext* cx,
const JS::CallArgs& args);
GJS_JSAPI_RETURN_CONVENTION
JSObject* gjs_build_string_array(JSContext* cx,
const std::vector<std::string>& strings);
GJS_JSAPI_RETURN_CONVENTION
JSObject* gjs_define_string_array(JSContext* cx, JS::HandleObject obj,
const char* array_name,
const std::vector<std::string>& strings,
unsigned attrs);
[[gnu::format(printf, 2, 3)]] void gjs_throw(JSContext* cx, const char* format,
...);
[[gnu::format(printf, 4, 5)]] void gjs_throw_custom(JSContext* cx,
JSProtoKey error_kind,
const char* error_name,
const char* format, ...);
void gjs_throw_literal (JSContext *context,
const char *string);
bool gjs_throw_gerror_message(JSContext* cx, GError* error);
bool gjs_log_exception (JSContext *context);
bool gjs_log_exception_uncaught(JSContext* cx);
void gjs_log_exception_full(JSContext* cx, JS::HandleValue exc,
JS::HandleString message, GLogLevelFlags level);
void gjs_warning_reporter(JSContext*, JSErrorReport* report);
GJS_JSAPI_RETURN_CONVENTION
JS::UniqueChars gjs_string_to_utf8(JSContext* cx, const JS::Value string_val);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_string_to_utf8_n(JSContext* cx, JS::HandleString str, JS::UniqueChars* output,
size_t* output_len);
GJS_JSAPI_RETURN_CONVENTION
JSString* gjs_lossy_string_from_utf8(JSContext* cx, const char* utf8_string);
GJS_JSAPI_RETURN_CONVENTION
JSString* gjs_lossy_string_from_utf8_n(JSContext* cx, const char* utf8_string,
size_t len);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_string_from_utf8(JSContext *context,
const char *utf8_string,
JS::MutableHandleValue value_p);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_string_from_utf8_n(JSContext *cx,
const char *utf8_chars,
size_t len,
JS::MutableHandleValue out);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_string_to_filename(JSContext *cx,
const JS::Value string_val,
GjsAutoChar *filename_string);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_string_from_filename(JSContext *context,
const char *filename_string,
ssize_t n_bytes,
JS::MutableHandleValue value_p);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_string_get_char16_data(JSContext *cx,
JS::HandleString str,
char16_t **data_p,
size_t *len_p);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_string_to_ucs4(JSContext *cx,
JS::HandleString value,
gunichar **ucs4_string_p,
size_t *len_p);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_string_from_ucs4(JSContext *cx,
const gunichar *ucs4_string,
ssize_t n_chars,
JS::MutableHandleValue value_p);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_get_string_id(JSContext* cx, jsid id, JS::UniqueChars* name_p);
GJS_JSAPI_RETURN_CONVENTION
jsid gjs_intern_string_to_id (JSContext *context,
const char *string);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_unichar_from_string (JSContext *context,
JS::Value string,
gunichar *result);
/* Functions intended for more "internal" use */
void gjs_maybe_gc (JSContext *context);
void gjs_gc_if_needed(JSContext *cx);
GJS_JSAPI_RETURN_CONVENTION
GjsAutoChar gjs_format_stack_trace(JSContext *cx,
JS::HandleObject saved_frame);
/* Overloaded functions, must be outside G_DECLS. More types are intended to be
* added as the opportunity arises. */
GJS_JSAPI_RETURN_CONVENTION
bool gjs_object_require_property(JSContext *context,
JS::HandleObject obj,
const char *obj_description,
JS::HandleId property_name,
JS::MutableHandleValue value);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_object_require_property(JSContext *cx,
JS::HandleObject obj,
const char *description,
JS::HandleId property_name,
bool *value);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_object_require_property(JSContext *cx,
JS::HandleObject obj,
const char *description,
JS::HandleId property_name,
int32_t *value);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_object_require_property(JSContext* cx, JS::HandleObject obj,
const char* description,
JS::HandleId property_name,
JS::UniqueChars* value);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_object_require_property(JSContext *cx,
JS::HandleObject obj,
const char *description,
JS::HandleId property_name,
JS::MutableHandleObject value);
GJS_JSAPI_RETURN_CONVENTION
bool gjs_object_require_converted_property(JSContext *context,
JS::HandleObject obj,
const char *description,
JS::HandleId property_name,
uint32_t *value);
[[nodiscard]] std::string gjs_debug_bigint(JS::BigInt* bi);
[[nodiscard]] std::string gjs_debug_string(JSString* str);
[[nodiscard]] std::string gjs_debug_symbol(JS::Symbol* const sym);
[[nodiscard]] std::string gjs_debug_object(JSObject* obj);
[[nodiscard]] std::string gjs_debug_value(JS::Value v);
[[nodiscard]] std::string gjs_debug_id(jsid id);
[[nodiscard]] GjsAutoChar gjs_hyphen_to_underscore(const char* str);
[[nodiscard]] GjsAutoChar gjs_hyphen_to_camel(const char* str);
#if defined(G_OS_WIN32) && (defined(_MSC_VER) && (_MSC_VER >= 1900))
[[nodiscard]] std::wstring gjs_win32_vc140_utf8_to_utf16(const char* str);
#endif
// Custom GC reasons; SpiderMonkey includes a bunch of "Firefox reasons" which
// don't apply when embedding the JS engine, so we repurpose them for our own
// reasons.
// clang-format off
#define FOREACH_GC_REASON(macro) \
macro(LINUX_RSS_TRIGGER, 0) \
macro(GJS_CONTEXT_DISPOSE, 1) \
macro(BIG_HAMMER, 2) \
macro(GJS_API_CALL, 3)
// clang-format on
namespace Gjs {
struct GCReason {
#define DEFINE_GC_REASON(name, ix) \
static constexpr JS::GCReason name = JS::GCReason( \
static_cast<int>(JS::GCReason::FIRST_FIREFOX_REASON) + ix);
FOREACH_GC_REASON(DEFINE_GC_REASON);
#undef DEFINE_GC_REASON
#define COUNT_GC_REASON(name, ix) +1
static constexpr size_t N_REASONS = 0 FOREACH_GC_REASON(COUNT_GC_REASON);
#undef COUNT_GC_REASON
};
template <typename T>
[[nodiscard]] bool bigint_is_out_of_range(JS::BigInt* bi, T* clamped) {
static_assert(sizeof(T) == 8, "64-bit types only");
g_assert(bi && "bigint cannot be null");
g_assert(clamped && "forgot out parameter");
gjs_debug_marshal(GJS_DEBUG_GFUNCTION,
"Checking if BigInt %s is out of range for type %s",
gjs_debug_bigint(bi).c_str(), Gjs::static_type_name<T>());
if (JS::BigIntFits(bi, clamped)) {
gjs_debug_marshal(
GJS_DEBUG_GFUNCTION, "BigInt %s is in the range of type %s",
std::to_string(*clamped).c_str(), Gjs::static_type_name<T>());
return false;
}
if (JS::BigIntIsNegative(bi)) {
*clamped = std::numeric_limits<T>::min();
} else {
*clamped = std::numeric_limits<T>::max();
}
gjs_debug_marshal(GJS_DEBUG_GFUNCTION,
"BigInt %s is not in the range of type %s, clamped to %s",
gjs_debug_bigint(bi).c_str(), Gjs::static_type_name<T>(),
std::to_string(*clamped).c_str());
return true;
}
} // namespace Gjs
[[nodiscard]] const char* gjs_explain_gc_reason(JS::GCReason reason);
#endif // GJS_JSAPI_UTIL_H_
|