GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: env-inl.h Lines: 661 673 98.2 %
Date: 2022-06-12 04:16:28 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
106723
NoArrayBufferZeroFillScope::NoArrayBufferZeroFillScope(
47
106723
    IsolateData* isolate_data)
48
106723
    : node_allocator_(isolate_data->node_allocator()) {
49
106723
  if (node_allocator_ != nullptr) node_allocator_->zero_fill_field()[0] = 0;
50
106723
}
51
52
213446
NoArrayBufferZeroFillScope::~NoArrayBufferZeroFillScope() {
53
106723
  if (node_allocator_ != nullptr) node_allocator_->zero_fill_field()[0] = 1;
54
106723
}
55
56
inline v8::Isolate* IsolateData::isolate() const {
57
  return isolate_;
58
}
59
60
1182912
inline uv_loop_t* IsolateData::event_loop() const {
61
1182912
  return event_loop_;
62
}
63
64
113322
inline NodeArrayBufferAllocator* IsolateData::node_allocator() const {
65
113322
  return node_allocator_;
66
}
67
68
57705
inline MultiIsolatePlatform* IsolateData::platform() const {
69
57705
  return platform_;
70
}
71
72
805
inline void IsolateData::set_worker_context(worker::Worker* context) {
73
805
  CHECK_NULL(worker_context_);  // Should be set only once.
74
805
  worker_context_ = context;
75
805
}
76
77
16553
inline worker::Worker* IsolateData::worker_context() const {
78
16553
  return worker_context_;
79
}
80
81
215990
inline v8::Local<v8::String> IsolateData::async_wrap_provider(int index) const {
82
215990
  return async_wrap_providers_[index].Get(isolate_);
83
}
84
85
2634736
inline AliasedUint32Array& AsyncHooks::fields() {
86
2634736
  return fields_;
87
}
88
89
1716652
inline AliasedFloat64Array& AsyncHooks::async_id_fields() {
90
1716652
  return async_id_fields_;
91
}
92
93
854
inline AliasedFloat64Array& AsyncHooks::async_ids_stack() {
94
854
  return async_ids_stack_;
95
}
96
97
806838
v8::Local<v8::Array> AsyncHooks::js_execution_async_resources() {
98
806838
  if (UNLIKELY(js_execution_async_resources_.IsEmpty())) {
99
854
    js_execution_async_resources_.Reset(
100
1708
        env()->isolate(), v8::Array::New(env()->isolate()));
101
  }
102
806838
  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
15870
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
15870
  js_promise_hooks_[0].Reset(env()->isolate(), init);
115
15870
  js_promise_hooks_[1].Reset(env()->isolate(), before);
116
15870
  js_promise_hooks_[2].Reset(env()->isolate(), after);
117
15870
  js_promise_hooks_[3].Reset(env()->isolate(), resolve);
118
32073
  for (auto it = contexts_.begin(); it != contexts_.end(); it++) {
119
16203
    if (it->IsEmpty()) {
120
      contexts_.erase(it--);
121
      continue;
122
    }
123
32406
    PersistentToLocal::Weak(env()->isolate(), *it)
124
16203
        ->SetPromiseHooks(init, before, after, resolve);
125
  }
126
15870
}
127
128
215642
inline v8::Local<v8::String> AsyncHooks::provider_string(int idx) {
129
215642
  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
419520
inline Environment* AsyncHooks::env() {
137
419520
  return Environment::ForAsyncHooks(this);
138
}
139
140
// Remember to keep this code aligned with pushAsyncContext() in JS.
141
780001
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
780001
  if (fields_[kCheck] > 0) {
147
779998
    CHECK_GE(async_id, -1);
148
779998
    CHECK_GE(trigger_async_id, -1);
149
  }
150
151
780001
  uint32_t offset = fields_[kStackLength];
152
780001
  if (offset * 2 >= async_ids_stack_.Length())
153
4
    grow_async_ids_stack();
154
780001
  async_ids_stack_[2 * offset] = async_id_fields_[kExecutionAsyncId];
155
780001
  async_ids_stack_[2 * offset + 1] = async_id_fields_[kTriggerAsyncId];
156
780001
  fields_[kStackLength] += 1;
157
780001
  async_id_fields_[kExecutionAsyncId] = async_id;
158
780001
  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
780001
  if (!resource.IsEmpty()) {
168
779997
    native_execution_async_resources_.resize(offset + 1);
169
    // Caveat: This is a v8::Local<> assignment, we do not keep a v8::Global<>!
170
779997
    native_execution_async_resources_[offset] = resource;
171
  }
172
780001
}
173
174
// Remember to keep this code aligned with popAsyncContext() in JS.
175
779624
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
779624
  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
