Make every JS function call is wrapped with V8RecursionScope
This commit is contained in:
parent
ab44edd294
commit
74fa2c809d
1 changed files with 18 additions and 0 deletions
|
@ -4,15 +4,33 @@
|
||||||
|
|
||||||
#include "atom/common/event_emitter_caller.h"
|
#include "atom/common/event_emitter_caller.h"
|
||||||
|
|
||||||
|
#include "base/memory/scoped_ptr.h"
|
||||||
|
#include "third_party/WebKit/public/web/WebScopedMicrotaskSuppression.h"
|
||||||
|
|
||||||
#include "atom/common/node_includes.h"
|
#include "atom/common/node_includes.h"
|
||||||
|
|
||||||
namespace mate {
|
namespace mate {
|
||||||
|
|
||||||
namespace internal {
|
namespace internal {
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
// Returns whether current process is browser process, currently we detect it
|
||||||
|
// by checking whether current has used V8 Lock, but it might be a bad idea.
|
||||||
|
inline bool IsBrowserProcess() {
|
||||||
|
return v8::Locker::IsActive();
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace
|
||||||
|
|
||||||
v8::Local<v8::Value> CallEmitWithArgs(v8::Isolate* isolate,
|
v8::Local<v8::Value> CallEmitWithArgs(v8::Isolate* isolate,
|
||||||
v8::Local<v8::Object> obj,
|
v8::Local<v8::Object> obj,
|
||||||
ValueVector* args) {
|
ValueVector* args) {
|
||||||
|
// Perform microtask checkpoint after running JavaScript.
|
||||||
|
scoped_ptr<blink::WebScopedRunV8Script> script_scope(
|
||||||
|
IsBrowserProcess() ? nullptr : new blink::WebScopedRunV8Script(isolate));
|
||||||
|
// Use node::MakeCallback to call the callback, and it will also run pending
|
||||||
|
// tasks in Node.js.
|
||||||
return node::MakeCallback(
|
return node::MakeCallback(
|
||||||
isolate, obj, "emit", args->size(), &args->front());
|
isolate, obj, "emit", args->size(), &args->front());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue