GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: env-inl.h Lines: 455 457 99.6 %
Date: 2022-09-07 04:19:57 Branches: 62 78 79.5 %

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 "node_realm-inl.h"
35
#include "util-inl.h"
36
#include "uv.h"
37
#include "v8.h"
38
39
#include <cstddef>
40
#include <cstdint>
41
42
#include <utility>
43
44
namespace node {
45
46
116180
NoArrayBufferZeroFillScope::NoArrayBufferZeroFillScope(
47
116180
    IsolateData* isolate_data)
48
116180
    : node_allocator_(isolate_data->node_allocator()) {
49
116180
  if (node_allocator_ != nullptr) node_allocator_->zero_fill_field()[0] = 0;
50
116180
}
51
52
232360
NoArrayBufferZeroFillScope::~NoArrayBufferZeroFillScope() {
53
116180
  if (node_allocator_ != nullptr) node_allocator_->zero_fill_field()[0] = 1;
54
116180
}
55
56
2373
inline v8::Isolate* IsolateData::isolate() const {
57
2373
  return isolate_;
58
}
59
60
1295730
inline uv_loop_t* IsolateData::event_loop() const {
61
1295730
  return event_loop_;
62
}
63
64
122976
inline NodeArrayBufferAllocator* IsolateData::node_allocator() const {
65
122976
  return node_allocator_;
66
}
67
68
85374
inline MultiIsolatePlatform* IsolateData::platform() const {
69
85374
  return platform_;
70
}
71
72
731
inline void IsolateData::set_worker_context(worker::Worker* context) {
73
731
  CHECK_NULL(worker_context_);  // Should be set only once.
74
731
  worker_context_ = context;
75
731
}
76
77
16435
inline worker::Worker* IsolateData::worker_context() const {
78
16435
  return worker_context_;
79
}
80
81
213937
inline v8::Local<v8::String> IsolateData::async_wrap_provider(int index) const {
82
213937
  return async_wrap_providers_[index].Get(isolate_);
83
}
84
85
2682523
inline AliasedUint32Array& AsyncHooks::fields() {
86
2682523
  return fields_;
87
}
88
89
1673586
inline AliasedFloat64Array& AsyncHooks::async_id_fields() {
90
1673586
  return async_id_fields_;
91
}
92
93
780
inline AliasedFloat64Array& AsyncHooks::async_ids_stack() {
94
780
  return async_ids_stack_;
95
}
96
97
844022
v8::Local<v8::Array> AsyncHooks::js_execution_async_resources() {
98
844022
  if (UNLIKELY(js_execution_async_resources_.IsEmpty())) {
99
780
    js_execution_async_resources_.Reset(
100
1560
        env()->isolate(), v8::Array::New(env()->isolate()));
101
  }
102
844022
  return PersistentToLocal::Strong(js_execution_async_resources_);
103
}
104
105
2406
v8::Local<v8::Object> AsyncHooks::native_execution_async_resource(size_t i) {
106
2406
  if (i >= native_execution_async_resources_.size()) return {};
107
2406
  return native_execution_async_resources_[i];
108
}
109
110
213589
inline v8::Local<v8::String> AsyncHooks::provider_string(int idx) {
111
213589
  return env()->isolate_data()->async_wrap_provider(idx);
112
}
113
114
1
inline void AsyncHooks::no_force_checks() {
115
1
  fields_[kCheck] -= 1;
116
1
}
117
118
424803
inline Environment* AsyncHooks::env() {
119
424803
  return Environment::ForAsyncHooks(this);
120
}
121
122
424803
Environment* Environment::ForAsyncHooks(AsyncHooks* hooks) {
123
424803
  return ContainerOf(&Environment::async_hooks_, hooks);
124
}
125
126
814823
inline size_t Environment::async_callback_scope_depth() const {
127
814823
  return async_callback_scope_depth_;
128
}
129
130
829055
inline void Environment::PushAsyncCallbackScope() {
131
829055
  async_callback_scope_depth_++;
132
829055
}
133
134
828484
inline void Environment::PopAsyncCallbackScope() {
135
828484
  async_callback_scope_depth_--;
136
828484
}
137
138
780
inline AliasedUint32Array& ImmediateInfo::fields() {
139
780
  return fields_;
140
}
141
142
201164
inline uint32_t ImmediateInfo::count() const {
143
201164
  return fields_[kCount];
144
}
145
146
295340
inline uint32_t ImmediateInfo::ref_count() const {
147
295340
  return fields_[kRefCount];
148
}
149
150
43539
inline bool ImmediateInfo::has_outstanding() const {
151
43539
  return fields_[kHasOutstanding] == 1;
152
}
153
154
33812
inline void ImmediateInfo::ref_count_inc(uint32_t increment) {
155
33812
  fields_[kRefCount] += increment;
156
33812
}
157
158
218940
inline void ImmediateInfo::ref_count_dec(uint32_t decrement) {
159
218940
  fields_[kRefCount] -= decrement;
160
218940
}
161
162
780
inline AliasedUint8Array& TickInfo::fields() {
163
780
  return fields_;
164
}
165
166
1483635
inline bool TickInfo::has_tick_scheduled() const {
167
1483635
  return fields_[kHasTickScheduled] == 1;
168
}
169
170
536239
inline bool TickInfo::has_rejection_to_warn() const {
171
536239
  return fields_[kHasRejectionToWarn] == 1;
172
}
173
174
78484
inline Environment* Environment::GetCurrent(v8::Isolate* isolate) {
175
78484
  if (UNLIKELY(!isolate->InContext())) return nullptr;
176
153810
  v8::HandleScope handle_scope(isolate);
177
76905
  return GetCurrent(isolate->GetCurrentContext());
178
}
179
180
7805224
inline Environment* Environment::GetCurrent(v8::Local<v8::Context> context) {
181
7805224
  if (UNLIKELY(!ContextEmbedderTag::IsNodeContext(context))) {
182
13
    return nullptr;
183
  }
184
  return static_cast<Environment*>(
185
7805211
      context->GetAlignedPointerFromEmbedderData(
186
7805211
          ContextEmbedderIndex::kEnvironment));
187
}
188
189
5914735
inline Environment* Environment::GetCurrent(
190
    const v8::FunctionCallbackInfo<v8::Value>& info) {
191
5914735
  return GetCurrent(info.GetIsolate()->GetCurrentContext());
192
}
193
194
template <typename T>
195
2190284
inline Environment* Environment::GetCurrent(
196
    const v8::PropertyCallbackInfo<T>& info) {
197
2190284
  return GetCurrent(info.GetIsolate()->GetCurrentContext());
198
}
199
200
template <typename T, typename U>
201
inline T* Environment::GetBindingData(const v8::PropertyCallbackInfo<U>& info) {
202
  return GetBindingData<T>(info.GetIsolate()->GetCurrentContext());
203
}
204
205
template <typename T>
206
1017483
inline T* Environment::GetBindingData(
207
    const v8::FunctionCallbackInfo<v8::Value>& info) {
208
1017483
  return GetBindingData<T>(info.GetIsolate()->GetCurrentContext());
209
}
210
211
template <typename T>
212
1017485
inline T* Environment::GetBindingData(v8::Local<v8::Context> context) {
213
  BindingDataStore* map = static_cast<BindingDataStore*>(
214
1017485
      context->GetAlignedPointerFromEmbedderData(
215
          ContextEmbedderIndex::kBindingListIndex));
216
  DCHECK_NOT_NULL(map);
217
1017485
  auto it = map->find(T::type_name);
218
1017485
  if (UNLIKELY(it == map->end())) return nullptr;
219
1017485
  T* result = static_cast<T*>(it->second.get());
220
  DCHECK_NOT_NULL(result);
221
  DCHECK_EQ(result->env(), GetCurrent(context));
222
1017485
  return result;
223
}
224
225
template <typename T>
226
26177
inline T* Environment::AddBindingData(
227
    v8::Local<v8::Context> context,
228
    v8::Local<v8::Object> target) {
229
  DCHECK_EQ(GetCurrent(context), this);
230
  // This won't compile if T is not a BaseObject subclass.
231
52354
  BaseObjectPtr<T> item = MakeDetachedBaseObject<T>(this, target);
232
  BindingDataStore* map = static_cast<BindingDataStore*>(
233
26177
      context->GetAlignedPointerFromEmbedderData(
234
          ContextEmbedderIndex::kBindingListIndex));
235
  DCHECK_NOT_NULL(map);
236
26177
  auto result = map->emplace(T::type_name, item);
237
26177
  CHECK(result.second);
238
  DCHECK_EQ(GetBindingData<T>(context), item.get());
239
26177
  return item.get();
240
}
241
242
26006117
inline v8::Isolate* Environment::isolate() const {
243
26006117
  return isolate_;
244
}
245
246
7593
inline Environment* Environment::from_timer_handle(uv_timer_t* handle) {
247
7593
  return ContainerOf(&Environment::timer_handle_, handle);
248
}
249
250
32091
inline uv_timer_t* Environment::timer_handle() {
251
32091
  return &timer_handle_;
252
}
253
254
201164
inline Environment* Environment::from_immediate_check_handle(
255
    uv_check_t* handle) {
256
201164
  return ContainerOf(&Environment::immediate_check_handle_, handle);
257
}
258
259
24848
inline uv_check_t* Environment::immediate_check_handle() {
260
24848
  return &immediate_check_handle_;
261
}
262
263
247639
inline uv_idle_t* Environment::immediate_idle_handle() {
264
247639
  return &immediate_idle_handle_;
265
}
266
267
37272
inline void Environment::RegisterHandleCleanup(uv_handle_t* handle,
268
                                               HandleCleanupCb cb,
269
                                               void* arg) {
270
37272
  handle_cleanup_queue_.push_back(HandleCleanup{handle, cb, arg});
271
37272
}
272
273
template <typename T, typename OnCloseCallback>
274
38975
inline void Environment::CloseHandle(T* handle, OnCloseCallback callback) {
275
38815
  handle_cleanup_waiting_++;
276
  static_assert(sizeof(T) >= sizeof(uv_handle_t), "T is a libuv handle");
277
  static_assert(offsetof(T, data) == offsetof(uv_handle_t, data),
278
                "T is a libuv handle");
279
  static_assert(offsetof(T, close_cb) == offsetof(uv_handle_t, close_cb),
280
                "T is a libuv handle");
281
  struct CloseData {
282
    Environment* env;
283
    OnCloseCallback callback;
284
    void* original_data;
285
  };
286
38895
  handle->data = new CloseData { this, callback, handle->data };
287
39215
  uv_close(reinterpret_cast<uv_handle_t*>(handle), [](uv_handle_t* handle) {
288
77630
    std::unique_ptr<CloseData> data { static_cast<CloseData*>(handle->data) };
289
38895
    data->env->handle_cleanup_waiting_--;
290
38895
    handle->data = data->original_data;
291
38895
    data->callback(reinterpret_cast<T*>(handle));
292
  });
293
38895
}
294
295
94167
void Environment::IncreaseWaitingRequestCounter() {
296
94167
  request_waiting_++;
297
94167
}
298
299
94158
void Environment::DecreaseWaitingRequestCounter() {
300
94158
  request_waiting_--;
301
94158
  CHECK_GE(request_waiting_, 0);
302
94158
}
303
304
1289484
inline uv_loop_t* Environment::event_loop() const {
305
1289484
  return isolate_data()->event_loop();
306
}
307
308
#if HAVE_INSPECTOR
309
70866
inline bool Environment::is_in_inspector_console_call() const {
310
70866
  return is_in_inspector_console_call_;
311
}
312
313
141730
inline void Environment::set_is_in_inspector_console_call(bool value) {
314
141730
  is_in_inspector_console_call_ = value;
315
141730
}
316
#endif
317
318
6035262
inline AsyncHooks* Environment::async_hooks() {
319
6035262
  return &async_hooks_;
320
}
321
322
793575
inline ImmediateInfo* Environment::immediate_info() {
323
793575
  return &immediate_info_;
324
}
325
326
742639
inline TickInfo* Environment::tick_info() {
327
742639
  return &tick_info_;
328
}
329
330
100271
inline uint64_t Environment::timer_base() const {
331
100271
  return timer_base_;
332
}
333
334
1425380
inline std::shared_ptr<KVStore> Environment::env_vars() {
335
1425380
  return env_vars_;
336
}
337
338
6965
inline void Environment::set_env_vars(std::shared_ptr<KVStore> env_vars) {
339
6965
  env_vars_ = env_vars;
340
6965
}
341
342
22
inline bool Environment::printed_error() const {
343
22
  return printed_error_;
344
}
345
346
22
inline void Environment::set_printed_error(bool value) {
347
22
  printed_error_ = value;
348
22
}
349
350
11176
inline void Environment::set_trace_sync_io(bool value) {
351
11176
  trace_sync_io_ = value;
352
11176
}
353
354
124
inline bool Environment::abort_on_uncaught_exception() const {
355
124
  return options_->abort_on_uncaught_exception;
356
}
357
358
inline void Environment::set_force_context_aware(bool value) {
359
  options_->force_context_aware = value;
360
}
361
362
44
inline bool Environment::force_context_aware() const {
363
44
  return options_->force_context_aware;
364
}
365
366
11544
inline void Environment::set_exiting(bool value) {
367
11544
  exiting_[0] = value ? 1 : 0;
368
11544
}
369
370
780
inline AliasedUint32Array& Environment::exiting() {
371
780
  return exiting_;
372
}
373
374
723
inline void Environment::set_abort_on_uncaught_exception(bool value) {
375
723
  options_->abort_on_uncaught_exception = value;
376
723
}
377
378
810
inline AliasedUint32Array& Environment::should_abort_on_uncaught_toggle() {
379
810
  return should_abort_on_uncaught_toggle_;
380
}
381
382
307334
inline AliasedInt32Array& Environment::stream_base_state() {
383
307334
  return stream_base_state_;
384
}
385
386
51680
inline uint32_t Environment::get_next_module_id() {
387
51680
  return module_id_counter_++;
388
}
389
5673
inline uint32_t Environment::get_next_script_id() {
390
5673
  return script_id_counter_++;
391
}
392
36950
inline uint32_t Environment::get_next_function_id() {
393
36950
  return function_id_counter_++;
394
}
395
396
108492
ShouldNotAbortOnUncaughtScope::ShouldNotAbortOnUncaughtScope(
397
108492
    Environment* env)
398
108492
    : env_(env) {
399
108492
  env_->PushShouldNotAbortOnUncaughtScope();
400
108492
}
401
402
216978
ShouldNotAbortOnUncaughtScope::~ShouldNotAbortOnUncaughtScope() {
403
108489
  Close();
404
108489
}
405
406
108681
void ShouldNotAbortOnUncaughtScope::Close() {
407
108681
  if (env_ != nullptr) {
408
108489
    env_->PopShouldNotAbortOnUncaughtScope();
409
108489
    env_ = nullptr;
410
  }
411
108681
}
412
413
108492
inline void Environment::PushShouldNotAbortOnUncaughtScope() {
414
108492
  should_not_abort_scope_counter_++;
415
108492
}
416
417
108489
inline void Environment::PopShouldNotAbortOnUncaughtScope() {
418
108489
  should_not_abort_scope_counter_--;
419
108489
}
420
421
1
inline bool Environment::inside_should_not_abort_on_uncaught_scope() const {
422
1
  return should_not_abort_scope_counter_ > 0;
423
}
424
425
427044
inline std::vector<double>* Environment::destroy_async_id_list() {
426
427044
  return &destroy_async_id_list_;
427
}
428
429
214144
inline double Environment::new_async_id() {
430
214144
  async_hooks()->async_id_fields()[AsyncHooks::kAsyncIdCounter] += 1;
431
214144
  return async_hooks()->async_id_fields()[AsyncHooks::kAsyncIdCounter];
432
}
433
434
246250
inline double Environment::execution_async_id() {
435
246250
  return async_hooks()->async_id_fields()[AsyncHooks::kExecutionAsyncId];
436
}
437
438
66036
inline double Environment::trigger_async_id() {
439
66036
  return async_hooks()->async_id_fields()[AsyncHooks::kTriggerAsyncId];
440
}
441
442
214141
inline double Environment::get_default_trigger_async_id() {
443
  double default_trigger_async_id =
444
214141
    async_hooks()->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId];
445
  // If defaultTriggerAsyncId isn't set, use the executionAsyncId
446
214141
  if (default_trigger_async_id < 0)
447
180146
    default_trigger_async_id = execution_async_id();
448
214141
  return default_trigger_async_id;
449
}
450
451
79237
inline std::shared_ptr<EnvironmentOptions> Environment::options() {
452
79237
  return options_;
453
}
454
455
17595
inline const std::vector<std::string>& Environment::argv() {
456
17595
  return argv_;
457
}
458
459
6886
inline const std::vector<std::string>& Environment::exec_argv() {
460
6886
  return exec_argv_;
461
}
462
463
12424
inline const std::string& Environment::exec_path() const {
464
12424
  return exec_path_;
465
}
466
467
#if HAVE_INSPECTOR
468
6207
inline void Environment::set_coverage_directory(const char* dir) {
469
6207
  coverage_directory_ = std::string(dir);
470
6207
}
471
472
6231
inline void Environment::set_coverage_connection(
473
    std::unique_ptr<profiler::V8CoverageConnection> connection) {
474
6231
  CHECK_NULL(coverage_connection_);
475
6231
  std::swap(coverage_connection_, connection);
476
6231
}
477
478
18690
inline profiler::V8CoverageConnection* Environment::coverage_connection() {
479
18690
  return coverage_connection_.get();
480
}
481
482
6189
inline const std::string& Environment::coverage_directory() const {
483
6189
  return coverage_directory_;
484
}
485
486
12
inline void Environment::set_cpu_profiler_connection(
487
    std::unique_ptr<profiler::V8CpuProfilerConnection> connection) {
488
12
  CHECK_NULL(cpu_profiler_connection_);
489
12
  std::swap(cpu_profiler_connection_, connection);
490
12
}
491
492
inline profiler::V8CpuProfilerConnection*
493
6245
Environment::cpu_profiler_connection() {
494
6245
  return cpu_profiler_connection_.get();
495
}
496
497
12
inline void Environment::set_cpu_prof_interval(uint64_t interval) {
498
12
  cpu_prof_interval_ = interval;
499
12
}
500
501
12
inline uint64_t Environment::cpu_prof_interval() const {
502
12
  return cpu_prof_interval_;
503
}
504
505
12
inline void Environment::set_cpu_prof_name(const std::string& name) {
506
12
  cpu_prof_name_ = name;
507
12
}
508
509
12
inline const std::string& Environment::cpu_prof_name() const {
510
12
  return cpu_prof_name_;
511
}
512
513
12
inline void Environment::set_cpu_prof_dir(const std::string& dir) {
514
12
  cpu_prof_dir_ = dir;
515
12
}
516
517
12
inline const std::string& Environment::cpu_prof_dir() const {
518
12
  return cpu_prof_dir_;
519
}
520
521
12
inline void Environment::set_heap_profiler_connection(
522
    std::unique_ptr<profiler::V8HeapProfilerConnection> connection) {
523
12
  CHECK_NULL(heap_profiler_connection_);
524
12
  std::swap(heap_profiler_connection_, connection);
525
12
}
526
527
inline profiler::V8HeapProfilerConnection*
528
6233
Environment::heap_profiler_connection() {
529
6233
  return heap_profiler_connection_.get();
530
}
531
532
12
inline void Environment::set_heap_prof_name(const std::string& name) {
533
12
  heap_prof_name_ = name;
534
12
}
535
536
12
inline const std::string& Environment::heap_prof_name() const {
537
12
  return heap_prof_name_;
538
}
539
540
12
inline void Environment::set_heap_prof_dir(const std::string& dir) {
541
12
  heap_prof_dir_ = dir;
542
12
}
543
544
12
inline const std::string& Environment::heap_prof_dir() const {
545
12
  return heap_prof_dir_;
546
}
547
548
12
inline void Environment::set_heap_prof_interval(uint64_t interval) {
549
12
  heap_prof_interval_ = interval;
550
12
}
551
552
12
inline uint64_t Environment::heap_prof_interval() const {
553
12
  return heap_prof_interval_;
554
}
555
556
#endif  // HAVE_INSPECTOR
557
558
inline
559
12708
std::shared_ptr<ExclusiveAccess<HostPort>> Environment::inspector_host_port() {
560
12708
  return inspector_host_port_;
561
}
562
563
66113
inline std::shared_ptr<PerIsolateOptions> IsolateData::options() {
564
66113
  return options_;
565
}
566
567
288
inline void IsolateData::set_options(
568
    std::shared_ptr<PerIsolateOptions> options) {
569
288
  options_ = std::move(options);
570
288
}
571
572
template <typename Fn>
573
92675
void Environment::SetImmediate(Fn&& cb, CallbackFlags::Flags flags) {
574
185350
  auto callback = native_immediates_.CreateCallback(std::move(cb), flags);
575
92675
  native_immediates_.Push(std::move(callback));
576
577
92675
  if (flags & CallbackFlags::kRefed) {
578
67610
    if (immediate_info()->ref_count() == 0)
579
50358
      ToggleImmediateRef(true);
580
67610
    immediate_info()->ref_count_inc(1);
581
  }
582
92675
}
583
584
template <typename Fn>
585
2308
void Environment::SetImmediateThreadsafe(Fn&& cb, CallbackFlags::Flags flags) {
586
4616
  auto callback = native_immediates_threadsafe_.CreateCallback(
587
2308
      std::move(cb), flags);
588
  {
589
4616
    Mutex::ScopedLock lock(native_immediates_threadsafe_mutex_);
590
2308
    native_immediates_threadsafe_.Push(std::move(callback));
591
2308
    if (task_queues_async_initialized_)
592
2299
      uv_async_send(&task_queues_async_);
593
  }
594
2308
}
595
596
template <typename Fn>
597
10681
void Environment::RequestInterrupt(Fn&& cb) {
598
21362
  auto callback = native_immediates_interrupts_.CreateCallback(
599
10681
      std::move(cb), CallbackFlags::kRefed);
600
  {
601
21362
    Mutex::ScopedLock lock(native_immediates_threadsafe_mutex_);
602
10681
    native_immediates_interrupts_.Push(std::move(callback));
603
10681
    if (task_queues_async_initialized_)
604
4329
      uv_async_send(&task_queues_async_);
605
  }
606
10681
  RequestInterruptFromV8();
607
10681
}
608
609
3211474
inline bool Environment::can_call_into_js() const {
610

3211474
  return can_call_into_js_ && !is_stopping();
611
}
612
613
1643
inline void Environment::set_can_call_into_js(bool can_call_into_js) {
614
1643
  can_call_into_js_ = can_call_into_js;
615
1643
}
616
617
1566511
inline bool Environment::has_run_bootstrapping_code() const {
618
1566511
  return principal_realm_->has_run_bootstrapping_code();
619
}
620
621
19
inline bool Environment::has_serialized_options() const {
622
19
  return has_serialized_options_;
623
}
624
625
6859
inline void Environment::set_has_serialized_options(bool value) {
626
6859
  has_serialized_options_ = value;
627
6859
}
628
629
9517
inline bool Environment::is_main_thread() const {
630
9517
  return worker_context() == nullptr;
631
}
632
633
1152
inline bool Environment::no_native_addons() const {
634
2300
  return (flags_ & EnvironmentFlags::kNoNativeAddons) ||
635
2300
          !options_->allow_native_addons;
636
}
637
638
6199
inline bool Environment::should_not_register_esm_loader() const {
639
6199
  return flags_ & EnvironmentFlags::kNoRegisterESMLoader;
640
}
641
642
16228
inline bool Environment::owns_process_state() const {
643
16228
  return flags_ & EnvironmentFlags::kOwnsProcessState;
644
}
645
646
6240
inline bool Environment::owns_inspector() const {
647
6240
  return flags_ & EnvironmentFlags::kOwnsInspector;
648
}
649
650
16904
inline bool Environment::should_create_inspector() const {
651
33808
  return (flags_ & EnvironmentFlags::kNoCreateInspector) == 0 &&
652

16904
         !options_->test_runner && !options_->watch_mode;
653
}
654
655
136998
inline bool Environment::tracks_unmanaged_fds() const {
656
136998
  return flags_ & EnvironmentFlags::kTrackUnmanagedFds;
657
}
658
659
3935
inline bool Environment::hide_console_windows() const {
660
3935
  return flags_ & EnvironmentFlags::kHideConsoleWindows;
661
}
662
663
7159
inline bool Environment::no_global_search_paths() const {
664
14318
  return (flags_ & EnvironmentFlags::kNoGlobalSearchPaths) ||
665
14318
         !options_->global_search_paths;
666
}
667
668
1740
inline bool Environment::no_browser_globals() const {
669
  // configure --no-browser-globals
670
#ifdef NODE_NO_BROWSER_GLOBALS
671
  return true;
672
#else
673
1740
  return flags_ & EnvironmentFlags::kNoBrowserGlobals;
674
#endif
675
}
676
677
4
bool Environment::filehandle_close_warning() const {
678
4
  return emit_filehandle_warning_;
679
}
680
681
3
void Environment::set_filehandle_close_warning(bool on) {
682
3
  emit_filehandle_warning_ = on;
683
3
}
684
685
6032
void Environment::set_source_maps_enabled(bool on) {
686
6032
  source_maps_enabled_ = on;
687
6032
}
688
689
1246
bool Environment::source_maps_enabled() const {
690
1246
  return source_maps_enabled_;
691
}
692
693
7783
inline uint64_t Environment::thread_id() const {
694
7783
  return thread_id_;
695
}
696
697
16435
inline worker::Worker* Environment::worker_context() const {
698
16435
  return isolate_data()->worker_context();
699
}
700
701
957
inline void Environment::add_sub_worker_context(worker::Worker* context) {
702
957
  sub_worker_contexts_.insert(context);
703
957
}
704
705
984
inline void Environment::remove_sub_worker_context(worker::Worker* context) {
706
984
  sub_worker_contexts_.erase(context);
707
984
}
708
709
template <typename Fn>
710
29
inline void Environment::ForEachWorker(Fn&& iterator) {
711
31
  for (worker::Worker* w : sub_worker_contexts_) iterator(w);
712
29
}
713
714
4806463
inline bool Environment::is_stopping() const {
715
4806463
  return is_stopping_.load();
716
}
717
718
6040
inline void Environment::set_stopping(bool value) {
719
6040
  is_stopping_.store(value);
720
6040
}
721
722
14
inline std::list<node_module>* Environment::extra_linked_bindings() {
723
14
  return &extra_linked_bindings_;
724
}
725
726
10
inline node_module* Environment::extra_linked_bindings_head() {
727
10
  return extra_linked_bindings_.size() > 0 ?
728
10
      &extra_linked_bindings_.front() : nullptr;
729
}
730
731
9
inline node_module* Environment::extra_linked_bindings_tail() {
732
9
  return extra_linked_bindings_.size() > 0 ?
733
9
      &extra_linked_bindings_.back() : nullptr;
734
}
735
736
19
inline const Mutex& Environment::extra_linked_bindings_mutex() const {
737
19
  return extra_linked_bindings_mutex_;
738
}
739
740
42881
inline performance::PerformanceState* Environment::performance_state() {
741
42881
  return performance_state_.get();
742
}
743
744
9139731
inline IsolateData* Environment::isolate_data() const {
745
9139731
  return isolate_data_;
746
}
747
748
8
inline void Environment::ThrowError(const char* errmsg) {
749
8
  ThrowError(v8::Exception::Error, errmsg);
750
8
}
751
752
inline void Environment::ThrowTypeError(const char* errmsg) {
753
  ThrowError(v8::Exception::TypeError, errmsg);
754
}
755
756
inline void Environment::ThrowRangeError(const char* errmsg) {
757
  ThrowError(v8::Exception::RangeError, errmsg);
758
}
759
760
8
inline void Environment::ThrowError(
761
    v8::Local<v8::Value> (*fun)(v8::Local<v8::String>),
762
    const char* errmsg) {
763
16
  v8::HandleScope handle_scope(isolate());
764
8
  isolate()->ThrowException(fun(OneByteString(isolate(), errmsg)));
765
8
}
766
767
7
inline void Environment::ThrowErrnoException(int errorno,
768
                                             const char* syscall,
769
                                             const char* message,
770
                                             const char* path) {
771
  isolate()->ThrowException(
772
7
      ErrnoException(isolate(), errorno, syscall, message, path));
773
7
}
774
775
15
inline void Environment::ThrowUVException(int errorno,
776
                                          const char* syscall,
777
                                          const char* message,
778
                                          const char* path,
779
                                          const char* dest) {
780
  isolate()->ThrowException(
781
15
      UVException(isolate(), errorno, syscall, message, path, dest));
782
15
}
783
784
1510566
void Environment::AddCleanupHook(CleanupCallback fn, void* arg) {
785
3021132
  auto insertion_info = cleanup_hooks_.emplace(CleanupHookCallback {
786
1510566
    fn, arg, cleanup_hook_counter_++
787
1510566
  });
788
  // Make sure there was no existing element with these values.
789
1510566
  CHECK_EQ(insertion_info.second, true);
790
1510566
}
791
792
1477950
void Environment::RemoveCleanupHook(CleanupCallback fn, void* arg) {
793
1477950
  CleanupHookCallback search { fn, arg, 0 };
794
1477950
  cleanup_hooks_.erase(search);
795
1477950
}
796
797
3364176
size_t CleanupHookCallback::Hash::operator()(
798
    const CleanupHookCallback& cb) const {
799
3364176
  return std::hash<void*>()(cb.arg_);
800
}
801
802
1683329
bool CleanupHookCallback::Equal::operator()(
803
    const CleanupHookCallback& a, const CleanupHookCallback& b) const {
804

1683329
  return a.fn_ == b.fn_ && a.arg_ == b.arg_;
805
}
806
807
688
BaseObject* CleanupHookCallback::GetBaseObject() const {
808
688
  if (fn_ == BaseObject::DeleteMe)
809
660
    return static_cast<BaseObject*>(arg_);
810
  else
811
28
    return nullptr;
812
}
813
814
template <typename T>
815
54
void Environment::ForEachBaseObject(T&& iterator) {
816
1406
  for (const auto& hook : cleanup_hooks_) {
817
1352
    BaseObject* obj = hook.GetBaseObject();
818
1352
    if (obj != nullptr)
819
1296
      iterator(obj);
820
  }
821
54
}
822
823
2899703
void Environment::modify_base_object_count(int64_t delta) {
824
2899703
  base_object_count_ += delta;
825
2899703
}
826
827
6248
int64_t Environment::base_object_count() const {
828
6248
  return base_object_count_;
829
}
830
831
6246
inline void Environment::set_base_object_created_by_bootstrap(int64_t count) {
832
6246
  base_object_created_by_bootstrap_ = base_object_count_;
833
6246
}
834
835
14
int64_t Environment::base_object_created_after_bootstrap() const {
836
14
  return base_object_count_ - base_object_created_by_bootstrap_;
837
}
838
839
19
void Environment::set_main_utf16(std::unique_ptr<v8::String::Value> str) {
840
19
  CHECK(!main_utf16_);
841
19
  main_utf16_ = std::move(str);
842
19
}
843
844
722
void Environment::set_process_exit_handler(
845
    std::function<void(Environment*, int)>&& handler) {
846
722
  process_exit_handler_ = std::move(handler);
847
722
}
848
849
#define VP(PropertyName, StringValue) V(v8::Private, PropertyName)
850
#define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName)
851
#define VS(PropertyName, StringValue) V(v8::String, PropertyName)
852
#define V(TypeName, PropertyName)                                             \
853
  inline                                                                      \
