1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include "content/browser/xr/metrics/session_metrics_helper.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/metrics/histogram_macros.h"
#include "content/browser/xr/metrics/session_timer.h"
#include "content/browser/xr/metrics/webxr_session_tracker.h"
#include "content/browser/xr/service/xr_runtime_manager_impl.h"
#include "content/browser/xr/webxr_internals/mojom/webxr_internals.mojom.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/web_contents.h"
#include "device/vr/public/cpp/session_mode.h"
namespace content {
namespace {
const void* const kSessionMetricsHelperDataKey = &kSessionMetricsHelperDataKey;
// Handles the lifetime of the helper which is attached to a WebContents.
class SessionMetricsHelperData : public base::SupportsUserData::Data {
public:
SessionMetricsHelperData() = delete;
explicit SessionMetricsHelperData(
std::unique_ptr<SessionMetricsHelper> session_metrics_helper)
: session_metrics_helper_(std::move(session_metrics_helper)) {}
SessionMetricsHelperData(const SessionMetricsHelperData&) = delete;
SessionMetricsHelperData& operator=(const SessionMetricsHelperData&) = delete;
~SessionMetricsHelperData() override = default;
SessionMetricsHelper* get() const { return session_metrics_helper_.get(); }
private:
std::unique_ptr<SessionMetricsHelper> session_metrics_helper_;
};
// Helper method to log out both the mode and the initially requested features
// for a WebXRSessionTracker. WebXRSessionTracker is an unowned pointer.
void ReportInitialSessionData(
WebXRSessionTracker* webxr_session_tracker,
const device::mojom::XRSessionOptions& session_options,
const std::unordered_set<device::mojom::XRSessionFeature>&
enabled_features) {
DCHECK(webxr_session_tracker);
webxr_session_tracker->ukm_entry()->SetMode(
static_cast<int64_t>(session_options.mode));
webxr_session_tracker->ReportRequestedFeatures(session_options,
enabled_features);
}
} // namespace
// static
SessionMetricsHelper* SessionMetricsHelper::FromWebContents(
content::WebContents* web_contents) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
if (!web_contents)
return nullptr;
SessionMetricsHelperData* data = static_cast<SessionMetricsHelperData*>(
web_contents->GetUserData(kSessionMetricsHelperDataKey));
return data ? data->get() : nullptr;
}
// static
SessionMetricsHelper* SessionMetricsHelper::CreateForWebContents(
content::WebContents* contents) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// This is not leaked as the SessionMetricsHelperData will clean it up.
std::unique_ptr<SessionMetricsHelper> helper =
base::WrapUnique(new SessionMetricsHelper(contents));
contents->SetUserData(
kSessionMetricsHelperDataKey,
std::make_unique<SessionMetricsHelperData>(std::move(helper)));
return FromWebContents(contents);
}
SessionMetricsHelper::SessionMetricsHelper(content::WebContents* contents) {
DVLOG(2) << __func__;
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK(contents);
Observe(contents);
}
SessionMetricsHelper::~SessionMetricsHelper() {
DVLOG(2) << __func__;
}
mojo::PendingRemote<device::mojom::XRSessionMetricsRecorder>
SessionMetricsHelper::StartInlineSession(
const device::mojom::XRSessionOptions& session_options,
const std::unordered_set<device::mojom::XRSessionFeature>& enabled_features,
size_t session_id) {
DVLOG(1) << __func__;
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK(webxr_inline_session_trackers_.find(session_id) ==
webxr_inline_session_trackers_.end());
// TODO(crbug.com/40122624): The code here assumes that it's called on
// behalf of the active frame, which is not always true.
// Plumb explicit RenderFrameHost reference from VRSessionImpl.
auto result = webxr_inline_session_trackers_.emplace(
session_id,
std::make_unique<WebXRSessionTracker>(
std::make_unique<ukm::builders::XR_WebXR_Session>(
web_contents()->GetPrimaryMainFrame()->GetPageUkmSourceId())));
auto* tracker = result.first->second.get();
ReportInitialSessionData(tracker, session_options, enabled_features);
return tracker->BindMetricsRecorderPipe();
}
void SessionMetricsHelper::StopAndRecordInlineSession(size_t session_id) {
DVLOG(1) << __func__;
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
auto it = webxr_inline_session_trackers_.find(session_id);
if (it == webxr_inline_session_trackers_.end())
return;
it->second->SetSessionEnd(base::Time::Now());
it->second->ukm_entry()->SetDuration(
it->second->GetRoundedDurationInSeconds());
it->second->RecordEntry();
webxr_inline_session_trackers_.erase(it);
}
mojo::PendingRemote<device::mojom::XRSessionMetricsRecorder>
SessionMetricsHelper::StartImmersiveSession(
const device::mojom::XRDeviceId& runtime_id,
const device::mojom::XRSessionOptions& session_options,
const std::unordered_set<device::mojom::XRSessionFeature>&
enabled_features) {
DVLOG(1) << __func__;
DCHECK(!webxr_immersive_session_tracker_);
session_timer_ = std::make_unique<SessionTimer>(session_options.trace_id);
session_timer_->StartSession();
webxr::mojom::SessionStartedRecordPtr session_started_record =
webxr::mojom::SessionStartedRecord::New();
session_started_record->trace_id = session_timer_->GetTraceId();
session_started_record->started_time = session_timer_->GetStartTime();
session_started_record->device_id = runtime_id;
XRRuntimeManagerImpl::GetOrCreateInstance(*web_contents())
->GetLoggerManager()
.RecordSessionStarted(std::move(session_started_record));
// TODO(crbug.com/40122624): The code here assumes that it's called on
// behalf of the active frame, which is not always true.
// Plumb explicit RenderFrameHost reference from VRSessionImpl.
webxr_immersive_session_tracker_ = std::make_unique<WebXRSessionTracker>(
std::make_unique<ukm::builders::XR_WebXR_Session>(
web_contents()->GetPrimaryMainFrame()->GetPageUkmSourceId()));
ReportInitialSessionData(webxr_immersive_session_tracker_.get(),
session_options, enabled_features);
return webxr_immersive_session_tracker_->BindMetricsRecorderPipe();
}
void SessionMetricsHelper::StopAndRecordImmersiveSession() {
DVLOG(1) << __func__;
// A session cannot outlive a navigation, so we terminate it here. However,
// depending on how the session is torn down, we may be notified in any order
// of the navigation and then shutdown. If we don't have an active session,
// assume it's been stopped already and just return early.
if (!webxr_immersive_session_tracker_) {
return;
}
base::Time stop_time = base::Time::Now();
webxr::mojom::SessionStoppedRecordPtr session_stopped_record =
webxr::mojom::SessionStoppedRecord::New();
session_stopped_record->trace_id = session_timer_->GetTraceId();
session_stopped_record->stopped_time = stop_time;
XRRuntimeManagerImpl::GetOrCreateInstance(*web_contents())
->GetLoggerManager()
.RecordSessionStopped(std::move(session_stopped_record));
webxr_immersive_session_tracker_->SetSessionEnd(stop_time);
webxr_immersive_session_tracker_->ukm_entry()->SetDuration(
webxr_immersive_session_tracker_->GetRoundedDurationInSeconds());
webxr_immersive_session_tracker_->RecordEntry();
webxr_immersive_session_tracker_ = nullptr;
// Destroying the timer will force the session to log metrics.
session_timer_ = nullptr;
}
void SessionMetricsHelper::PrimaryPageChanged(content::Page& page) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// All sessions are terminated on navigations, so to ensure that we log
// everything that we have, cleanup any outstanding session trackers now.
if (webxr_immersive_session_tracker_)
StopAndRecordImmersiveSession();
for (auto& inline_session_tracker : webxr_inline_session_trackers_) {
inline_session_tracker.second->SetSessionEnd(base::Time::Now());
inline_session_tracker.second->ukm_entry()->SetDuration(
inline_session_tracker.second->GetRoundedDurationInSeconds());
inline_session_tracker.second->RecordEntry();
}
webxr_inline_session_trackers_.clear();
}
} // namespace content
|