1557143
  if (UNLIKELY(fields_[kCheck] > 0 &&
185

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

1557138
             !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
778569
    native_execution_async_resources_.resize(offset);
204
778569
    if (native_execution_async_resources_.size() <
205

1008465
            native_execution_async_resources_.capacity() / 2 &&
206
229896
        native_execution_async_resources_.size() > 16) {
207
      native_execution_async_resources_.shrink_to_fit();
208
    }
209
  }
210
211
1557138
  if (UNLIKELY(js_execution_async_resources()->Length() > offset)) {
212
27415
    v8::HandleScope handle_scope(env()->isolate());
213
54830
    USE(js_execution_async_resources()->Set(
214
        env()->context(),
215
        env()->length_string(),
216
109660
        v8::Integer::NewFromUnsigned(env()->isolate(), offset)));
217
  }
218
219
778569
  return fields_[kStackLength] > 0;
220
}
221
222
2448
void AsyncHooks::clear_async_id_stack() {
223
2448
  v8::Isolate* isolate = env()->isolate();
224
2448
  v8::HandleScope handle_scope(isolate);
225
2448
  if (!js_execution_async_resources_.IsEmpty()) {
226
3188
    USE(PersistentToLocal::Strong(js_execution_async_resources_)->Set(
227
        env()->context(),
228
        env()->length_string(),
229
6376
        v8::Integer::NewFromUnsigned(isolate, 0)));
230
  }
231
2448
  native_execution_async_resources_.clear();
232
2448
  native_execution_async_resources_.shrink_to_fit();
233
234
2448
  async_id_fields_[kExecutionAsyncId] = 0;
235
2448
  async_id_fields_[kTriggerAsyncId] = 0;
236
2448
  fields_[kStackLength] = 0;
237
2448
}
238
239
6665
inline void AsyncHooks::AddContext(v8::Local<v8::Context> ctx) {
240
26258
  ctx->SetPromiseHooks(
241
6665
    js_promise_hooks_[0].IsEmpty() ?
242
6665
      v8::Local<v8::Function>() :
243
201
      PersistentToLocal::Strong(js_promise_hooks_[0]),
244
6665
    js_promise_hooks_[1].IsEmpty() ?
245
6665
      v8::Local<v8::Function>() :
246
201
      PersistentToLocal::Strong(js_promise_hooks_[1]),
247
6665
    js_promise_hooks_[2].IsEmpty() ?
248
6665
      v8::Local<v8::Function>() :
249
201
      PersistentToLocal::Strong(js_promise_hooks_[2]),
250
6665
    js_promise_hooks_[3].IsEmpty() ?
251
6665
      v8::Local<v8::Function>() :
252
      PersistentToLocal::Strong(js_promise_hooks_[3]));
253
254
6665
  size_t id = contexts_.size();
255
6665
  contexts_.resize(id + 1);
256
6665
  contexts_[id].Reset(env()->isolate(), ctx);
257
6665
  contexts_[id].SetWeak();
258
6665
}
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
251001
inline AsyncHooks::DefaultTriggerAsyncIdScope ::DefaultTriggerAsyncIdScope(
282
251001
    Environment* env, double default_trigger_async_id)
283
251001
    : async_hooks_(env->async_hooks()) {
284
251001
  if (env->async_hooks()->fields()[AsyncHooks::kCheck] > 0) {
285
251001
    CHECK_GE(default_trigger_async_id, 0);
286
  }
287
288
251001
  old_default_trigger_async_id_ =
289
251001
    async_hooks_->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId];
290
251001
  async_hooks_->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId] =
291
251001
    default_trigger_async_id;
292
251001
}
293
294
502000
inline AsyncHooks::DefaultTriggerAsyncIdScope ::~DefaultTriggerAsyncIdScope() {
295
251000
  async_hooks_->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId] =
296
251000
    old_default_trigger_async_id_;
