electron/atom/browser/node_debugger.cc

68 lines
1.9 KiB
C++
Raw Normal View History

// 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>
#include <string>
2018-09-18 00:48:10 +00:00
#include <vector>
#include "atom/common/node_includes.h"
#include "base/command_line.h"
2018-09-18 00:48:10 +00:00
#include "base/logging.h"
#include "base/strings/string_util.h"
2017-05-15 18:16:32 +00:00
#include "base/strings/utf_string_conversions.h"
#include "libplatform/libplatform.h"
2017-05-16 21:50:49 +00:00
#include "native_mate/dictionary.h"
namespace atom {
2018-04-18 01:55:30 +00:00
NodeDebugger::NodeDebugger(node::Environment* env) : env_(env) {}
2018-04-18 01:55:30 +00:00
NodeDebugger::~NodeDebugger() {}
void NodeDebugger::Start() {
auto* inspector = env_->inspector_agent();
if (inspector == nullptr)
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
}
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(
&args, &exec_args, &v8_args, &options,
2018-10-25 19:36:13 +00:00
node::options_parser::kDisallowedInEnvironment, &errors);
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?
LOG(ERROR) << "Error parsing node options: "
<< base::JoinString(errors, " ");
2017-05-15 18:16:32 +00:00
}
// Set process._debugWaitConnect if --inspect-brk was specified to stop
// the debugger on the first line
if (options.wait_for_connect()) {
mate::Dictionary process(env_->isolate(), env_->process_object());
process.Set("_breakFirstLine", true);
}
2018-09-18 00:48:10 +00:00
const char* path = "";
if (inspector->Start(path, options, env_->inspector_host_port(),
true /* is_main */))
DCHECK(env_->inspector_agent()->IsListening());
}
} // namespace atom