summaryrefslogtreecommitdiffstats
path: root/src/core/telemetry_session.cpp
blob: ec8f7d95e33dadd464ef31a0635ced2772c61f92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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