GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: env-inl.h Lines: 661 673 98.2 %
Date: 2022-05-23 04:15:47 Branches: 114 146 78.1 %

Line Branch Exec Source
1
// Copyright Joyent, Inc. and other Node contributors.
2
//
3
// Permission is hereby granted, free of charge, to any person obtaining a
4
// copy of this software and associated documentation files (the
5
// "Software"), to deal in the Software without restriction, including
6
// without limitation the rights to use, copy, modify, merge, publish,
7
// distribute, sublicense, and/or sell copies of the Software, and to permit
8
// persons to whom the Software is furnished to do so, subject to the
9
// following conditions:
10
//
11
// The above copyright notice and this permission notice shall be included
12
// in all copies or substantial portions of the Software.
13
//
14
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20
// USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22
#ifndef SRC_ENV_INL_H_
23
#define SRC_ENV_INL_H_
24
25
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
26
27
#include "aliased_buffer.h"
28
#include "callback_queue-inl.h"
29
#include "env.h"
30
#include "node.h"
31
#include "node_context_data.h"
32
#include "node_internals.h"
33
#include "node_perf_common.h"
34
#include "util-inl.h"
35
#include "uv.h"
36
#include "v8-fast-api-calls.h"
37
#include "v8.h"
38
39
#include <cstddef>
40
#include <cstdint>
41
42
#include <utility>
43
44
namespace node {
45
46
107330
NoArrayBufferZeroFillScope::NoArrayBufferZeroFillScope(
47
107330
    IsolateData* isolate_data)
48
107330
    : node_allocator_(isolate_data->node_allocator()) {
49
107330
  if (node_allocator_ != nullptr) node_allocator_->zero_fill_field()[0] = 0;
50
107330
}
51
52
214660
NoArrayBufferZeroFillScope::~NoArrayBufferZeroFillScope() {
53
107330
  if (node_allocator_ != nullptr) node_allocator_->zero_fill_field()[0] = 1;
54
107330
}
55
56
inline v8::Isolate* IsolateData::isolate() const {
57
  return isolate_;
58
}
59
60
1180904
inline uv_loop_t* IsolateData::event_loop() const {
61
1180904
  return event_loop_;
62
}
63
64
113905
inline NodeArrayBufferAllocator* IsolateData::node_allocator() const {
65
113905
  return node_allocator_;
66
}
67
68
57655
inline MultiIsolatePlatform* IsolateData::platform() const {
69
57655
  return platform_;
70
}
71
72
802
inline void IsolateData::set_worker_context(worker::Worker* context) {
73
802
  CHECK_NULL(worker_context_);  // Should be set only once.
74
802
  worker_context_ = context;
75
802
}
76
77
16474
inline worker::Worker* IsolateData::worker_context() const {
78
16474
  return worker_context_;
79
}
80
81
215738
inline v8::Local<v8::String> IsolateData::async_wrap_provider(int index) const {
82
215738
  return async_wrap_providers_[index].Get(isolate_);
83
}
84
85
2642549
inline AliasedUint32Array& AsyncHooks::fields() {
86
2642549
  return fields_;
87
}
88
89
1718733
inline AliasedFloat64Array& AsyncHooks::async_id_fields() {
90
1718733
  return async_id_fields_;
91
}
92
93
847
inline AliasedFloat64Array& AsyncHooks::async_ids_stack() {
94
847
  return async_ids_stack_;
95
}
96
97
816991
v8::Local<v8::Array> AsyncHooks::js_execution_async_resources() {
98
816991
  if (UNLIKELY(js_execution_async_resources_.IsEmpty())) {
99
847
    js_execution_async_resources_.Reset(
100
1694
        env()->isolate(), v8::Array::New(env()->isolate()));
101
  }
102
816991
  return PersistentToLocal::Strong(js_execution_async_resources_);
103
}
104
105
2403
v8::Local<v8::Object> AsyncHooks::native_execution_async_resource(size_t i) {
106
2403
  if (i >= native_execution_async_resources_.size()) return {};
107
2403
  return native_execution_async_resources_[i];
108
}
109
110
15864
inline void AsyncHooks::SetJSPromiseHooks(v8::Local<v8::Function> init,
111
                                          v8::Local<v8::Function> before,
112
                                          v8::Local<v8::Function> after,
113
                                          v8::Local<v8::Function> resolve) {
114
15864
  js_promise_hooks_[0].Reset(env()->isolate(), init);
115
15864
  js_promise_hooks_[1].Reset(env()->isolate(), before);
116
15864
  js_promise_hooks_[2].Reset(env()->isolate(), after);
117
15864
  js_promise_hooks_[3].Reset(env()->isolate(), resolve);
118
32061
  for (auto it = contexts_.begin(); it != contexts_.end(); it++) {
119
16197
    if (it->IsEmpty()) {
120
      contexts_.erase(it--);
121
      continue;
122
    }
123
32394
    PersistentToLocal::Weak(env()->isolate(), *it)
124
16197
        ->SetPromiseHooks(init, before, after, resolve);
125
  }
126
15864
}
127
128
215390
inline v8::Local<v8::String> AsyncHooks::provider_string(int idx) {
129
215390
  return env()->isolate_data()->async_wrap_provider(idx);
130
}
131
132
1
inline void AsyncHooks::no_force_checks() {
133
1
  fields_[kCheck] -= 1;
134
1
}
135
136
431243
inline Environment* AsyncHooks::env() {
137
431243
  return Environment::ForAsyncHooks(this);
138
}
139
140
// Remember to keep this code aligned with pushAsyncContext() in JS.
141
787147
inline void AsyncHooks::push_async_context(double async_id,
142
                                           double trigger_async_id,
143
                                           v8::Local<v8::Object> resource) {
144
  // Since async_hooks is experimental, do only perform the check
145
  // when async_hooks is enabled.
146
787147
  if (fields_[kCheck] > 0) {
147
787144
    CHECK_GE(async_id, -1);
148
787144
    CHECK_GE(trigger_async_id, -1);
149
  }
150
151
787147
  uint32_t offset = fields_[kStackLength];
152
787147
  if (offset * 2 >= async_ids_stack_.Length())
153
4
    grow_async_ids_stack();
154
787147
  async_ids_stack_[2 * offset] = async_id_fields_[kExecutionAsyncId];
155
787147
  async_ids_stack_[2 * offset + 1] = async_id_fields_[kTriggerAsyncId];
156
787147
  fields_[kStackLength] += 1;
157
787147
  async_id_fields_[kExecutionAsyncId] = async_id;
158
787147
  async_id_fields_[kTriggerAsyncId] = trigger_async_id;
159
160
#ifdef DEBUG
161
  for (uint32_t i = offset; i < native_execution_async_resources_.size(); i++)
162
    CHECK(native_execution_async_resources_[i].IsEmpty());
163
#endif
164
165
  // When this call comes from JS (as a way of increasing the stack size),
166
  // `resource` will be empty, because JS caches these values anyway.
167
787147
  if (!resource.IsEmpty()) {
168
787143
    native_execution_async_resources_.resize(offset + 1);
169
    // Caveat: This is a v8::Local<> assignment, we do not keep a v8::Global<>!
170
787143
    native_execution_async_resources_[offset] = resource;
171
  }
172
787147
}
173
174
// Remember to keep this code aligned with popAsyncContext() in JS.
175
786767
inline bool AsyncHooks::pop_async_context(double async_id) {
176
  // In case of an exception then this may have already been reset, if the
177
  // stack was multiple MakeCallback()'s deep.
178
786767
  if (UNLIKELY(fields_[kStackLength] == 0)) return false;
179
180
  // Ask for the async_id to be restored as a check that the stack
181
  // hasn't been corrupted.
182
  // Since async_hooks is experimental, do only perform the check
183
  // when async_hooks is enabled.
184
1571439
  if (UNLIKELY(fields_[kCheck] > 0 &&
185

1571439
               async_id_fields_[kExecutionAsyncId] != async_id)) {
186
4
    FailWithCorruptedAsyncStack(async_id);
187
  }
188
189
785717
  uint32_t offset = fields_[kStackLength] - 1;
190
785717
  async_id_fields_[kExecutionAsyncId] = async_ids_stack_[2 * offset];
191
785717
  async_id_fields_[kTriggerAsyncId] = async_ids_stack_[2 * offset + 1];
192
785717
  fields_[kStackLength] = offset;
193
194
1571434
  if (LIKELY(offset < native_execution_async_resources_.size() &&
195

1571434
             !native_execution_async_resources_[offset].IsEmpty())) {
196
#ifdef DEBUG
197
    for (uint32_t i = offset + 1;
198
         i < native_execution_async_resources_.size();
199
         i++) {
200
      CHECK(native_execution_async_resources_[i].IsEmpty());
201
    }
202
#endif
203
785717
    native_execution_async_resources_.resize(offset);
204
785717
    if (native_execution_async_resources_.size() <
205

1015415
            native_execution_async_resources_.capacity() / 2 &&
206
229698
        native_execution_async_resources_.size() > 16) {
207
      native_execution_async_resources_.shrink_to_fit();
208
    }
209
  }
210
211
1571434
  if (UNLIKELY(js_execution_async_resources()->Length() > offset)) {
212
30427
    v8::HandleScope handle_scope(env()->isolate());
213
60854
    USE(js_execution_async_resources()->Set(
214
        env()->context(),
215
        env()->length_string(),
216
121708
        v8::Integer::NewFromUnsigned(env()->isolate(), offset)));
217
  }
218
219
785717
  return fields_[kStackLength] > 0;
220
}
221
222
2443
void AsyncHooks::clear_async_id_stack() {
223
2443
  v8::Isolate* isolate = env()->isolate();
224
2443
  v8::HandleScope handle_scope(isolate);
225
2443
  if (!js_execution_async_resources_.IsEmpty()) {
226
3192
    USE(PersistentToLocal::Strong(js_execution_async_resources_)->Set(
227
        env()->context(),
228
        env()->length_string(),
229
6384
        v8::Integer::NewFromUnsigned(isolate, 0)));
230
  }
231
2443
  native_execution_async_resources_.clear();
232
2443
  native_execution_async_resources_.shrink_to_fit();
233
234
2443
  async_id_fields_[kExecutionAsyncId] = 0;
235
2443
  async_id_fields_[kTriggerAsyncId] = 0;
236
2443
  fields_[kStackLength] = 0;
237
2443
}
238
239
6641
inline void AsyncHooks::AddContext(v8::Local<v8::Context> ctx) {
240
26162
  ctx->SetPromiseHooks(
241
6641
    js_promise_hooks_[0].IsEmpty() ?
242
6641
      v8::Local<v8::Function>() :
243
201
      PersistentToLocal::Strong(js_promise_hooks_[0]),
244
6641
    js_promise_hooks_[1].IsEmpty() ?
245
6641
      v8::Local<v8::Function>() :
246
201
      PersistentToLocal::Strong(js_promise_hooks_[1]),
247
6641
    js_promise_hooks_[2].IsEmpty() ?
248
6641
      v8::Local<v8::Function>() :
249
201
      PersistentToLocal::Strong(js_promise_hooks_[2]),
250
6641
    js_promise_hooks_[3].IsEmpty() ?
251
6641
      v8::Local<v8::Function>() :
252
      PersistentToLocal::Strong(js_promise_hooks_[3]));
253
254
6641
  size_t id = contexts_.size();
255
6641
  contexts_.resize(id + 1);
256
6641
  contexts_[id].Reset(env()->isolate(), ctx);
257
6641
  contexts_[id].SetWeak();
258
6641
}
259
260
504
inline void AsyncHooks::RemoveContext(v8::Local<v8::Context> ctx) {
261
504
  v8::Isolate* isolate = env()->isolate();
262
1008
  v8::HandleScope handle_scope(isolate);
263
504
  contexts_.erase(std::remove_if(contexts_.begin(),
264
                                 contexts_.end(),
265
4004
                                 [&](auto&& el) { return el.IsEmpty(); }),
266
1008
                  contexts_.end());
267
3943
  for (auto it = contexts_.begin(); it != contexts_.end(); it++) {
268
    v8::Local<v8::Context> saved_context =
269
3439
      PersistentToLocal::Weak(isolate, *it);
270
3439
    if (saved_context == ctx) {
271
      it->Reset();
272
      contexts_.erase(it);
273
      break;
274
    }
275
  }
276
504
}
277
278
// The DefaultTriggerAsyncIdScope(AsyncWrap*) constructor is defined in
279
// async_wrap-inl.h to avoid a circular dependency.
280
281
252010
inline AsyncHooks::DefaultTriggerAsyncIdScope ::DefaultTriggerAsyncIdScope(
282
252010
    Environment* env, double default_trigger_async_id)
283
252010
    : async_hooks_(env->async_hooks()) {
284
252010
  if (env->async_hooks()->fields()[AsyncHooks::kCheck] > 0) {
285
252010
    CHECK_GE(default_trigger_async_id, 0);
286
  }
287
288
252010
  old_default_trigger_async_id_ =
289
252010
    async_hooks_->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId];
290
252010
  async_hooks_->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId] =
