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.
|
|
|
|
|
|
|
|
#include "atom/browser/node_debugger.h"
|
|
|
|
|
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
|
|
|
|
2019-03-11 17:13:43 -07:00
|
|
|
#include "atom/common/node_includes.h"
|
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"
|
2017-06-13 00:23:11 +05:30
|
|
|
|
2015-08-27 12:25:28 +08:00
|
|
|
namespace atom {
|
|
|
|
|
2018-04-17 21:55:30 -04:00
|
|
|
NodeDebugger::NodeDebugger(node::Environment* env) : env_(env) {}
|
2015-08-27 12:25:28 +08:00
|
|
|
|
2018-04-17 21:55:30 -04:00
|
|
|
NodeDebugger::~NodeDebugger() {}
|
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
|
|
|
|
|
|
|
node::options_parser::DebugOptionsParser::instance.Parse(
|
2019-01-12 06:30:43 +05:30
|
|
|
&args, &exec_args, &v8_args, &options,
|
2018-10-26 01:06:13 +05:30
|
|
|
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-01-06 07:58:24 -08:00
|
|
|
// Set process._debugWaitConnect if --inspect-brk was specified to stop
|
|
|
|
// the debugger on the first line
|
2019-01-12 06:30:43 +05:30
|
|
|
if (options.wait_for_connect()) {
|
2018-01-06 07:58:24 -08:00
|
|
|
mate::Dictionary process(env_->isolate(), env_->process_object());
|
|
|
|
process.Set("_breakFirstLine", true);
|
2015-08-27 12:25:28 +08:00
|
|
|
}
|
2018-01-06 07:58:24 -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
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace atom
|