GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: env-inl.h Lines: 460 463 99.4 %
Date: 2022-08-12 04:19:25 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
114383
NoArrayBufferZeroFillScope::NoArrayBufferZeroFillScope(
46
114383
    IsolateData* isolate_data)
47
114383
    : node_allocator_(isolate_data->node_allocator()) {
48
114383
  if (node_allocator_ != nullptr) node_allocator_->zero_fill_field()[0] = 0;
49
114383
}
50
51
228766
NoArrayBufferZeroFillScope::~NoArrayBufferZeroFillScope() {
52
114383
  if (node_allocator_ != nullptr) node_allocator_->zero_fill_field()[0] = 1;
53
114383
}
54
55
inline v8::Isolate* IsolateData::isolate() const {
56
  return isolate_;
57
}
58
59
1270335
inline uv_loop_t* IsolateData::event_loop() const {
60
1270335
  return event_loop_;
61
}
62
63
121032
inline NodeArrayBufferAllocator* IsolateData::node_allocator() const {
64
121032
  return node_allocator_;
65
}
66
67
94916
inline MultiIsolatePlatform* IsolateData::platform() const {
68
94916
  return platform_;
69
}
70
71
722
inline void IsolateData::set_worker_context(worker::Worker* context) {
72
722
  CHECK_NULL(worker_context_);  // Should be set only once.
73
722
  worker_context_ = context;
74
722
}
75
76
16123
inline worker::Worker* IsolateData::worker_context() const {
77
16123
  return worker_context_;
78
}
79
80
211585
inline v8::Local<v8::String> IsolateData::async_wrap_provider(int index) const {
81
211585
  return async_wrap_providers_[index].Get(isolate_);
82
}
83
84
2662301
inline AliasedUint32Array& AsyncHooks::fields() {
85
2662301
  return fields_;
86
}
87
88
1660401
inline AliasedFloat64Array& AsyncHooks::async_id_fields() {
89
1660401
  return async_id_fields_;
90
}
91
92
771
inline AliasedFloat64Array& AsyncHooks::async_ids_stack() {
93
771
  return async_ids_stack_;
94
}
95
96
836697
v8::Local<v8::Array> AsyncHooks::js_execution_async_resources() {
97
836697
  if (UNLIKELY(js_execution_async_resources_.IsEmpty())) {
98
771
    js_execution_async_resources_.Reset(
99
1542
        env()->isolate(), v8::Array::New(env()->isolate()));
100
  }
101
836697
  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
211237
inline v8::Local<v8::String> AsyncHooks::provider_string(int idx) {
110
211237
  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
420783
inline Environment* AsyncHooks::env() {
118
420783
  return Environment::ForAsyncHooks(this);
119
}
120
121
420783
Environment* Environment::ForAsyncHooks(AsyncHooks* hooks) {
122
420783
  return ContainerOf(&Environment::async_hooks_, hooks);
123
}
124
125
807779
inline size_t Environment::async_callback_scope_depth() const {
126
807779
  return async_callback_scope_depth_;
127
}
128
129
821755
inline void Environment::PushAsyncCallbackScope() {
130
821755
  async_callback_scope_depth_++;
131
821755
}
132
133
821214
inline void Environment::PopAsyncCallbackScope() {
134
821214
  async_callback_scope_depth_--;
135
821214
}
136
137
771
inline AliasedUint32Array& ImmediateInfo::fields() {
138
771
  return fields_;
139
}
140
141
198361
inline uint32_t ImmediateInfo::count() const {
142
198361
  return fields_[kCount];
143
}
144
145
291803
inline uint32_t ImmediateInfo::ref_count() const {
146
291803
  return fields_[kRefCount];
147
}
148
149
43240
inline bool ImmediateInfo::has_outstanding() const {
150
43240
  return fields_[kHasOutstanding] == 1;
151
}
152
153
33742
inline void ImmediateInfo::ref_count_inc(uint32_t increment) {
154
33742
  fields_[kRefCount] += increment;
155
33742
}
156
157
215773
inline void ImmediateInfo::ref_count_dec(uint32_t decrement) {
158
215773
  fields_[kRefCount] -= decrement;
159
215773
}
160
161
771
inline AliasedUint8Array& TickInfo::fields() {
162
771
  return fields_;
163
}
164
165
1469837
inline bool TickInfo::has_tick_scheduled() const {
166
1469837
  return fields_[kHasTickScheduled] == 1;
167
}
168
169
532248
inline bool TickInfo::has_rejection_to_warn() const {
170
532248
  return fields_[kHasRejectionToWarn] == 1;
171
}
172
173
76938
inline Environment* Environment::GetCurrent(v8::Isolate* isolate) {
174
76938
  if (UNLIKELY(!isolate->InContext())) return nullptr;
175
150386
  v8::HandleScope handle_scope(isolate);
176
75193
  return GetCurrent(isolate->GetCurrentContext());
177
}
178
179
7723312
inline Environment* Environment::GetCurrent(v8::Local<v8::Context> context) {
180
7723312
  if (UNLIKELY(context.IsEmpty())) {
181
1
    return nullptr;
182
  }
183
7723311
  if (UNLIKELY(context->GetNumberOfEmbedderDataFields() <=
184
7723311
               ContextEmbedderIndex::kContextTag)) {
185
11
    return nullptr;
186
  }
187
7723300
  if (UNLIKELY(context->GetAlignedPointerFromEmbedderData(
188
                   ContextEmbedderIndex::kContextTag) !=
189
7723300
               Environment::kNodeContextTagPtr)) {
190
    return nullptr;
191
  }
192
  return static_cast<Environment*>(
193
7723300
      context->GetAlignedPointerFromEmbedderData(
194
7723300
          ContextEmbedderIndex::kEnvironment));
195
}
196
197
5856426
inline Environment* Environment::GetCurrent(
198
    const v8::FunctionCallbackInfo<v8::Value>& info) {
199
5856426
  return GetCurrent(info.GetIsolate()->GetCurrentContext());
200
}
201
202
template <typename T>
203
2162044
inline Environment* Environment::GetCurrent(
204
    const v8::PropertyCallbackInfo<T>& info) {
205
2162044
  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
994900
inline T* Environment::GetBindingData(
215
    const v8::FunctionCallbackInfo<v8::Value>& info) {
216
994900
  return GetBindingData<T>(info.GetIsolate()->GetCurrentContext());
217
}
218
219
template <typename T>
220
994902
inline T* Environment::GetBindingData(v8::Local<v8::Context> context) {
221
  BindingDataStore* map = static_cast<BindingDataStore*>(
222
994902
      context->GetAlignedPointerFromEmbedderData(
223
          ContextEmbedderIndex::kBindingListIndex));
224
  DCHECK_NOT_NULL(map);
225
994902
  auto it = map->find(T::type_name);
226
994902
  if (UNLIKELY(it == map->end())) return nullptr;
227
994902
  T* result = static_cast<T*>(it->second.get());
228
  DCHECK_NOT_NULL(result);
229
  DCHECK_EQ(result->env(), GetCurrent(context));
230
994902
  return result;
231
}
232
233
template <typename T>
234
25588
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
51176
  BaseObjectPtr<T> item = MakeDetachedBaseObject<T>(this, target);
240
  BindingDataStore* map = static_cast<BindingDataStore*>(
241
25588
      context->GetAlignedPointerFromEmbedderData(
242
          ContextEmbedderIndex::kBindingListIndex));
243
  DCHECK_NOT_NULL(map);
244
25588
  auto result = map->emplace(T::type_name, item);
245
25588
  CHECK(result.second);
246
  DCHECK_EQ(GetBindingData<T>(context), item.get());
247
25588
  return item.get();
248
}
249
250
26012358
inline v8::Isolate* Environment::isolate() const {
251
26012358
  return isolate_;
252
}
253
254
7628
inline Environment* Environment::from_timer_handle(uv_timer_t* handle) {
255
7628
  return ContainerOf(&Environment::timer_handle_, handle);
256
}
257
258
31494
inline uv_timer_t* Environment::timer_handle() {
259
31494
  return &timer_handle_;
260
}
261
262
198361
inline Environment* Environment::from_immediate_check_handle(
263
    uv_check_t* handle) {
264
198361
  return ContainerOf(&Environment::immediate_check_handle_, handle);
265
}
266
267
24260
inline uv_check_t* Environment::immediate_check_handle() {
268
24260
  return &immediate_check_handle_;
269
}
270
271
244383
inline uv_idle_t* Environment::immediate_idle_handle() {
272
244383
  return &immediate_idle_handle_;
273
}
274
275
36390
inline void Environment::RegisterHandleCleanup(uv_handle_t* handle,
276
                                               HandleCleanupCb cb,
277
                                               void* arg) {
278
36390
  handle_cleanup_queue_.push_back(HandleCleanup{handle, cb, arg});
279
36390
}
280
281
template <typename T, typename OnCloseCallback>
282
38164
inline void Environment::CloseHandle(T* handle, OnCloseCallback callback) {
283
38004
  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
38084
  handle->data = new CloseData { this, callback, handle->data };
295
38404
  uv_close(reinterpret_cast<uv_handle_t*>(handle), [](uv_handle_t* handle) {
296
76008
    std::unique_ptr<CloseData> data { static_cast<CloseData*>(handle->data) };
297
38084
    data->env->handle_cleanup_waiting_--;
298
38084
    handle->data = data->original_data;
299
38084
    data->callback(reinterpret_cast<T*>(handle));
300
  });
301
38084
}
302
303
92584
void Environment::IncreaseWaitingRequestCounter() {
304
92584
  request_waiting_++;
305
92584
}
306
307
92575
void Environment::DecreaseWaitingRequestCounter() {
308
92575
  request_waiting_--;
309
92575
  CHECK_GE(request_waiting_, 0);
310
92575
}
311
312
1264234
inline uv_loop_t* Environment::event_loop() const {
313
1264234
  return isolate_data()->event_loop();
314
}
315
316
#if HAVE_INSPECTOR
317
80686
inline bool Environment::is_in_inspector_console_call() const {
318
80686
  return is_in_inspector_console_call_;
319
}
320
321
161370
inline void Environment::set_is_in_inspector_console_call(bool value) {
322
161370
  is_in_inspector_console_call_ = value;
323
161370
}
324
#endif
325
326
5983491
inline AsyncHooks* Environment::async_hooks() {
327
5983491
  return &async_hooks_;
328
}
329
330
783690
inline ImmediateInfo* Environment::immediate_info() {
331
783690
  return &immediate_info_;
332
}
333
334
735730
inline TickInfo* Environment::tick_info() {
335
735730
  return &tick_info_;
336
}
337
338
100297
inline uint64_t Environment::timer_base() const {
339
100297
  return timer_base_;
340
}
341
342
1402331
inline std::shared_ptr<KVStore> Environment::env_vars() {
343
1402331
  return env_vars_;
344
}
345
346
6811
inline void Environment::set_env_vars(std::shared_ptr<KVStore> env_vars) {
347
6811
  env_vars_ = env_vars;
348
6811
}
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
10933
inline void Environment::set_trace_sync_io(bool value) {
359
10933
  trace_sync_io_ = value;
360
10933
}
361
362
124
inline bool Environment::abort_on_uncaught_exception() const {
363
124
  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
11286
inline void Environment::set_exiting(bool value) {
375
11286
  exiting_[0] = value ? 1 : 0;
376
11286
}
377
378
771
inline AliasedUint32Array& Environment::exiting() {
379
771
  return exiting_;
380
}
381
382
717
inline void Environment::set_abort_on_uncaught_exception(bool value) {
383
717
  options_->abort_on_uncaught_exception = value;
384
717
}
385
386
801
inline AliasedUint32Array& Environment::should_abort_on_uncaught_toggle() {
387
801
  return should_abort_on_uncaught_toggle_;
388
}
389
390
306137
inline AliasedInt32Array& Environment::stream_base_state() {
391
306137
  return stream_base_state_;
392
}
393
394
50781
inline uint32_t Environment::get_next_module_id() {
395
50781
  return module_id_counter_++;
396
}
397
5821
inline uint32_t Environment::get_next_script_id() {
398
5821
  return script_id_counter_++;
399
}
400
36047
inline uint32_t Environment::get_next_function_id() {
401
36047
  return function_id_counter_++;
402
}
403
404
106859
ShouldNotAbortOnUncaughtScope::ShouldNotAbortOnUncaughtScope(
405
106859
    Environment* env)
406
106859
    : env_(env) {
407
106859
  env_->PushShouldNotAbortOnUncaughtScope();
408
106859
}
409
410
213712
ShouldNotAbortOnUncaughtScope::~ShouldNotAbortOnUncaughtScope() {
411
106856
  Close();
412
106856
}
413
414
107048
void ShouldNotAbortOnUncaughtScope::Close() {
415
107048
  if (env_ != nullptr) {
416
106856
    env_->PopShouldNotAbortOnUncaughtScope();
417
106856
    env_ = nullptr;
418
  }
419
107048
}
420
421
106859
inline void Environment::PushShouldNotAbortOnUncaughtScope() {
422
106859
  should_not_abort_scope_counter_++;
423
106859
}
424
425
106856
inline void Environment::PopShouldNotAbortOnUncaughtScope() {
426
106856
  should_not_abort_scope_counter_--;
427
106856
}
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
421500
inline std::vector<double>* Environment::destroy_async_id_list() {
434
421500
  return &destroy_async_id_list_;
435
}
436
437
211792
inline double Environment::new_async_id() {
438
211792
  async_hooks()->async_id_fields()[AsyncHooks::kAsyncIdCounter] += 1;
439
211792
  return async_hooks()->async_id_fields()[AsyncHooks::kAsyncIdCounter];
440
}
441
442
243158
inline double Environment::execution_async_id() {
443
243158
  return async_hooks()->async_id_fields()[AsyncHooks::kExecutionAsyncId];
444
}
445
446
65267
inline double Environment::trigger_async_id() {
447
65267
  return async_hooks()->async_id_fields()[AsyncHooks::kTriggerAsyncId];
448
}
449
450
211789
inline double Environment::get_default_trigger_async_id() {
451
  double default_trigger_async_id =
452
211789
    async_hooks()->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId];
453
  // If defaultTriggerAsyncId isn't set, use the executionAsyncId
454
211789
  if (default_trigger_async_id < 0)
455
177825
    default_trigger_async_id = execution_async_id();
456
211789
  return default_trigger_async_id;
457
}
458
459
72639
inline std::shared_ptr<EnvironmentOptions> Environment::options() {
460
72639
  return options_;
461
}
462
463
17190
inline const std::vector<std::string>& Environment::argv() {
464
17190
  return argv_;
465
}
466
467
6738
inline const std::vector<std::string>& Environment::exec_argv() {
468
6738
  return exec_argv_;
469
}
470
471
12130
inline const std::string& Environment::exec_path() const {
472
12130
  return exec_path_;
473
}
474
475
#if HAVE_INSPECTOR
476
6060
inline void Environment::set_coverage_directory(const char* dir) {
477
6060
  coverage_directory_ = std::string(dir);
478
6060
}
479
480
6086
inline void Environment::set_coverage_connection(
481
    std::unique_ptr<profiler::V8CoverageConnection> connection) {
482
6086
  CHECK_NULL(coverage_connection_);
483
6086
  std::swap(coverage_connection_, connection);
484
6086
}
485
486
18257
inline profiler::V8CoverageConnection* Environment::coverage_connection() {
487
18257
  return coverage_connection_.get();
488
}
489
490
6043
inline const std::string& Environment::coverage_directory() const {
491
6043
  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
6102
Environment::cpu_profiler_connection() {
502
6102
  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
6090
Environment::heap_profiler_connection() {
537
6090
  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
12410
std::shared_ptr<ExclusiveAccess<HostPort>> Environment::inspector_host_port() {
568
12410
  return inspector_host_port_;
569
}
570
571
66205
inline std::shared_ptr<PerIsolateOptions> IsolateData::options() {
572
66205
  return options_;
573
}
574
575
273
inline void IsolateData::set_options(
576
    std::shared_ptr<PerIsolateOptions> options) {
577
273
  options_ = std::move(options);
578
273
}
579
580
template <typename Fn>
581
92330
void Environment::SetImmediate(Fn&& cb, CallbackFlags::Flags flags) {
582
184660
  auto callback = native_immediates_.CreateCallback(std::move(cb), flags);
583
92330
  native_immediates_.Push(std::move(callback));
584
585
92330
  if (flags & CallbackFlags::kRefed) {
586
67470
    if (immediate_info()->ref_count() == 0)
587
50318
      ToggleImmediateRef(true);
588
67470
    immediate_info()->ref_count_inc(1);
589
  }
590
92330
}
591
592
template <typename Fn>
593
2284
void Environment::SetImmediateThreadsafe(Fn&& cb, CallbackFlags::Flags flags) {
594
4568
  auto callback = native_immediates_threadsafe_.CreateCallback(
595
2284
      std::move(cb), flags);
596
  {
597
4568
    Mutex::ScopedLock lock(native_immediates_threadsafe_mutex_);
598
2284
    native_immediates_threadsafe_.Push(std::move(callback));
599
2284
    if (task_queues_async_initialized_)
600
2275
      uv_async_send(&task_queues_async_);
601
  }
602
2284
}
603
604
template <typename Fn>
605
10510
void Environment::RequestInterrupt(Fn&& cb) {
606
21020
  auto callback = native_immediates_interrupts_.CreateCallback(
607
10510
      std::move(cb), CallbackFlags::kRefed);
608
  {
609
21020
    Mutex::ScopedLock lock(native_immediates_threadsafe_mutex_);
610
10510
    native_immediates_interrupts_.Push(std::move(callback));
611
10510
    if (task_queues_async_initialized_)
612
4302
      uv_async_send(&task_queues_async_);
613
  }
614
10510
  RequestInterruptFromV8();
615
10510
}
616
617
3179138
inline bool Environment::can_call_into_js() const {
618

3179138
  return can_call_into_js_ && !is_stopping();
619
}
620
621
1617
inline void Environment::set_can_call_into_js(bool can_call_into_js) {
622
1617
  can_call_into_js_ = can_call_into_js;
623
1617
}
624
625
1543121
inline bool Environment::has_run_bootstrapping_code() const {
626
1543121
  return has_run_bootstrapping_code_;
627
}
628
629
6101
inline void Environment::DoneBootstrapping() {
630
6101
  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
6101
  base_object_created_by_bootstrap_ = base_object_count_;
635
6101
}
636
637
19
inline bool Environment::has_serialized_options() const {
638
19
  return has_serialized_options_;
639
}
640
641
6664
inline void Environment::set_has_serialized_options(bool value) {
642
6664
  has_serialized_options_ = value;
643
6664
}
644
645
9356
inline bool Environment::is_main_thread() const {
646
9356
  return worker_context() == nullptr;
647
}
648
649
1121
inline bool Environment::no_native_addons() const {
650
2238
  return (flags_ & EnvironmentFlags::kNoNativeAddons) ||
651
2238
          !options_->allow_native_addons;
652
}
653
654
6062
inline bool Environment::should_not_register_esm_loader() const {
655
6062
  return flags_ & EnvironmentFlags::kNoRegisterESMLoader;
656
}
657
658
15839
inline bool Environment::owns_process_state() const {
659
15839
  return flags_ & EnvironmentFlags::kOwnsProcessState;
660
}
661
662
6095
inline bool Environment::owns_inspector() const {
663
6095
  return flags_ & EnvironmentFlags::kOwnsInspector;
664
}
665
666
16568
inline bool Environment::should_create_inspector() const {
667
16568
  return (flags_ & EnvironmentFlags::kNoCreateInspector) == 0;
668
}
669
670
129224
inline bool Environment::tracks_unmanaged_fds() const {
671
129224
  return flags_ & EnvironmentFlags::kTrackUnmanagedFds;
672
}
673
674
3797
inline bool Environment::hide_console_windows() const {
675
3797
  return flags_ & EnvironmentFlags::kHideConsoleWindows;
676
}
677
678
7006
inline bool Environment::no_global_search_paths() const {
679
14012
  return (flags_ & EnvironmentFlags::kNoGlobalSearchPaths) ||
680
14012
         !options_->global_search_paths;
681
}
682
683
1715
inline bool Environment::no_browser_globals() const {
684
  // configure --no-browser-globals
685
#ifdef NODE_NO_BROWSER_GLOBALS
686
  return true;
687
#else
688
1715
  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
5899
void Environment::set_source_maps_enabled(bool on) {
701
5899
  source_maps_enabled_ = on;
702
5899
}
703
704
1499
bool Environment::source_maps_enabled() const {
705
1499
  return source_maps_enabled_;
706
}
707
708
7614
inline uint64_t Environment::thread_id() const {
709
7614
  return thread_id_;
710
}
711
712
16123
inline worker::Worker* Environment::worker_context() const {
713
16123
  return isolate_data()->worker_context();
714
}
715
716
941
inline void Environment::add_sub_worker_context(worker::Worker* context) {
717
941
  sub_worker_contexts_.insert(context);
718
941
}
719
720
968
inline void Environment::remove_sub_worker_context(worker::Worker* context) {
721
968
  sub_worker_contexts_.erase(context);
722
968
}
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
4758662
inline bool Environment::is_stopping() const {
730
4758662
  return is_stopping_.load();
731
}
732
733
5933
inline void Environment::set_stopping(bool value) {
734
5933
  is_stopping_.store(value);
735
5933
}
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
42474
inline performance::PerformanceState* Environment::performance_state() {
756
42474
  return performance_state_.get();
757
}
758
759
8870441
inline IsolateData* Environment::isolate_data() const {
760
8870441
  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
1478786
void Environment::AddCleanupHook(CleanupCallback fn, void* arg) {
800
2957572
  auto insertion_info = cleanup_hooks_.emplace(CleanupHookCallback {
801
1478786
    fn, arg, cleanup_hook_counter_++
802
1478786
  });
803
  // Make sure there was no existing element with these values.
804
1478786
  CHECK_EQ(insertion_info.second, true);
805
1478786
}
806
807
1450176
void Environment::RemoveCleanupHook(CleanupCallback fn, void* arg) {
808
1450176
  CleanupHookCallback search { fn, arg, 0 };
809
1450176
  cleanup_hooks_.erase(search);
810
1450176
}
811
812
3263250
size_t CleanupHookCallback::Hash::operator()(
813
    const CleanupHookCallback& cb) const {
814
3263250
  return std::hash<void*>()(cb.arg_);
815
}
816
817
1633118
bool CleanupHookCallback::Equal::operator()(
818
    const CleanupHookCallback& a, const CleanupHookCallback& b) const {
819

1633118
  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
2843333
void Environment::modify_base_object_count(int64_t delta) {
850
2843333
  base_object_count_ += delta;
851
2843333
}
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
713
void Environment::set_process_exit_handler(
867
    std::function<void(Environment*, int)>&& handler) {
868
713
  process_exit_handler_ = std::move(handler);
869
713
}
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
60969
  PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP)
880
1159202
  PER_ISOLATE_SYMBOL_PROPERTIES(VY)
881
8070531
  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
1176886
  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
60969
  PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP)
905
1040464
  PER_ISOLATE_SYMBOL_PROPERTIES(VY)
906
11660705
  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
882999
  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
10662026
  ENVIRONMENT_STRONG_PERSISTENT_VALUES(V)
931
#undef V
932
933
9111378
v8::Local<v8::Context> Environment::context() const {
934
9111378
  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_