291
252010
    default_trigger_async_id;
292
252010
}
293
294
504018
inline AsyncHooks::DefaultTriggerAsyncIdScope ::~DefaultTriggerAsyncIdScope() {
295
252009
  async_hooks_->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId] =
296
252009
    old_default_trigger_async_id_;
297
252009
}
298
299
431243
Environment* Environment::ForAsyncHooks(AsyncHooks* hooks) {
300
431243
  return ContainerOf(&Environment::async_hooks_, hooks);
301
}
302
303
786980
inline size_t Environment::async_callback_scope_depth() const {
304
786980
  return async_callback_scope_depth_;
305
}
306
307
801602
inline void Environment::PushAsyncCallbackScope() {
308
801602
  async_callback_scope_depth_++;
309
801602
}
310
311
801090
inline void Environment::PopAsyncCallbackScope() {
312
801090
  async_callback_scope_depth_--;
313
801090
}
314
315
847
inline AliasedUint32Array& ImmediateInfo::fields() {
316
847
  return fields_;
317
}
318
319
184628
inline uint32_t ImmediateInfo::count() const {
320
184628
  return fields_[kCount];
321
}
322
323
279803
inline uint32_t ImmediateInfo::ref_count() const {
324
279803
  return fields_[kRefCount];
325
}
326
327
44121
inline bool ImmediateInfo::has_outstanding() const {
328
44121
  return fields_[kHasOutstanding] == 1;
329
}
330
331
34758
inline void ImmediateInfo::ref_count_inc(uint32_t increment) {
332
34758
  fields_[kRefCount] += increment;
333
34758
}
334
335
201870
inline void ImmediateInfo::ref_count_dec(uint32_t decrement) {
336
201870
  fields_[kRefCount] -= decrement;
337
201870
}
338
339
847
inline AliasedUint8Array& TickInfo::fields() {
340
847
  return fields_;
341
}
342
343
1419093
inline bool TickInfo::has_tick_scheduled() const {
344
1419093
  return fields_[kHasTickScheduled] == 1;
345
}
346
347
514736
inline bool TickInfo::has_rejection_to_warn() const {
348
514736
  return fields_[kHasRejectionToWarn] == 1;
349
}
350
351
6641
inline void Environment::AssignToContext(v8::Local<v8::Context> context,
352
                                         const ContextInfo& info) {
353
6641
  context->SetAlignedPointerInEmbedderData(
354
      ContextEmbedderIndex::kEnvironment, this);
355
  // Used by Environment::GetCurrent to know that we are on a node context.
356
6641
  context->SetAlignedPointerInEmbedderData(
357
    ContextEmbedderIndex::kContextTag, Environment::kNodeContextTagPtr);
358
  // Used to retrieve bindings
359
13282
  context->SetAlignedPointerInEmbedderData(
360
6641
      ContextEmbedderIndex::kBindingListIndex, &(this->bindings_));
361
362
#if HAVE_INSPECTOR
363
6641
  inspector_agent()->ContextCreated(context, info);
364
#endif  // HAVE_INSPECTOR
365
366
6641
  this->async_hooks()->AddContext(context);
367
6641
}
368
369
55025
inline Environment* Environment::GetCurrent(v8::Isolate* isolate) {
370
55025
  if (UNLIKELY(!isolate->InContext())) return nullptr;
371
105268
  v8::HandleScope handle_scope(isolate);
372
52634
  return GetCurrent(isolate->GetCurrentContext());
373
}
374
375
7418430
inline Environment* Environment::GetCurrent(v8::Local<v8::Context> context) {
376
7418430
  if (UNLIKELY(context.IsEmpty())) {
377
1
    return nullptr;
378
  }
379
7418429
  if (UNLIKELY(context->GetNumberOfEmbedderDataFields() <=
380
7418429
               ContextEmbedderIndex::kContextTag)) {
381
11
    return nullptr;
382
  }
383
7418418
  if (UNLIKELY(context->GetAlignedPointerFromEmbedderData(
384
                   ContextEmbedderIndex::kContextTag) !=
385
7418418
               Environment::kNodeContextTagPtr)) {
386
    return nullptr;
387
  }
388
  return static_cast<Environment*>(
389
7418418
      context->GetAlignedPointerFromEmbedderData(
390
7418418
          ContextEmbedderIndex::kEnvironment));
391
}
392
393
5573901
inline Environment* Environment::GetCurrent(
394
    const v8::FunctionCallbackInfo<v8::Value>& info) {
395
5573901
  return GetCurrent(info.GetIsolate()->GetCurrentContext());
396
}
397
398
template <typename T>
399
2731950
inline Environment* Environment::GetCurrent(
400
    const v8::PropertyCallbackInfo<T>& info) {
401
2731950
  return GetCurrent(info.GetIsolate()->GetCurrentContext());
402
}
403
404
template <typename T, typename U>
405
inline T* Environment::GetBindingData(const v8::PropertyCallbackInfo<U>& info) {
406
  return GetBindingData<T>(info.GetIsolate()->GetCurrentContext());
407
}
408
409
template <typename T>
410
949217
inline T* Environment::GetBindingData(
411
    const v8::FunctionCallbackInfo<v8::Value>& info) {
412
949217
  return GetBindingData<T>(info.GetIsolate()->GetCurrentContext());
413
}
414
415
template <typename T>
416
949219
inline T* Environment::GetBindingData(v8::Local<v8::Context> context) {
417
  BindingDataStore* map = static_cast<BindingDataStore*>(
418
949219
      context->GetAlignedPointerFromEmbedderData(
419
          ContextEmbedderIndex::kBindingListIndex));
420
  DCHECK_NOT_NULL(map);
421
949219
  auto it = map->find(T::type_name);
422
949219
  if (UNLIKELY(it == map->end())) return nullptr;
423
949219
  T* result = static_cast<T*>(it->second.get());
424
  DCHECK_NOT_NULL(result);
425
  DCHECK_EQ(result->env(), GetCurrent(context));
426
949219
  return result;
427
}
428
429
template <typename T>
430
25625
inline T* Environment::AddBindingData(
431
    v8::Local<v8::Context> context,
432
    v8::Local<v8::Object> target) {
433
  DCHECK_EQ(GetCurrent(context), this);
434
  // This won't compile if T is not a BaseObject subclass.
435
51250
  BaseObjectPtr<T> item = MakeDetachedBaseObject<T>(this, target);
436
  BindingDataStore* map = static_cast<BindingDataStore*>(
437
25625
      context->GetAlignedPointerFromEmbedderData(
438
          ContextEmbedderIndex::kBindingListIndex));
439
  DCHECK_NOT_NULL(map);
440
25625
  auto result = map->emplace(T::type_name, item);
441
25625
  CHECK(result.second);
442
  DCHECK_EQ(GetBindingData<T>(context), item.get());
443
25625
  return item.get();
444
}
445
446
28865634
inline v8::Isolate* Environment::isolate() const {
447
28865634
  return isolate_;
448
}
449
450
7850
inline Environment* Environment::from_timer_handle(uv_timer_t* handle) {
451
7850
  return ContainerOf(&Environment::timer_handle_, handle);
452
}
453
454
31291
inline uv_timer_t* Environment::timer_handle() {
455
31291
  return &timer_handle_;
456
}
457
458
184628
inline Environment* Environment::from_immediate_check_handle(
459
    uv_check_t* handle) {
460
184628
  return ContainerOf(&Environment::immediate_check_handle_, handle);
461
}
462
463
23980
inline uv_check_t* Environment::immediate_check_handle() {
464
23980
  return &immediate_check_handle_;
465
}
466
467
229950
inline uv_idle_t* Environment::immediate_idle_handle() {
468
229950
  return &immediate_idle_handle_;
469
}
470
471
35970
inline void Environment::RegisterHandleCleanup(uv_handle_t* handle,
472
                                               HandleCleanupCb cb,
473
                                               void* arg) {
474
35970
  handle_cleanup_queue_.push_back(HandleCleanup{handle, cb, arg});
475
35970
}
476
477
template <typename T, typename OnCloseCallback>
478
37789
inline void Environment::CloseHandle(T* handle, OnCloseCallback callback) {
479
37637
  handle_cleanup_waiting_++;
480
  static_assert(sizeof(T) >= sizeof(uv_handle_t), "T is a libuv handle");
481
  static_assert(offsetof(T, data) == offsetof(uv_handle_t, data),
482
                "T is a libuv handle");
483
  static_assert(offsetof(T, close_cb) == offsetof(uv_handle_t, close_cb),
484
                "T is a libuv handle");
485
  struct CloseData {
486
    Environment* env;
487
    OnCloseCallback callback;
488
    void* original_data;
489
  };
490
37713
  handle->data = new CloseData { this, callback, handle->data };
491
38017
  uv_close(reinterpret_cast<uv_handle_t*>(handle), [](uv_handle_t* handle) {
492
75274
    std::unique_ptr<CloseData> data { static_cast<CloseData*>(handle->data) };
493
37713
    data->env->handle_cleanup_waiting_--;
494
37713
    handle->data = data->original_data;
495
37713
    data->callback(reinterpret_cast<T*>(handle));
496
  });
497
37713
}
498
499
91250
void Environment::IncreaseWaitingRequestCounter() {
500
91250
  request_waiting_++;
501
91250
}
502
503
91241
void Environment::DecreaseWaitingRequestCounter() {
504
91241
  request_waiting_--;
505
91241
  CHECK_GE(request_waiting_, 0);
506
91241
}
507
508
1174877
inline uv_loop_t* Environment::event_loop() const {
509
1174877
  return isolate_data()->event_loop();
510
}
511
512
166
inline void Environment::TryLoadAddon(
513
    const char* filename,
514
    int flags,
515
    const std::function<bool(binding::DLib*)>& was_loaded) {
516
166
  loaded_addons_.emplace_back(filename, flags);
517
166
  if (!was_loaded(&loaded_addons_.back())) {
518
8
    loaded_addons_.pop_back();
519
  }
520
166
}
521
522
#if HAVE_INSPECTOR
523
44351
inline bool Environment::is_in_inspector_console_call() const {
524
44351
  return is_in_inspector_console_call_;
525
}
526
527
88700
inline void Environment::set_is_in_inspector_console_call(bool value) {
528
88700
  is_in_inspector_console_call_ = value;
529
88700
}
530
#endif
531
532
5941518
inline AsyncHooks* Environment::async_hooks() {
533
5941518
  return &async_hooks_;
534
}
535
536
746027
inline ImmediateInfo* Environment::immediate_info() {
537
746027
  return &immediate_info_;
538
}
539
540
710421
inline TickInfo* Environment::tick_info() {
541
710421
  return &tick_info_;
542
}
543
544
65968
inline uint64_t Environment::timer_base() const {
545
65968
  return timer_base_;
546
}
547
548
1383182
inline std::shared_ptr<KVStore> Environment::env_vars() {
549
1383182
  return env_vars_;
550
}
551
552
6818
inline void Environment::set_env_vars(std::shared_ptr<KVStore> env_vars) {
553
6818
  env_vars_ = env_vars;
554
6818
}
555
556
17
inline bool Environment::printed_error() const {
557
17
  return printed_error_;
558
}
559
560
17
inline void Environment::set_printed_error(bool value) {
561
17
  printed_error_ = value;
562
17
}
563
564
10781
inline void Environment::set_trace_sync_io(bool value) {
565
10781
  trace_sync_io_ = value;
566
10781
}
567
568
114
inline bool Environment::abort_on_uncaught_exception() const {
569
114
  return options_->abort_on_uncaught_exception;
570
}
571
572
inline void Environment::set_force_context_aware(bool value) {
573
  options_->force_context_aware = value;
574
}
575
576
41
inline bool Environment::force_context_aware() const {
577
41
  return options_->force_context_aware;
578
}
579
580
794
inline void Environment::set_abort_on_uncaught_exception(bool value) {
581
794
  options_->abort_on_uncaught_exception = value;
582
794
}
583
584
877
inline AliasedUint32Array& Environment::should_abort_on_uncaught_toggle() {
585
877
  return should_abort_on_uncaught_toggle_;
586
}
587
588
311255
inline AliasedInt32Array& Environment::stream_base_state() {
589
311255
  return stream_base_state_;
590
}
591
592
50188
inline uint32_t Environment::get_next_module_id() {
593
50188
  return module_id_counter_++;
594
}
595
3899
inline uint32_t Environment::get_next_script_id() {
596
3899
  return script_id_counter_++;
597
}
598
34104
inline uint32_t Environment::get_next_function_id() {
599
34104
  return function_id_counter_++;
600
}
601
602
103791
ShouldNotAbortOnUncaughtScope::ShouldNotAbortOnUncaughtScope(
603
103791
    Environment* env)
