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.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/node_debugger.h"
|
2015-08-27 04:25:28 +00:00
|
|
|
|
2018-09-18 00:48:10 +00:00
|
|
|
#include <memory>
|
2018-08-27 17:50:23 +00:00
|
|
|
#include <string>
|
2018-09-18 00:48:10 +00:00
|
|
|
#include <vector>
|
2018-08-27 17:50:23 +00:00
|
|
|
|
2015-08-27 04:25:28 +00:00
|
|
|
#include "base/command_line.h"
|
2018-09-18 00:48:10 +00:00
|
|
|
#include "base/logging.h"
|
2018-11-29 03:01:09 +00:00
|
|
|
#include "base/strings/string_util.h"
|
2017-05-15 18:16:32 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2017-05-15 16:30:55 +00:00
|
|
|
#include "libplatform/libplatform.h"
|
2017-05-16 21:50:49 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_includes.h"
|
2017-06-12 18:53:11 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2015-08-27 04:25:28 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
NodeDebugger::NodeDebugger(node::Environment* env) : env_(env) {}
|
2015-08-27 04:25:28 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
NodeDebugger::~NodeDebugger() {}
|
2015-08-27 04:25:28 +00:00
|
|
|
|
2018-09-04 09:15:17 +00:00
|
|
|
void NodeDebugger::Start() {
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* inspector = env_->inspector_agent();
|
2017-05-15 16:30:55 +00:00
|
|
|
if (inspector == nullptr)
|
2015-08-27 04:25:28 +00:00
|
|
|
return;
|
|
|
|
|
2018-09-18 00:48:10 +00:00
|
|
|
std::vector<std::string> args;
|
2017-05-15 18:16:32 +00:00
|
|
|
for (auto& arg : base::CommandLine::ForCurrentProcess()->argv()) {
|
|
|
|
#if defined(OS_WIN)
|
2018-09-18 00:48:10 +00:00
|
|
|
args.push_back(base::UTF16ToUTF8(arg));
|
2017-05-15 18:16:32 +00:00
|
|
|
#else
|
2018-09-18 00:48:10 +00:00
|
|
|
args.push_back(arg);
|
2017-05-15 18:16:32 +00:00
|
|
|
#endif
|
2018-09-18 00:48:10 +00:00
|
|
|
}
|
|
|
|
|
2019-01-12 01:00:43 +00:00
|
|
|
node::DebugOptions options;
|
2019-04-26 09:55:12 +00:00
|
|
|
node::options_parser::DebugOptionsParser options_parser;
|
2018-09-18 00:48:10 +00:00
|
|
|
std::vector<std::string> exec_args;
|
|
|
|
std::vector<std::string> v8_args;
|
2018-10-25 19:36:13 +00:00
|
|
|
std::vector<std::string> errors;
|
2018-09-18 00:48:10 +00:00
|
|
|
|
2019-04-26 09:55:12 +00:00
|
|
|
options_parser.Parse(&args, &exec_args, &v8_args, &options,
|
|
|
|
node::options_parser::kDisallowedInEnvironment, &errors);
|
2018-08-27 17:50:23 +00:00
|
|
|
|
2018-10-25 19:36:13 +00:00
|
|
|
if (!errors.empty()) {
|
2018-09-18 00:48:10 +00:00
|
|
|
// TODO(jeremy): what's the appropriate behaviour here?
|
2018-11-29 03:01:09 +00:00
|
|
|
LOG(ERROR) << "Error parsing node options: "
|
|
|
|
<< base::JoinString(errors, " ");
|
2017-05-15 18:16:32 +00:00
|
|
|
}
|
2015-08-27 04:25:28 +00:00
|
|
|
|
2018-09-18 00:48:10 +00:00
|
|
|
const char* path = "";
|
2019-03-18 16:19:33 +00:00
|
|
|
if (inspector->Start(path, options,
|
|
|
|
std::make_shared<node::HostPort>(options.host_port),
|
2019-01-12 01:00:43 +00:00
|
|
|
true /* is_main */))
|
2018-11-09 03:44:31 +00:00
|
|
|
DCHECK(env_->inspector_agent()->IsListening());
|
2015-08-27 04:25:28 +00:00
|
|
|
}
|
|
|
|
|
2019-04-30 22:44:40 +00:00
|
|
|
void NodeDebugger::Stop() {
|
|
|
|
auto* inspector = env_->inspector_agent();
|
|
|
|
if (inspector && inspector->IsListening())
|
|
|
|
inspector->Stop();
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|