blob: 0e81fadc3c013410e4cc427f1f06b01115602cc5 [file] [log] [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_LATENCY_LATENCY_TRACKER_H_
#define UI_LATENCY_LATENCY_TRACKER_H_
#include <string_view>
#include "base/time/time.h"
#include "ui/latency/latency_info.h"
namespace ui {
// Utility class for tracking the latency of events. Relies on LatencyInfo
// components logged by content::RenderWidgetHostLatencyTracker.
class LatencyTracker {
public:
LatencyTracker();
LatencyTracker(const LatencyTracker&) = delete;
LatencyTracker& operator=(const LatencyTracker&) = delete;
~LatencyTracker();
// Terminates latency tracking for events that triggered rendering, also
// performing relevant UMA latency reporting.
// Called when GPU buffers swap completes.
void OnGpuSwapBuffersCompleted(
std::vector<LatencyInfo> latency_info,
bool top_controls_visible_height_changed = false);
private:
enum class InputMetricEvent {
SCROLL_BEGIN_TOUCH = 0,
SCROLL_UPDATE_TOUCH,
SCROLL_BEGIN_WHEEL,
SCROLL_UPDATE_WHEEL,
INPUT_METRIC_EVENT_MAX = SCROLL_UPDATE_WHEEL
};
enum class ScrollInputModality {
kWheel,
kTouch,
kScrollbar,
kLastValue = kScrollbar,
};
enum class ScrollType {
kBegin,
kUpdate,
kInertial,
kLastValue = kInertial,
};
// Data holder for all intermediate state for jank tracking.
struct JankTrackerState {
int total_update_events_ = 0;
int janky_update_events_ = 0;
bool prev_scroll_update_reported_ = false;
base::TimeDelta prev_duration_;
base::TimeDelta total_update_duration_;
base::TimeDelta janky_update_duration_;
};
// Index to be used for STATIC_HISTOGRAM_POINTER_GROUP. We have one histogram
// in the group per (ScrollInputModality, ScrollType) combination.
static constexpr int kMaxHistogramIndex =
(static_cast<int>(ScrollInputModality::kLastValue) + 1) *
(static_cast<int>(ScrollType::kLastValue) + 1);
static int GetHistogramIndex(ScrollType scroll_type,
ScrollInputModality input_modality);
static std::string_view ToString(ScrollInputModality modality);
static std::string_view ToString(ScrollType type);
// Returns Event.Latency.<scroll_type>.<input_modality>.<suffix>
static std::string GetHistogramName(std::string_view suffix,
ScrollType scroll_type,
ScrollInputModality input_modality);
static ScrollInputModality ToScrollInputModality(ui::SourceEventType type);
void ReportUkmScrollLatency(
const InputMetricEvent& metric_event,
base::TimeTicks start_timestamp,
base::TimeTicks time_to_scroll_update_swap_begin_timestamp,
base::TimeTicks time_to_handled_timestamp,
bool is_main_thread,
const ukm::SourceId ukm_source_id);
void ComputeEndToEndLatencyHistograms(
base::TimeTicks gpu_swap_begin_timestamp,
base::TimeTicks gpu_swap_end_timestamp,
const LatencyInfo& latency,
bool top_controls_visible_height_changed);
void EmitLatencyHistograms(base::TimeTicks gpu_swap_begin_timestamp,
base::TimeTicks gpu_swap_end_timestamp,
base::TimeTicks original_timestamp,
const ui::LatencyInfo& latency,
ScrollType scroll_type,
ScrollInputModality input_modality);
void ReportJankyFrame(base::TimeTicks gpu_swap_begin_timestamp,
base::TimeTicks gpu_swap_end_timestamp,
const LatencyInfo& latency,
bool first_frame);
JankTrackerState jank_state_;
};
} // namespace ui
#endif // UI_LATENCY_LATENCY_TRACKER_H_