19223952a8
* refactor: convert methods of AutoUpdater to gin * refactor: converter in map_converter.h is no more needed * refactor: use gin in crash_reporter * refactor: remove native_mate_converters/map_converter.h * refactor: implement gfx_converter with gin * refactor: convert methods of NativeImage to gin * refactor: add gin_helper::Arguments * fix: use gin_helper::Arguments to parse multi-type parameters
152 lines
5 KiB
C++
152 lines
5 KiB
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/common/crash_reporter/crash_reporter.h"
|
|
|
|
#include <memory>
|
|
|
|
#include "base/command_line.h"
|
|
#include "base/environment.h"
|
|
#include "base/files/file_util.h"
|
|
#include "base/strings/string_number_conversions.h"
|
|
#include "base/strings/string_split.h"
|
|
#include "base/threading/thread_restrictions.h"
|
|
#include "content/public/common/content_switches.h"
|
|
#include "electron/electron_version.h"
|
|
#include "shell/browser/browser.h"
|
|
#include "shell/common/atom_constants.h"
|
|
#include "shell/common/gin_converters/file_path_converter.h"
|
|
#include "shell/common/gin_helper/dictionary.h"
|
|
|
|
namespace crash_reporter {
|
|
|
|
const char kCrashpadProcess[] = "crash-handler";
|
|
const char kCrashesDirectoryKey[] = "crashes-directory";
|
|
|
|
CrashReporter::CrashReporter() {
|
|
#if BUILDFLAG(ENABLE_RUN_AS_NODE)
|
|
bool run_as_node = base::Environment::Create()->HasVar(electron::kRunAsNode);
|
|
#else
|
|
bool run_as_node = false;
|
|
#endif
|
|
|
|
if (run_as_node) {
|
|
process_type_ = "node";
|
|
} else {
|
|
auto* cmd = base::CommandLine::ForCurrentProcess();
|
|
process_type_ = cmd->GetSwitchValueASCII(switches::kProcessType);
|
|
}
|
|
// process_type_ will be empty for browser process
|
|
}
|
|
|
|
CrashReporter::~CrashReporter() = default;
|
|
|
|
bool CrashReporter::IsInitialized() {
|
|
return is_initialized_;
|
|
}
|
|
|
|
void CrashReporter::Start(const std::string& product_name,
|
|
const std::string& company_name,
|
|
const std::string& submit_url,
|
|
const base::FilePath& crashes_dir,
|
|
bool upload_to_server,
|
|
bool skip_system_crash_handler,
|
|
const StringMap& extra_parameters) {
|
|
is_initialized_ = true;
|
|
SetUploadParameters(extra_parameters);
|
|
|
|
Init(product_name, company_name, submit_url, crashes_dir, upload_to_server,
|
|
skip_system_crash_handler);
|
|
}
|
|
|
|
void CrashReporter::SetUploadParameters(const StringMap& parameters) {
|
|
upload_parameters_ = parameters;
|
|
upload_parameters_["process_type"] =
|
|
process_type_.empty() ? "browser" : process_type_;
|
|
upload_parameters_["prod"] = ELECTRON_PRODUCT_NAME;
|
|
upload_parameters_["ver"] = ELECTRON_VERSION_STRING;
|
|
|
|
// Setting platform dependent parameters.
|
|
SetUploadParameters();
|
|
}
|
|
|
|
void CrashReporter::SetUploadToServer(const bool upload_to_server) {}
|
|
|
|
bool CrashReporter::GetUploadToServer() {
|
|
return true;
|
|
}
|
|
|
|
std::vector<CrashReporter::UploadReportResult>
|
|
CrashReporter::GetUploadedReports(const base::FilePath& crashes_dir) {
|
|
base::ThreadRestrictions::ScopedAllowIO allow_io;
|
|
std::string file_content;
|
|
std::vector<CrashReporter::UploadReportResult> result;
|
|
base::FilePath uploads_path =
|
|
crashes_dir.Append(FILE_PATH_LITERAL("uploads.log"));
|
|
if (base::ReadFileToString(uploads_path, &file_content)) {
|
|
std::vector<std::string> reports = base::SplitString(
|
|
file_content, "\n", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
|
|
for (const std::string& report : reports) {
|
|
std::vector<std::string> report_item = base::SplitString(
|
|
report, ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
|
|
int report_time = 0;
|
|
if (report_item.size() >= 2 &&
|
|
base::StringToInt(report_item[0], &report_time)) {
|
|
result.emplace_back(report_time, report_item[1]);
|
|
}
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void CrashReporter::Init(const std::string& product_name,
|
|
const std::string& company_name,
|
|
const std::string& submit_url,
|
|
const base::FilePath& crashes_dir,
|
|
bool auto_submit,
|
|
bool skip_system_crash_handler) {}
|
|
|
|
void CrashReporter::SetUploadParameters() {}
|
|
|
|
void CrashReporter::AddExtraParameter(const std::string& key,
|
|
const std::string& value) {}
|
|
|
|
void CrashReporter::RemoveExtraParameter(const std::string& key) {}
|
|
|
|
std::map<std::string, std::string> CrashReporter::GetParameters() const {
|
|
return upload_parameters_;
|
|
}
|
|
|
|
#if defined(OS_MACOSX) && defined(MAS_BUILD)
|
|
// static
|
|
CrashReporter* CrashReporter::GetInstance() {
|
|
static CrashReporter crash_reporter;
|
|
return &crash_reporter;
|
|
}
|
|
#endif
|
|
|
|
void CrashReporter::StartInstance(const gin_helper::Dictionary& options) {
|
|
auto* reporter = GetInstance();
|
|
if (!reporter)
|
|
return;
|
|
|
|
std::string product_name;
|
|
options.Get("productName", &product_name);
|
|
std::string company_name;
|
|
options.Get("companyName", &company_name);
|
|
std::string submit_url;
|
|
options.Get("submitURL", &submit_url);
|
|
base::FilePath crashes_dir;
|
|
options.Get("crashesDirectory", &crashes_dir);
|
|
StringMap extra_parameters;
|
|
options.Get("extra", &extra_parameters);
|
|
|
|
extra_parameters["_productName"] = product_name;
|
|
extra_parameters["_companyName"] = company_name;
|
|
|
|
reporter->Start(product_name, company_name, submit_url, crashes_dir, true,
|
|
false, extra_parameters);
|
|
}
|
|
|
|
} // namespace crash_reporter
|