297
251000
}
298
299
419520
Environment* Environment::ForAsyncHooks(AsyncHooks* hooks) {
300
419520
  return ContainerOf(&Environment::async_hooks_, hooks);
301
}
302
303
779837
inline size_t Environment::async_callback_scope_depth() const {
304
779837
  return async_callback_scope_depth_;
305
}
306
307
794530
inline void Environment::PushAsyncCallbackScope() {
308
794530
  async_callback_scope_depth_++;
309
794530
}
310
311
794018
inline void Environment::PopAsyncCallbackScope() {
312
794018
  async_callback_scope_depth_--;
313
794018
}
314
315
854
inline AliasedUint32Array& ImmediateInfo::fields() {
316
854
  return fields_;
317
}
318
319
180294
inline uint32_t ImmediateInfo::count() const {
320
180294
  return fields_[kCount];
321
}
322
323
273284
inline uint32_t ImmediateInfo::ref_count() const {
324
273284
  return fields_[kRefCount];
325
}
326
327
41786
inline bool ImmediateInfo::has_outstanding() const {
328
41786
  return fields_[kHasOutstanding] == 1;
329
}
330
331
34800
inline void ImmediateInfo::ref_count_inc(uint32_t increment) {
332
34800
  fields_[kRefCount] += increment;
333
34800
}
334
335
197645
inline void ImmediateInfo::ref_count_dec(uint32_t decrement) {
336
197645
  fields_[kRefCount] -= decrement;
337
197645
}
338
339
854
inline AliasedUint8Array& TickInfo::fields() {
340
854
  return fields_;
341
}
342
343
1404321
inline bool TickInfo::has_tick_scheduled() const {
344
1404321
  return fields_[kHasTickScheduled] == 1;
345
}
346
347
509121
inline bool TickInfo::has_rejection_to_warn() const {
348
509121
  return fields_[kHasRejectionToWarn] == 1;
349
}
350
351
6665
inline void Environment::AssignToContext(v8::Local<v8::Context> context,
352
                                         const ContextInfo& info) {
353
6665
  context->SetAlignedPointerInEmbedderData(
354
      ContextEmbedderIndex::kEnvironment, this);
355
  // Used by Environment::GetCurrent to know that we are on a node context.
356
6665
  context->SetAlignedPointerInEmbedderData(
357
    ContextEmbedderIndex::kContextTag, Environment::kNodeContextTagPtr);
358
  // Used to retrieve bindings
359
13330
  context->SetAlignedPointerInEmbedderData(
360
6665
      ContextEmbedderIndex::kBindingListIndex, &(this->bindings_));
361
362
#if HAVE_INSPECTOR
363
6665
  inspector_agent()->ContextCreated(context, info);
364
#endif  // HAVE_INSPECTOR
365
366
6665
  this->async_hooks()->AddContext(context);
367
6665
}
368
369
54137
inline Environment* Environment::GetCurrent(v8::Isolate* isolate) {
370
54137
  if (UNLIKELY(!isolate->InContext())) return nullptr;
371
103668
  v8::HandleScope handle_scope(isolate);
372
51834
  return GetCurrent(isolate->GetCurrentContext());
373
}
374
375
7420882
inline Environment* Environment::GetCurrent(v8::Local<v8::Context> context) {
376
7420882
  if (UNLIKELY(context.IsEmpty())) {
377
1
    return nullptr;
378
  }
379
7420881
  if (UNLIKELY(context->GetNumberOfEmbedderDataFields() <=
380
7420881
               ContextEmbedderIndex::kContextTag)) {
381
11
    return nullptr;
382
  }
383
7420870
  if (UNLIKELY(context->GetAlignedPointerFromEmbedderData(
384
                   ContextEmbedderIndex::kContextTag) !=
385
7420870
               Environment::kNodeContextTagPtr)) {
386
    return nullptr;
387
  }
388
  return static_cast<Environment*>(
389
7420870
      context->GetAlignedPointerFromEmbedderData(
390
7420870
          ContextEmbedderIndex::kEnvironment));
391
}
392
393
5575931
inline Environment* Environment::GetCurrent(
394
    const v8::FunctionCallbackInfo<v8::Value>& info) {
395
5575931
  return GetCurrent(info.GetIsolate()->GetCurrentContext());
396
}
397
398
template <typename T>
399
2736148
inline Environment* Environment::GetCurrent(
400
    const v8::PropertyCallbackInfo<T>& info) {
401
2736148
  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
953928
inline T* Environment::GetBindingData(
411
    const v8::FunctionCallbackInfo<v8::Value>& info) {
412
953928
  return GetBindingData<T>(info.GetIsolate()->GetCurrentContext());
413
}
414
415
template <typename T>
416
953930
inline T* Environment::GetBindingData(v8::Local<v8::Context> context) {
417
  BindingDataStore* map = static_cast<BindingDataStore*>(
418
953930
      context->GetAlignedPointerFromEmbedderData(
419
          ContextEmbedderIndex::kBindingListIndex));
420
  DCHECK_NOT_NULL(map);
421
953930
  auto it = map->find(T::type_name);
422
953930
  if (UNLIKELY(it == map->end())) return nullptr;
423
953930
  T* result = static_cast<T*>(it->second.get());
424
  DCHECK_NOT_NULL(result);
425
  DCHECK_EQ(result->env(), GetCurrent(context));
426
953930
  return result;
427
}
428
429
template <typename T>
430
25727
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
51454
  BaseObjectPtr<T> item = MakeDetachedBaseObject<T>(this, target);
436
  BindingDataStore* map = static_cast<BindingDataStore*>(
437
25727
      context->GetAlignedPointerFromEmbedderData(
438
          ContextEmbedderIndex::kBindingListIndex));
439
  DCHECK_NOT_NULL(map);
440
25727
  auto result = map->emplace(T::type_name, item);
441
25727
  CHECK(result.second);
442
  DCHECK_EQ(GetBindingData<T>(context), item.get());
443
25727
  return item.get();
444
}
445
446
28853561
inline v8::Isolate* Environment::isolate() const {
447
28853561
  return isolate_;
448
}
449
450
7177
inline Environment* Environment::from_timer_handle(uv_timer_t* handle) {
451
7177
  return ContainerOf(&Environment::timer_handle_, handle);
452
}
453
454
30671
inline uv_timer_t* Environment::timer_handle() {
455
30671
  return &timer_handle_;
456
}
457
458
180294
inline Environment* Environment::from_immediate_check_handle(
459
    uv_check_t* handle) {
460
180294
  return ContainerOf(&Environment::immediate_check_handle_, handle);
461
}
462
463
24064
inline uv_check_t* Environment::immediate_check_handle() {
464
24064
  return &immediate_check_handle_;
465
}
466
467
225701
inline uv_idle_t* Environment::immediate_idle_handle() {
468
225701
  return &immediate_idle_handle_;
469
}
470
471
36096
inline void Environment::RegisterHandleCleanup(uv_handle_t* handle,
472
                                               HandleCleanupCb cb,
473
                                               void* arg) {
474
36096
  handle_cleanup_queue_.push_back(HandleCleanup{handle, cb, arg});
475
36096
}
476
477
template <typename T, typename OnCloseCallback>
478
37937
inline void Environment::CloseHandle(T* handle, OnCloseCallback callback) {
479
37781
  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
37859
  handle->data = new CloseData { this, callback, handle->data };
491
38171
  uv_close(reinterpret_cast<uv_handle_t*>(handle), [](uv_handle_t* handle) {
492
75562
    std::unique_ptr<CloseData> data { static_cast<CloseData*>(handle->data) };
493
37859
    data->env->handle_cleanup_waiting_--;
494
37859
    handle->data = data->original_data;
495
37859
    data->callback(reinterpret_cast<T*>(handle));
496
  });
497
37859
}
498
499
91363
void Environment::IncreaseWaitingRequestCounter() {
500
91363
  request_waiting_++;
501
91363
}
502
503
91354
void Environment::DecreaseWaitingRequestCounter() {
504
91354
  request_waiting_--;
505
91354
  CHECK_GE(request_waiting_, 0);
506
91354
}
507
508
1176860
inline uv_loop_t* Environment::event_loop() const {
509
1176860
  return isolate_data()->event_loop();
510
}
511
512
170
inline void Environment::TryLoadAddon(
513
    const char* filename,
514
    int flags,
515
    const std::function<bool(binding::DLib*)>& was_loaded) {
516
170
  loaded_addons_.emplace_back(filename, flags);
517
170
  if (!was_loaded(&loaded_addons_.back())) {
518
8
    loaded_addons_.pop_back();
519
  }
520
170
}
521
522
#if HAVE_INSPECTOR
523
44359
inline bool Environment::is_in_inspector_console_call() const {
524
44359
  return is_in_inspector_console_call_;
525
}
526
527
88716
inline void Environment::set_is_in_inspector_console_call(bool value) {
528
88716
  is_in_inspector_console_call_ = value;
529
88716
}
530
#endif
531
532
5917042
inline AsyncHooks* Environment::async_hooks() {
533
5917042
  return &async_hooks_;
534
}
535
536
728663
inline ImmediateInfo* Environment::immediate_info() {
537
728663
  return &immediate_info_;
538
}
539
540
703044
inline TickInfo* Environment::tick_info() {
541
703044
  return &tick_info_;
542
}
543
544
62700
inline uint64_t Environment::timer_base() const {
545
62700
  return timer_base_;
546
}
547
548
1385369
inline std::shared_ptr<KVStore> Environment::env_vars() {
549
1385369
  return env_vars_;
550
}
551
552
6846
inline void Environment::set_env_vars(std::shared_ptr<KVStore> env_vars) {
553
6846
  env_vars_ = env_vars;
554
6846
}
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
10834
inline void Environment::set_trace_sync_io(bool value) {
565
10834
  trace_sync_io_ = value;
566
10834
}
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
801
inline void Environment::set_abort_on_uncaught_exception(bool value) {
581
801
  options_->abort_on_uncaught_exception = value;
582
801
}
583
584
884
inline AliasedUint32Array& Environment::should_abort_on_uncaught_toggle() {
585
884
  return should_abort_on_uncaught_toggle_;
586
}
587
588
307710
inline AliasedInt32Array& Environment::stream_base_state() {
589
307710
  return stream_base_state_;
590
}
591
592
50366
inline uint32_t Environment::get_next_module_id() {
593
50366
  return module_id_counter_++;
594
}
595
3329
inline uint32_t Environment::get_next_script_id() {
596
3329
  return script_id_counter_++;
597
}
598
34308
inline uint32_t Environment::get_next_function_id() {
599
34308
  return function_id_counter_++;
600
}
601
602
103568
ShouldNotAbortOnUncaughtScope::ShouldNotAbortOnUncaughtScope(
603
103568
    Environment* env)