604
103791
    : env_(env) {
605
103791
  env_->PushShouldNotAbortOnUncaughtScope();
606
103791
}
607
608
207576
ShouldNotAbortOnUncaughtScope::~ShouldNotAbortOnUncaughtScope() {
609
103788
  Close();
610
103788
}
611
612
103981
void ShouldNotAbortOnUncaughtScope::Close() {
613
103981
  if (env_ != nullptr) {
614
103788
    env_->PopShouldNotAbortOnUncaughtScope();
615
103788
    env_ = nullptr;
616
  }
617
103981
}
618
619
103791
inline void Environment::PushShouldNotAbortOnUncaughtScope() {
620
103791
  should_not_abort_scope_counter_++;
621
103791
}
622
623
103788
inline void Environment::PopShouldNotAbortOnUncaughtScope() {
624
103788
  should_not_abort_scope_counter_--;
625
103788
}
626
627
1
inline bool Environment::inside_should_not_abort_on_uncaught_scope() const {
628
1
  return should_not_abort_scope_counter_ > 0;
629
}
630
631
417063
inline std::vector<double>* Environment::destroy_async_id_list() {
632
417063
  return &destroy_async_id_list_;
633
}
634
635
215943
inline double Environment::new_async_id() {
636
215943
  async_hooks()->async_id_fields()[AsyncHooks::kAsyncIdCounter] += 1;
637
215943
  return async_hooks()->async_id_fields()[AsyncHooks::kAsyncIdCounter];
638
}
639
640
245809
inline double Environment::execution_async_id() {
641
245809
  return async_hooks()->async_id_fields()[AsyncHooks::kExecutionAsyncId];
642
}
643
644
68234
inline double Environment::trigger_async_id() {
645
68234
  return async_hooks()->async_id_fields()[AsyncHooks::kTriggerAsyncId];
646
}
647
648
215940
inline double Environment::get_default_trigger_async_id() {
649
  double default_trigger_async_id =
650
215940
    async_hooks()->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId];
