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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-10-09 18:47:24 +00:00
|
|
|
#include <string>
|
2017-05-02 04:09:15 +00:00
|
|
|
#include "common/telemetry.h"
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instruments telemetry for this emulation session. Creates a new set of telemetry fields on each
|
|
|
|
* session, logging any one-time fields. Interfaces with the telemetry backend used for submitting
|
|
|
|
* data to the web service. Submits session data on close.
|
|
|
|
*/
|
2019-05-29 01:07:34 +00:00
|
|
|
class TelemetrySession {
|
2017-05-02 04:09:15 +00:00
|
|
|
public:
|
|
|
|
TelemetrySession();
|
|
|
|
~TelemetrySession();
|
|
|
|
|
2019-05-29 01:07:34 +00:00
|
|
|
TelemetrySession(const TelemetrySession&) = delete;
|
|
|
|
TelemetrySession& operator=(const TelemetrySession&) = delete;
|
|
|
|
|
|
|
|
TelemetrySession(TelemetrySession&&) = delete;
|
|
|
|
TelemetrySession& operator=(TelemetrySession&&) = delete;
|
|
|
|
|
2017-05-02 04:09:15 +00:00
|
|
|
/**
|
|
|
|
* Wrapper around the Telemetry::FieldCollection::AddField method.
|
|
|
|
* @param type Type of the field to add.
|
|
|
|
* @param name Name of the field to add.
|
|
|
|
* @param value Value for the field to add.
|
|
|
|
*/
|
|
|
|
template <typename T>
|
|
|
|
void AddField(Telemetry::FieldType type, const char* name, T value) {
|
|
|
|
field_collection.AddField(type, name, std::move(value));
|
|
|
|
}
|
|
|
|
|
2018-10-26 14:21:45 +00:00
|
|
|
/**
|
|
|
|
* Submits a Testcase.
|
|
|
|
* @returns A bool indicating whether the submission succeeded
|
|
|
|
*/
|
|
|
|
bool SubmitTestcase();
|
|
|
|
|
2017-05-02 04:09:15 +00:00
|
|
|
private:
|
2017-05-02 04:10:04 +00:00
|
|
|
Telemetry::FieldCollection field_collection; ///< Tracks all added fields for the session
|
2017-05-02 04:09:15 +00:00
|
|
|
};
|
|
|
|
|
2017-08-23 04:08:07 +00:00
|
|
|
/**
|
|
|
|
* Gets TelemetryId, a unique identifier used for the user's telemetry sessions.
|
|
|
|
* @returns The current TelemetryId for the session.
|
|
|
|
*/
|
|
|
|
u64 GetTelemetryId();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Regenerates TelemetryId, a unique identifier used for the user's telemetry sessions.
|
|
|
|
* @returns The new TelemetryId that was generated.
|
|
|
|
*/
|
|
|
|
u64 RegenerateTelemetryId();
|
|
|
|
|
2017-09-19 01:18:26 +00:00
|
|
|
/**
|
|
|
|
* Verifies the username and token.
|
2018-03-26 19:31:19 +00:00
|
|
|
* @param username yuzu username to use for authentication.
|
|
|
|
* @param token yuzu token to use for authentication.
|
2017-09-19 01:18:26 +00:00
|
|
|
* @returns Future with bool indicating whether the verification succeeded
|
|
|
|
*/
|
2018-09-17 15:16:01 +00:00
|
|
|
bool VerifyLogin(const std::string& username, const std::string& token);
|
2017-09-19 01:18:26 +00:00
|
|
|
|
2017-05-02 04:09:15 +00:00
|
|
|
} // namespace Core
|