summaryrefslogtreecommitdiffstats
path: root/src/core/telemetry_session.cpp
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.cpp
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.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/core/telemetry_session.cpp b/src/core/telemetry_session.cpp
new file mode 100644
index 000000000..ec8f7d95e
--- /dev/null
+++ b/src/core/telemetry_session.cpp
@@ -0,0 +1,24 @@
+// Copyright 2017 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "common/scm_rev.h"
+#include "core/telemetry_session.h"
+
+namespace Core {
+
+TelemetrySession::TelemetrySession() {
+ // TODO(bunnei): Replace with a backend that logs to our web service
+ backend = std::make_unique<Telemetry::NullVisitor>();
+}
+
+TelemetrySession::~TelemetrySession() {
+ // 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