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

3010422
  return can_call_into_js_ && !is_stopping();
619
}
620
621
1568
inline void Environment::set_can_call_into_js(bool can_call_into_js) {
622
1568
  can_call_into_js_ = can_call_into_js;
623
1568
}
624
625
1537260
inline bool Environment::has_run_bootstrapping_code() const {
626
1537260
  return has_run_bootstrapping_code_;
627
}
628
629
6094
inline void Environment::DoneBootstrapping() {
630
6094
  has_run_bootstrapping_code_ = true;
631
  // This adjusts the return value of base_object_created_after_bootstrap() so
632
  // that tests that check the count do not have to account for internally
633
  // created BaseObjects.
634
6094
  base_object_created_by_bootstrap_ = base_object_count_;
635
6094
}
636
637
19
inline bool Environment::has_serialized_options() const {
638
19
  return has_serialized_options_;
639
}
640
641
6654
inline void Environment::set_has_serialized_options(bool value) {
642
6654
  has_serialized_options_ = value;
643
6654
}
644
645
9401
inline bool Environment::is_main_thread() const {
646
9401
  return worker_context() == nullptr;
647
}
648
649
1138
inline bool Environment::no_native_addons() const {
650
2272
  return (flags_ & EnvironmentFlags::kNoNativeAddons) ||
651
2272
          !options_->allow_native_addons;
652
}
653
654
6053
inline bool Environment::should_not_register_esm_loader() const {
655
6053
  return flags_ & EnvironmentFlags::kNoRegisterESMLoader;
656
}
657
658
15859
inline bool Environment::owns_process_state() const {
659
15859
  return flags_ & EnvironmentFlags::kOwnsProcessState;
660
}
661
662
6088
inline bool Environment::owns_inspector() const {
663
6088
  return flags_ & EnvironmentFlags::kOwnsInspector;
664
}
665
666
16608
inline bool Environment::should_create_inspector() const {
667
16608
  return (flags_ & EnvironmentFlags::kNoCreateInspector) == 0;
668
}
669
670
125454
inline bool Environment::tracks_unmanaged_fds() const {
671
125454
  return flags_ & EnvironmentFlags::kTrackUnmanagedFds;
672
}
673
674
3799
inline bool Environment::hide_console_windows() const {
675
3799
  return flags_ & EnvironmentFlags::kHideConsoleWindows;
676
}
677
678
7014
inline bool Environment::no_global_search_paths() const {
679
14028
  return (flags_ & EnvironmentFlags::kNoGlobalSearchPaths) ||
680
14028
         !options_->global_search_paths;
681
}
682
683
1742
inline bool Environment::no_browser_globals() const {
684
  // configure --no-browser-globals
685
#ifdef NODE_NO_BROWSER_GLOBALS
686
  return true;
687
#else
688
1742
  return flags_ & EnvironmentFlags::kNoBrowserGlobals;
689
#endif
690
}
691
692
4
bool Environment::filehandle_close_warning() const {
693
4
  return emit_filehandle_warning_;
694
}
695
696
3
void Environment::set_filehandle_close_warning(bool on) {
697
3
  emit_filehandle_warning_ = on;
698
3
}
699
700
5890
void Environment::set_source_maps_enabled(bool on) {
701
5890
  source_maps_enabled_ = on;
702
5890
}
703
704
1657
bool Environment::source_maps_enabled() const {
705
1657
  return source_maps_enabled_;
706
}
707
708
7627
inline uint64_t Environment::thread_id() const {
709
7627
  return thread_id_;
710
}
711
712
16170
inline worker::Worker* Environment::worker_context() const {
713
16170
  return isolate_data()->worker_context();
714
}
715
716
958
inline void Environment::add_sub_worker_context(worker::Worker* context) {
717
958
  sub_worker_contexts_.insert(context);
718
958
}
719
720
985
inline void Environment::remove_sub_worker_context(worker::Worker* context) {
721
985
  sub_worker_contexts_.erase(context);
722
985
}
723
724
template <typename Fn>
725
25
inline void Environment::ForEachWorker(Fn&& iterator) {
726
27
  for (worker::Worker* w : sub_worker_contexts_) iterator(w);
727
25
}
728
729
4518707
inline bool Environment::is_stopping() const {
730
4518707
  return is_stopping_.load();
731
}
732
733
5879
inline void Environment::set_stopping(bool value) {
734
5879
  is_stopping_.store(value);
735
5879
}
736
737
14
inline std::list<node_module>* Environment::extra_linked_bindings() {
738
14
  return &extra_linked_bindings_;
739
}
740
741
10
inline node_module* Environment::extra_linked_bindings_head() {
742
10
  return extra_linked_bindings_.size() > 0 ?
743
10
      &extra_linked_bindings_.front() : nullptr;
744
}
745
746
9
inline node_module* Environment::extra_linked_bindings_tail() {
747
9
  return extra_linked_bindings_.size() > 0 ?
748
9
      &extra_linked_bindings_.back() : nullptr;
749
}
750
751
19
inline const Mutex& Environment::extra_linked_bindings_mutex() const {
752
19
  return extra_linked_bindings_mutex_;
753
}
754
755
42501
inline performance::PerformanceState* Environment::performance_state() {
756
42501
  return performance_state_.get();
757
}
758
759
8565637
inline IsolateData* Environment::isolate_data() const {
760
8565637
  return isolate_data_;
761
}
762
763
8
inline void Environment::ThrowError(const char* errmsg) {
764
8
  ThrowError(v8::Exception::Error, errmsg);
765
8
}
766
767
inline void Environment::ThrowTypeError(const char* errmsg) {
768
  ThrowError(v8::Exception::TypeError, errmsg);
769
}
770
771
inline void Environment::ThrowRangeError(const char* errmsg) {
772
  ThrowError(v8::Exception::RangeError, errmsg);
773
}
774
775
8
inline void Environment::ThrowError(
776
    v8::Local<v8::Value> (*fun)(v8::Local<v8::String>),
777
    const char* errmsg) {
778
16
  v8::HandleScope handle_scope(isolate());
779
8
  isolate()->ThrowException(fun(OneByteString(isolate(), errmsg)));
780
8
}
781
782
7
inline void Environment::ThrowErrnoException(int errorno,
783
                                             const char* syscall,
784
                                             const char* message,
785
                                             const char* path) {
786
  isolate()->ThrowException(
787
7
      ErrnoException(isolate(), errorno, syscall, message, path));
788
7
}
789
790
15
inline void Environment::ThrowUVException(int errorno,
791
                                          const char* syscall,
792
                                          const char* message,
793
                                          const char* path,
794
                                          const char* dest) {
795
  isolate()->ThrowException(
796
15
      UVException(isolate(), errorno, syscall, message, path, dest));
797
15
}
798
799
1465906
void Environment::AddCleanupHook(CleanupCallback fn, void* arg) {
800
2931812
  auto insertion_info = cleanup_hooks_.emplace(CleanupHookCallback {
801
1465906
    fn, arg, cleanup_hook_counter_++
802
1465906
  });
803
  // Make sure there was no existing element with these values.
804
1465906
  CHECK_EQ(insertion_info.second, true);
805
1465906
}
806
807
1438526
void Environment::RemoveCleanupHook(CleanupCallback fn, void* arg) {
808
1438526
  CleanupHookCallback search { fn, arg, 0 };
809
1438526
  cleanup_hooks_.erase(search);
810
1438526
}
811
812
3223811
size_t CleanupHookCallback::Hash::operator()(
813
    const CleanupHookCallback& cb) const {
814
3223811
  return std::hash<void*>()(cb.arg_);
815
}
816
817
1612880
bool CleanupHookCallback::Equal::operator()(
818
    const CleanupHookCallback& a, const CleanupHookCallback& b) const {
819

1612880
  return a.fn_ == b.fn_ && a.arg_ == b.arg_;
820
}
821
822
571
BaseObject* CleanupHookCallback::GetBaseObject() const {
823
571
  if (fn_ == BaseObject::DeleteMe)
824
543
    return static_cast<BaseObject*>(arg_);
825
  else
826
28
    return nullptr;
827
}
828
829
template <typename T>
830
48
void Environment::ForEachBaseObject(T&& iterator) {
831
1190
  for (const auto& hook : cleanup_hooks_) {
832
1142
    BaseObject* obj = hook.GetBaseObject();
833
1142
    if (obj != nullptr)
834
1086
      iterator(obj);
835
  }
836
}
837
838
template <typename T>
839
6
void Environment::ForEachBindingData(T&& iterator) {
840
  BindingDataStore* map = static_cast<BindingDataStore*>(
841
12
      context()->GetAlignedPointerFromEmbedderData(
842
          ContextEmbedderIndex::kBindingListIndex));
843
  DCHECK_NOT_NULL(map);
844
30
  for (auto& it : *map) {
845
24
    iterator(it.first, it.second);
846
  }
847
6
}
848
849
2819613
void Environment::modify_base_object_count(int64_t delta) {
850
2819613
  base_object_count_ += delta;
851
2819613
}
852
853
14
int64_t Environment::base_object_created_after_bootstrap() const {
854
14
  return base_object_count_ - base_object_created_by_bootstrap_;
855
}
856
857
2
int64_t Environment::base_object_count() const {
858
2
  return base_object_count_;
859
}
860
861
17
void Environment::set_main_utf16(std::unique_ptr<v8::String::Value> str) {
862
17
  CHECK(!main_utf16_);
863
17
  main_utf16_ = std::move(str);
864
17
}
865
866
722
void Environment::set_process_exit_handler(
867
    std::function<void(Environment*, int)>&& handler) {
868
722
  process_exit_handler_ = std::move(handler);
869
722
}
870
871
#define VP(PropertyName, StringValue) V(v8::Private, PropertyName)
872
#define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName)
873
#define VS(PropertyName, StringValue) V(v8::String, PropertyName)
874
#define V(TypeName, PropertyName)                                             \
875
  inline                                                                      \