604
103568
    : env_(env) {
605
103568
  env_->PushShouldNotAbortOnUncaughtScope();
606
103568
}
607
608
207130
ShouldNotAbortOnUncaughtScope::~ShouldNotAbortOnUncaughtScope() {
609
103565
  Close();
610
103565
}
611
612
103758
void ShouldNotAbortOnUncaughtScope::Close() {
613
103758
  if (env_ != nullptr) {
614
103565
    env_->PopShouldNotAbortOnUncaughtScope();
615
103565
    env_ = nullptr;
616
  }
617
103758
}
618
619
103568
inline void Environment::PushShouldNotAbortOnUncaughtScope() {
620
103568
  should_not_abort_scope_counter_++;
621
103568
}
622
623
103565
inline void Environment::PopShouldNotAbortOnUncaughtScope() {
624
103565
  should_not_abort_scope_counter_--;
625
103565
}
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
418598
inline std::vector<double>* Environment::destroy_async_id_list() {
632
418598
  return &destroy_async_id_list_;
633
}
634
635
216197
inline double Environment::new_async_id() {
636
216197
  async_hooks()->async_id_fields()[AsyncHooks::kAsyncIdCounter] += 1;
637
216197
  return async_hooks()->async_id_fields()[AsyncHooks::kAsyncIdCounter];
638
}
639
640
246001
inline double Environment::execution_async_id() {
641
246001
  return async_hooks()->async_id_fields()[AsyncHooks::kExecutionAsyncId];
642
}
643
644
68210
inline double Environment::trigger_async_id() {
645
68210
  return async_hooks()->async_id_fields()[AsyncHooks::kTriggerAsyncId];
646
}
647
648
216194
inline double Environment::get_default_trigger_async_id() {
649
  double default_trigger_async_id =
650
216194
    async_hooks()->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId];
651
  // If defaultTriggerAsyncId isn't set, use the executionAsyncId
652
216194
  if (default_trigger_async_id < 0)
653
177748
    default_trigger_async_id = execution_async_id();
654
216194
  return default_trigger_async_id;
655
}
656
657
71933
inline std::shared_ptr<EnvironmentOptions> Environment::options() {
658
71933
  return options_;
659
}
660
661
16980
inline const std::vector<std::string>& Environment::argv() {
662
16980
  return argv_;
663
}
664
665
6778
inline const std::vector<std::string>& Environment::exec_argv() {
666
6778
  return exec_argv_;
667
}
668
669
12032
inline const std::string& Environment::exec_path() const {
670
12032
  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
6011
inline void Environment::set_coverage_directory(const char* dir) {
691
6011
  coverage_directory_ = std::string(dir);
692
6011
}
693
694
6038
inline void Environment::set_coverage_connection(
695
    std::unique_ptr<profiler::V8CoverageConnection> connection) {
696
6038
  CHECK_NULL(coverage_connection_);
697
6038
  std::swap(coverage_connection_, connection);
698
6038
}
699
700
18113
inline profiler::V8CoverageConnection* Environment::coverage_connection() {
701
18113
  return coverage_connection_.get();
702
}
703
704
5996
inline const std::string& Environment::coverage_directory() const {
705
5996
  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
6054
Environment::cpu_profiler_connection() {
716
6054
  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
6042
Environment::heap_profiler_connection() {
751
6042
  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
12270
std::shared_ptr<ExclusiveAccess<HostPort>> Environment::inspector_host_port() {
782
12270
  return inspector_host_port_;
783
}
784
785
61916
inline std::shared_ptr<PerIsolateOptions> IsolateData::options() {
786
61916
  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
93980
void Environment::SetImmediate(Fn&& cb, CallbackFlags::Flags flags) {
796
187960
  auto callback = native_immediates_.CreateCallback(std::move(cb), flags);
797
93980
  native_immediates_.Push(std::move(callback));
798
799
93980
  if (flags & CallbackFlags::kRefed) {
800
69586
    if (immediate_info()->ref_count() == 0)
801
50720
      ToggleImmediateRef(true);
802
69586
    immediate_info()->ref_count_inc(1);
803
  }
804
93980
}
805
806
template <typename Fn>
807
2487
void Environment::SetImmediateThreadsafe(Fn&& cb, CallbackFlags::Flags flags) {
808
4974
  auto callback = native_immediates_threadsafe_.CreateCallback(
809
2487
      std::move(cb), flags);
810
  {
811
4974
    Mutex::ScopedLock lock(native_immediates_threadsafe_mutex_);
812
2487
    native_immediates_threadsafe_.Push(std::move(callback));
813
2487
    if (task_queues_async_initialized_)
814
2477
      uv_async_send(&task_queues_async_);
815
  }
816
2487
}
817
818
template <typename Fn>
819
10551
void Environment::RequestInterrupt(Fn&& cb) {
820
21102
  auto callback = native_immediates_interrupts_.CreateCallback(
821
10551
      std::move(cb), CallbackFlags::kRefed);
822
  {
823
21102
    Mutex::ScopedLock lock(native_immediates_threadsafe_mutex_);
824
10551
    native_immediates_interrupts_.Push(std::move(callback));
825
10551
    if (task_queues_async_initialized_)
826
4393
      uv_async_send(&task_queues_async_);
827
  }
828
10551
  RequestInterruptFromV8();
829
10551
}
830
831
2968109
inline bool Environment::can_call_into_js() const {
832

2968109
  return can_call_into_js_ && !is_stopping();
833
}
834
835
1699
inline void Environment::set_can_call_into_js(bool can_call_into_js) {
836
1699
  can_call_into_js_ = can_call_into_js;
837
1699
}
838
839
1528258
inline bool Environment::has_run_bootstrapping_code() const {
840
1528258
  return has_run_bootstrapping_code_;
841
}
842
843
6052
inline void Environment::DoneBootstrapping() {
844
6052
  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
6052
  base_object_created_by_bootstrap_ = base_object_count_;
849
6052
}
850
851
19
inline bool Environment::has_serialized_options() const {
852
19
  return has_serialized_options_;
853
}
854
855
6568
inline void Environment::set_has_serialized_options(bool value) {
856
6568
  has_serialized_options_ = value;
857
6568
}
858
859
9751
inline bool Environment::is_main_thread() const {
860
9751
  return worker_context() == nullptr;
861
}
862
863
1209
inline bool Environment::no_native_addons() const {
864
2414
  return (flags_ & EnvironmentFlags::kNoNativeAddons) ||
865
2414
          !options_->allow_native_addons;
866
}
867
868
6014
inline bool Environment::should_not_register_esm_loader() const {
869
6014
  return flags_ & EnvironmentFlags::kNoRegisterESMLoader;
870
}
871
872
16053
inline bool Environment::owns_process_state() const {
873
16053
  return flags_ & EnvironmentFlags::kOwnsProcessState;
874
}
875
876
6047
inline bool Environment::owns_inspector() const {
877
6047
  return flags_ & EnvironmentFlags::kOwnsInspector;
878
}
879
880
16817
inline bool Environment::should_create_inspector() const {
881
16817
  return (flags_ & EnvironmentFlags::kNoCreateInspector) == 0;
882
}
883
884
129804
inline bool Environment::tracks_unmanaged_fds() const {
885
129804
  return flags_ & EnvironmentFlags::kTrackUnmanagedFds;
886
}
887
888
3796
inline bool Environment::hide_console_windows() const {
889
3796
  return flags_ & EnvironmentFlags::kHideConsoleWindows;
890
}
891
892
7046
inline bool Environment::no_global_search_paths() const {
893
14092
  return (flags_ & EnvironmentFlags::kNoGlobalSearchPaths) ||
894
14092
         !options_->global_search_paths;
895
}
896
897
1886
inline bool Environment::no_browser_globals() const {
898
  // configure --no-browser-globals
899
#ifdef NODE_NO_BROWSER_GLOBALS
900
  return true;
901
#else
902
1886
  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
5861
void Environment::set_source_maps_enabled(bool on) {
915
5861
  source_maps_enabled_ = on;
916
5861
}
917
918
922
bool Environment::source_maps_enabled() const {
919
922
  return source_maps_enabled_;
920
}
921
922
7732
inline uint64_t Environment::thread_id() const {
923
7732
  return thread_id_;
924
}
925
926
16553
inline worker::Worker* Environment::worker_context() const {
927
16553
  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
4485708
inline bool Environment::is_stopping() const {
953
4485708
  return is_stopping_.load();
954
}
955
956
5940
inline void Environment::set_stopping(bool value) {
957
5940
  is_stopping_.store(value);
958
5940
}
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
42478
inline performance::PerformanceState* Environment::performance_state() {
979
42478
  return performance_state_.get();
980
}
981
982
7929644
inline IsolateData* Environment::isolate_data() const {
983
7929644
  return isolate_data_;
984
}
985
986
69143
inline uv_buf_t Environment::allocate_managed_buffer(
987
    const size_t suggested_size) {
988
138286
  NoArrayBufferZeroFillScope no_zero_fill_scope(isolate_data());
989
  std::unique_ptr<v8::BackingStore> bs =
990
69143
      v8::ArrayBuffer::NewBackingStore(isolate(), suggested_size);
991
69143
  uv_buf_t buf = uv_buf_init(static_cast<char*>(bs->Data()), bs->ByteLength());
992
69143
  released_allocated_buffers_.emplace(buf.base, std::move(bs));
993
69143
  return buf;
994
}
995
996
83786
inline std::unique_ptr<v8::BackingStore> Environment::release_managed_buffer(
997
    const uv_buf_t& buf) {
998
83786
  std::unique_ptr<v8::BackingStore> bs;
999
83786
  if (buf.base != nullptr) {
1000
69143
    auto it = released_allocated_buffers_.find(buf.base);
1001
69143
    CHECK_NE(it, released_allocated_buffers_.end());
1002
69143
    bs = std::move(it->second);
1003
69143
    released_allocated_buffers_.erase(it);
1004
  }
1005
83786
  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
1185997
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
1185997
                                   c_function);
1058
}
1059
1060
282833
inline void Environment::SetMethod(v8::Local<v8::Object> that,
1061
                                   const char* name,
1062
                                   v8::FunctionCallback callback) {
1063
282833
  v8::Local<v8::Context> context = isolate()->GetCurrentContext();
1064
  v8::Local<v8::Function> function =
1065
282833
      NewFunctionTemplate(callback, v8::Local<v8::Signature>(),
1066
                          v8::ConstructorBehavior::kThrow,
1067
282833
                          v8::SideEffectType::kHasSideEffect)
1068
282833
          ->GetFunction(context)
1069
282833
          .ToLocalChecked();
1070
  // kInternalized strings are created in the old space.
1071
282833
  const v8::NewStringType type = v8::NewStringType::kInternalized;
1072
  v8::Local<v8::String> name_string =
1073
565666
      v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1074
565666
  that->Set(context, name_string, function).Check();
1075
282833
  function->SetName(name_string);  // NODE_SET_METHOD() compatibility.
1076
282833
}
1077
1078
1708
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
1708
  v8::Local<v8::Context> context = isolate()->GetCurrentContext();
1083
  v8::Local<v8::Function> function =
1084
1708
      NewFunctionTemplate(slow_callback,
1085
                          v8::Local<v8::Signature>(),
1086
                          v8::ConstructorBehavior::kThrow,
1087
                          v8::SideEffectType::kHasNoSideEffect,
1088
1708
                          c_function)
1089
1708
          ->GetFunction(context)
1090
1708
          .ToLocalChecked();
1091
1708
  const v8::NewStringType type = v8::NewStringType::kInternalized;
1092
  v8::Local<v8::String> name_string =
1093
3416
      v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1094
1708
  that->Set(context, name_string, function).Check();
1095
1708
}
1096
1097
77052
inline void Environment::SetMethodNoSideEffect(v8::Local<v8::Object> that,
1098
                                               const char* name,
1099
                                               v8::FunctionCallback callback) {
1100
77052
  v8::Local<v8::Context> context = isolate()->GetCurrentContext();
1101
  v8::Local<v8::Function> function =
1102
77052
      NewFunctionTemplate(callback, v8::Local<v8::Signature>(),
1103
                          v8::ConstructorBehavior::kThrow,
1104
77052
                          v8::SideEffectType::kHasNoSideEffect)
1105
77052
          ->GetFunction(context)
1106
77052
          .ToLocalChecked();
1107
  // kInternalized strings are created in the old space.
1108
77052
  const v8::NewStringType type = v8::NewStringType::kInternalized;
1109
  v8::Local<v8::String> name_string =
1110
154104
      v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1111
154104
  that->Set(context, name_string, function).Check();
1112
77052
  function->SetName(name_string);  // NODE_SET_METHOD() compatibility.
1113
77052
}
1114
1115
573161
inline void Environment::SetProtoMethod(v8::Local<v8::FunctionTemplate> that,
1116
                                        const char* name,
1117
                                        v8::FunctionCallback callback) {
1118
573161
  v8::Local<v8::Signature> signature = v8::Signature::New(isolate(), that);
1119
  v8::Local<v8::FunctionTemplate> t =
1120
      NewFunctionTemplate(callback, signature, v8::ConstructorBehavior::kThrow,
1121
573161
                          v8::SideEffectType::kHasSideEffect);
1122
  // kInternalized strings are created in the old space.
1123
573161
  const v8::NewStringType type = v8::NewStringType::kInternalized;
1124
  v8::Local<v8::String> name_string =
1125
1146322
      v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1126
1146322
  that->PrototypeTemplate()->Set(name_string, t);
1127
573161
  t->SetClassName(name_string);  // NODE_SET_PROTOTYPE_METHOD() compatibility.
1128
573161
}
1129
1130
80814
inline void Environment::SetProtoMethodNoSideEffect(
1131
    v8::Local<v8::FunctionTemplate> that,
1132
    const char* name,
1133
    v8::FunctionCallback callback) {
1134
80814
  v8::Local<v8::Signature> signature = v8::Signature::New(isolate(), that);
1135
  v8::Local<v8::FunctionTemplate> t =
1136
      NewFunctionTemplate(callback, signature, v8::ConstructorBehavior::kThrow,
1137
80814
                          v8::SideEffectType::kHasNoSideEffect);
1138
  // kInternalized strings are created in the old space.
1139
80814
  const v8::NewStringType type = v8::NewStringType::kInternalized;
1140
  v8::Local<v8::String> name_string =
1141
161628
      v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1142
161628
  that->PrototypeTemplate()->Set(name_string, t);
1143
80814
  t->SetClassName(name_string);  // NODE_SET_PROTOTYPE_METHOD() compatibility.
1144
80814
}
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
107616
inline void Environment::SetConstructorFunction(
1162
    v8::Local<v8::Object> that,
1163
    const char* name,
1164
    v8::Local<v8::FunctionTemplate> tmpl,
1165
    SetConstructorFunctionFlag flag) {
1166
107616
  SetConstructorFunction(that, OneByteString(isolate(), name), tmpl, flag);
1167
107616
}
1168
1169
111886
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
111886
  if (LIKELY(flag == SetConstructorFunctionFlag::SET_CLASS_NAME))
1175
99006
    tmpl->SetClassName(name);
1176
111886
  that->Set(
1177
      context(),
1178
      name,
1179
223772
      tmpl->GetFunction(context()).ToLocalChecked()).Check();
1180
111886
}
1181
1182
1444484
void Environment::AddCleanupHook(CleanupCallback fn, void* arg) {
1183
2888968
  auto insertion_info = cleanup_hooks_.emplace(CleanupHookCallback {
1184
1444484
    fn, arg, cleanup_hook_counter_++
1185
1444484
  });
1186
  // Make sure there was no existing element with these values.
1187
1444484
  CHECK_EQ(insertion_info.second, true);
1188
1444484
}
1189
1190
1427953
void Environment::RemoveCleanupHook(CleanupCallback fn, void* arg) {
1191
1427953
  CleanupHookCallback search { fn, arg, 0 };
1192
1427953
  cleanup_hooks_.erase(search);
1193
1427953
}
1194
1195
3168440
size_t CleanupHookCallback::Hash::operator()(
1196
    const CleanupHookCallback& cb) const {
1197
3168440
  return std::hash<void*>()(cb.arg_);
1198
}
1199
1200
1580751
bool CleanupHookCallback::Equal::operator()(
1201
    const CleanupHookCallback& a, const CleanupHookCallback& b) const {
1202

1580751
  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
2813261
void Environment::modify_base_object_count(int64_t delta) {
1233
2813261
  base_object_count_ += delta;
1234
2813261
}
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
797
void Environment::set_process_exit_handler(
1250
    std::function<void(Environment*, int)>&& handler) {
1251
797
  process_exit_handler_ = std::move(handler);
1252
797
}
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
42497
  PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP)
1263
919436
  PER_ISOLATE_SYMBOL_PROPERTIES(VY)
1264
7810292
  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
42497
  PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP)
1278
798079
  PER_ISOLATE_SYMBOL_PROPERTIES(VY)
1279
11236274
  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
1211642
  ENVIRONMENT_STRONG_PERSISTENT_TEMPLATES(V)
1293
6121763
  ENVIRONMENT_STRONG_PERSISTENT_VALUES(V)
1294
#undef V
1295
1296
9061572
v8::Local<v8::Context> Environment::context() const {
1297
9061572
  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_