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 "allocated_buffer-inl.h" |
29 |
|
|
#include "callback_queue-inl.h" |
30 |
|
|
#include "env.h" |
31 |
|
|
#include "node.h" |
32 |
|
|
#include "node_context_data.h" |
33 |
|
|
#include "node_perf_common.h" |
34 |
|
|
#include "util-inl.h" |
35 |
|
|
#include "uv.h" |
36 |
|
|
#include "v8-fast-api-calls.h" |
37 |
|
|
#include "v8.h" |
38 |
|
|
|
39 |
|
|
#include <cstddef> |
40 |
|
|
#include <cstdint> |
41 |
|
|
|
42 |
|
|
#include <utility> |
43 |
|
|
|
44 |
|
|
namespace node { |
45 |
|
|
|
46 |
|
|
inline v8::Isolate* IsolateData::isolate() const { |
47 |
|
|
return isolate_; |
48 |
|
|
} |
49 |
|
|
|
50 |
|
1021726 |
inline uv_loop_t* IsolateData::event_loop() const { |
51 |
|
1021726 |
return event_loop_; |
52 |
|
|
} |
53 |
|
|
|
54 |
|
104882 |
inline NodeArrayBufferAllocator* IsolateData::node_allocator() const { |
55 |
|
104882 |
return node_allocator_; |
56 |
|
|
} |
57 |
|
|
|
58 |
|
56598 |
inline MultiIsolatePlatform* IsolateData::platform() const { |
59 |
|
56598 |
return platform_; |
60 |
|
|
} |
61 |
|
|
|
62 |
|
587 |
inline void IsolateData::set_worker_context(worker::Worker* context) { |
63 |
✗✓ |
587 |
CHECK_NULL(worker_context_); // Should be set only once. |
64 |
|
587 |
worker_context_ = context; |
65 |
|
587 |
} |
66 |
|
|
|
67 |
|
14246 |
inline worker::Worker* IsolateData::worker_context() const { |
68 |
|
14246 |
return worker_context_; |
69 |
|
|
} |
70 |
|
|
|
71 |
|
206897 |
inline v8::Local<v8::String> IsolateData::async_wrap_provider(int index) const { |
72 |
|
206897 |
return async_wrap_providers_[index].Get(isolate_); |
73 |
|
|
} |
74 |
|
|
|
75 |
|
2611731 |
inline AliasedUint32Array& AsyncHooks::fields() { |
76 |
|
2611731 |
return fields_; |
77 |
|
|
} |
78 |
|
|
|
79 |
|
1653565 |
inline AliasedFloat64Array& AsyncHooks::async_id_fields() { |
80 |
|
1653565 |
return async_id_fields_; |
81 |
|
|
} |
82 |
|
|
|
83 |
|
627 |
inline AliasedFloat64Array& AsyncHooks::async_ids_stack() { |
84 |
|
627 |
return async_ids_stack_; |
85 |
|
|
} |
86 |
|
|
|
87 |
|
815456 |
v8::Local<v8::Array> AsyncHooks::js_execution_async_resources() { |
88 |
✓✓ |
815456 |
if (UNLIKELY(js_execution_async_resources_.IsEmpty())) { |
89 |
|
627 |
js_execution_async_resources_.Reset( |
90 |
|
1254 |
env()->isolate(), v8::Array::New(env()->isolate())); |
91 |
|
|
} |
92 |
|
815456 |
return PersistentToLocal::Strong(js_execution_async_resources_); |
93 |
|
|
} |
94 |
|
|
|
95 |
|
2401 |
v8::Local<v8::Object> AsyncHooks::native_execution_async_resource(size_t i) { |
96 |
✗✓ |
2401 |
if (i >= native_execution_async_resources_.size()) return {}; |
97 |
|
2401 |
return native_execution_async_resources_[i]; |
98 |
|
|
} |
99 |
|
|
|
100 |
|
17160 |
inline void AsyncHooks::SetJSPromiseHooks(v8::Local<v8::Function> init, |
101 |
|
|
v8::Local<v8::Function> before, |
102 |
|
|
v8::Local<v8::Function> after, |
103 |
|
|
v8::Local<v8::Function> resolve) { |
104 |
|
17160 |
js_promise_hooks_[0].Reset(env()->isolate(), init); |
105 |
|
17160 |
js_promise_hooks_[1].Reset(env()->isolate(), before); |
106 |
|
17160 |
js_promise_hooks_[2].Reset(env()->isolate(), after); |
107 |
|
17160 |
js_promise_hooks_[3].Reset(env()->isolate(), resolve); |
108 |
✓✓ |
34644 |
for (auto it = contexts_.begin(); it != contexts_.end(); it++) { |
109 |
✗✓ |
17484 |
if (it->IsEmpty()) { |
110 |
|
|
it = contexts_.erase(it); |
111 |
|
|
it--; |
112 |
|
|
continue; |
113 |
|
|
} |
114 |
|
34968 |
PersistentToLocal::Weak(env()->isolate(), *it) |
115 |
|
17484 |
->SetPromiseHooks(init, before, after, resolve); |
116 |
|
|
} |
117 |
|
17160 |
} |
118 |
|
|
|
119 |
|
206549 |
inline v8::Local<v8::String> AsyncHooks::provider_string(int idx) { |
120 |
|
206549 |
return env()->isolate_data()->async_wrap_provider(idx); |
121 |
|
|
} |
122 |
|
|
|
123 |
|
1 |
inline void AsyncHooks::no_force_checks() { |
124 |
|
1 |
fields_[kCheck] -= 1; |
125 |
|
1 |
} |
126 |
|
|
|
127 |
|
425141 |
inline Environment* AsyncHooks::env() { |
128 |
|
425141 |
return Environment::ForAsyncHooks(this); |
129 |
|
|
} |
130 |
|
|
|
131 |
|
|
// Remember to keep this code aligned with pushAsyncContext() in JS. |
132 |
|
786288 |
inline void AsyncHooks::push_async_context(double async_id, |
133 |
|
|
double trigger_async_id, |
134 |
|
|
v8::Local<v8::Object> resource) { |
135 |
|
|
// Since async_hooks is experimental, do only perform the check |
136 |
|
|
// when async_hooks is enabled. |
137 |
✓✓ |
786288 |
if (fields_[kCheck] > 0) { |
138 |
✗✓ |
786284 |
CHECK_GE(async_id, -1); |
139 |
✗✓ |
786284 |
CHECK_GE(trigger_async_id, -1); |
140 |
|
|
} |
141 |
|
|
|
142 |
|
786288 |
uint32_t offset = fields_[kStackLength]; |
143 |
✓✓ |
786288 |
if (offset * 2 >= async_ids_stack_.Length()) |
144 |
|
4 |
grow_async_ids_stack(); |
145 |
|
786288 |
async_ids_stack_[2 * offset] = async_id_fields_[kExecutionAsyncId]; |
146 |
|
786288 |
async_ids_stack_[2 * offset + 1] = async_id_fields_[kTriggerAsyncId]; |
147 |
|
786288 |
fields_[kStackLength] += 1; |
148 |
|
786288 |
async_id_fields_[kExecutionAsyncId] = async_id; |
149 |
|
786288 |
async_id_fields_[kTriggerAsyncId] = trigger_async_id; |
150 |
|
|
|
151 |
|
|
#ifdef DEBUG |
152 |
|
|
for (uint32_t i = offset; i < native_execution_async_resources_.size(); i++) |
153 |
|
|
CHECK(native_execution_async_resources_[i].IsEmpty()); |
154 |
|
|
#endif |
155 |
|
|
|
156 |
|
|
// When this call comes from JS (as a way of increasing the stack size), |
157 |
|
|
// `resource` will be empty, because JS caches these values anyway. |
158 |
✓✓ |
786288 |
if (!resource.IsEmpty()) { |
159 |
|
786284 |
native_execution_async_resources_.resize(offset + 1); |
160 |
|
|
// Caveat: This is a v8::Local<> assignment, we do not keep a v8::Global<>! |
161 |
|
786284 |
native_execution_async_resources_[offset] = resource; |
162 |
|
|
} |
163 |
|
786288 |
} |
164 |
|
|
|
165 |
|
|
// Remember to keep this code aligned with popAsyncContext() in JS. |
166 |
|
785933 |
inline bool AsyncHooks::pop_async_context(double async_id) { |
167 |
|
|
// In case of an exception then this may have already been reset, if the |
168 |
|
|
// stack was multiple MakeCallback()'s deep. |
169 |
✓✓ |
785933 |
if (UNLIKELY(fields_[kStackLength] == 0)) return false; |
170 |
|
|
|
171 |
|
|
// Ask for the async_id to be restored as a check that the stack |
172 |
|
|
// hasn't been corrupted. |
173 |
|
|
// Since async_hooks is experimental, do only perform the check |
174 |
|
|
// when async_hooks is enabled. |
175 |
|
1569778 |
if (UNLIKELY(fields_[kCheck] > 0 && |
176 |
✓✓✓✓ ✓✓ |
1569778 |
async_id_fields_[kExecutionAsyncId] != async_id)) { |
177 |
|
4 |
FailWithCorruptedAsyncStack(async_id); |
178 |
|
|
} |
179 |
|
|
|
180 |
|
784887 |
uint32_t offset = fields_[kStackLength] - 1; |
181 |
|
784887 |
async_id_fields_[kExecutionAsyncId] = async_ids_stack_[2 * offset]; |
182 |
|
784887 |
async_id_fields_[kTriggerAsyncId] = async_ids_stack_[2 * offset + 1]; |
183 |
|
784887 |
fields_[kStackLength] = offset; |
184 |
|
|
|
185 |
|
1569774 |
if (LIKELY(offset < native_execution_async_resources_.size() && |
186 |
✓✗✓✗ ✓✗ |
1569774 |
!native_execution_async_resources_[offset].IsEmpty())) { |
187 |
|
|
#ifdef DEBUG |
188 |
|
|
for (uint32_t i = offset + 1; |
189 |
|
|
i < native_execution_async_resources_.size(); |
190 |
|
|
i++) { |
191 |
|
|
CHECK(native_execution_async_resources_[i].IsEmpty()); |
192 |
|
|
} |
193 |
|
|
#endif |
194 |
|
784887 |
native_execution_async_resources_.resize(offset); |
195 |
|
784887 |
if (native_execution_async_resources_.size() < |
196 |
✓✓✗✓ ✗✓ |
1005475 |
native_execution_async_resources_.capacity() / 2 && |
197 |
|
220588 |
native_execution_async_resources_.size() > 16) { |
198 |
|
|
native_execution_async_resources_.shrink_to_fit(); |
199 |
|
|
} |
200 |
|
|
} |
201 |
|
|
|
202 |
✓✓ |
1569774 |
if (UNLIKELY(js_execution_async_resources()->Length() > offset)) { |
203 |
|
29942 |
v8::HandleScope handle_scope(env()->isolate()); |
204 |
|
59884 |
USE(js_execution_async_resources()->Set( |
205 |
|
|
env()->context(), |
206 |
|
|
env()->length_string(), |
207 |
|
119768 |
v8::Integer::NewFromUnsigned(env()->isolate(), offset))); |
208 |
|
|
} |
209 |
|
|
|
210 |
|
784887 |
return fields_[kStackLength] > 0; |
211 |
|
|
} |
212 |
|
|
|
213 |
|
1999 |
void AsyncHooks::clear_async_id_stack() { |
214 |
|
1999 |
v8::Isolate* isolate = env()->isolate(); |
215 |
|
1999 |
v8::HandleScope handle_scope(isolate); |
216 |
✓✓ |
1999 |
if (!js_execution_async_resources_.IsEmpty()) { |
217 |
|
2744 |
USE(PersistentToLocal::Strong(js_execution_async_resources_)->Set( |
218 |
|
|
env()->context(), |
219 |
|
|
env()->length_string(), |
220 |
|
5488 |
v8::Integer::NewFromUnsigned(isolate, 0))); |
221 |
|
|
} |
222 |
|
1999 |
native_execution_async_resources_.clear(); |
223 |
|
1999 |
native_execution_async_resources_.shrink_to_fit(); |
224 |
|
|
|
225 |
|
1999 |
async_id_fields_[kExecutionAsyncId] = 0; |
226 |
|
1999 |
async_id_fields_[kTriggerAsyncId] = 0; |
227 |
|
1999 |
fields_[kStackLength] = 0; |
228 |
|
1999 |
} |
229 |
|
|
|
230 |
|
6172 |
inline void AsyncHooks::AddContext(v8::Local<v8::Context> ctx) { |
231 |
|
24292 |
ctx->SetPromiseHooks( |
232 |
✓✓ |
6172 |
js_promise_hooks_[0].IsEmpty() ? |
233 |
|
6172 |
v8::Local<v8::Function>() : |
234 |
|
198 |
PersistentToLocal::Strong(js_promise_hooks_[0]), |
235 |
✓✓ |
6172 |
js_promise_hooks_[1].IsEmpty() ? |
236 |
|
6172 |
v8::Local<v8::Function>() : |
237 |
|
198 |
PersistentToLocal::Strong(js_promise_hooks_[1]), |
238 |
✓✓ |
6172 |
js_promise_hooks_[2].IsEmpty() ? |
239 |
|
6172 |
v8::Local<v8::Function>() : |
240 |
|
198 |
PersistentToLocal::Strong(js_promise_hooks_[2]), |
241 |
✓✗ |
6172 |
js_promise_hooks_[3].IsEmpty() ? |
242 |
|
6172 |
v8::Local<v8::Function>() : |
243 |
|
|
PersistentToLocal::Strong(js_promise_hooks_[3])); |
244 |
|
|
|
245 |
|
6172 |
size_t id = contexts_.size(); |
246 |
|
6172 |
contexts_.resize(id + 1); |
247 |
|
6172 |
contexts_[id].Reset(env()->isolate(), ctx); |
248 |
|
6172 |
contexts_[id].SetWeak(); |
249 |
|
6172 |
} |
250 |
|
|
|
251 |
|
509 |
inline void AsyncHooks::RemoveContext(v8::Local<v8::Context> ctx) { |
252 |
|
509 |
v8::Isolate* isolate = env()->isolate(); |
253 |
|
1018 |
v8::HandleScope handle_scope(isolate); |
254 |
✓✓ |
4833 |
for (auto it = contexts_.begin(); it != contexts_.end(); it++) { |
255 |
✓✓ |
4324 |
if (it->IsEmpty()) { |
256 |
|
61 |
it = contexts_.erase(it); |
257 |
|
61 |
it--; |
258 |
|
61 |
continue; |
259 |
|
|
} |
260 |
|
|
v8::Local<v8::Context> saved_context = |
261 |
|
4263 |
PersistentToLocal::Weak(isolate, *it); |
262 |
✗✓ |
4263 |
if (saved_context == ctx) { |
263 |
|
|
it->Reset(); |
264 |
|
|
contexts_.erase(it); |
265 |
|
|
break; |
266 |
|
|
} |
267 |
|
|
} |
268 |
|
509 |
} |
269 |
|
|
|
270 |
|
|
// The DefaultTriggerAsyncIdScope(AsyncWrap*) constructor is defined in |
271 |
|
|
// async_wrap-inl.h to avoid a circular dependency. |
272 |
|
|
|
273 |
|
240922 |
inline AsyncHooks::DefaultTriggerAsyncIdScope ::DefaultTriggerAsyncIdScope( |
274 |
|
240922 |
Environment* env, double default_trigger_async_id) |
275 |
|
240922 |
: async_hooks_(env->async_hooks()) { |
276 |
✓✗ |
240922 |
if (env->async_hooks()->fields()[AsyncHooks::kCheck] > 0) { |
277 |
✗✓ |
240922 |
CHECK_GE(default_trigger_async_id, 0); |
278 |
|
|
} |
279 |
|
|
|
280 |
|
240922 |
old_default_trigger_async_id_ = |
281 |
|
240922 |
async_hooks_->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId]; |
282 |
|
240922 |
async_hooks_->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId] = |
283 |
|
240922 |
default_trigger_async_id; |
284 |
|
240922 |
} |
285 |
|
|
|
286 |
|
481842 |
inline AsyncHooks::DefaultTriggerAsyncIdScope ::~DefaultTriggerAsyncIdScope() { |
287 |
|
240921 |
async_hooks_->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId] = |
288 |
|
240921 |
old_default_trigger_async_id_; |
289 |
|
240921 |
} |
290 |
|
|
|
291 |
|
425141 |
Environment* Environment::ForAsyncHooks(AsyncHooks* hooks) { |
292 |
|
425141 |
return ContainerOf(&Environment::async_hooks_, hooks); |
293 |
|
|
} |
294 |
|
|
|
295 |
|
785957 |
inline size_t Environment::async_callback_scope_depth() const { |
296 |
|
785957 |
return async_callback_scope_depth_; |
297 |
|
|
} |
298 |
|
|
|
299 |
|
798131 |
inline void Environment::PushAsyncCallbackScope() { |
300 |
|
798131 |
async_callback_scope_depth_++; |
301 |
|
798131 |
} |
302 |
|
|
|
303 |
|
797640 |
inline void Environment::PopAsyncCallbackScope() { |
304 |
|
797640 |
async_callback_scope_depth_--; |
305 |
|
797640 |
} |
306 |
|
|
|
307 |
|
627 |
inline AliasedUint32Array& ImmediateInfo::fields() { |
308 |
|
627 |
return fields_; |
309 |
|
|
} |
310 |
|
|
|
311 |
|
180916 |
inline uint32_t ImmediateInfo::count() const { |
312 |
|
180916 |
return fields_[kCount]; |
313 |
|
|
} |
314 |
|
|
|
315 |
|
272596 |
inline uint32_t ImmediateInfo::ref_count() const { |
316 |
|
272596 |
return fields_[kRefCount]; |
317 |
|
|
} |
318 |
|
|
|
319 |
|
43572 |
inline bool ImmediateInfo::has_outstanding() const { |
320 |
|
43572 |
return fields_[kHasOutstanding] == 1; |
321 |
|
|
} |
322 |
|
|
|
323 |
|
33583 |
inline void ImmediateInfo::ref_count_inc(uint32_t increment) { |
324 |
|
33583 |
fields_[kRefCount] += increment; |
325 |
|
33583 |
} |
326 |
|
|
|
327 |
|
196383 |
inline void ImmediateInfo::ref_count_dec(uint32_t decrement) { |
328 |
|
196383 |
fields_[kRefCount] -= decrement; |
329 |
|
196383 |
} |
330 |
|
|
|
331 |
|
627 |
inline AliasedUint8Array& TickInfo::fields() { |
332 |
|
627 |
return fields_; |
333 |
|
|
} |
334 |
|
|
|
335 |
|
1403289 |
inline bool TickInfo::has_tick_scheduled() const { |
336 |
|
1403289 |
return fields_[kHasTickScheduled] == 1; |
337 |
|
|
} |
338 |
|
|
|
339 |
|
510724 |
inline bool TickInfo::has_rejection_to_warn() const { |
340 |
|
510724 |
return fields_[kHasRejectionToWarn] == 1; |
341 |
|
|
} |
342 |
|
|
|
343 |
|
6172 |
inline void Environment::AssignToContext(v8::Local<v8::Context> context, |
344 |
|
|
const ContextInfo& info) { |
345 |
|
6172 |
context->SetAlignedPointerInEmbedderData( |
346 |
|
|
ContextEmbedderIndex::kEnvironment, this); |
347 |
|
|
// Used by Environment::GetCurrent to know that we are on a node context. |
348 |
|
6172 |
context->SetAlignedPointerInEmbedderData( |
349 |
|
|
ContextEmbedderIndex::kContextTag, Environment::kNodeContextTagPtr); |
350 |
|
|
// Used to retrieve bindings |
351 |
|
12344 |
context->SetAlignedPointerInEmbedderData( |
352 |
|
6172 |
ContextEmbedderIndex::kBindingListIndex, &(this->bindings_)); |
353 |
|
|
|
354 |
|
|
#if HAVE_INSPECTOR |
355 |
|
6172 |
inspector_agent()->ContextCreated(context, info); |
356 |
|
|
#endif // HAVE_INSPECTOR |
357 |
|
|
|
358 |
|
6172 |
this->async_hooks()->AddContext(context); |
359 |
|
6172 |
} |
360 |
|
|
|
361 |
|
52770 |
inline Environment* Environment::GetCurrent(v8::Isolate* isolate) { |
362 |
✓✓ |
52770 |
if (UNLIKELY(!isolate->InContext())) return nullptr; |
363 |
|
104102 |
v8::HandleScope handle_scope(isolate); |
364 |
|
52051 |
return GetCurrent(isolate->GetCurrentContext()); |
365 |
|
|
} |
366 |
|
|
|
367 |
|
6184175 |
inline Environment* Environment::GetCurrent(v8::Local<v8::Context> context) { |
368 |
✓✓ |
6184175 |
if (UNLIKELY(context.IsEmpty())) { |
369 |
|
1 |
return nullptr; |
370 |
|
|
} |
371 |
|
6184174 |
if (UNLIKELY(context->GetNumberOfEmbedderDataFields() <= |
372 |
✓✓ |
6184174 |
ContextEmbedderIndex::kContextTag)) { |
373 |
|
11 |
return nullptr; |
374 |
|
|
} |
375 |
|
6184163 |
if (UNLIKELY(context->GetAlignedPointerFromEmbedderData( |
376 |
|
|
ContextEmbedderIndex::kContextTag) != |
377 |
✗✓ |
6184163 |
Environment::kNodeContextTagPtr)) { |
378 |
|
|
return nullptr; |
379 |
|
|
} |
380 |
|
|
return static_cast<Environment*>( |
381 |
|
6184163 |
context->GetAlignedPointerFromEmbedderData( |
382 |
|
6184163 |
ContextEmbedderIndex::kEnvironment)); |
383 |
|
|
} |
384 |
|
|
|
385 |
|
4406036 |
inline Environment* Environment::GetCurrent( |
386 |
|
|
const v8::FunctionCallbackInfo<v8::Value>& info) { |
387 |
|
4406036 |
return GetCurrent(info.GetIsolate()->GetCurrentContext()); |
388 |
|
|
} |
389 |
|
|
|
390 |
|
|
template <typename T> |
391 |
|
2637562 |
inline Environment* Environment::GetCurrent( |
392 |
|
|
const v8::PropertyCallbackInfo<T>& info) { |
393 |
|
2637562 |
return GetCurrent(info.GetIsolate()->GetCurrentContext()); |
394 |
|
|
} |
395 |
|
|
|
396 |
|
|
template <typename T, typename U> |
397 |
|
|
inline T* Environment::GetBindingData(const v8::PropertyCallbackInfo<U>& info) { |
398 |
|
|
return GetBindingData<T>(info.GetIsolate()->GetCurrentContext()); |
399 |
|
|
} |
400 |
|
|
|
401 |
|
|
template <typename T> |
402 |
|
798890 |
inline T* Environment::GetBindingData( |
403 |
|
|
const v8::FunctionCallbackInfo<v8::Value>& info) { |
404 |
|
798890 |
return GetBindingData<T>(info.GetIsolate()->GetCurrentContext()); |
405 |
|
|
} |
406 |
|
|
|
407 |
|
|
template <typename T> |
408 |
|
798892 |
inline T* Environment::GetBindingData(v8::Local<v8::Context> context) { |
409 |
|
|
BindingDataStore* map = static_cast<BindingDataStore*>( |
410 |
|
798892 |
context->GetAlignedPointerFromEmbedderData( |
411 |
|
|
ContextEmbedderIndex::kBindingListIndex)); |
412 |
|
|
DCHECK_NOT_NULL(map); |
413 |
|
798892 |
auto it = map->find(T::type_name); |
414 |
✗✓ |
798892 |
if (UNLIKELY(it == map->end())) return nullptr; |
415 |
|
798892 |
T* result = static_cast<T*>(it->second.get()); |
416 |
|
|
DCHECK_NOT_NULL(result); |
417 |
|
|
DCHECK_EQ(result->env(), GetCurrent(context)); |
418 |
|
798892 |
return result; |
419 |
|
|
} |
420 |
|
|
|
421 |
|
|
template <typename T> |
422 |
|
23307 |
inline T* Environment::AddBindingData( |
423 |
|
|
v8::Local<v8::Context> context, |
424 |
|
|
v8::Local<v8::Object> target) { |
425 |
|
|
DCHECK_EQ(GetCurrent(context), this); |
426 |
|
|
// This won't compile if T is not a BaseObject subclass. |
427 |
|
46614 |
BaseObjectPtr<T> item = MakeDetachedBaseObject<T>(this, target); |
428 |
|
|
BindingDataStore* map = static_cast<BindingDataStore*>( |
429 |
|
23307 |
context->GetAlignedPointerFromEmbedderData( |
430 |
|
|
ContextEmbedderIndex::kBindingListIndex)); |
431 |
|
|
DCHECK_NOT_NULL(map); |
432 |
|
23307 |
auto result = map->emplace(T::type_name, item); |
433 |
✗✓ |
23307 |
CHECK(result.second); |
434 |
|
|
DCHECK_EQ(GetBindingData<T>(context), item.get()); |
435 |
|
23307 |
return item.get(); |
436 |
|
|
} |
437 |
|
|
|
438 |
|
24572153 |
inline v8::Isolate* Environment::isolate() const { |
439 |
|
24572153 |
return isolate_; |
440 |
|
|
} |
441 |
|
|
|
442 |
|
7948 |
inline Environment* Environment::from_timer_handle(uv_timer_t* handle) { |
443 |
|
7948 |
return ContainerOf(&Environment::timer_handle_, handle); |
444 |
|
|
} |
445 |
|
|
|
446 |
|
28084 |
inline uv_timer_t* Environment::timer_handle() { |
447 |
|
28084 |
return &timer_handle_; |
448 |
|
|
} |
449 |
|
|
|
450 |
|
180916 |
inline Environment* Environment::from_immediate_check_handle( |
451 |
|
|
uv_check_t* handle) { |
452 |
|
180916 |
return ContainerOf(&Environment::immediate_check_handle_, handle); |
453 |
|
|
} |
454 |
|
|
|
455 |
|
22116 |
inline uv_check_t* Environment::immediate_check_handle() { |
456 |
|
22116 |
return &immediate_check_handle_; |
457 |
|
|
} |
458 |
|
|
|
459 |
|
224876 |
inline uv_idle_t* Environment::immediate_idle_handle() { |
460 |
|
224876 |
return &immediate_idle_handle_; |
461 |
|
|
} |
462 |
|
|
|
463 |
|
33174 |
inline void Environment::RegisterHandleCleanup(uv_handle_t* handle, |
464 |
|
|
HandleCleanupCb cb, |
465 |
|
|
void* arg) { |
466 |
|
33174 |
handle_cleanup_queue_.push_back(HandleCleanup{handle, cb, arg}); |
467 |
|
33174 |
} |
468 |
|
|
|
469 |
|
|
template <typename T, typename OnCloseCallback> |
470 |
|
34893 |
inline void Environment::CloseHandle(T* handle, OnCloseCallback callback) { |
471 |
|
34741 |
handle_cleanup_waiting_++; |
472 |
|
|
static_assert(sizeof(T) >= sizeof(uv_handle_t), "T is a libuv handle"); |
473 |
|
|
static_assert(offsetof(T, data) == offsetof(uv_handle_t, data), |
474 |
|
|
"T is a libuv handle"); |
475 |
|
|
static_assert(offsetof(T, close_cb) == offsetof(uv_handle_t, close_cb), |
476 |
|
|
"T is a libuv handle"); |
477 |
|
|
struct CloseData { |
478 |
|
|
Environment* env; |
479 |
|
|
OnCloseCallback callback; |
480 |
|
|
void* original_data; |
481 |
|
|
}; |
482 |
|
34817 |
handle->data = new CloseData { this, callback, handle->data }; |
483 |
|
35121 |
uv_close(reinterpret_cast<uv_handle_t*>(handle), [](uv_handle_t* handle) { |
484 |
|
69482 |
std::unique_ptr<CloseData> data { static_cast<CloseData*>(handle->data) }; |
485 |
|
34817 |
data->env->handle_cleanup_waiting_--; |
486 |
|
34817 |
handle->data = data->original_data; |
487 |
|
34817 |
data->callback(reinterpret_cast<T*>(handle)); |
488 |
|
|
}); |
489 |
|
34817 |
} |
490 |
|
|
|
491 |
|
90420 |
void Environment::IncreaseWaitingRequestCounter() { |
492 |
|
90420 |
request_waiting_++; |
493 |
|
90420 |
} |
494 |
|
|
|
495 |
|
90411 |
void Environment::DecreaseWaitingRequestCounter() { |
496 |
|
90411 |
request_waiting_--; |
497 |
✗✓ |
90411 |
CHECK_GE(request_waiting_, 0); |
498 |
|
90411 |
} |
499 |
|
|
|
500 |
|
1016164 |
inline uv_loop_t* Environment::event_loop() const { |
501 |
|
1016164 |
return isolate_data()->event_loop(); |
502 |
|
|
} |
503 |
|
|
|
504 |
|
164 |
inline void Environment::TryLoadAddon( |
505 |
|
|
const char* filename, |
506 |
|
|
int flags, |
507 |
|
|
const std::function<bool(binding::DLib*)>& was_loaded) { |
508 |
|
164 |
loaded_addons_.emplace_back(filename, flags); |
509 |
✓✓ |
164 |
if (!was_loaded(&loaded_addons_.back())) { |
510 |
|
8 |
loaded_addons_.pop_back(); |
511 |
|
|
} |
512 |
|
164 |
} |
513 |
|
|
|
514 |
|
|
#if HAVE_INSPECTOR |
515 |
|
44637 |
inline bool Environment::is_in_inspector_console_call() const { |
516 |
|
44637 |
return is_in_inspector_console_call_; |
517 |
|
|
} |
518 |
|
|
|
519 |
|
89272 |
inline void Environment::set_is_in_inspector_console_call(bool value) { |
520 |
|
89272 |
is_in_inspector_console_call_ = value; |
521 |
|
89272 |
} |
522 |
|
|
#endif |
523 |
|
|
|
524 |
|
5843967 |
inline AsyncHooks* Environment::async_hooks() { |
525 |
|
5843967 |
return &async_hooks_; |
526 |
|
|
} |
527 |
|
|
|
528 |
|
727677 |
inline ImmediateInfo* Environment::immediate_info() { |
529 |
|
727677 |
return &immediate_info_; |
530 |
|
|
} |
531 |
|
|
|
532 |
|
702291 |
inline TickInfo* Environment::tick_info() { |
533 |
|
702291 |
return &tick_info_; |
534 |
|
|
} |
535 |
|
|
|
536 |
|
65043 |
inline uint64_t Environment::timer_base() const { |
537 |
|
65043 |
return timer_base_; |
538 |
|
|
} |
539 |
|
|
|
540 |
|
1333920 |
inline std::shared_ptr<KVStore> Environment::env_vars() { |
541 |
|
1333920 |
return env_vars_; |
542 |
|
|
} |
543 |
|
|
|
544 |
|
6133 |
inline void Environment::set_env_vars(std::shared_ptr<KVStore> env_vars) { |
545 |
|
6133 |
env_vars_ = env_vars; |
546 |
|
6133 |
} |
547 |
|
|
|
548 |
|
17 |
inline bool Environment::printed_error() const { |
549 |
|
17 |
return printed_error_; |
550 |
|
|
} |
551 |
|
|
|
552 |
|
17 |
inline void Environment::set_printed_error(bool value) { |
553 |
|
17 |
printed_error_ = value; |
554 |
|
17 |
} |
555 |
|
|
|
556 |
|
10110 |
inline void Environment::set_trace_sync_io(bool value) { |
557 |
|
10110 |
trace_sync_io_ = value; |
558 |
|
10110 |
} |
559 |
|
|
|
560 |
|
102 |
inline bool Environment::abort_on_uncaught_exception() const { |
561 |
|
102 |
return options_->abort_on_uncaught_exception; |
562 |
|
|
} |
563 |
|
|
|
564 |
|
|
inline void Environment::set_force_context_aware(bool value) { |
565 |
|
|
options_->force_context_aware = value; |
566 |
|
|
} |
567 |
|
|
|
568 |
|
41 |
inline bool Environment::force_context_aware() const { |
569 |
|
41 |
return options_->force_context_aware; |
570 |
|
|
} |
571 |
|
|
|
572 |
|
575 |
inline void Environment::set_abort_on_uncaught_exception(bool value) { |
573 |
|
575 |
options_->abort_on_uncaught_exception = value; |
574 |
|
575 |
} |
575 |
|
|
|
576 |
|
657 |
inline AliasedUint32Array& Environment::should_abort_on_uncaught_toggle() { |
577 |
|
657 |
return should_abort_on_uncaught_toggle_; |
578 |
|
|
} |
579 |
|
|
|
580 |
|
303723 |
inline AliasedInt32Array& Environment::stream_base_state() { |
581 |
|
303723 |
return stream_base_state_; |
582 |
|
|
} |
583 |
|
|
|
584 |
|
47239 |
inline uint32_t Environment::get_next_module_id() { |
585 |
|
47239 |
return module_id_counter_++; |
586 |
|
|
} |
587 |
|
4083 |
inline uint32_t Environment::get_next_script_id() { |
588 |
|
4083 |
return script_id_counter_++; |
589 |
|
|
} |
590 |
|
38328 |
inline uint32_t Environment::get_next_function_id() { |
591 |
|
38328 |
return function_id_counter_++; |
592 |
|
|
} |
593 |
|
|
|
594 |
|
98119 |
ShouldNotAbortOnUncaughtScope::ShouldNotAbortOnUncaughtScope( |
595 |
|
98119 |
Environment* env) |
596 |
|
98119 |
: env_(env) { |
597 |
|
98119 |
env_->PushShouldNotAbortOnUncaughtScope(); |
598 |
|
98119 |
} |
599 |
|
|
|
600 |
|
196232 |
ShouldNotAbortOnUncaughtScope::~ShouldNotAbortOnUncaughtScope() { |
601 |
|
98116 |
Close(); |
602 |
|
98116 |
} |
603 |
|
|
|
604 |
|
98309 |
void ShouldNotAbortOnUncaughtScope::Close() { |
605 |
✓✓ |
98309 |
if (env_ != nullptr) { |
606 |
|
98116 |
env_->PopShouldNotAbortOnUncaughtScope(); |
607 |
|
98116 |
env_ = nullptr; |
608 |
|
|
} |
609 |
|
98309 |
} |
610 |
|
|
|
611 |
|
98119 |
inline void Environment::PushShouldNotAbortOnUncaughtScope() { |
612 |
|
98119 |
should_not_abort_scope_counter_++; |
613 |
|
98119 |
} |
614 |
|
|
|
615 |
|
98116 |
inline void Environment::PopShouldNotAbortOnUncaughtScope() { |
616 |
|
98116 |
should_not_abort_scope_counter_--; |
617 |
|
98116 |
} |
618 |
|
|
|
619 |
|
1 |
inline bool Environment::inside_should_not_abort_on_uncaught_scope() const { |
620 |
|
1 |
return should_not_abort_scope_counter_ > 0; |
621 |
|
|
} |
622 |
|
|
|
623 |
|
413672 |
inline std::vector<double>* Environment::destroy_async_id_list() { |
624 |
|
413672 |
return &destroy_async_id_list_; |
625 |
|
|
} |
626 |
|
|
|
627 |
|
207102 |
inline double Environment::new_async_id() { |
628 |
|
207102 |
async_hooks()->async_id_fields()[AsyncHooks::kAsyncIdCounter] += 1; |
629 |
|
207102 |
return async_hooks()->async_id_fields()[AsyncHooks::kAsyncIdCounter]; |
630 |
|
|
} |
631 |
|
|
|
632 |
|
239464 |
inline double Environment::execution_async_id() { |
633 |
|
239464 |
return async_hooks()->async_id_fields()[AsyncHooks::kExecutionAsyncId]; |
634 |
|
|
} |
635 |
|
|
|
636 |
|
69406 |
inline double Environment::trigger_async_id() { |
637 |
|
69406 |
return async_hooks()->async_id_fields()[AsyncHooks::kTriggerAsyncId]; |
638 |
|
|
} |
639 |
|
|
|
640 |
|
207099 |
inline double Environment::get_default_trigger_async_id() { |
641 |
|
|
double default_trigger_async_id = |
642 |
|
207099 |
async_hooks()->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId]; |
643 |
|
|
// If defaultTriggerAsyncId isn't set, use the executionAsyncId |
644 |
✓✓ |
207099 |
if (default_trigger_async_id < 0) |
645 |
|
170030 |
default_trigger_async_id = execution_async_id(); |
646 |
|
207099 |
return default_trigger_async_id; |
647 |
|
|
} |
648 |
|
|
|
649 |
|
62277 |
inline std::shared_ptr<EnvironmentOptions> Environment::options() { |
650 |
|
62277 |
return options_; |
651 |
|
|
} |
652 |
|
|
|
653 |
|
15905 |
inline const std::vector<std::string>& Environment::argv() { |
654 |
|
15905 |
return argv_; |
655 |
|
|
} |
656 |
|
|
|
657 |
|
6081 |
inline const std::vector<std::string>& Environment::exec_argv() { |
658 |
|
6081 |
return exec_argv_; |
659 |
|
|
} |
660 |
|
|
|
661 |
|
11058 |
inline const std::string& Environment::exec_path() const { |
662 |
|
11058 |
return exec_path_; |
663 |
|
|
} |
664 |
|
|
|
665 |
|
11 |
inline std::string Environment::GetCwd() { |
666 |
|
|
char cwd[PATH_MAX_BYTES]; |
667 |
|
11 |
size_t size = PATH_MAX_BYTES; |
668 |
|
11 |
const int err = uv_cwd(cwd, &size); |
669 |
|
|
|
670 |
✓✗ |
11 |
if (err == 0) { |
671 |
✗✓ |
11 |
CHECK_GT(size, 0); |
672 |
|
11 |
return cwd; |
673 |
|
|
} |
674 |
|
|
|
675 |
|
|
// This can fail if the cwd is deleted. In that case, fall back to |
676 |
|
|
// exec_path. |
677 |
|
|
const std::string& exec_path = exec_path_; |
678 |
|
|
return exec_path.substr(0, exec_path.find_last_of(kPathSeparator)); |
679 |
|
|
} |
680 |
|
|
|
681 |
|
|
#if HAVE_INSPECTOR |
682 |
|
5524 |
inline void Environment::set_coverage_directory(const char* dir) { |
683 |
|
5524 |
coverage_directory_ = std::string(dir); |
684 |
|
5524 |
} |
685 |
|
|
|
686 |
|
5547 |
inline void Environment::set_coverage_connection( |
687 |
|
|
std::unique_ptr<profiler::V8CoverageConnection> connection) { |
688 |
✗✓ |
5547 |
CHECK_NULL(coverage_connection_); |
689 |
|
5547 |
std::swap(coverage_connection_, connection); |
690 |
|
5547 |
} |
691 |
|
|
|
692 |
|
16640 |
inline profiler::V8CoverageConnection* Environment::coverage_connection() { |
693 |
|
16640 |
return coverage_connection_.get(); |
694 |
|
|
} |
695 |
|
|
|
696 |
|
5508 |
inline const std::string& Environment::coverage_directory() const { |
697 |
|
5508 |
return coverage_directory_; |
698 |
|
|
} |
699 |
|
|
|
700 |
|
12 |
inline void Environment::set_cpu_profiler_connection( |
701 |
|
|
std::unique_ptr<profiler::V8CpuProfilerConnection> connection) { |
702 |
✗✓ |
12 |
CHECK_NULL(cpu_profiler_connection_); |
703 |
|
12 |
std::swap(cpu_profiler_connection_, connection); |
704 |
|
12 |
} |
705 |
|
|
|
706 |
|
|
inline profiler::V8CpuProfilerConnection* |
707 |
|
5563 |
Environment::cpu_profiler_connection() { |
708 |
|
5563 |
return cpu_profiler_connection_.get(); |
709 |
|
|
} |
710 |
|
|
|
711 |
|
12 |
inline void Environment::set_cpu_prof_interval(uint64_t interval) { |
712 |
|
12 |
cpu_prof_interval_ = interval; |
713 |
|
12 |
} |
714 |
|
|
|
715 |
|
12 |
inline uint64_t Environment::cpu_prof_interval() const { |
716 |
|
12 |
return cpu_prof_interval_; |
717 |
|
|
} |
718 |
|
|
|
719 |
|
12 |
inline void Environment::set_cpu_prof_name(const std::string& name) { |
720 |
|
12 |
cpu_prof_name_ = name; |
721 |
|
12 |
} |
722 |
|
|
|
723 |
|
12 |
inline const std::string& Environment::cpu_prof_name() const { |
724 |
|
12 |
return cpu_prof_name_; |
725 |
|
|
} |
726 |
|
|
|
727 |
|
12 |
inline void Environment::set_cpu_prof_dir(const std::string& dir) { |
728 |
|
12 |
cpu_prof_dir_ = dir; |
729 |
|
12 |
} |
730 |
|
|
|
731 |
|
12 |
inline const std::string& Environment::cpu_prof_dir() const { |
732 |
|
12 |
return cpu_prof_dir_; |
733 |
|
|
} |
734 |
|
|
|
735 |
|
12 |
inline void Environment::set_heap_profiler_connection( |
736 |
|
|
std::unique_ptr<profiler::V8HeapProfilerConnection> connection) { |
737 |
✗✓ |
12 |
CHECK_NULL(heap_profiler_connection_); |
738 |
|
12 |
std::swap(heap_profiler_connection_, connection); |
739 |
|
12 |
} |
740 |
|
|
|
741 |
|
|
inline profiler::V8HeapProfilerConnection* |
742 |
|
5551 |
Environment::heap_profiler_connection() { |
743 |
|
5551 |
return heap_profiler_connection_.get(); |
744 |
|
|
} |
745 |
|
|
|
746 |
|
12 |
inline void Environment::set_heap_prof_name(const std::string& name) { |
747 |
|
12 |
heap_prof_name_ = name; |
748 |
|
12 |
} |
749 |
|
|
|
750 |
|
12 |
inline const std::string& Environment::heap_prof_name() const { |
751 |
|
12 |
return heap_prof_name_; |
752 |
|
|
} |
753 |
|
|
|
754 |
|
12 |
inline void Environment::set_heap_prof_dir(const std::string& dir) { |
755 |
|
12 |
heap_prof_dir_ = dir; |
756 |
|
12 |
} |
757 |
|
|
|
758 |
|
12 |
inline const std::string& Environment::heap_prof_dir() const { |
759 |
|
12 |
return heap_prof_dir_; |
760 |
|
|
} |
761 |
|
|
|
762 |
|
12 |
inline void Environment::set_heap_prof_interval(uint64_t interval) { |
763 |
|
12 |
heap_prof_interval_ = interval; |
764 |
|
12 |
} |
765 |
|
|
|
766 |
|
12 |
inline uint64_t Environment::heap_prof_interval() const { |
767 |
|
12 |
return heap_prof_interval_; |
768 |
|
|
} |
769 |
|
|
|
770 |
|
|
#endif // HAVE_INSPECTOR |
771 |
|
|
|
772 |
|
|
inline |
773 |
|
11280 |
std::shared_ptr<ExclusiveAccess<HostPort>> Environment::inspector_host_port() { |
774 |
|
11280 |
return inspector_host_port_; |
775 |
|
|
} |
776 |
|
|
|
777 |
|
107357 |
inline std::shared_ptr<PerIsolateOptions> IsolateData::options() { |
778 |
|
107357 |
return options_; |
779 |
|
|
} |
780 |
|
|
|
781 |
|
264 |
inline void IsolateData::set_options( |
782 |
|
|
std::shared_ptr<PerIsolateOptions> options) { |
783 |
|
264 |
options_ = std::move(options); |
784 |
|
264 |
} |
785 |
|
|
|
786 |
|
|
template <typename Fn> |
787 |
|
91420 |
void Environment::SetImmediate(Fn&& cb, CallbackFlags::Flags flags) { |
788 |
|
182840 |
auto callback = native_immediates_.CreateCallback(std::move(cb), flags); |
789 |
|
91420 |
native_immediates_.Push(std::move(callback)); |
790 |
|
|
|
791 |
✓✓ |
91420 |
if (flags & CallbackFlags::kRefed) { |
792 |
✓✓ |
67152 |
if (immediate_info()->ref_count() == 0) |
793 |
|
50256 |
ToggleImmediateRef(true); |
794 |
|
67152 |
immediate_info()->ref_count_inc(1); |
795 |
|
|
} |
796 |
|
91420 |
} |
797 |
|
|
|
798 |
|
|
template <typename Fn> |
799 |
|
3723 |
void Environment::SetImmediateThreadsafe(Fn&& cb, CallbackFlags::Flags flags) { |
800 |
|
7446 |
auto callback = native_immediates_threadsafe_.CreateCallback( |
801 |
|
3723 |
std::move(cb), flags); |
802 |
|
|
{ |
803 |
|
7446 |
Mutex::ScopedLock lock(native_immediates_threadsafe_mutex_); |
804 |
|
3723 |
native_immediates_threadsafe_.Push(std::move(callback)); |
805 |
✓✓ |
3723 |
if (task_queues_async_initialized_) |
806 |
|
2800 |
uv_async_send(&task_queues_async_); |
807 |
|
|
} |
808 |
|
3723 |
} |
809 |
|
|
|
810 |
|
|
template <typename Fn> |
811 |
|
9423 |
void Environment::RequestInterrupt(Fn&& cb) { |
812 |
|
18846 |
auto callback = native_immediates_interrupts_.CreateCallback( |
813 |
|
9423 |
std::move(cb), CallbackFlags::kRefed); |
814 |
|
|
{ |
815 |
|
18846 |
Mutex::ScopedLock lock(native_immediates_threadsafe_mutex_); |
816 |
|
9423 |
native_immediates_interrupts_.Push(std::move(callback)); |
817 |
✓✓ |
9423 |
if (task_queues_async_initialized_) |
818 |
|
3742 |
uv_async_send(&task_queues_async_); |
819 |
|
|
} |
820 |
|
9423 |
RequestInterruptFromV8(); |
821 |
|
9423 |
} |
822 |
|
|
|
823 |
|
2971043 |
inline bool Environment::can_call_into_js() const { |
824 |
✓✓✓✓
|
2971043 |
return can_call_into_js_ && !is_stopping(); |
825 |
|
|
} |
826 |
|
|
|
827 |
|
1223 |
inline void Environment::set_can_call_into_js(bool can_call_into_js) { |
828 |
|
1223 |
can_call_into_js_ = can_call_into_js; |
829 |
|
1223 |
} |
830 |
|
|
|
831 |
|
1474534 |
inline bool Environment::has_run_bootstrapping_code() const { |
832 |
|
1474534 |
return has_run_bootstrapping_code_; |
833 |
|
|
} |
834 |
|
|
|
835 |
|
5562 |
inline void Environment::DoneBootstrapping() { |
836 |
|
5562 |
has_run_bootstrapping_code_ = true; |
837 |
|
|
// This adjusts the return value of base_object_created_after_bootstrap() so |
838 |
|
|
// that tests that check the count do not have to account for internally |
839 |
|
|
// created BaseObjects. |
840 |
|
5562 |
base_object_created_by_bootstrap_ = base_object_count_; |
841 |
|
5562 |
} |
842 |
|
|
|
843 |
|
19 |
inline bool Environment::has_serialized_options() const { |
844 |
|
19 |
return has_serialized_options_; |
845 |
|
|
} |
846 |
|
|
|
847 |
|
5553 |
inline void Environment::set_has_serialized_options(bool value) { |
848 |
|
5553 |
has_serialized_options_ = value; |
849 |
|
5553 |
} |
850 |
|
|
|
851 |
|
8157 |
inline bool Environment::is_main_thread() const { |
852 |
|
8157 |
return worker_context() == nullptr; |
853 |
|
|
} |
854 |
|
|
|
855 |
|
985 |
inline bool Environment::no_native_addons() const { |
856 |
✓✓ |
1966 |
return (flags_ & EnvironmentFlags::kNoNativeAddons) || |
857 |
✓✓ |
1966 |
!options_->allow_native_addons; |
858 |
|
|
} |
859 |
|
|
|
860 |
|
5527 |
inline bool Environment::should_not_register_esm_loader() const { |
861 |
|
5527 |
return flags_ & EnvironmentFlags::kNoRegisterESMLoader; |
862 |
|
|
} |
863 |
|
|
|
864 |
|
14165 |
inline bool Environment::owns_process_state() const { |
865 |
|
14165 |
return flags_ & EnvironmentFlags::kOwnsProcessState; |
866 |
|
|
} |
867 |
|
|
|
868 |
|
5556 |
inline bool Environment::owns_inspector() const { |
869 |
|
5556 |
return flags_ & EnvironmentFlags::kOwnsInspector; |
870 |
|
|
} |
871 |
|
|
|
872 |
|
125250 |
inline bool Environment::tracks_unmanaged_fds() const { |
873 |
|
125250 |
return flags_ & EnvironmentFlags::kTrackUnmanagedFds; |
874 |
|
|
} |
875 |
|
|
|
876 |
|
3363 |
inline bool Environment::hide_console_windows() const { |
877 |
|
3363 |
return flags_ & EnvironmentFlags::kHideConsoleWindows; |
878 |
|
|
} |
879 |
|
|
|
880 |
|
6341 |
inline bool Environment::no_global_search_paths() const { |
881 |
✓✗ |
12682 |
return (flags_ & EnvironmentFlags::kNoGlobalSearchPaths) || |
882 |
✗✓ |
12682 |
!options_->global_search_paths; |
883 |
|
|
} |
884 |
|
|
|
885 |
|
1441 |
inline bool Environment::no_browser_globals() const { |
886 |
|
|
// configure --no-browser-globals |
887 |
|
|
#ifdef NODE_NO_BROWSER_GLOBALS |
888 |
|
|
return true; |
889 |
|
|
#else |
890 |
|
1441 |
return flags_ & EnvironmentFlags::kNoBrowserGlobals; |
891 |
|
|
#endif |
892 |
|
|
} |
893 |
|
|
|
894 |
|
4 |
bool Environment::filehandle_close_warning() const { |
895 |
|
4 |
return emit_filehandle_warning_; |
896 |
|
|
} |
897 |
|
|
|
898 |
|
3 |
void Environment::set_filehandle_close_warning(bool on) { |
899 |
|
3 |
emit_filehandle_warning_ = on; |
900 |
|
3 |
} |
901 |
|
|
|
902 |
|
5387 |
void Environment::set_source_maps_enabled(bool on) { |
903 |
|
5387 |
source_maps_enabled_ = on; |
904 |
|
5387 |
} |
905 |
|
|
|
906 |
|
877 |
bool Environment::source_maps_enabled() const { |
907 |
|
877 |
return source_maps_enabled_; |
908 |
|
|
} |
909 |
|
|
|
910 |
|
6792 |
inline uint64_t Environment::thread_id() const { |
911 |
|
6792 |
return thread_id_; |
912 |
|
|
} |
913 |
|
|
|
914 |
|
14246 |
inline worker::Worker* Environment::worker_context() const { |
915 |
|
14246 |
return isolate_data()->worker_context(); |
916 |
|
|
} |
917 |
|
|
|
918 |
|
811 |
inline void Environment::add_sub_worker_context(worker::Worker* context) { |
919 |
|
811 |
sub_worker_contexts_.insert(context); |
920 |
|
811 |
} |
921 |
|
|
|
922 |
|
837 |
inline void Environment::remove_sub_worker_context(worker::Worker* context) { |
923 |
|
837 |
sub_worker_contexts_.erase(context); |
924 |
|
837 |
} |
925 |
|
|
|
926 |
|
|
template <typename Fn> |
927 |
|
24 |
inline void Environment::ForEachWorker(Fn&& iterator) { |
928 |
✓✓ |
26 |
for (worker::Worker* w : sub_worker_contexts_) iterator(w); |
929 |
|
24 |
} |
930 |
|
|
|
931 |
|
1606 |
inline void Environment::add_refs(int64_t diff) { |
932 |
|
1606 |
task_queues_async_refs_ += diff; |
933 |
✗✓ |
1606 |
CHECK_GE(task_queues_async_refs_, 0); |
934 |
✓✓ |
1606 |
if (task_queues_async_refs_ == 0) |
935 |
|
184 |
uv_unref(reinterpret_cast<uv_handle_t*>(&task_queues_async_)); |
936 |
|
|
else |
937 |
|
1422 |
uv_ref(reinterpret_cast<uv_handle_t*>(&task_queues_async_)); |
938 |
|
1606 |
} |
939 |
|
|
|
940 |
|
4480487 |
inline bool Environment::is_stopping() const { |
941 |
|
4480487 |
return is_stopping_.load(); |
942 |
|
|
} |
943 |
|
|
|
944 |
|
5242 |
inline void Environment::set_stopping(bool value) { |
945 |
|
5242 |
is_stopping_.store(value); |
946 |
|
5242 |
} |
947 |
|
|
|
948 |
|
14 |
inline std::list<node_module>* Environment::extra_linked_bindings() { |
949 |
|
14 |
return &extra_linked_bindings_; |
950 |
|
|
} |
951 |
|
|
|
952 |
|
10 |
inline node_module* Environment::extra_linked_bindings_head() { |
953 |
✓✓ |
10 |
return extra_linked_bindings_.size() > 0 ? |
954 |
|
10 |
&extra_linked_bindings_.front() : nullptr; |
955 |
|
|
} |
956 |
|
|
|
957 |
|
9 |
inline node_module* Environment::extra_linked_bindings_tail() { |
958 |
✓✓ |
9 |
return extra_linked_bindings_.size() > 0 ? |
959 |
|
9 |
&extra_linked_bindings_.back() : nullptr; |
960 |
|
|
} |
961 |
|
|
|
962 |
|
19 |
inline const Mutex& Environment::extra_linked_bindings_mutex() const { |
963 |
|
19 |
return extra_linked_bindings_mutex_; |
964 |
|
|
} |
965 |
|
|
|
966 |
|
40744 |
inline performance::PerformanceState* Environment::performance_state() { |
967 |
|
40744 |
return performance_state_.get(); |
968 |
|
|
} |
969 |
|
|
|
970 |
|
6940573 |
inline IsolateData* Environment::isolate_data() const { |
971 |
|
6940573 |
return isolate_data_; |
972 |
|
|
} |
973 |
|
|
|
974 |
|
66957 |
inline uv_buf_t Environment::allocate_managed_buffer( |
975 |
|
|
const size_t suggested_size) { |
976 |
|
133914 |
NoArrayBufferZeroFillScope no_zero_fill_scope(isolate_data()); |
977 |
|
|
std::unique_ptr<v8::BackingStore> bs = |
978 |
|
66957 |
v8::ArrayBuffer::NewBackingStore(isolate(), suggested_size); |
979 |
|
66957 |
uv_buf_t buf = uv_buf_init(static_cast<char*>(bs->Data()), bs->ByteLength()); |
980 |
|
66957 |
released_allocated_buffers()->emplace(buf.base, std::move(bs)); |
981 |
|
66957 |
return buf; |
982 |
|
|
} |
983 |
|
|
|
984 |
|
81579 |
inline std::unique_ptr<v8::BackingStore> Environment::release_managed_buffer( |
985 |
|
|
const uv_buf_t& buf) { |
986 |
|
81579 |
std::unique_ptr<v8::BackingStore> bs; |
987 |
✓✓ |
81579 |
if (buf.base != nullptr) { |
988 |
|
66957 |
auto map = released_allocated_buffers(); |
989 |
|
66957 |
auto it = map->find(buf.base); |
990 |
✗✓ |
66957 |
CHECK_NE(it, map->end()); |
991 |
|
66957 |
bs = std::move(it->second); |
992 |
|
66957 |
map->erase(it); |
993 |
|
|
} |
994 |
|
81579 |
return bs; |
995 |
|
|
} |
996 |
|
|
|
997 |
|
|
std::unordered_map<char*, std::unique_ptr<v8::BackingStore>>* |
998 |
|
133914 |
Environment::released_allocated_buffers() { |
999 |
|
133914 |
return &released_allocated_buffers_; |
1000 |
|
|
} |
1001 |
|
|
|
1002 |
|
8 |
inline void Environment::ThrowError(const char* errmsg) { |
1003 |
|
8 |
ThrowError(v8::Exception::Error, errmsg); |
1004 |
|
8 |
} |
1005 |
|
|
|
1006 |
|
|
inline void Environment::ThrowTypeError(const char* errmsg) { |
1007 |
|
|
ThrowError(v8::Exception::TypeError, errmsg); |
1008 |
|
|
} |
1009 |
|
|
|
1010 |
|
|
inline void Environment::ThrowRangeError(const char* errmsg) { |
1011 |
|
|
ThrowError(v8::Exception::RangeError, errmsg); |
1012 |
|
|
} |
1013 |
|
|
|
1014 |
|
8 |
inline void Environment::ThrowError( |
1015 |
|
|
v8::Local<v8::Value> (*fun)(v8::Local<v8::String>), |
1016 |
|
|
const char* errmsg) { |
1017 |
|
16 |
v8::HandleScope handle_scope(isolate()); |
1018 |
|
8 |
isolate()->ThrowException(fun(OneByteString(isolate(), errmsg))); |
1019 |
|
8 |
} |
1020 |
|
|
|
1021 |
|
8 |
inline void Environment::ThrowErrnoException(int errorno, |
1022 |
|
|
const char* syscall, |
1023 |
|
|
const char* message, |
1024 |
|
|
const char* path) { |
1025 |
|
|
isolate()->ThrowException( |
1026 |
|
8 |
ErrnoException(isolate(), errorno, syscall, message, path)); |
1027 |
|
8 |
} |
1028 |
|
|
|
1029 |
|
14 |
inline void Environment::ThrowUVException(int errorno, |
1030 |
|
|
const char* syscall, |
1031 |
|
|
const char* message, |
1032 |
|
|
const char* path, |
1033 |
|
|
const char* dest) { |
1034 |
|
|
isolate()->ThrowException( |
1035 |
|
14 |
UVException(isolate(), errorno, syscall, message, path, dest)); |
1036 |
|
14 |
} |
1037 |
|
|
|
1038 |
|
1577819 |
inline v8::Local<v8::FunctionTemplate> Environment::NewFunctionTemplate( |
1039 |
|
|
v8::FunctionCallback callback, |
1040 |
|
|
v8::Local<v8::Signature> signature, |
1041 |
|
|
v8::ConstructorBehavior behavior, |
1042 |
|
|
v8::SideEffectType side_effect_type, |
1043 |
|
|
const v8::CFunction* c_function) { |
1044 |
|
|
return v8::FunctionTemplate::New(isolate(), |
1045 |
|
|
callback, |
1046 |
|
|
v8::Local<v8::Value>(), |
1047 |
|
|
signature, |
1048 |
|
|
0, |
1049 |
|
|
behavior, |
1050 |
|
|
side_effect_type, |
1051 |
|
1577819 |
c_function); |
1052 |
|
|
} |
1053 |
|
|
|
1054 |
|
261318 |
inline void Environment::SetMethod(v8::Local<v8::Object> that, |
1055 |
|
|
const char* name, |
1056 |
|
|
v8::FunctionCallback callback) { |
1057 |
|
261318 |
v8::Local<v8::Context> context = isolate()->GetCurrentContext(); |
1058 |
|
|
v8::Local<v8::Function> function = |
1059 |
|
261318 |
NewFunctionTemplate(callback, v8::Local<v8::Signature>(), |
1060 |
|
|
v8::ConstructorBehavior::kThrow, |
1061 |
|
261318 |
v8::SideEffectType::kHasSideEffect) |
1062 |
|
261318 |
->GetFunction(context) |
1063 |
|
261318 |
.ToLocalChecked(); |
1064 |
|
|
// kInternalized strings are created in the old space. |
1065 |
|
261318 |
const v8::NewStringType type = v8::NewStringType::kInternalized; |
1066 |
|
|
v8::Local<v8::String> name_string = |
1067 |
|
522636 |
v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked(); |
1068 |
|
522636 |
that->Set(context, name_string, function).Check(); |
1069 |
|
261318 |
function->SetName(name_string); // NODE_SET_METHOD() compatibility. |
1070 |
|
261318 |
} |
1071 |
|
|
|
1072 |
|
1254 |
inline void Environment::SetFastMethod(v8::Local<v8::Object> that, |
1073 |
|
|
const char* name, |
1074 |
|
|
v8::FunctionCallback slow_callback, |
1075 |
|
|
const v8::CFunction* c_function) { |
1076 |
|
1254 |
v8::Local<v8::Context> context = isolate()->GetCurrentContext(); |
1077 |
|
|
v8::Local<v8::Function> function = |
1078 |
|
1254 |
NewFunctionTemplate(slow_callback, |
1079 |
|
|
v8::Local<v8::Signature>(), |
1080 |
|
|
v8::ConstructorBehavior::kThrow, |
1081 |
|
|
v8::SideEffectType::kHasNoSideEffect, |
1082 |
|
1254 |
c_function) |
1083 |
|
1254 |
->GetFunction(context) |
1084 |
|
1254 |
.ToLocalChecked(); |
1085 |
|
1254 |
const v8::NewStringType type = v8::NewStringType::kInternalized; |
1086 |
|
|
v8::Local<v8::String> name_string = |
1087 |
|
2508 |
v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked(); |
1088 |
|
1254 |
that->Set(context, name_string, function).Check(); |
1089 |
|
1254 |
} |
1090 |
|
|
|
1091 |
|
123817 |
inline void Environment::SetMethodNoSideEffect(v8::Local<v8::Object> that, |
1092 |
|
|
const char* name, |
1093 |
|
|
v8::FunctionCallback callback) { |
1094 |
|
123817 |
v8::Local<v8::Context> context = isolate()->GetCurrentContext(); |
1095 |
|
|
v8::Local<v8::Function> function = |
1096 |
|
123817 |
NewFunctionTemplate(callback, v8::Local<v8::Signature>(), |
1097 |
|
|
v8::ConstructorBehavior::kThrow, |
1098 |
|
123817 |
v8::SideEffectType::kHasNoSideEffect) |
1099 |
|
123817 |
->GetFunction(context) |
1100 |
|
123817 |
.ToLocalChecked(); |
1101 |
|
|
// kInternalized strings are created in the old space. |
1102 |
|
123817 |
const v8::NewStringType type = v8::NewStringType::kInternalized; |
1103 |
|
|
v8::Local<v8::String> name_string = |
1104 |
|
247634 |
v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked(); |
1105 |
|
247634 |
that->Set(context, name_string, function).Check(); |
1106 |
|
123817 |
function->SetName(name_string); // NODE_SET_METHOD() compatibility. |
1107 |
|
123817 |
} |
1108 |
|
|
|
1109 |
|
794110 |
inline void Environment::SetProtoMethod(v8::Local<v8::FunctionTemplate> that, |
1110 |
|
|
const char* name, |
1111 |
|
|
v8::FunctionCallback callback) { |
1112 |
|
794110 |
v8::Local<v8::Signature> signature = v8::Signature::New(isolate(), that); |
1113 |
|
|
v8::Local<v8::FunctionTemplate> t = |
1114 |
|
|
NewFunctionTemplate(callback, signature, v8::ConstructorBehavior::kThrow, |
1115 |
|
794110 |
v8::SideEffectType::kHasSideEffect); |
1116 |
|
|
// kInternalized strings are created in the old space. |
1117 |
|
794110 |
const v8::NewStringType type = v8::NewStringType::kInternalized; |
1118 |
|
|
v8::Local<v8::String> name_string = |
1119 |
|
1588220 |
v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked(); |
1120 |
|
1588220 |
that->PrototypeTemplate()->Set(name_string, t); |
1121 |
|
794110 |
t->SetClassName(name_string); // NODE_SET_PROTOTYPE_METHOD() compatibility. |
1122 |
|
794110 |
} |
1123 |
|
|
|
1124 |
|
126963 |
inline void Environment::SetProtoMethodNoSideEffect( |
1125 |
|
|
v8::Local<v8::FunctionTemplate> that, |
1126 |
|
|
const char* name, |
1127 |
|
|
v8::FunctionCallback callback) { |
1128 |
|
126963 |
v8::Local<v8::Signature> signature = v8::Signature::New(isolate(), that); |
1129 |
|
|
v8::Local<v8::FunctionTemplate> t = |
1130 |
|
|
NewFunctionTemplate(callback, signature, v8::ConstructorBehavior::kThrow, |
1131 |
|
126963 |
v8::SideEffectType::kHasNoSideEffect); |
1132 |
|
|
// kInternalized strings are created in the old space. |
1133 |
|
126963 |
const v8::NewStringType type = v8::NewStringType::kInternalized; |
1134 |
|
|
v8::Local<v8::String> name_string = |
1135 |
|
253926 |
v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked(); |
1136 |
|
253926 |
that->PrototypeTemplate()->Set(name_string, t); |
1137 |
|
126963 |
t->SetClassName(name_string); // NODE_SET_PROTOTYPE_METHOD() compatibility. |
1138 |
|
126963 |
} |
1139 |
|
|
|
1140 |
|
33 |
inline void Environment::SetInstanceMethod(v8::Local<v8::FunctionTemplate> that, |
1141 |
|
|
const char* name, |
1142 |
|
|
v8::FunctionCallback callback) { |
1143 |
|
33 |
v8::Local<v8::Signature> signature = v8::Signature::New(isolate(), that); |
1144 |
|
|
v8::Local<v8::FunctionTemplate> t = |
1145 |
|
|
NewFunctionTemplate(callback, signature, v8::ConstructorBehavior::kThrow, |
1146 |
|
33 |
v8::SideEffectType::kHasSideEffect); |
1147 |
|
|
// kInternalized strings are created in the old space. |
1148 |
|
33 |
const v8::NewStringType type = v8::NewStringType::kInternalized; |
1149 |
|
|
v8::Local<v8::String> name_string = |
1150 |
|
66 |
v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked(); |
1151 |
|
66 |
that->InstanceTemplate()->Set(name_string, t); |
1152 |
|
33 |
t->SetClassName(name_string); |
1153 |
|
33 |
} |
1154 |
|
|
|
1155 |
|
201967 |
inline void Environment::SetConstructorFunction( |
1156 |
|
|
v8::Local<v8::Object> that, |
1157 |
|
|
const char* name, |
1158 |
|
|
v8::Local<v8::FunctionTemplate> tmpl, |
1159 |
|
|
SetConstructorFunctionFlag flag) { |
1160 |
|
201967 |
SetConstructorFunction(that, OneByteString(isolate(), name), tmpl, flag); |
1161 |
|
201967 |
} |
1162 |
|
|
|
1163 |
|
212614 |
inline void Environment::SetConstructorFunction( |
1164 |
|
|
v8::Local<v8::Object> that, |
1165 |
|
|
v8::Local<v8::String> name, |
1166 |
|
|
v8::Local<v8::FunctionTemplate> tmpl, |
1167 |
|
|
SetConstructorFunctionFlag flag) { |
1168 |
✓✓ |
212614 |
if (LIKELY(flag == SetConstructorFunctionFlag::SET_CLASS_NAME)) |
1169 |
|
197177 |
tmpl->SetClassName(name); |
1170 |
|
212614 |
that->Set( |
1171 |
|
|
context(), |
1172 |
|
|
name, |
1173 |
|
425228 |
tmpl->GetFunction(context()).ToLocalChecked()).Check(); |
1174 |
|
212614 |
} |
1175 |
|
|
|
1176 |
|
428841 |
void Environment::AddCleanupHook(CleanupCallback fn, void* arg) { |
1177 |
|
857682 |
auto insertion_info = cleanup_hooks_.emplace(CleanupHookCallback { |
1178 |
|
428841 |
fn, arg, cleanup_hook_counter_++ |
1179 |
|
428841 |
}); |
1180 |
|
|
// Make sure there was no existing element with these values. |
1181 |
✗✓ |
428841 |
CHECK_EQ(insertion_info.second, true); |
1182 |
|
428841 |
} |
1183 |
|
|
|
1184 |
|
413393 |
void Environment::RemoveCleanupHook(CleanupCallback fn, void* arg) { |
1185 |
|
413393 |
CleanupHookCallback search { fn, arg, 0 }; |
1186 |
|
413393 |
cleanup_hooks_.erase(search); |
1187 |
|
413393 |
} |
1188 |
|
|
|
1189 |
|
1110248 |
size_t CleanupHookCallback::Hash::operator()( |
1190 |
|
|
const CleanupHookCallback& cb) const { |
1191 |
|
1110248 |
return std::hash<void*>()(cb.arg_); |
1192 |
|
|
} |
1193 |
|
|
|
1194 |
|
551670 |
bool CleanupHookCallback::Equal::operator()( |
1195 |
|
|
const CleanupHookCallback& a, const CleanupHookCallback& b) const { |
1196 |
✓✓✓✗
|
551670 |
return a.fn_ == b.fn_ && a.arg_ == b.arg_; |
1197 |
|
|
} |
1198 |
|
|
|
1199 |
|
520 |
BaseObject* CleanupHookCallback::GetBaseObject() const { |
1200 |
✓✓ |
520 |
if (fn_ == BaseObject::DeleteMe) |
1201 |
|
493 |
return static_cast<BaseObject*>(arg_); |
1202 |
|
|
else |
1203 |
|
27 |
return nullptr; |
1204 |
|
|
} |
1205 |
|
|
|
1206 |
|
|
template <typename T> |
1207 |
|
46 |
void Environment::ForEachBaseObject(T&& iterator) { |
1208 |
✓✓ |
1086 |
for (const auto& hook : cleanup_hooks_) { |
1209 |
|
1040 |
BaseObject* obj = hook.GetBaseObject(); |
1210 |
✓✓ |
1040 |
if (obj != nullptr) |
1211 |
|
986 |
iterator(obj); |
1212 |
|
|
} |
1213 |
|
|
} |
1214 |
|
|
|
1215 |
|
|
template <typename T> |
1216 |
|
6 |
void Environment::ForEachBindingData(T&& iterator) { |
1217 |
|
|
BindingDataStore* map = static_cast<BindingDataStore*>( |
1218 |
|
12 |
context()->GetAlignedPointerFromEmbedderData( |
1219 |
|
|
ContextEmbedderIndex::kBindingListIndex)); |
1220 |
|
|
DCHECK_NOT_NULL(map); |
1221 |
✓✓ |
30 |
for (auto& it : *map) { |
1222 |
|
24 |
iterator(it.first, it.second); |
1223 |
|
|
} |
1224 |
|
6 |
} |
1225 |
|
|
|
1226 |
|
781661 |
void Environment::modify_base_object_count(int64_t delta) { |
1227 |
|
781661 |
base_object_count_ += delta; |
1228 |
|
781661 |
} |
1229 |
|
|
|
1230 |
|
14 |
int64_t Environment::base_object_created_after_bootstrap() const { |
1231 |
|
14 |
return base_object_count_ - base_object_created_by_bootstrap_; |
1232 |
|
|
} |
1233 |
|
|
|
1234 |
|
2 |
int64_t Environment::base_object_count() const { |
1235 |
|
2 |
return base_object_count_; |
1236 |
|
|
} |
1237 |
|
|
|
1238 |
|
17 |
void Environment::set_main_utf16(std::unique_ptr<v8::String::Value> str) { |
1239 |
✗✓ |
17 |
CHECK(!main_utf16_); |
1240 |
|
17 |
main_utf16_ = std::move(str); |
1241 |
|
17 |
} |
1242 |
|
|
|
1243 |
|
574 |
void Environment::set_process_exit_handler( |
1244 |
|
|
std::function<void(Environment*, int)>&& handler) { |
1245 |
|
574 |
process_exit_handler_ = std::move(handler); |
1246 |
|
574 |
} |
1247 |
|
|
|
1248 |
|
|
#define VP(PropertyName, StringValue) V(v8::Private, PropertyName) |
1249 |
|
|
#define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName) |
1250 |
|
|
#define VS(PropertyName, StringValue) V(v8::String, PropertyName) |
1251 |
|
|
#define V(TypeName, PropertyName) \ |
1252 |
|
|
inline \ |
1253 |
|
|
v8::Local<TypeName> IsolateData::PropertyName() const { \ |
1254 |
|
|
return PropertyName ## _ .Get(isolate_); \ |
1255 |
|
|
} |
1256 |
|
43912 |
PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP) |
1257 |
|
897560 |
PER_ISOLATE_SYMBOL_PROPERTIES(VY) |
1258 |
|
6629259 |
PER_ISOLATE_STRING_PROPERTIES(VS) |
1259 |
|
|
#undef V |
1260 |
|
|
#undef VS |
1261 |
|
|
#undef VY |
1262 |
|
|
#undef VP |
1263 |
|
|
|
1264 |
|
|
#define VP(PropertyName, StringValue) V(v8::Private, PropertyName) |
1265 |
|
|
#define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName) |
1266 |
|
|
#define VS(PropertyName, StringValue) V(v8::String, PropertyName) |
1267 |
|
|
#define V(TypeName, PropertyName) \ |
1268 |
|
|
inline v8::Local<TypeName> Environment::PropertyName() const { \ |
1269 |
|
|
return isolate_data()->PropertyName(); \ |
1270 |
|
|
} |
1271 |
|
43912 |
PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP) |
1272 |
|
778197 |
PER_ISOLATE_SYMBOL_PROPERTIES(VY) |
1273 |
|
9544880 |
PER_ISOLATE_STRING_PROPERTIES(VS) |
1274 |
|
|
#undef V |
1275 |
|
|
#undef VS |
1276 |
|
|
#undef VY |
1277 |
|
|
#undef VP |
1278 |
|
|
|
1279 |
|
|
#define V(PropertyName, TypeName) \ |
1280 |
|
|
inline v8::Local<TypeName> Environment::PropertyName() const { \ |
1281 |
|
|
return PersistentToLocal::Strong(PropertyName ## _); \ |
1282 |
|
|
} \ |
1283 |
|
|
inline void Environment::set_ ## PropertyName(v8::Local<TypeName> value) { \ |
1284 |
|
|
PropertyName ## _.Reset(isolate(), value); \ |
1285 |
|
|
} |
1286 |
|
1358130 |
ENVIRONMENT_STRONG_PERSISTENT_TEMPLATES(V) |
1287 |
|
3909768 |
ENVIRONMENT_STRONG_PERSISTENT_VALUES(V) |
1288 |
|
|
#undef V |
1289 |
|
|
|
1290 |
|
7248208 |
v8::Local<v8::Context> Environment::context() const { |
1291 |
|
7248208 |
return PersistentToLocal::Strong(context_); |
1292 |
|
|
} |
1293 |
|
|
|
1294 |
|
|
} // namespace node |
1295 |
|
|
|
1296 |
|
|
// These two files depend on each other. Including base_object-inl.h after this |
1297 |
|
|
// file is the easiest way to avoid issues with that circular dependency. |
1298 |
|
|
#include "base_object-inl.h" |
1299 |
|
|
|
1300 |
|
|
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS |
1301 |
|
|
|
1302 |
|
|
#endif // SRC_ENV_INL_H_ |