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"
|
2017-05-16 14:50:49 -07:00
|
|
|
#include "native_mate/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;
|
|
|
|
|
2018-09-17 17:48:10 -07:00
|
|
|
std::vector<std::string> args;
|
2017-05-15 11:16:32 -07:00
|
|
|
for (auto& arg : base::CommandLine::ForCurrentProcess()->argv()) {
|
|
|
|
#if defined(OS_WIN)
|
2018-09-17 17:48:10 -07:00
|
|
|
args.push_back(base::UTF16ToUTF8(arg));
|
2017-05-15 11:16:32 -07:00
|
|
|
#else
|
2018-09-17 17:48:10 -07:00
|
|
|
args.push_back(arg);
|
2017-05-15 11:16:32 -07:00
|
|
|
#endif
|
2018-09-17 17:48:10 -07:00
|
|
|
}
|
|
|
|
|
2019-01-12 06:30:43 +05:30
|
|
|
node::DebugOptions options;
|
2018-09-17 17:48:10 -07:00
|
|
|
std::vector<std::string> exec_args;
|
|
|
|
std::vector<std::string> v8_args;
|
2018-10-26 01:06:13 +05:30
|
|
|
std::vector<std::string> errors;
|
2018-09-17 17:48:10 -07:00
|
|
|
|
2019-07-15 18:58:39 -07:00
|
|
|
node::options_parser::Parse(&args, &exec_args, &v8_args, &options,
|
|
|
|
node::options_parser::kDisallowedInEnvironment,
|
|
|
|
&errors);
|
2018-08-27 10:50:23 -07:00
|
|
|
|
2018-10-26 01:06:13 +05:30
|
|
|
if (!errors.empty()) {
|
2018-09-17 17:48:10 -07:00
|
|
|
// TODO(jeremy): what's the appropriate behaviour here?
|
2018-11-29 08:31:09 +05:30
|
|
|
LOG(ERROR) << "Error parsing node options: "
|
|
|
|
<< base::JoinString(errors, " ");
|
2017-05-15 11:16:32 -07:00
|
|
|
}
|
2015-08-27 12:25:28 +08:00
|
|
|
|
2018-09-17 17:48:10 -07:00
|
|
|
const char* path = "";
|
2019-03-18 09:19:33 -07:00
|
|
|
if (inspector->Start(path, options,
|
|
|
|
std::make_shared<node::HostPort>(options.host_port),
|
2019-01-12 06:30:43 +05:30
|
|
|
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
|