854
  v8::Local<TypeName> IsolateData::PropertyName() const {                     \
855
    return PropertyName ## _ .Get(isolate_);                                  \
856
  }
857
61113
  PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP)
858
1183932
  PER_ISOLATE_SYMBOL_PROPERTIES(VY)
859
8388541
  PER_ISOLATE_STRING_PROPERTIES(VS)
860
#undef V
861
#undef VS
862
#undef VY
863
#undef VP
864
865
#define V(PropertyName, TypeName)                                              \
866
  inline v8::Local<TypeName> IsolateData::PropertyName() const {               \
867
    return PropertyName##_.Get(isolate_);                                      \
868
  }                                                                            \
869
  inline void IsolateData::set_##PropertyName(v8::Local<TypeName> value) {     \
870
    PropertyName##_.Set(isolate_, value);                                      \
871
  }
872
1210392
  PER_ISOLATE_TEMPLATE_PROPERTIES(V)
873
#undef V
874
875
#define VP(PropertyName, StringValue) V(v8::Private, PropertyName)
876
#define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName)
877
#define VS(PropertyName, StringValue) V(v8::String, PropertyName)
878
#define V(TypeName, PropertyName)                                             \
879
  inline v8::Local<TypeName> Environment::PropertyName() const {              \
880
    return isolate_data()->PropertyName();                                    \
881
  }
