summaryrefslogtreecommitdiffstats
path: root/src/core/telemetry_session.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-05-02 06:09:15 +0200
committerbunnei <bunneidev@gmail.com>2017-05-25 01:16:22 +0200
commitf3e14cae1e644b7e072796f2c26eab67b7a5d1b7 (patch)
tree27a0b689d399425f54e1559c64a8cf935ce81c5e /src/core/telemetry_session.h
parentcommon: Add a generic interface for logging telemetry fields. (diff)
downloadyuzu-f3e14cae1e644b7e072796f2c26eab67b7a5d1b7.tar
yuzu-f3e14cae1e644b7e072796f2c26eab67b7a5d1b7.tar.gz
yuzu-f3e14cae1e644b7e072796f2c26eab67b7a5d1b7.tar.bz2
yuzu-f3e14cae1e644b7e072796f2c26eab67b7a5d1b7.tar.lz
yuzu-f3e14cae1e644b7e072796f2c26eab67b7a5d1b7.tar.xz
yuzu-f3e14cae1e644b7e072796f2c26eab67b7a5d1b7.tar.zst
yuzu-f3e14cae1e644b7e072796f2c26eab67b7a5d1b7.zip
Diffstat (limited to '')
-rw-r--r--src/core/telemetry_session.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/core/telemetry_session.h b/src/core/telemetry_session.h
new file mode 100644
index 000000000..39e167868
--- /dev/null
+++ b/src/core/telemetry_session.h
@@ -0,0 +1,38 @@
+// Copyright 2017 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <memory>
+#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.
+ */
+class TelemetrySession : NonCopyable {
+public:
+ TelemetrySession();
+ ~TelemetrySession();
+
+ /**
+ * 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));
+ }
+
+private:
+ Telemetry::FieldCollection field_collection; ///< Field collection, tracks all added fields
+ std::unique_ptr<Telemetry::VisitorInterface> backend; ///< Backend interface that logs fields
+};
+
+} // namespace Core