876
  v8::Local<TypeName> IsolateData::PropertyName() const {                     \
877
    return PropertyName ## _ .Get(isolate_);                                  \
878
  }
879
60064
  PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP)
880
905236
  PER_ISOLATE_SYMBOL_PROPERTIES(VY)
881
7974430
  PER_ISOLATE_STRING_PROPERTIES(VS)
882
#undef V
883
#undef VS
884
#undef VY
885
#undef VP
886
887
#define V(PropertyName, TypeName)                                              \
888
  inline v8::Local<TypeName> IsolateData::PropertyName() const {               \
889
    return PropertyName##_.Get(isolate_);                                      \
890
  }                                                                            \
891
  inline void IsolateData::set_##PropertyName(v8::Local<TypeName> value) {     \
892
    PropertyName##_.Set(isolate_, value);                                      \
893
  }
894
1182164
  PER_ISOLATE_TEMPLATE_PROPERTIES(V)
895
#undef V
896
897
#define VP(PropertyName, StringValue) V(v8::Private, PropertyName)
898
#define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName)
899
#define VS(PropertyName, StringValue) V(v8::String, PropertyName)
900
#define V(TypeName, PropertyName)                                             \
901
  inline v8::Local<TypeName> Environment::PropertyName() const {              \
902
    return isolate_data()->PropertyName();                                    \
903
  }