882
61113
  PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP)
883
1064512
  PER_ISOLATE_SYMBOL_PROPERTIES(VY)
884
12121214
  PER_ISOLATE_STRING_PROPERTIES(VS)
885
#undef V
886
#undef VS
887
#undef VY
888
#undef VP
889
890
#define V(PropertyName, TypeName)                                              \
891
  inline v8::Local<TypeName> Environment::PropertyName() const {               \
892
    return isolate_data()->PropertyName();                                     \
893
  }                                                                            \
894
  inline void Environment::set_##PropertyName(v8::Local<TypeName> value) {     \
895
    DCHECK(isolate_data()->PropertyName().IsEmpty());                          \
896
    isolate_data()->set_##PropertyName(value);                                 \
897
  }
898
781905
  PER_ISOLATE_TEMPLATE_PROPERTIES(V)
899
#undef V
900
901
#define V(PropertyName, TypeName)                                              \
902
  inline v8::Local<TypeName> Environment::PropertyName() const {               \
903
    DCHECK_NOT_NULL(principal_realm_);                                         \
904
    return principal_realm_->PropertyName();                                   \
905
  }                                                                            \
906
  inline void Environment::set_##PropertyName(v8::Local<TypeName> value) {     \
907
    DCHECK_NOT_NULL(principal_realm_);                                         \
908
    principal_realm_->set_##PropertyName(value);                               \
909
  }
910
9513409
  PER_REALM_STRONG_PERSISTENT_VALUES(V)
911
#undef V
912
913
9145675
v8::Local<v8::Context> Environment::context() const {
914
9145675
  return principal_realm()->context();
915
}
916
917
9152829
Realm* Environment::principal_realm() const {
918
9152829
  return principal_realm_.get();
919
}
920
921
}  // namespace node
922
923
// These two files depend on each other. Including base_object-inl.h after this
924
// file is the easiest way to avoid issues with that circular dependency.
925
#include "base_object-inl.h"
926
927
#endif  // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
928
929
#endif  // SRC_ENV_INL_H_