electron/shell/browser/node_debugger.cc

68 lines
1.8 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 "shell/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 "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"
#include "shell/common/node_includes.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;
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
options_parser.Parse(&args, &exec_args, &v8_args, &options,
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
}
2018-09-18 00:48:10 +00:00
const char* path = "";
if (inspector->Start(path, options,
std::make_shared<node::HostPort>(options.host_port),
true /* is_main */))
DCHECK(env_->inspector_agent()->IsListening());
}
void NodeDebugger::Stop() {
auto* inspector = env_->inspector_agent();
if (inspector && inspector->IsListening())
inspector->Stop();
}
} // namespace atom