904
60064
  PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP)
905
786841
  PER_ISOLATE_SYMBOL_PROPERTIES(VY)
906
11511803
  PER_ISOLATE_STRING_PROPERTIES(VS)
907
#undef V
908
#undef VS
909
#undef VY
910
#undef VP
911
912
#define V(PropertyName, TypeName)                                              \
913
  inline v8::Local<TypeName> Environment::PropertyName() const {               \
914
    return isolate_data()->PropertyName();                                     \
915
  }                                                                            \
916
  inline void Environment::set_##PropertyName(v8::Local<TypeName> value) {     \
917
    DCHECK(isolate_data()->PropertyName().IsEmpty());                          \
918
    isolate_data()->set_##PropertyName(value);                                 \
919
  }
920
888681
  PER_ISOLATE_TEMPLATE_PROPERTIES(V)
921
#undef V
922
923
#define V(PropertyName, TypeName)                                              \
924
  inline v8::Local<TypeName> Environment::PropertyName() const {               \
925
    return PersistentToLocal::Strong(PropertyName##_);                         \
926
  }                                                                            \
927
  inline void Environment::set_##PropertyName(v8::Local<TypeName> value) {     \
928
    PropertyName##_.Reset(isolate(), value);                                   \
929
  }
930
10339841
  ENVIRONMENT_STRONG_PERSISTENT_VALUES(V)
931
#undef V
932
933
8773243
v8::Local<v8::Context> Environment::context() const {
934
8773243
  return PersistentToLocal::Strong(context_);
935
}
936
937
}  // namespace node
938
939
// These two files depend on each other. Including base_object-inl.h after this
940
// file is the easiest way to avoid issues with that circular dependency.
941
#include "base_object-inl.h"
942
943
#endif  // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
944
945
#endif  // SRC_ENV_INL_H_