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
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/events/latency_info.h"
#include <algorithm>
namespace ui {
LatencyInfo::LatencyInfo() {
}
LatencyInfo::~LatencyInfo() {
}
void LatencyInfo::MergeWith(const LatencyInfo& other) {
for (LatencyMap::const_iterator it = other.latency_components.begin();
it != other.latency_components.end();
++it) {
AddLatencyNumberWithTimestamp(it->first.first,
it->first.second,
it->second.sequence_number,
it->second.event_time,
it->second.event_count);
}
}
void LatencyInfo::AddNewLatencyFrom(const LatencyInfo& other) {
for (LatencyMap::const_iterator it = other.latency_components.begin();
it != other.latency_components.end();
++it) {
if (!FindLatency(it->first.first, it->first.second, NULL)) {
AddLatencyNumberWithTimestamp(it->first.first,
it->first.second,
it->second.sequence_number,
it->second.event_time,
it->second.event_count);
}
}
}
void LatencyInfo::AddLatencyNumber(LatencyComponentType component,
int64 id,
int64 component_sequence_number) {
AddLatencyNumberWithTimestamp(component, id, component_sequence_number,
base::TimeTicks::HighResNow(), 1);
}
void LatencyInfo::AddLatencyNumberWithTimestamp(LatencyComponentType component,
int64 id,
int64 component_sequence_number,
base::TimeTicks time,
uint32 event_count) {
LatencyMap::key_type key = std::make_pair(component, id);
LatencyMap::iterator it = latency_components.find(key);
if (it == latency_components.end()) {
LatencyComponent info = {component_sequence_number, time, event_count};
latency_components[key] = info;
return;
}
it->second.sequence_number = std::max(component_sequence_number,
it->second.sequence_number);
uint32 new_count = event_count + it->second.event_count;
if (event_count > 0 && new_count != 0) {
// Do a weighted average, so that the new event_time is the average of
// the times of events currently in this structure with the time passed
// into this method.
it->second.event_time += (time - it->second.event_time) * event_count /
new_count;
it->second.event_count = new_count;
}
}
bool LatencyInfo::FindLatency(LatencyComponentType type,
int64 id,
LatencyComponent* output) const {
LatencyMap::const_iterator it = latency_components.find(
std::make_pair(type, id));
if (it == latency_components.end())
return false;
if (output)
*output = it->second;
return true;
}
void LatencyInfo::Clear() {
latency_components.clear();
}
} // namespace ui
|