electron/atom/browser/node_debugger.cc

57 lines
1.5 KiB
C++
Raw Normal View History

// Copyright (c) 2014 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "atom/browser/node_debugger.h"
#include "base/command_line.h"
2017-05-15 18:16:32 +00:00
#include "base/strings/utf_string_conversions.h"
#include "libplatform/libplatform.h"
2017-05-16 21:50:49 +00:00
#include "native_mate/dictionary.h"
#include "atom/common/node_includes.h"
namespace atom {
NodeDebugger::NodeDebugger(node::Environment* env) : env_(env) {
}
NodeDebugger::~NodeDebugger() {
2017-11-13 02:43:08 +00:00
FreePlatform(platform_);
}
void NodeDebugger::Start() {
auto inspector = env_->inspector_agent();
if (inspector == nullptr)
return;
node::DebugOptions options;
2017-05-15 18:16:32 +00:00
for (auto& arg : base::CommandLine::ForCurrentProcess()->argv()) {
#if defined(OS_WIN)
2017-07-11 17:09:02 +00:00
options.ParseOption("Electron", base::UTF16ToUTF8(arg));
2017-05-15 18:16:32 +00:00
#else
2017-07-11 17:09:02 +00:00
options.ParseOption("Electron", arg);
2017-05-15 18:16:32 +00:00
#endif
}
if (options.inspector_enabled()) {
// Use custom platform since the gin platform does not work correctly
// with node's inspector agent. We use the default thread pool size
// specified by node.cc
2017-11-13 02:43:08 +00:00
platform_ = node::CreatePlatform(
/* thread_pool_size */ 4, env_->event_loop(),
2017-11-13 02:43:08 +00:00
/* tracing_controller */ nullptr);
2017-05-16 21:50:49 +00:00
// Set process._debugWaitConnect if --inspect-brk was specified to stop
// the debugger on the first line
if (options.wait_for_connect()) {
mate::Dictionary process(env_->isolate(), env_->process_object());
process.Set("_breakFirstLine", true);
2017-05-16 21:50:49 +00:00
}
2017-11-13 02:43:08 +00:00
inspector->Start(platform_, nullptr, options);
}
}
} // namespace atom