651
  // If defaultTriggerAsyncId isn't set, use the executionAsyncId
652
215940
  if (default_trigger_async_id < 0)
653
177535
    default_trigger_async_id = execution_async_id();
654
215940
  return default_trigger_async_id;
655
}
656
657
71680
inline std::shared_ptr<EnvironmentOptions> Environment::options() {
658
71680
  return options_;
659
}
660
661
16929
inline const std::vector<std::string>& Environment::argv() {
662
16929
  return argv_;
663
}
664
665
6757
inline const std::vector<std::string>& Environment::exec_argv() {
666
6757
  return exec_argv_;
667
}
668
669
11990
inline const std::string& Environment::exec_path() const {
670
11990
  return exec_path_;
671
}
672
673
11
inline std::string Environment::GetCwd() {
674
  char cwd[PATH_MAX_BYTES];
675
11
  size_t size = PATH_MAX_BYTES;
676
11
  const int err = uv_cwd(cwd, &size);
677
678
11
  if (err == 0) {
679
11
    CHECK_GT(size, 0);
680
11
    return cwd;
681
  }
682
683
  // This can fail if the cwd is deleted. In that case, fall back to
684
  // exec_path.
685
  const std::string& exec_path = exec_path_;
686
  return exec_path.substr(0, exec_path.find_last_of(kPathSeparator));
687
}
688
689
#if HAVE_INSPECTOR
690
5990
inline void Environment::set_coverage_directory(const char* dir) {
691
5990
  coverage_directory_ = std::string(dir);
692
5990
}
693
694
6013
inline void Environment::set_coverage_connection(
695
    std::unique_ptr<profiler::V8CoverageConnection> connection) {
696
6013
  CHECK_NULL(coverage_connection_);
697
6013
  std::swap(coverage_connection_, connection);
698
6013
}
699
700
18038
inline profiler::V8CoverageConnection* Environment::coverage_connection() {
701
18038
  return coverage_connection_.get();
702
}
703
704
5975
inline const std::string& Environment::coverage_directory() const {
705
5975
  return coverage_directory_;
706
}
707
708
12
inline void Environment::set_cpu_profiler_connection(
709
    std::unique_ptr<profiler::V8CpuProfilerConnection> connection) {
710
12
  CHECK_NULL(cpu_profiler_connection_);
711
12
  std::swap(cpu_profiler_connection_, connection);
712
12
}
713
714
inline profiler::V8CpuProfilerConnection*
715
6029
Environment::cpu_profiler_connection() {
716
6029
  return cpu_profiler_connection_.get();
717
}
718
719
12
inline void Environment::set_cpu_prof_interval(uint64_t interval) {
720
12
  cpu_prof_interval_ = interval;
721
12
}
722
723
12
inline uint64_t Environment::cpu_prof_interval() const {
724
12
  return cpu_prof_interval_;
725
}
726
727
12
inline void Environment::set_cpu_prof_name(const std::string& name) {
728
12
  cpu_prof_name_ = name;
729
12
}
730
731
12
inline const std::string& Environment::cpu_prof_name() const {
732
12
  return cpu_prof_name_;
733
}
734
735
12
inline void Environment::set_cpu_prof_dir(const std::string& dir) {
736
12
  cpu_prof_dir_ = dir;
737
12
}
738
739
12
inline const std::string& Environment::cpu_prof_dir() const {
740
12
  return cpu_prof_dir_;
741
}
742
743
12
inline void Environment::set_heap_profiler_connection(
744
    std::unique_ptr<profiler::V8HeapProfilerConnection> connection) {
745
12
  CHECK_NULL(heap_profiler_connection_);
746
12
  std::swap(heap_profiler_connection_, connection);
747
12
}
748
749
inline profiler::V8HeapProfilerConnection*
750
6017
Environment::heap_profiler_connection() {
751
6017
  return heap_profiler_connection_.get();
752
}
753
754
12
inline void Environment::set_heap_prof_name(const std::string& name) {
755
12
  heap_prof_name_ = name;
756
12
}
757
758
12
inline const std::string& Environment::heap_prof_name() const {
759
12
  return heap_prof_name_;
760
}
761
762
12
inline void Environment::set_heap_prof_dir(const std::string& dir) {
763
12
  heap_prof_dir_ = dir;
764
12
}
765
766
12
inline const std::string& Environment::heap_prof_dir() const {
767
12
  return heap_prof_dir_;
768
}
769
770
12
inline void Environment::set_heap_prof_interval(uint64_t interval) {
771
12
  heap_prof_interval_ = interval;
772
12
}
773
774
12
inline uint64_t Environment::heap_prof_interval() const {
775
12
  return heap_prof_interval_;
776
}
777
778
#endif  // HAVE_INSPECTOR
779
780
inline
781
12222
std::shared_ptr<ExclusiveAccess<HostPort>> Environment::inspector_host_port() {
782
12222
  return inspector_host_port_;
783
}
784
785
61765
inline std::shared_ptr<PerIsolateOptions> IsolateData::options() {
786
61765
  return options_;
787
}
788
789
272
inline void IsolateData::set_options(
790
    std::shared_ptr<PerIsolateOptions> options) {
791
272
  options_ = std::move(options);
792
272
}
793
794
template <typename Fn>
795
93889
void Environment::SetImmediate(Fn&& cb, CallbackFlags::Flags flags) {
796
187778
  auto callback = native_immediates_.CreateCallback(std::move(cb), flags);
797
93889
  native_immediates_.Push(std::move(callback));
798
799
93889
  if (flags & CallbackFlags::kRefed) {
800
69502
    if (immediate_info()->ref_count() == 0)
801
50734
      ToggleImmediateRef(true);
802
69502
    immediate_info()->ref_count_inc(1);
803
  }
804
93889
}
805
806
template <typename Fn>
807
2494
void Environment::SetImmediateThreadsafe(Fn&& cb, CallbackFlags::Flags flags) {
808
4988
  auto callback = native_immediates_threadsafe_.CreateCallback(
809
2494
      std::move(cb), flags);
810
  {
811
4988
    Mutex::ScopedLock lock(native_immediates_threadsafe_mutex_);
812
2494
    native_immediates_threadsafe_.Push(std::move(callback));
813
2494
    if (task_queues_async_initialized_)
814
2484
      uv_async_send(&task_queues_async_);
815
  }
816
2494
}
817
818
template <typename Fn>
819
10480
void Environment::RequestInterrupt(Fn&& cb) {
820
20960
  auto callback = native_immediates_interrupts_.CreateCallback(
821
10480
      std::move(cb), CallbackFlags::kRefed);
822
  {
823
20960
    Mutex::ScopedLock lock(native_immediates_threadsafe_mutex_);
824
10480
    native_immediates_interrupts_.Push(std::move(callback));
825
10480
    if (task_queues_async_initialized_)
826
4348
      uv_async_send(&task_queues_async_);
827
  }
828
10480
  RequestInterruptFromV8();
829
10480
}
830
831
2995461
inline bool Environment::can_call_into_js() const {
832

2995461
  return can_call_into_js_ && !is_stopping();
833
}
834
835
1700
inline void Environment::set_can_call_into_js(bool can_call_into_js) {
836
1700
  can_call_into_js_ = can_call_into_js;
837
1700
}
838
839
1526010
inline bool Environment::has_run_bootstrapping_code() const {
840
1526010
  return has_run_bootstrapping_code_;
841
}
842
843
6028
inline void Environment::DoneBootstrapping() {
844
6028
  has_run_bootstrapping_code_ = true;
845
  // This adjusts the return value of base_object_created_after_bootstrap() so
846
  // that tests that check the count do not have to account for internally
847
  // created BaseObjects.
848
6028
  base_object_created_by_bootstrap_ = base_object_count_;
849
6028
}
850
851
19
inline bool Environment::has_serialized_options() const {
852
19
  return has_serialized_options_;
853
}
854
855
6544
inline void Environment::set_has_serialized_options(bool value) {
856
6544
  has_serialized_options_ = value;
857
6544
}
858
859
9700
inline bool Environment::is_main_thread() const {
860
9700
  return worker_context() == nullptr;
861
}
862
863
1205
inline bool Environment::no_native_addons() const {
864
2406
  return (flags_ & EnvironmentFlags::kNoNativeAddons) ||
865
2406
          !options_->allow_native_addons;
866
}
867
868
5993
inline bool Environment::should_not_register_esm_loader() const {
869
5993
  return flags_ & EnvironmentFlags::kNoRegisterESMLoader;
870
}
871
872
15985
inline bool Environment::owns_process_state() const {
873
15985
  return flags_ & EnvironmentFlags::kOwnsProcessState;
874
}
875
876
6022
inline bool Environment::owns_inspector() const {
877
6022
  return flags_ & EnvironmentFlags::kOwnsInspector;
878
}
879
880
16755
inline bool Environment::should_create_inspector() const {
881
16755
  return (flags_ & EnvironmentFlags::kNoCreateInspector) == 0;
882
}
883
884
129116
inline bool Environment::tracks_unmanaged_fds() const {
885
129116
  return flags_ & EnvironmentFlags::kTrackUnmanagedFds;
886
}
887
888
3788
inline bool Environment::hide_console_windows() const {
889
3788
  return flags_ & EnvironmentFlags::kHideConsoleWindows;
890
}
891
892
7025
inline bool Environment::no_global_search_paths() const {
893
14050
  return (flags_ & EnvironmentFlags::kNoGlobalSearchPaths) ||
894
14050
         !options_->global_search_paths;
895
}
896
897
1879
inline bool Environment::no_browser_globals() const {
898
  // configure --no-browser-globals
899
#ifdef NODE_NO_BROWSER_GLOBALS
900
  return true;
901
#else
902
1879
  return flags_ & EnvironmentFlags::kNoBrowserGlobals;
903
#endif
904
}
905
906
4
bool Environment::filehandle_close_warning() const {
907
4
  return emit_filehandle_warning_;
908
}
909
910
3
void Environment::set_filehandle_close_warning(bool on) {
911
3
  emit_filehandle_warning_ = on;
912
3
}
913
914
5841
void Environment::set_source_maps_enabled(bool on) {
915
5841
  source_maps_enabled_ = on;
916
5841
}
917
918
922
bool Environment::source_maps_enabled() const {
919
922
  return source_maps_enabled_;
920
}
921
922
7698
inline uint64_t Environment::thread_id() const {
923
7698
  return thread_id_;
924
}
925
926
16474
inline worker::Worker* Environment::worker_context() const {
927
16474
  return isolate_data()->worker_context();
928
}
929
930
1029
inline void Environment::add_sub_worker_context(worker::Worker* context) {
931
1029
  sub_worker_contexts_.insert(context);
932
1029
}
933
934
1056
inline void Environment::remove_sub_worker_context(worker::Worker* context) {
935
1056
  sub_worker_contexts_.erase(context);
936
1056
}
937
938
template <typename Fn>
939
24
inline void Environment::ForEachWorker(Fn&& iterator) {
940
26
  for (worker::Worker* w : sub_worker_contexts_) iterator(w);
941
24
}
942
943
2046
inline void Environment::add_refs(int64_t diff) {
944
2046
  task_queues_async_refs_ += diff;
945
2046
  CHECK_GE(task_queues_async_refs_, 0);
946
2046
  if (task_queues_async_refs_ == 0)
947
190
    uv_unref(reinterpret_cast<uv_handle_t*>(&task_queues_async_));
948
  else
949
1856
    uv_ref(reinterpret_cast<uv_handle_t*>(&task_queues_async_));
950
2046
}
951
952
4527555
inline bool Environment::is_stopping() const {
953
4527555
  return is_stopping_.load();
954
}
955
956
5924
inline void Environment::set_stopping(bool value) {
957
5924
  is_stopping_.store(value);
958
5924
}
959
960
14
inline std::list<node_module>* Environment::extra_linked_bindings() {
961
14
  return &extra_linked_bindings_;
962
}
963
964
10
inline node_module* Environment::extra_linked_bindings_head() {
965
10
  return extra_linked_bindings_.size() > 0 ?
966
10
      &extra_linked_bindings_.front() : nullptr;
967
}
968
969
9
inline node_module* Environment::extra_linked_bindings_tail() {
970
9
  return extra_linked_bindings_.size() > 0 ?
971
9
      &extra_linked_bindings_.back() : nullptr;
972
}
973
974
19
inline const Mutex& Environment::extra_linked_bindings_mutex() const {
975
19
  return extra_linked_bindings_mutex_;
976
}
977
978
42387
inline performance::PerformanceState* Environment::performance_state() {
979
42387
  return performance_state_.get();
980
}
981
982
7847488
inline IsolateData* Environment::isolate_data() const {
983
7847488
  return isolate_data_;
984
}
985
986
69793
inline uv_buf_t Environment::allocate_managed_buffer(
987
    const size_t suggested_size) {
988
139586
  NoArrayBufferZeroFillScope no_zero_fill_scope(isolate_data());
989
  std::unique_ptr<v8::BackingStore> bs =
990
69793
      v8::ArrayBuffer::NewBackingStore(isolate(), suggested_size);
991
69793
  uv_buf_t buf = uv_buf_init(static_cast<char*>(bs->Data()), bs->ByteLength());
992
69793
  released_allocated_buffers_.emplace(buf.base, std::move(bs));
993
69793
  return buf;
994
}
995
996
84434
inline std::unique_ptr<v8::BackingStore> Environment::release_managed_buffer(
997
    const uv_buf_t& buf) {
998
84434
  std::unique_ptr<v8::BackingStore> bs;
999
84434
  if (buf.base != nullptr) {
1000
69793
    auto it = released_allocated_buffers_.find(buf.base);
1001
69793
    CHECK_NE(it, released_allocated_buffers_.end());
1002
69793
    bs = std::move(it->second);
1003
69793
    released_allocated_buffers_.erase(it);
1004
  }
1005
84434
  return bs;
1006
}
1007
1008
8
inline void Environment::ThrowError(const char* errmsg) {
1009
8
  ThrowError(v8::Exception::Error, errmsg);
1010
8
}
1011
1012
inline void Environment::ThrowTypeError(const char* errmsg) {
1013
  ThrowError(v8::Exception::TypeError, errmsg);
1014
}
1015
1016
inline void Environment::ThrowRangeError(const char* errmsg) {
1017
  ThrowError(v8::Exception::RangeError, errmsg);
1018
}
1019
1020
8
inline void Environment::ThrowError(
1021
    v8::Local<v8::Value> (*fun)(v8::Local<v8::String>),
1022
    const char* errmsg) {
1023
16
  v8::HandleScope handle_scope(isolate());
1024
8
  isolate()->ThrowException(fun(OneByteString(isolate(), errmsg)));
1025
8
}
1026
1027
7
inline void Environment::ThrowErrnoException(int errorno,
1028
                                             const char* syscall,
1029
                                             const char* message,
1030
                                             const char* path) {
1031
  isolate()->ThrowException(
1032
7
      ErrnoException(isolate(), errorno, syscall, message, path));
1033
7
}
1034
1035
15
inline void Environment::ThrowUVException(int errorno,
1036
                                          const char* syscall,
1037
                                          const char* message,
1038
                                          const char* path,
1039
                                          const char* dest) {
1040
  isolate()->ThrowException(
1041
15
      UVException(isolate(), errorno, syscall, message, path, dest));
1042
15
}
1043
1044
1174253
inline v8::Local<v8::FunctionTemplate> Environment::NewFunctionTemplate(
1045
    v8::FunctionCallback callback,
1046
    v8::Local<v8::Signature> signature,
1047
    v8::ConstructorBehavior behavior,
1048
    v8::SideEffectType side_effect_type,
1049
    const v8::CFunction* c_function) {
1050
  return v8::FunctionTemplate::New(isolate(),
1051
                                   callback,
1052
                                   v8::Local<v8::Value>(),
1053
                                   signature,
1054
                                   0,
1055
                                   behavior,
1056
                                   side_effect_type,
1057
1174253
                                   c_function);
1058
}
1059
1060
281156
inline void Environment::SetMethod(v8::Local<v8::Object> that,
1061
                                   const char* name,
1062
                                   v8::FunctionCallback callback) {
1063
281156
  v8::Local<v8::Context> context = isolate()->GetCurrentContext();
1064
  v8::Local<v8::Function> function =
1065
281156
      NewFunctionTemplate(callback, v8::Local<v8::Signature>(),
1066
                          v8::ConstructorBehavior::kThrow,
1067
281156
                          v8::SideEffectType::kHasSideEffect)
1068
281156
          ->GetFunction(context)
1069
281156
          .ToLocalChecked();
1070
  // kInternalized strings are created in the old space.
1071
281156
  const v8::NewStringType type = v8::NewStringType::kInternalized;
1072
  v8::Local<v8::String> name_string =
1073
562312
      v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1074
562312
  that->Set(context, name_string, function).Check();
1075
281156
  function->SetName(name_string);  // NODE_SET_METHOD() compatibility.
1076
281156
}
1077
1078
1694
inline void Environment::SetFastMethod(v8::Local<v8::Object> that,
1079
                                       const char* name,
1080
                                       v8::FunctionCallback slow_callback,
1081
                                       const v8::CFunction* c_function) {
1082
1694
  v8::Local<v8::Context> context = isolate()->GetCurrentContext();
1083
  v8::Local<v8::Function> function =
1084
1694
      NewFunctionTemplate(slow_callback,
1085
                          v8::Local<v8::Signature>(),
1086
                          v8::ConstructorBehavior::kThrow,
1087
                          v8::SideEffectType::kHasNoSideEffect,
1088
1694
                          c_function)
1089
1694
          ->GetFunction(context)
1090
1694
          .ToLocalChecked();
1091
1694
  const v8::NewStringType type = v8::NewStringType::kInternalized;
1092
  v8::Local<v8::String> name_string =
1093
3388
      v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1094
1694
  that->Set(context, name_string, function).Check();
1095
1694
}
1096
1097
76451
inline void Environment::SetMethodNoSideEffect(v8::Local<v8::Object> that,
1098
                                               const char* name,
1099
                                               v8::FunctionCallback callback) {
1100
76451
  v8::Local<v8::Context> context = isolate()->GetCurrentContext();
1101
  v8::Local<v8::Function> function =
1102
76451
      NewFunctionTemplate(callback, v8::Local<v8::Signature>(),
1103
                          v8::ConstructorBehavior::kThrow,
1104
76451
                          v8::SideEffectType::kHasNoSideEffect)
1105
76451
          ->GetFunction(context)
1106
76451
          .ToLocalChecked();
1107
  // kInternalized strings are created in the old space.
1108
76451
  const v8::NewStringType type = v8::NewStringType::kInternalized;
1109
  v8::Local<v8::String> name_string =
1110
152902
      v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1111
152902
  that->Set(context, name_string, function).Check();
1112
76451
  function->SetName(name_string);  // NODE_SET_METHOD() compatibility.
1113
76451
}
1114
1115
564859
inline void Environment::SetProtoMethod(v8::Local<v8::FunctionTemplate> that,
1116
                                        const char* name,
1117
                                        v8::FunctionCallback callback) {
1118
564859
  v8::Local<v8::Signature> signature = v8::Signature::New(isolate(), that);
1119
  v8::Local<v8::FunctionTemplate> t =
1120
      NewFunctionTemplate(callback, signature, v8::ConstructorBehavior::kThrow,
1121
564859
                          v8::SideEffectType::kHasSideEffect);
1122
  // kInternalized strings are created in the old space.
1123
564859
  const v8::NewStringType type = v8::NewStringType::kInternalized;
1124
  v8::Local<v8::String> name_string =
1125
1129718
      v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1126
1129718
  that->PrototypeTemplate()->Set(name_string, t);
1127
564859
  t->SetClassName(name_string);  // NODE_SET_PROTOTYPE_METHOD() compatibility.
1128
564859
}
1129
1130
80457
inline void Environment::SetProtoMethodNoSideEffect(
1131
    v8::Local<v8::FunctionTemplate> that,
1132
    const char* name,
1133
    v8::FunctionCallback callback) {
1134
80457
  v8::Local<v8::Signature> signature = v8::Signature::New(isolate(), that);
1135
  v8::Local<v8::FunctionTemplate> t =
1136
      NewFunctionTemplate(callback, signature, v8::ConstructorBehavior::kThrow,
1137
80457
                          v8::SideEffectType::kHasNoSideEffect);
1138
  // kInternalized strings are created in the old space.
1139
80457
  const v8::NewStringType type = v8::NewStringType::kInternalized;
1140
  v8::Local<v8::String> name_string =
1141
160914
      v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1142
160914
  that->PrototypeTemplate()->Set(name_string, t);
1143
80457
  t->SetClassName(name_string);  // NODE_SET_PROTOTYPE_METHOD() compatibility.
1144
80457
}
1145
1146
33
inline void Environment::SetInstanceMethod(v8::Local<v8::FunctionTemplate> that,
1147
                                           const char* name,
1148
                                           v8::FunctionCallback callback) {
1149
33
  v8::Local<v8::Signature> signature = v8::Signature::New(isolate(), that);
1150
  v8::Local<v8::FunctionTemplate> t =
1151
      NewFunctionTemplate(callback, signature, v8::ConstructorBehavior::kThrow,
1152
33
                          v8::SideEffectType::kHasSideEffect);
1153
  // kInternalized strings are created in the old space.
1154
33
  const v8::NewStringType type = v8::NewStringType::kInternalized;
1155
  v8::Local<v8::String> name_string =
1156
66
      v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1157
66
  that->InstanceTemplate()->Set(name_string, t);
1158
33
  t->SetClassName(name_string);
1159
33
}
1160
1161
107070
inline void Environment::SetConstructorFunction(
1162
    v8::Local<v8::Object> that,
1163
    const char* name,
1164
    v8::Local<v8::FunctionTemplate> tmpl,
1165
    SetConstructorFunctionFlag flag) {
1166
107070
  SetConstructorFunction(that, OneByteString(isolate(), name), tmpl, flag);
1167
107070
}
1168
1169
111305
inline void Environment::SetConstructorFunction(
1170
    v8::Local<v8::Object> that,
1171
    v8::Local<v8::String> name,
1172
    v8::Local<v8::FunctionTemplate> tmpl,
1173
    SetConstructorFunctionFlag flag) {
1174
111305
  if (LIKELY(flag == SetConstructorFunctionFlag::SET_CLASS_NAME))
1175
98472
    tmpl->SetClassName(name);
1176
111305
  that->Set(
1177
      context(),
1178
      name,
1179
222610
      tmpl->GetFunction(context()).ToLocalChecked()).Check();
1180
111305
}
1181
1182
1444748
void Environment::AddCleanupHook(CleanupCallback fn, void* arg) {
1183
2889496
  auto insertion_info = cleanup_hooks_.emplace(CleanupHookCallback {
1184
1444748
    fn, arg, cleanup_hook_counter_++
1185
1444748
  });
1186
  // Make sure there was no existing element with these values.
1187
1444748
  CHECK_EQ(insertion_info.second, true);
1188
1444748
}
1189
1190
1428238
void Environment::RemoveCleanupHook(CleanupCallback fn, void* arg) {
1191
1428238
  CleanupHookCallback search { fn, arg, 0 };
1192
1428238
  cleanup_hooks_.erase(search);
1193
1428238
}
1194
1195
3170859
size_t CleanupHookCallback::Hash::operator()(
1196
    const CleanupHookCallback& cb) const {
1197
3170859
  return std::hash<void*>()(cb.arg_);
1198
}
1199
1200
1581863
bool CleanupHookCallback::Equal::operator()(
1201
    const CleanupHookCallback& a, const CleanupHookCallback& b) const {
1202

1581863
  return a.fn_ == b.fn_ && a.arg_ == b.arg_;
1203
}
1204
1205
541
BaseObject* CleanupHookCallback::GetBaseObject() const {
1206
541
  if (fn_ == BaseObject::DeleteMe)
1207
513
    return static_cast<BaseObject*>(arg_);
1208
  else
1209
28
    return nullptr;
1210
}
1211
1212
template <typename T>
1213
48
void Environment::ForEachBaseObject(T&& iterator) {
1214
1130
  for (const auto& hook : cleanup_hooks_) {
1215
1082
    BaseObject* obj = hook.GetBaseObject();
1216
1082
    if (obj != nullptr)
1217
1026
      iterator(obj);
1218
  }
1219
}
1220
1221
template <typename T>
1222
6
void Environment::ForEachBindingData(T&& iterator) {
1223
  BindingDataStore* map = static_cast<BindingDataStore*>(
1224
12
      context()->GetAlignedPointerFromEmbedderData(
1225
          ContextEmbedderIndex::kBindingListIndex));
1226
  DCHECK_NOT_NULL(map);
1227
30
  for (auto& it : *map) {
1228
24
    iterator(it.first, it.second);
1229
  }
1230
6
}
1231
1232
2814820
void Environment::modify_base_object_count(int64_t delta) {
1233
2814820
  base_object_count_ += delta;
1234
2814820
}
1235
1236
14
int64_t Environment::base_object_created_after_bootstrap() const {
1237
14
  return base_object_count_ - base_object_created_by_bootstrap_;
1238
}
1239
1240
2
int64_t Environment::base_object_count() const {
1241
2
  return base_object_count_;
1242
}
1243
1244
17
void Environment::set_main_utf16(std::unique_ptr<v8::String::Value> str) {
1245
17
  CHECK(!main_utf16_);
1246
17
  main_utf16_ = std::move(str);
1247
17
}
1248
1249
793
void Environment::set_process_exit_handler(
1250
    std::function<void(Environment*, int)>&& handler) {
1251
793
  process_exit_handler_ = std::move(handler);
1252
793
}
1253
1254
#define VP(PropertyName, StringValue) V(v8::Private, PropertyName)
1255
#define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName)
1256
#define VS(PropertyName, StringValue) V(v8::String, PropertyName)
1257
#define V(TypeName, PropertyName)                                             \
1258
  inline                                                                      \
