File tree 7 files changed +45
-17
lines changed
7 files changed +45
-17
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,8 @@ Local<Value> AsyncWrap::MakeCallback(const Local<Function> cb,
184
184
Local<Object> domain;
185
185
bool has_domain = false ;
186
186
187
+ Environment::AsyncCallbackScope callback_scope (env ());
188
+
187
189
if (env ()->using_domains ()) {
188
190
Local<Value> domain_v = context->Get (env ()->domain_string ());
189
191
has_domain = domain_v->IsObject ();
@@ -236,7 +238,7 @@ Local<Value> AsyncWrap::MakeCallback(const Local<Function> cb,
236
238
237
239
Environment::TickInfo* tick_info = env ()->tick_info ();
238
240
239
- if (tick_info-> in_tick ()) {
241
+ if (callback_scope. in_makecallback ()) {
240
242
return ret;
241
243
}
242
244
@@ -249,12 +251,8 @@ Local<Value> AsyncWrap::MakeCallback(const Local<Function> cb,
249
251
return ret;
250
252
}
251
253
252
- tick_info->set_in_tick (true );
253
-
254
254
env ()->tick_callback_function ()->Call (process, 0 , nullptr );
255
255
256
- tick_info->set_in_tick (false );
257
-
258
256
if (try_catch.HasCaught ()) {
259
257
tick_info->set_last_threw (true );
260
258
return Undefined (env ()->isolate ());
Original file line number Diff line number Diff line change @@ -101,6 +101,20 @@ inline void Environment::AsyncHooks::set_enable_callbacks(uint32_t flag) {
101
101
fields_[kEnableCallbacks ] = flag;
102
102
}
103
103
104
+ inline Environment::AsyncCallbackScope::AsyncCallbackScope (Environment* env)
105
+ : env_(env) {
106
+ env_->makecallback_cntr_ ++;
107
+ }
108
+
109
+ inline Environment::AsyncCallbackScope::~AsyncCallbackScope () {
110
+ env_->makecallback_cntr_ --;
111
+ CHECK_GE (env_->makecallback_cntr_ , 0 );
112
+ }
113
+
114
+ inline bool Environment::AsyncCallbackScope::in_makecallback () {
115
+ return env_->makecallback_cntr_ > 1 ;
116
+ }
117
+
104
118
inline Environment::DomainFlag::DomainFlag () {
105
119
for (int i = 0 ; i < kFieldsCount ; ++i) fields_[i] = 0 ;
106
120
}
@@ -223,6 +237,7 @@ inline Environment::Environment(v8::Local<v8::Context> context,
223
237
using_domains_(false ),
224
238
printed_error_(false ),
225
239
trace_sync_io_(false ),
240
+ makecallback_cntr_(0 ),
226
241
async_wrap_uid_(0 ),
227
242
debugger_agent_(this ),
228
243
http_parser_buffer_(nullptr ),
Original file line number Diff line number Diff line change @@ -64,10 +64,10 @@ void Environment::PrintSyncTrace() const {
64
64
}
65
65
66
66
67
- bool Environment::KickNextTick () {
67
+ bool Environment::KickNextTick (Environment::AsyncCallbackScope* scope ) {
68
68
TickInfo* info = tick_info ();
69
69
70
- if (info-> in_tick ()) {
70
+ if (scope-> in_makecallback ()) {
71
71
return true ;
72
72
}
73
73
@@ -80,15 +80,11 @@ bool Environment::KickNextTick() {
80
80
return true ;
81
81
}
82
82
83
- info->set_in_tick (true );
84
-
85
83
// process nextTicks after call
86
84
TryCatch try_catch;
87
85
try_catch.SetVerbose (true );
88
86
tick_callback_function ()->Call (process_object (), 0 , nullptr );
89
87
90
- info->set_in_tick (false );
91
-
92
88
if (try_catch.HasCaught ()) {
93
89
info->set_last_threw (true );
94
90
return false ;
Original file line number Diff line number Diff line change @@ -314,6 +314,19 @@ class Environment {
314
314
DISALLOW_COPY_AND_ASSIGN (AsyncHooks);
315
315
};
316
316
317
+ class AsyncCallbackScope {
318
+ public:
319
+ explicit AsyncCallbackScope (Environment* env);
320
+ ~AsyncCallbackScope ();
321
+
322
+ inline bool in_makecallback ();
323
+
324
+ private:
325
+ Environment* env_;
326
+
327
+ DISALLOW_COPY_AND_ASSIGN (AsyncCallbackScope);
328
+ };
329
+
317
330
class DomainFlag {
318
331
public:
319
332
inline uint32_t * fields ();
@@ -466,7 +479,7 @@ class Environment {
466
479
467
480
inline int64_t get_async_wrap_uid ();
468
481
469
- bool KickNextTick ();
482
+ bool KickNextTick (AsyncCallbackScope* scope );
470
483
471
484
inline uint32_t * heap_statistics_buffer () const ;
472
485
inline void set_heap_statistics_buffer (uint32_t * pointer);
@@ -569,6 +582,7 @@ class Environment {
569
582
bool using_domains_;
570
583
bool printed_error_;
571
584
bool trace_sync_io_;
585
+ size_t makecallback_cntr_;
572
586
int64_t async_wrap_uid_;
573
587
debugger::Agent debugger_agent_;
574
588
Original file line number Diff line number Diff line change @@ -1140,6 +1140,8 @@ Local<Value> MakeCallback(Environment* env,
1140
1140
bool ran_init_callback = false ;
1141
1141
bool has_domain = false ;
1142
1142
1143
+ Environment::AsyncCallbackScope callback_scope (env);
1144
+
1143
1145
// TODO(trevnorris): Adding "_asyncQueue" to the "this" in the init callback
1144
1146
// is a horrible way to detect usage. Rethink how detection should happen.
1145
1147
if (recv->IsObject ()) {
@@ -1200,7 +1202,7 @@ Local<Value> MakeCallback(Environment* env,
1200
1202
}
1201
1203
}
1202
1204
1203
- if (!env->KickNextTick ())
1205
+ if (!env->KickNextTick (&callback_scope ))
1204
1206
return Undefined (env->isolate ());
1205
1207
1206
1208
return ret;
@@ -4151,7 +4153,10 @@ static void StartNodeInstance(void* arg) {
4151
4153
if (instance_data->use_debug_agent ())
4152
4154
StartDebug (env, debug_wait_connect);
4153
4155
4154
- LoadEnvironment (env);
4156
+ {
4157
+ Environment::AsyncCallbackScope callback_scope (env);
4158
+ LoadEnvironment (env);
4159
+ }
4155
4160
4156
4161
env->set_trace_sync_io (trace_sync_io);
4157
4162
Original file line number Diff line number Diff line change @@ -578,6 +578,8 @@ class Parser : public BaseObject {
578
578
if (!cb->IsFunction ())
579
579
return ;
580
580
581
+ Environment::AsyncCallbackScope callback_scope (parser->env ());
582
+
581
583
// Hooks for GetCurrentBuffer
582
584
parser->current_buffer_len_ = nread;
583
585
parser->current_buffer_data_ = buf->base ;
@@ -587,7 +589,7 @@ class Parser : public BaseObject {
587
589
parser->current_buffer_len_ = 0 ;
588
590
parser->current_buffer_data_ = nullptr ;
589
591
590
- parser->env ()->KickNextTick ();
592
+ parser->env ()->KickNextTick (&callback_scope );
591
593
}
592
594
593
595
Original file line number Diff line number Diff line change @@ -69,8 +69,6 @@ v8::Local<v8::Value> MakeCallback(Environment* env,
69
69
int argc = 0 ,
70
70
v8::Local<v8::Value>* argv = nullptr );
71
71
72
- bool KickNextTick ();
73
-
74
72
// Convert a struct sockaddr to a { address: '1.2.3.4', port: 1234 } JS object.
75
73
// Sets address and port properties on the info object and returns it.
76
74
// If |info| is omitted, a new object is returned.
You can’t perform that action at this time.
0 commit comments