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"
|
|
|
|
|
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
|
|
|
|
2019-03-12 00:13:43 +00:00
|
|
|
#include "atom/common/node_includes.h"
|
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"
|
2017-06-12 18:53:11 +00:00
|
|
|
|
2015-08-27 04:25:28 +00:00
|
|
|
namespace atom {
|
|
|
|
|
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;
|
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
|
|
|
|
|
|
|
node::options_parser::DebugOptionsParser::instance.Parse(
|
2019-01-12 01:00:43 +00:00
|
|
|
&args, &exec_args, &v8_args, &options,
|
2018-10-25 19:36:13 +00:00
|
|
|
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-01-06 15:58:24 +00:00
|
|
|
// Set process._debugWaitConnect if --inspect-brk was specified to stop
|
|
|
|
// the debugger on the first line
|
2019-01-12 01:00:43 +00:00
|
|
|
if (options.wait_for_connect()) {
|
2018-01-06 15:58:24 +00:00
|
|
|
mate::Dictionary process(env_->isolate(), env_->process_object());
|
|
|
|
process.Set("_breakFirstLine", true);
|
2015-08-27 04:25:28 +00:00
|
|
|
}
|
2018-01-06 15:58:24 +00:00
|
|
|
|
2018-09-18 00:48:10 +00:00
|
|
|
const char* path = "";
|
2019-01-12 01:00:43 +00:00
|
|
|
if (inspector->Start(path, options, env_->inspector_host_port(),
|
|
|
|
true /* is_main */))
|
2018-11-09 03:44:31 +00:00
|
|
|
DCHECK(env_->inspector_agent()->IsListening());
|
2015-08-27 04:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace atom
|