2015-08-27 04:25:28 +00:00
|
|
|
// 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 16:30:55 +00:00
|
|
|
#include "libplatform/libplatform.h"
|
2015-08-27 04:25:28 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2017-05-15 16:30:55 +00:00
|
|
|
NodeDebugger::NodeDebugger(node::Environment* env) : env_(env) {
|
2015-08-27 04:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NodeDebugger::~NodeDebugger() {
|
|
|
|
}
|
|
|
|
|
2017-05-15 16:30:55 +00:00
|
|
|
void NodeDebugger::Start() {
|
|
|
|
auto inspector = env_->inspector_agent();
|
|
|
|
if (inspector == nullptr)
|
2015-08-27 04:25:28 +00:00
|
|
|
return;
|
|
|
|
|
2017-05-15 16:30:55 +00:00
|
|
|
node::DebugOptions options;
|
|
|
|
for (auto& arg : base::CommandLine::ForCurrentProcess()->argv())
|
|
|
|
options.ParseOption(arg);
|
2015-08-27 04:25:28 +00:00
|
|
|
|
2017-05-15 16:30:55 +00:00
|
|
|
if (options.inspector_enabled()) {
|
|
|
|
// Use custom platform since the gin platform does not work correctly
|
|
|
|
// with node's inspector agent
|
|
|
|
platform_.reset(v8::platform::CreateDefaultPlatform());
|
2015-08-27 04:25:28 +00:00
|
|
|
|
2017-05-15 16:30:55 +00:00
|
|
|
inspector->Start(platform_.get(), nullptr, options);
|
2015-08-27 04:25:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace atom
|