summaryrefslogtreecommitdiff
path: root/src/core/telemetry_session.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2017-05-02 00:09:15 -0400
committerGravatar bunnei2017-05-24 19:16:22 -0400
commitf3e14cae1e644b7e072796f2c26eab67b7a5d1b7 (patch)
tree27a0b689d399425f54e1559c64a8cf935ce81c5e /src/core/telemetry_session.cpp
parentcommon: Add a generic interface for logging telemetry fields. (diff)
downloadyuzu-f3e14cae1e644b7e072796f2c26eab67b7a5d1b7.tar.gz
yuzu-f3e14cae1e644b7e072796f2c26eab67b7a5d1b7.tar.xz
yuzu-f3e14cae1e644b7e072796f2c26eab67b7a5d1b7.zip
core: Keep track of telemetry for the current emulation session.
Diffstat (limited to 'src/core/telemetry_session.cpp')
-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 @@
1// Copyright 2017 Citra Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#include "common/scm_rev.h"
6#include "core/telemetry_session.h"
7
8namespace Core {
9
10TelemetrySession::TelemetrySession() {
11 // TODO(bunnei): Replace with a backend that logs to our web service
12 backend = std::make_unique<Telemetry::NullVisitor>();
13}
14
15TelemetrySession::~TelemetrySession() {
16 // Complete the session, submitting to web service if necessary
17 // This is just a placeholder to wrap up the session once the core completes and this is
18 // destroyed. This will be moved elsewhere once we are actually doing real I/O with the service.
19 field_collection.Accept(*backend);
20 backend->Complete();
21 backend = nullptr;
22}
23
24} // namespace Core