2015-08-27 12:25:28 +08: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.
|
|
|
|
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/node_debugger.h"
|
2015-08-27 12:25:28 +08:00
|
|
|
|
2018-09-17 17:48:10 -07:00
|
|
|
#include <memory>
|
2018-08-27 10:50:23 -07:00
|
|
|
#include <string>
|
2018-09-17 17:48:10 -07:00
|
|
|
#include <vector>
|
2018-08-27 10:50:23 -07:00
|
|
|
|
2015-08-27 12:25:28 +08:00
|
|
|
#include "base/command_line.h"
|
2018-09-17 17:48:10 -07:00
|
|
|
#include "base/logging.h"
|
2018-11-29 08:31:09 +05:30
|
|
|
#include "base/strings/string_util.h"
|
2017-05-15 11:16:32 -07:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2017-05-15 09:30:55 -07:00
|
|
|
#include "libplatform/libplatform.h"
|
2019-12-05 18:46:34 +09:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/common/node_includes.h"
|
2017-06-13 00:23:11 +05:30
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2015-08-27 12:25:28 +08:00
|
|
|
|
2018-04-17 21:55:30 -04:00
|
|
|
NodeDebugger::NodeDebugger(node::Environment* env) : env_(env) {}
|
2015-08-27 12:25:28 +08:00
|
|
|
|
2019-09-16 18:12:00 -04:00
|
|
|
NodeDebugger::~NodeDebugger() = default;
|
2015-08-27 12:25:28 +08:00
|
|
|
|
2018-09-04 11:15:17 +02:00
|
|
|
void NodeDebugger::Start() {
|
2018-04-17 15:41:47 -07:00
|
|
|
auto* inspector = env_->inspector_agent();
|
2017-05-15 09:30:55 -07:00
|
|
|
if (inspector == nullptr)
|
2015-08-27 12:25:28 +08:00
|
|
|
return;
|
|
|
|
|
2020-02-09 18:42:02 +00:00
|
|
|
// DebugOptions will already have been set by ProcessGlobalArgs,
|
|
|
|
// so just pull the ones from there to pass to the InspectorAgent
|
|
|
|
const auto debug_options = env_->options()->debug_options();
|
2020-04-14 09:59:03 -07:00
|
|
|
if (inspector->Start("" /* path */, debug_options,
|
|
|
|
std::make_shared<node::ExclusiveAccess<node::HostPort>>(
|
|
|
|
debug_options.host_port),
|
|
|
|
true /* is_main */))
|
2018-11-09 14:44:31 +11:00
|
|
|
DCHECK(env_->inspector_agent()->IsListening());
|
2015-08-27 12:25:28 +08:00
|
|
|
}
|
|
|
|
|
2019-04-30 15:44:40 -07:00
|
|
|
void NodeDebugger::Stop() {
|
|
|
|
auto* inspector = env_->inspector_agent();
|
2019-07-23 14:56:22 -07:00
|
|
|
if (inspector && inspector->IsListening()) {
|
|
|
|
inspector->WaitForDisconnect();
|
2019-04-30 15:44:40 -07:00
|
|
|
inspector->Stop();
|
2019-07-23 14:56:22 -07:00
|
|
|
}
|
2019-04-30 15:44:40 -07:00
|
|
|
}
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|