@@ -110,17 +110,15 @@ Local<Name> Uint32ToName(Local<Context> context, uint32_t index) {
110
110
} // anonymous namespace
111
111
112
112
BaseObjectPtr<ContextifyContext> ContextifyContext::New (
113
- Environment* env,
114
- Local<Object> sandbox_obj,
115
- const ContextOptions& options) {
113
+ Environment* env, Local<Object> sandbox_obj, ContextOptions* options) {
116
114
HandleScope scope (env->isolate ());
117
115
Local<ObjectTemplate> object_template = env->contextify_global_template ();
118
116
DCHECK (!object_template.IsEmpty ());
119
117
const SnapshotData* snapshot_data = env->isolate_data ()->snapshot_data ();
120
118
121
119
MicrotaskQueue* queue =
122
- options. microtask_queue_wrap
123
- ? options. microtask_queue_wrap -> microtask_queue () .get ()
120
+ options-> own_microtask_queue
121
+ ? options-> own_microtask_queue .get ()
124
122
: env->isolate ()->GetCurrentContext ()->GetMicrotaskQueue ();
125
123
126
124
Local<Context> v8_context;
@@ -132,19 +130,16 @@ BaseObjectPtr<ContextifyContext> ContextifyContext::New(
132
130
return New (v8_context, env, sandbox_obj, options);
133
131
}
134
132
135
- void ContextifyContext::MemoryInfo (MemoryTracker* tracker) const {
136
- if (microtask_queue_wrap_) {
137
- tracker->TrackField (" microtask_queue_wrap" ,
138
- microtask_queue_wrap_->object ());
139
- }
140
- }
133
+ void ContextifyContext::MemoryInfo (MemoryTracker* tracker) const {}
141
134
142
135
ContextifyContext::ContextifyContext (Environment* env,
143
136
Local<Object> wrapper,
144
137
Local<Context> v8_context,
145
- const ContextOptions& options)
138
+ ContextOptions* options)
146
139
: BaseObject(env, wrapper),
147
- microtask_queue_wrap_ (options.microtask_queue_wrap) {
140
+ microtask_queue_ (options->own_microtask_queue
141
+ ? options->own_microtask_queue.release()
142
+ : nullptr) {
148
143
context_.Reset (env->isolate (), v8_context);
149
144
// This should only be done after the initial initializations of the context
150
145
// global object is finished.
@@ -240,7 +235,7 @@ BaseObjectPtr<ContextifyContext> ContextifyContext::New(
240
235
Local<Context> v8_context,
241
236
Environment* env,
242
237
Local<Object> sandbox_obj,
243
- const ContextOptions& options) {
238
+ ContextOptions* options) {
244
239
HandleScope scope (env->isolate ());
245
240
// This only initializes part of the context. The primordials are
246
241
// only initialized when needed because even deserializing them slows
@@ -268,14 +263,14 @@ BaseObjectPtr<ContextifyContext> ContextifyContext::New(
268
263
v8_context->AllowCodeGenerationFromStrings (false );
269
264
v8_context->SetEmbedderData (
270
265
ContextEmbedderIndex::kAllowCodeGenerationFromStrings ,
271
- options. allow_code_gen_strings );
266
+ options-> allow_code_gen_strings );
272
267
v8_context->SetEmbedderData (ContextEmbedderIndex::kAllowWasmCodeGeneration ,
273
- options. allow_code_gen_wasm );
268
+ options-> allow_code_gen_wasm );
274
269
275
- Utf8Value name_val (env->isolate (), options. name );
270
+ Utf8Value name_val (env->isolate (), options-> name );
276
271
ContextInfo info (*name_val);
277
- if (!options. origin .IsEmpty ()) {
278
- Utf8Value origin_val (env->isolate (), options. origin );
272
+ if (!options-> origin .IsEmpty ()) {
273
+ Utf8Value origin_val (env->isolate (), options-> origin );
279
274
info.origin = *origin_val;
280
275
}
281
276
@@ -374,16 +369,14 @@ void ContextifyContext::MakeContext(const FunctionCallbackInfo<Value>& args) {
374
369
CHECK (args[4 ]->IsBoolean ());
375
370
options.allow_code_gen_wasm = args[4 ].As <Boolean >();
376
371
377
- if (args[5 ]->IsObject () &&
378
- !env->microtask_queue_ctor_template ().IsEmpty () &&
379
- env->microtask_queue_ctor_template ()->HasInstance (args[5 ])) {
380
- options.microtask_queue_wrap .reset (
381
- Unwrap<MicrotaskQueueWrap>(args[5 ].As <Object>()));
372
+ if (args[5 ]->IsBoolean () && args[5 ]->BooleanValue (env->isolate ())) {
373
+ options.own_microtask_queue =
374
+ MicrotaskQueue::New (env->isolate (), MicrotasksPolicy::kExplicit );
382
375
}
383
376
384
377
TryCatchScope try_catch (env);
385
378
BaseObjectPtr<ContextifyContext> context_ptr =
386
- ContextifyContext::New (env, sandbox, options);
379
+ ContextifyContext::New (env, sandbox, & options);
387
380
388
381
if (try_catch.HasCaught ()) {
389
382
if (!try_catch.HasTerminated ())
@@ -987,7 +980,7 @@ void ContextifyScript::RunInContext(const FunctionCallbackInfo<Value>& args) {
987
980
CHECK (args[0 ]->IsObject () || args[0 ]->IsNull ());
988
981
989
982
Local<Context> context;
990
- std::shared_ptr< MicrotaskQueue> microtask_queue;
983
+ v8:: MicrotaskQueue* microtask_queue = nullptr ;
991
984
992
985
if (args[0 ]->IsObject ()) {
993
986
Local<Object> sandbox = args[0 ].As <Object>();
@@ -1036,7 +1029,7 @@ bool ContextifyScript::EvalMachine(Local<Context> context,
1036
1029
const bool display_errors,
1037
1030
const bool break_on_sigint,
1038
1031
const bool break_on_first_line,
1039
- std::shared_ptr< MicrotaskQueue> mtask_queue,
1032
+ MicrotaskQueue* mtask_queue,
1040
1033
const FunctionCallbackInfo<Value>& args) {
1041
1034
Context::Scope context_scope (context);
1042
1035
@@ -1068,7 +1061,7 @@ bool ContextifyScript::EvalMachine(Local<Context> context,
1068
1061
bool received_signal = false ;
1069
1062
auto run = [&]() {
1070
1063
MaybeLocal<Value> result = script->Run (context);
1071
- if (!result.IsEmpty () && mtask_queue)
1064
+ if (!result.IsEmpty () && mtask_queue != nullptr )
1072
1065
mtask_queue->PerformCheckpoint (env->isolate ());
1073
1066
return result;
1074
1067
};
@@ -1122,7 +1115,6 @@ bool ContextifyScript::EvalMachine(Local<Context> context,
1122
1115
return true ;
1123
1116
}
1124
1117
1125
-
1126
1118
ContextifyScript::ContextifyScript (Environment* env, Local<Object> object)
1127
1119
: BaseObject(env, object),
1128
1120
id_ (env->get_next_script_id ()) {
@@ -1376,46 +1368,12 @@ static void MeasureMemory(const FunctionCallbackInfo<Value>& args) {
1376
1368
args.GetReturnValue ().Set (promise);
1377
1369
}
1378
1370
1379
- MicrotaskQueueWrap::MicrotaskQueueWrap (Environment* env, Local<Object> obj)
1380
- : BaseObject(env, obj),
1381
- microtask_queue_(
1382
- MicrotaskQueue::New (env->isolate (), MicrotasksPolicy::kExplicit)) {
1383
- MakeWeak ();
1384
- }
1385
-
1386
- const std::shared_ptr<MicrotaskQueue>&
1387
- MicrotaskQueueWrap::microtask_queue () const {
1388
- return microtask_queue_;
1389
- }
1390
-
1391
- void MicrotaskQueueWrap::New (const FunctionCallbackInfo<Value>& args) {
1392
- CHECK (args.IsConstructCall ());
1393
- new MicrotaskQueueWrap (Environment::GetCurrent (args), args.This ());
1394
- }
1395
-
1396
- void MicrotaskQueueWrap::CreatePerIsolateProperties (
1397
- IsolateData* isolate_data, Local<ObjectTemplate> target) {
1398
- Isolate* isolate = isolate_data->isolate ();
1399
- HandleScope scope (isolate);
1400
- Local<FunctionTemplate> tmpl = NewFunctionTemplate (isolate, New);
1401
- tmpl->InstanceTemplate ()->SetInternalFieldCount (
1402
- ContextifyScript::kInternalFieldCount );
1403
- isolate_data->set_microtask_queue_ctor_template (tmpl);
1404
- SetConstructorFunction (isolate, target, " MicrotaskQueue" , tmpl);
1405
- }
1406
-
1407
- void MicrotaskQueueWrap::RegisterExternalReferences (
1408
- ExternalReferenceRegistry* registry) {
1409
- registry->Register (New);
1410
- }
1411
-
1412
1371
void CreatePerIsolateProperties (IsolateData* isolate_data,
1413
1372
Local<ObjectTemplate> target) {
1414
1373
Isolate* isolate = isolate_data->isolate ();
1415
1374
1416
1375
ContextifyContext::CreatePerIsolateProperties (isolate_data, target);
1417
1376
ContextifyScript::CreatePerIsolateProperties (isolate_data, target);
1418
- MicrotaskQueueWrap::CreatePerIsolateProperties (isolate_data, target);
1419
1377
1420
1378
SetMethod (isolate, target, " startSigintWatchdog" , StartSigintWatchdog);
1421
1379
SetMethod (isolate, target, " stopSigintWatchdog" , StopSigintWatchdog);
@@ -1470,7 +1428,6 @@ static void CreatePerContextProperties(Local<Object> target,
1470
1428
void RegisterExternalReferences (ExternalReferenceRegistry* registry) {
1471
1429
ContextifyContext::RegisterExternalReferences (registry);
1472
1430
ContextifyScript::RegisterExternalReferences (registry);
1473
- MicrotaskQueueWrap::RegisterExternalReferences (registry);
1474
1431
1475
1432
registry->Register (StartSigintWatchdog);
1476
1433
registry->Register (StopSigintWatchdog);
0 commit comments