1259
  v8::Local<TypeName> IsolateData::PropertyName() const {                     \
1260
    return PropertyName ## _ .Get(isolate_);                                  \
1261
  }
1262
42419
  PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP)
1263
928294
  PER_ISOLATE_SYMBOL_PROPERTIES(VY)
1264
7693165
  PER_ISOLATE_STRING_PROPERTIES(VS)
1265
#undef V
1266
#undef VS
1267
#undef VY
1268
#undef VP
1269
1270
#define VP(PropertyName, StringValue) V(v8::Private, PropertyName)
1271
#define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName)
1272
#define VS(PropertyName, StringValue) V(v8::String, PropertyName)
1273
#define V(TypeName, PropertyName)                                             \
1274
  inline v8::Local<TypeName> Environment::PropertyName() const {              \
1275
    return isolate_data()->PropertyName();                                    \
1276
  }
1277
42419
  PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP)
1278
807046
  PER_ISOLATE_SYMBOL_PROPERTIES(VY)
1279
11065258
  PER_ISOLATE_STRING_PROPERTIES(VS)
1280
#undef V
1281
#undef VS
1282
#undef VY
1283
#undef VP
1284
1285
#define V(PropertyName, TypeName)                                             \
1286
  inline v8::Local<TypeName> Environment::PropertyName() const {              \
1287
    return PersistentToLocal::Strong(PropertyName ## _);                      \
1288
  }                                                                           \
1289
  inline void Environment::set_ ## PropertyName(v8::Local<TypeName> value) {  \
1290
    PropertyName ## _.Reset(isolate(), value);                                \
1291
  }
1292
1208166
  ENVIRONMENT_STRONG_PERSISTENT_TEMPLATES(V)
1293
6140255
  ENVIRONMENT_STRONG_PERSISTENT_VALUES(V)
1294
#undef V
1295
1296
9080084
v8::Local<v8::Context> Environment::context() const {
1297
9080084
  return PersistentToLocal::Strong(context_);
1298
}
1299
1300
}  // namespace node
1301
1302
// These two files depend on each other. Including base_object-inl.h after this
1303
// file is the easiest way to avoid issues with that circular dependency.
1304
#include "base_object-inl.h"
1305
1306
#endif  // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
1307
1308
#endif  // SRC_ENV_INL_H_