2017-05-02 04:09:15 +00:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-07-13 02:19:34 +00:00
|
|
|
#include "common/assert.h"
|
2018-08-14 22:48:28 +00:00
|
|
|
#include "common/common_types.h"
|
2017-08-23 00:58:19 +00:00
|
|
|
#include "common/file_util.h"
|
2018-08-14 22:48:28 +00:00
|
|
|
|
2017-08-01 23:55:48 +00:00
|
|
|
#include "core/core.h"
|
2017-07-13 02:19:34 +00:00
|
|
|
#include "core/settings.h"
|
2017-05-02 04:09:15 +00:00
|
|
|
#include "core/telemetry_session.h"
|
2017-07-09 21:52:18 +00:00
|
|
|
|
2017-05-02 04:09:15 +00:00
|
|
|
namespace Core {
|
|
|
|
|
2017-08-23 00:58:19 +00:00
|
|
|
static u64 GenerateTelemetryId() {
|
|
|
|
u64 telemetry_id{};
|
|
|
|
return telemetry_id;
|
|
|
|
}
|
|
|
|
|
2017-08-23 04:08:07 +00:00
|
|
|
u64 GetTelemetryId() {
|
2017-08-23 00:58:19 +00:00
|
|
|
u64 telemetry_id{};
|
2018-07-21 19:52:42 +00:00
|
|
|
static const std::string& filename{FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) +
|
|
|
|
"telemetry_id"};
|
2017-08-23 00:58:19 +00:00
|
|
|
|
|
|
|
if (FileUtil::Exists(filename)) {
|
|
|
|
FileUtil::IOFile file(filename, "rb");
|
|
|
|
if (!file.IsOpen()) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(Core, "failed to open telemetry_id: {}", filename);
|
2017-08-23 00:58:19 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
file.ReadBytes(&telemetry_id, sizeof(u64));
|
|
|
|
} else {
|
|
|
|
FileUtil::IOFile file(filename, "wb");
|
|
|
|
if (!file.IsOpen()) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(Core, "failed to open telemetry_id: {}", filename);
|
2017-08-23 00:58:19 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
telemetry_id = GenerateTelemetryId();
|
|
|
|
file.WriteBytes(&telemetry_id, sizeof(u64));
|
|
|
|
}
|
|
|
|
|
|
|
|
return telemetry_id;
|
|
|
|
}
|
|
|
|
|
2017-08-23 04:08:07 +00:00
|
|
|
u64 RegenerateTelemetryId() {
|
|
|
|
const u64 new_telemetry_id{GenerateTelemetryId()};
|
2018-07-21 19:52:42 +00:00
|
|
|
static const std::string& filename{FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) +
|
|
|
|
"telemetry_id"};
|
2017-08-23 04:08:07 +00:00
|
|
|
|
|
|
|
FileUtil::IOFile file(filename, "wb");
|
|
|
|
if (!file.IsOpen()) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(Core, "failed to open telemetry_id: {}", filename);
|
2017-08-23 04:08:07 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
file.WriteBytes(&new_telemetry_id, sizeof(u64));
|
|
|
|
return new_telemetry_id;
|
|
|
|
}
|
|
|
|
|
2017-09-19 01:18:26 +00:00
|
|
|
std::future<bool> VerifyLogin(std::string username, std::string token, std::function<void()> func) {
|
|
|
|
#ifdef ENABLE_WEB_SERVICE
|
|
|
|
return WebService::VerifyLogin(username, token, Settings::values.verify_endpoint_url, func);
|
|
|
|
#else
|
|
|
|
return std::async(std::launch::async, [func{std::move(func)}]() {
|
|
|
|
func();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-05-02 04:09:15 +00:00
|
|
|
TelemetrySession::TelemetrySession() {
|
2017-07-09 21:52:18 +00:00
|
|
|
#ifdef ENABLE_WEB_SERVICE
|
2017-08-24 01:09:34 +00:00
|
|
|
if (Settings::values.enable_telemetry) {
|
|
|
|
backend = std::make_unique<WebService::TelemetryJson>(
|
2018-03-24 08:18:48 +00:00
|
|
|
Settings::values.telemetry_endpoint_url, Settings::values.yuzu_username,
|
|
|
|
Settings::values.yuzu_token);
|
2017-08-24 01:09:34 +00:00
|
|
|
} else {
|
|
|
|
backend = std::make_unique<Telemetry::NullVisitor>();
|
|
|
|
}
|
2017-07-09 21:52:18 +00:00
|
|
|
#else
|
|
|
|
backend = std::make_unique<Telemetry::NullVisitor>();
|
|
|
|
#endif
|
2017-08-23 00:58:19 +00:00
|
|
|
// Log one-time top-level information
|
|
|
|
AddField(Telemetry::FieldType::None, "TelemetryId", GetTelemetryId());
|
|
|
|
|
2017-05-02 04:10:04 +00:00
|
|
|
// Log one-time session start information
|
2017-07-13 02:19:34 +00:00
|
|
|
const s64 init_time{std::chrono::duration_cast<std::chrono::milliseconds>(
|
|
|
|
std::chrono::system_clock::now().time_since_epoch())
|
|
|
|
.count()};
|
|
|
|
AddField(Telemetry::FieldType::Session, "Init_Time", init_time);
|
2017-08-01 23:55:48 +00:00
|
|
|
std::string program_name;
|
|
|
|
const Loader::ResultStatus res{System::GetInstance().GetAppLoader().ReadTitle(program_name)};
|
|
|
|
if (res == Loader::ResultStatus::Success) {
|
|
|
|
AddField(Telemetry::FieldType::Session, "ProgramName", program_name);
|
|
|
|
}
|
2017-05-02 04:10:04 +00:00
|
|
|
|
2017-07-13 02:19:34 +00:00
|
|
|
// Log application information
|
2018-08-14 22:48:28 +00:00
|
|
|
Telemetry::AppendBuildInfo(field_collection);
|
2017-07-13 02:19:34 +00:00
|
|
|
|
2018-08-14 22:48:28 +00:00
|
|
|
// Log user system information
|
|
|
|
Telemetry::AppendCPUInfo(field_collection);
|
|
|
|
Telemetry::AppendOSInfo(field_collection);
|
2017-07-13 02:19:34 +00:00
|
|
|
|
|
|
|
// Log user configuration information
|
2018-03-27 03:01:40 +00:00
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Core_UseCpuJit", Settings::values.use_cpu_jit);
|
2018-05-03 04:34:54 +00:00
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Core_UseMultiCore",
|
|
|
|
Settings::values.use_multi_core);
|
2017-07-13 02:19:34 +00:00
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Renderer_ResolutionFactor",
|
|
|
|
Settings::values.resolution_factor);
|
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Renderer_ToggleFramelimit",
|
|
|
|
Settings::values.toggle_framelimit);
|
2018-06-26 18:36:26 +00:00
|
|
|
AddField(Telemetry::FieldType::UserConfig, "Renderer_UseAccurateFramebuffers",
|
|
|
|
Settings::values.use_accurate_framebuffers);
|
2018-03-27 03:01:40 +00:00
|
|
|
AddField(Telemetry::FieldType::UserConfig, "System_UseDockedMode",
|
|
|
|
Settings::values.use_docked_mode);
|
2017-05-02 04:09:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TelemetrySession::~TelemetrySession() {
|
2017-05-02 04:10:04 +00:00
|
|
|
// Log one-time session end information
|
2017-07-13 02:19:34 +00:00
|
|
|
const s64 shutdown_time{std::chrono::duration_cast<std::chrono::milliseconds>(
|
|
|
|
std::chrono::system_clock::now().time_since_epoch())
|
|
|
|
.count()};
|
|
|
|
AddField(Telemetry::FieldType::Session, "Shutdown_Time", shutdown_time);
|
2017-05-02 04:10:04 +00:00
|
|
|
|
2017-05-02 04:09:15 +00:00
|
|
|
// Complete the session, submitting to web service if necessary
|
|
|
|
// This is just a placeholder to wrap up the session once the core completes and this is
|
|
|
|
// destroyed. This will be moved elsewhere once we are actually doing real I/O with the service.
|
|
|
|
field_collection.Accept(*backend);
|
|
|
|
backend->Complete();
|
|
|
|
backend = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Core
|