blob: de4dfa5bf59fd59882c134f0ad8d56a560644c3b [file] [log] [blame]
Lalit Maganticaed37e2018-06-01 03:03:08 +01001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_
18#define SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_
19
Lalit Maganti35622b72018-06-06 12:03:11 +010020#include <array>
Lalit Maganticaed37e2018-06-01 03:03:08 +010021#include <deque>
Isabelle Taylor47328cf2018-06-12 14:33:59 +010022#include <map>
Lalit Maganticaed37e2018-06-01 03:03:08 +010023#include <string>
24#include <unordered_map>
Ioannis Ilkosb8b11102019-01-29 17:56:55 +000025#include <utility>
Lalit Maganticaed37e2018-06-01 03:03:08 +010026#include <vector>
27
Lalit Maganti35622b72018-06-06 12:03:11 +010028#include "perfetto/base/logging.h"
Primiano Tucci2c5488f2019-06-01 03:27:28 +010029#include "perfetto/ext/base/hash.h"
30#include "perfetto/ext/base/optional.h"
31#include "perfetto/ext/base/string_view.h"
32#include "perfetto/ext/base/time.h"
33#include "perfetto/ext/base/utils.h"
Lalit Magantib0b53ee2019-01-24 17:53:39 +000034#include "src/trace_processor/ftrace_utils.h"
Mikhail Khokhlove466c002019-05-23 13:33:33 +010035#include "src/trace_processor/metadata.h"
Primiano Tucci0e38a142019-01-07 20:51:09 +000036#include "src/trace_processor/stats.h"
Lalit Maganti5c454312019-04-08 12:11:17 +010037#include "src/trace_processor/string_pool.h"
Mikhail Khokhlov85a0dd02019-05-17 14:22:28 +010038#include "src/trace_processor/variadic.h"
Lalit Maganti35622b72018-06-06 12:03:11 +010039
Lalit Maganticaed37e2018-06-01 03:03:08 +010040namespace perfetto {
41namespace trace_processor {
42
Isabelle Taylora0a22972018-08-03 12:06:12 +010043// UniquePid is an offset into |unique_processes_|. This is necessary because
44// Unix pids are reused and thus not guaranteed to be unique over a long
45// period of time.
46using UniquePid = uint32_t;
Primiano Tucci0d72a312018-08-07 14:42:45 +010047
Isabelle Taylora0a22972018-08-03 12:06:12 +010048// UniqueTid is an offset into |unique_threads_|. Necessary because tids can
49// be reused.
50using UniqueTid = uint32_t;
51
Primiano Tucci0d72a312018-08-07 14:42:45 +010052// StringId is an offset into |string_pool_|.
Lalit Maganti5c454312019-04-08 12:11:17 +010053using StringId = StringPool::Id;
Primiano Tucci0d72a312018-08-07 14:42:45 +010054
Lalit Maganti5ea9e932018-11-30 14:19:39 +000055// Identifiers for all the tables in the database.
56enum TableId : uint8_t {
57 // Intentionally don't have TableId == 0 so that RowId == 0 can refer to an
58 // invalid row id.
Lalit Maganti8320e6d2019-03-14 18:49:33 +000059 kCounterValues = 1,
Lalit Maganti1d915a62019-01-07 12:10:42 +000060 kRawEvents = 2,
Lalit Maganti66ed7ad2019-01-11 16:47:26 +000061 kInstants = 3,
Isabelle Taylorb9222c32019-01-31 10:58:37 +000062 kSched = 4,
Eric Seckler70cc4422019-05-28 16:00:23 +010063 kNestableSlices = 5,
Lalit Maganti5ea9e932018-11-30 14:19:39 +000064};
65
66// The top 8 bits are set to the TableId and the bottom 32 to the row of the
67// table.
Lalit Maganti85ca4a82018-12-07 17:28:02 +000068using RowId = int64_t;
Lalit Maganti5ea9e932018-11-30 14:19:39 +000069static const RowId kInvalidRowId = 0;
70
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +000071using ArgSetId = uint32_t;
72static const ArgSetId kInvalidArgSetId = 0;
73
Isabelle Taylora97c5f52018-10-23 17:36:12 +010074enum RefType {
Primiano Tucci5403e4f2018-11-27 10:07:03 +000075 kRefNoRef = 0,
76 kRefUtid = 1,
77 kRefCpuId = 2,
78 kRefIrq = 3,
79 kRefSoftIrq = 4,
80 kRefUpid = 5,
Primiano Tucci5403e4f2018-11-27 10:07:03 +000081 kRefMax
Isabelle Taylora97c5f52018-10-23 17:36:12 +010082};
Isabelle Taylor14674d42018-09-07 11:33:11 +010083
Eric Seckler972225e2019-04-18 11:07:12 +010084const std::vector<const char*>& GetRefTypeStringMap();
85
Lalit Maganticaed37e2018-06-01 03:03:08 +010086// Stores a data inside a trace file in a columnar form. This makes it efficient
87// to read or search across a single field of the trace (e.g. all the thread
88// names for a given CPU).
89class TraceStorage {
90 public:
Isabelle Taylor47328cf2018-06-12 14:33:59 +010091 TraceStorage();
Isabelle Taylora0a22972018-08-03 12:06:12 +010092
93 virtual ~TraceStorage();
Isabelle Taylor47328cf2018-06-12 14:33:59 +010094
Isabelle Taylora0a22972018-08-03 12:06:12 +010095 // Information about a unique process seen in a trace.
96 struct Process {
Primiano Tuccib75dcee2018-08-08 12:21:36 +010097 explicit Process(uint32_t p) : pid(p) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +000098 int64_t start_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +010099 StringId name_id = 0;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100100 uint32_t pid = 0;
Lalit Maganti08884242019-02-19 12:28:32 +0000101 base::Optional<UniquePid> pupid;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100102 };
103
104 // Information about a unique thread seen in a trace.
105 struct Thread {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100106 explicit Thread(uint32_t t) : tid(t) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000107 int64_t start_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100108 StringId name_id = 0;
Lalit Maganti770886a2018-11-16 17:40:21 +0000109 base::Optional<UniquePid> upid;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100110 uint32_t tid = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100111 };
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100112
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000113 // Generic key value storage which can be referenced by other tables.
114 class Args {
115 public:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000116 struct Arg {
117 StringId flat_key = 0;
118 StringId key = 0;
119 Variadic value = Variadic::Integer(0);
120
121 // This is only used by the arg tracker and so is not part of the hash.
122 RowId row_id = 0;
123 };
124
125 struct ArgHasher {
126 uint64_t operator()(const Arg& arg) const noexcept {
Lalit Maganti1f464742019-02-28 13:49:31 +0000127 base::Hash hash;
128 hash.Update(arg.key);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000129 // We don't hash arg.flat_key because it's a subsequence of arg.key.
130 switch (arg.value.type) {
131 case Variadic::Type::kInt:
Lalit Maganti1f464742019-02-28 13:49:31 +0000132 hash.Update(arg.value.int_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000133 break;
Eric Secklerc93823e2019-06-03 16:49:19 +0100134 case Variadic::Type::kUint:
135 hash.Update(arg.value.uint_value);
136 break;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000137 case Variadic::Type::kString:
Lalit Maganti1f464742019-02-28 13:49:31 +0000138 hash.Update(arg.value.string_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000139 break;
140 case Variadic::Type::kReal:
Lalit Maganti1f464742019-02-28 13:49:31 +0000141 hash.Update(arg.value.real_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000142 break;
Eric Secklerc93823e2019-06-03 16:49:19 +0100143 case Variadic::Type::kPointer:
144 hash.Update(arg.value.pointer_value);
145 break;
146 case Variadic::Type::kBool:
147 hash.Update(arg.value.bool_value);
148 break;
149 case Variadic::Type::kJson:
150 hash.Update(arg.value.json_value);
151 break;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000152 }
Lalit Maganti1f464742019-02-28 13:49:31 +0000153 return hash.digest();
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000154 }
155 };
156
157 const std::deque<ArgSetId>& set_ids() const { return set_ids_; }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000158 const std::deque<StringId>& flat_keys() const { return flat_keys_; }
159 const std::deque<StringId>& keys() const { return keys_; }
Lalit Maganti1d915a62019-01-07 12:10:42 +0000160 const std::deque<Variadic>& arg_values() const { return arg_values_; }
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000161 uint32_t args_count() const {
162 return static_cast<uint32_t>(set_ids_.size());
Lalit Maganti79472be2018-12-04 13:41:27 +0000163 }
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000164
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000165 ArgSetId AddArgSet(const std::vector<Arg>& args,
166 uint32_t begin,
167 uint32_t end) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000168 base::Hash hash;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000169 for (uint32_t i = begin; i < end; i++) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000170 hash.Update(ArgHasher()(args[i]));
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000171 }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000172
Lalit Maganti1f464742019-02-28 13:49:31 +0000173 ArgSetHash digest = hash.digest();
174 auto it = arg_row_for_hash_.find(digest);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000175 if (it != arg_row_for_hash_.end()) {
176 return set_ids_[it->second];
177 }
178
179 // The +1 ensures that nothing has an id == kInvalidArgSetId == 0.
180 ArgSetId id = static_cast<uint32_t>(arg_row_for_hash_.size()) + 1;
Lalit Maganti1f464742019-02-28 13:49:31 +0000181 arg_row_for_hash_.emplace(digest, args_count());
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000182 for (uint32_t i = begin; i < end; i++) {
183 const auto& arg = args[i];
184 set_ids_.emplace_back(id);
185 flat_keys_.emplace_back(arg.flat_key);
186 keys_.emplace_back(arg.key);
187 arg_values_.emplace_back(arg.value);
188 }
189 return id;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000190 }
191
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000192 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000193 using ArgSetHash = uint64_t;
194
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000195 std::deque<ArgSetId> set_ids_;
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000196 std::deque<StringId> flat_keys_;
197 std::deque<StringId> keys_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000198 std::deque<Variadic> arg_values_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000199
200 std::unordered_map<ArgSetHash, uint32_t> arg_row_for_hash_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000201 };
202
Lalit Magantiff69c112018-09-24 12:07:47 +0100203 class Slices {
Lalit Maganti35622b72018-06-06 12:03:11 +0100204 public:
Lalit Magantifde29042018-10-04 13:28:52 +0100205 inline size_t AddSlice(uint32_t cpu,
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000206 int64_t start_ns,
207 int64_t duration_ns,
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000208 UniqueTid utid,
209 ftrace_utils::TaskState end_state,
210 int32_t priority) {
Lalit Magantiff69c112018-09-24 12:07:47 +0100211 cpus_.emplace_back(cpu);
Lalit Maganti35622b72018-06-06 12:03:11 +0100212 start_ns_.emplace_back(start_ns);
213 durations_.emplace_back(duration_ns);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100214 utids_.emplace_back(utid);
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000215 end_states_.emplace_back(end_state);
216 priorities_.emplace_back(priority);
Lalit Maganti58638932019-01-31 10:48:26 +0000217
218 if (utid >= rows_for_utids_.size())
219 rows_for_utids_.resize(utid + 1);
220 rows_for_utids_[utid].emplace_back(slice_count() - 1);
Lalit Magantifde29042018-10-04 13:28:52 +0100221 return slice_count() - 1;
222 }
223
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000224 void set_duration(size_t index, int64_t duration_ns) {
Lalit Magantifde29042018-10-04 13:28:52 +0100225 durations_[index] = duration_ns;
Lalit Maganti35622b72018-06-06 12:03:11 +0100226 }
227
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000228 void set_end_state(size_t index, ftrace_utils::TaskState end_state) {
229 end_states_[index] = end_state;
230 }
231
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100232 size_t slice_count() const { return start_ns_.size(); }
Lalit Maganti35622b72018-06-06 12:03:11 +0100233
Lalit Magantiff69c112018-09-24 12:07:47 +0100234 const std::deque<uint32_t>& cpus() const { return cpus_; }
235
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000236 const std::deque<int64_t>& start_ns() const { return start_ns_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100237
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000238 const std::deque<int64_t>& durations() const { return durations_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100239
Isabelle Taylor68e42192018-06-19 16:19:31 +0100240 const std::deque<UniqueTid>& utids() const { return utids_; }
241
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000242 const std::deque<ftrace_utils::TaskState>& end_state() const {
243 return end_states_;
244 }
245
246 const std::deque<int32_t>& priorities() const { return priorities_; }
247
Lalit Maganti58638932019-01-31 10:48:26 +0000248 const std::deque<std::vector<uint32_t>>& rows_for_utids() const {
Lalit Magantif0f09c32019-01-18 17:29:31 +0000249 return rows_for_utids_;
250 }
251
Lalit Maganti35622b72018-06-06 12:03:11 +0100252 private:
Hector Dearman947f12a2018-09-11 16:50:36 +0100253 // Each deque below has the same number of entries (the number of slices
Lalit Maganti35622b72018-06-06 12:03:11 +0100254 // in the trace for the CPU).
Lalit Magantiff69c112018-09-24 12:07:47 +0100255 std::deque<uint32_t> cpus_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000256 std::deque<int64_t> start_ns_;
257 std::deque<int64_t> durations_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100258 std::deque<UniqueTid> utids_;
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000259 std::deque<ftrace_utils::TaskState> end_states_;
260 std::deque<int32_t> priorities_;
Lalit Maganti58638932019-01-31 10:48:26 +0000261
262 // One row per utid.
263 std::deque<std::vector<uint32_t>> rows_for_utids_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100264 };
Isabelle Taylor68e42192018-06-19 16:19:31 +0100265
Primiano Tucci0d72a312018-08-07 14:42:45 +0100266 class NestableSlices {
267 public:
Eric Seckler70cc4422019-05-28 16:00:23 +0100268 inline uint32_t AddSlice(int64_t start_ns,
269 int64_t duration_ns,
270 int64_t ref,
271 RefType type,
272 StringId cat,
273 StringId name,
274 uint8_t depth,
275 int64_t stack_id,
276 int64_t parent_stack_id) {
Primiano Tucci0d72a312018-08-07 14:42:45 +0100277 start_ns_.emplace_back(start_ns);
278 durations_.emplace_back(duration_ns);
Eric Seckler972225e2019-04-18 11:07:12 +0100279 refs_.emplace_back(ref);
280 types_.emplace_back(type);
Primiano Tucci0d72a312018-08-07 14:42:45 +0100281 cats_.emplace_back(cat);
282 names_.emplace_back(name);
283 depths_.emplace_back(depth);
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100284 stack_ids_.emplace_back(stack_id);
285 parent_stack_ids_.emplace_back(parent_stack_id);
Eric Seckler70cc4422019-05-28 16:00:23 +0100286 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000287 return slice_count() - 1;
288 }
289
Eric Seckler70cc4422019-05-28 16:00:23 +0100290 void set_duration(uint32_t index, int64_t duration_ns) {
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000291 durations_[index] = duration_ns;
292 }
293
Eric Seckler70cc4422019-05-28 16:00:23 +0100294 void set_stack_id(uint32_t index, int64_t stack_id) {
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000295 stack_ids_[index] = stack_id;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100296 }
297
Eric Seckler70cc4422019-05-28 16:00:23 +0100298 void set_arg_set_id(uint32_t index, ArgSetId id) {
299 arg_set_ids_[index] = id;
300 }
301
302 uint32_t slice_count() const {
303 return static_cast<uint32_t>(start_ns_.size());
304 }
305
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000306 const std::deque<int64_t>& start_ns() const { return start_ns_; }
307 const std::deque<int64_t>& durations() const { return durations_; }
Eric Seckler972225e2019-04-18 11:07:12 +0100308 const std::deque<int64_t>& refs() const { return refs_; }
309 const std::deque<RefType>& types() const { return types_; }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100310 const std::deque<StringId>& cats() const { return cats_; }
311 const std::deque<StringId>& names() const { return names_; }
312 const std::deque<uint8_t>& depths() const { return depths_; }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000313 const std::deque<int64_t>& stack_ids() const { return stack_ids_; }
314 const std::deque<int64_t>& parent_stack_ids() const {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100315 return parent_stack_ids_;
316 }
Eric Seckler70cc4422019-05-28 16:00:23 +0100317 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100318
319 private:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000320 std::deque<int64_t> start_ns_;
321 std::deque<int64_t> durations_;
Eric Seckler972225e2019-04-18 11:07:12 +0100322 std::deque<int64_t> refs_;
323 std::deque<RefType> types_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100324 std::deque<StringId> cats_;
325 std::deque<StringId> names_;
326 std::deque<uint8_t> depths_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000327 std::deque<int64_t> stack_ids_;
328 std::deque<int64_t> parent_stack_ids_;
Eric Seckler70cc4422019-05-28 16:00:23 +0100329 std::deque<ArgSetId> arg_set_ids_;
Lalit Maganti35622b72018-06-06 12:03:11 +0100330 };
331
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000332 class CounterDefinitions {
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100333 public:
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000334 using Id = uint32_t;
Lalit Maganti521d97b2019-04-29 13:47:03 +0100335 static constexpr Id kInvalidId = std::numeric_limits<Id>::max();
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000336
337 inline Id AddCounterDefinition(StringId name_id,
338 int64_t ref,
339 RefType type) {
340 base::Hash hash;
341 hash.Update(name_id);
342 hash.Update(ref);
343 hash.Update(type);
344
345 // TODO(lalitm): this is a perf bottleneck and likely we can do something
346 // quite a bit better here.
347 uint64_t digest = hash.digest();
348 auto it = hash_to_row_idx_.find(digest);
349 if (it != hash_to_row_idx_.end())
350 return it->second;
351
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100352 name_ids_.emplace_back(name_id);
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100353 refs_.emplace_back(ref);
354 types_.emplace_back(type);
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000355 hash_to_row_idx_.emplace(digest, size() - 1);
356 return size() - 1;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100357 }
Lalit Magantifde29042018-10-04 13:28:52 +0100358
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000359 uint32_t size() const { return static_cast<uint32_t>(name_ids_.size()); }
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100360
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100361 const std::deque<StringId>& name_ids() const { return name_ids_; }
362
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100363 const std::deque<int64_t>& refs() const { return refs_; }
364
365 const std::deque<RefType>& types() const { return types_; }
366
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000367 private:
368 std::deque<StringId> name_ids_;
369 std::deque<int64_t> refs_;
370 std::deque<RefType> types_;
371
372 std::unordered_map<uint64_t, uint32_t> hash_to_row_idx_;
373 };
374
375 class CounterValues {
376 public:
377 inline uint32_t AddCounterValue(CounterDefinitions::Id counter_id,
378 int64_t timestamp,
379 double value) {
380 counter_ids_.emplace_back(counter_id);
381 timestamps_.emplace_back(timestamp);
382 values_.emplace_back(value);
383 arg_set_ids_.emplace_back(kInvalidArgSetId);
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100384
Lalit Maganti521d97b2019-04-29 13:47:03 +0100385 if (counter_id != CounterDefinitions::kInvalidId) {
386 if (counter_id >= rows_for_counter_id_.size()) {
387 rows_for_counter_id_.resize(counter_id + 1);
388 }
389 rows_for_counter_id_[counter_id].emplace_back(size() - 1);
390 }
391 return size() - 1;
392 }
393
394 void set_counter_id(uint32_t index, CounterDefinitions::Id counter_id) {
395 PERFETTO_DCHECK(counter_ids_[index] == CounterDefinitions::kInvalidId);
396
397 counter_ids_[index] = counter_id;
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100398 if (counter_id >= rows_for_counter_id_.size()) {
399 rows_for_counter_id_.resize(counter_id + 1);
400 }
Lalit Maganti521d97b2019-04-29 13:47:03 +0100401
402 auto* new_rows = &rows_for_counter_id_[counter_id];
403 new_rows->insert(
404 std::upper_bound(new_rows->begin(), new_rows->end(), index), index);
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000405 }
406
407 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
408
409 uint32_t size() const { return static_cast<uint32_t>(counter_ids_.size()); }
410
411 const std::deque<CounterDefinitions::Id>& counter_ids() const {
412 return counter_ids_;
413 }
414
415 const std::deque<int64_t>& timestamps() const { return timestamps_; }
416
417 const std::deque<double>& values() const { return values_; }
418
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000419 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
420
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100421 const std::deque<std::vector<uint32_t>>& rows_for_counter_id() const {
422 return rows_for_counter_id_;
423 }
424
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100425 private:
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000426 std::deque<CounterDefinitions::Id> counter_ids_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000427 std::deque<int64_t> timestamps_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100428 std::deque<double> values_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000429 std::deque<ArgSetId> arg_set_ids_;
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100430
431 // Indexed by counter_id value and contains the row numbers corresponding to
432 // it.
433 std::deque<std::vector<uint32_t>> rows_for_counter_id_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100434 };
435
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700436 class SqlStats {
437 public:
438 static constexpr size_t kMaxLogEntries = 100;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100439 uint32_t RecordQueryBegin(const std::string& query,
440 int64_t time_queued,
441 int64_t time_started);
442 void RecordQueryFirstNext(uint32_t row, int64_t time_first_next);
443 void RecordQueryEnd(uint32_t row, int64_t time_end);
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700444 size_t size() const { return queries_.size(); }
445 const std::deque<std::string>& queries() const { return queries_; }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000446 const std::deque<int64_t>& times_queued() const { return times_queued_; }
447 const std::deque<int64_t>& times_started() const { return times_started_; }
Lalit Magantiaac2f652019-04-30 12:16:21 +0100448 const std::deque<int64_t>& times_first_next() const {
449 return times_first_next_;
450 }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000451 const std::deque<int64_t>& times_ended() const { return times_ended_; }
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700452
453 private:
Lalit Magantiaac2f652019-04-30 12:16:21 +0100454 uint32_t popped_queries_ = 0;
455
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700456 std::deque<std::string> queries_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000457 std::deque<int64_t> times_queued_;
458 std::deque<int64_t> times_started_;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100459 std::deque<int64_t> times_first_next_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000460 std::deque<int64_t> times_ended_;
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700461 };
462
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000463 class Instants {
464 public:
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000465 inline uint32_t AddInstantEvent(int64_t timestamp,
466 StringId name_id,
467 double value,
468 int64_t ref,
469 RefType type) {
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000470 timestamps_.emplace_back(timestamp);
471 name_ids_.emplace_back(name_id);
472 values_.emplace_back(value);
473 refs_.emplace_back(ref);
474 types_.emplace_back(type);
Lalit Maganti1c21d172019-02-07 10:48:24 +0000475 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000476 return static_cast<uint32_t>(instant_count() - 1);
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000477 }
478
Lalit Maganti521d97b2019-04-29 13:47:03 +0100479 void set_ref(uint32_t row, int64_t ref) { refs_[row] = ref; }
480
Lalit Maganti1c21d172019-02-07 10:48:24 +0000481 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
482
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000483 size_t instant_count() const { return timestamps_.size(); }
484
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000485 const std::deque<int64_t>& timestamps() const { return timestamps_; }
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000486
487 const std::deque<StringId>& name_ids() const { return name_ids_; }
488
489 const std::deque<double>& values() const { return values_; }
490
491 const std::deque<int64_t>& refs() const { return refs_; }
492
493 const std::deque<RefType>& types() const { return types_; }
494
Lalit Maganti1c21d172019-02-07 10:48:24 +0000495 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
496
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000497 private:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000498 std::deque<int64_t> timestamps_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000499 std::deque<StringId> name_ids_;
500 std::deque<double> values_;
501 std::deque<int64_t> refs_;
502 std::deque<RefType> types_;
Lalit Maganti1c21d172019-02-07 10:48:24 +0000503 std::deque<ArgSetId> arg_set_ids_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000504 };
505
Lalit Maganti1d915a62019-01-07 12:10:42 +0000506 class RawEvents {
507 public:
508 inline RowId AddRawEvent(int64_t timestamp,
509 StringId name_id,
Lalit Magantie87cc812019-01-10 15:20:06 +0000510 uint32_t cpu,
Lalit Maganti1d915a62019-01-07 12:10:42 +0000511 UniqueTid utid) {
512 timestamps_.emplace_back(timestamp);
513 name_ids_.emplace_back(name_id);
Lalit Magantie87cc812019-01-10 15:20:06 +0000514 cpus_.emplace_back(cpu);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000515 utids_.emplace_back(utid);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000516 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000517 return CreateRowId(TableId::kRawEvents,
518 static_cast<uint32_t>(raw_event_count() - 1));
519 }
520
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000521 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
522
Lalit Maganti1d915a62019-01-07 12:10:42 +0000523 size_t raw_event_count() const { return timestamps_.size(); }
524
525 const std::deque<int64_t>& timestamps() const { return timestamps_; }
526
527 const std::deque<StringId>& name_ids() const { return name_ids_; }
528
Lalit Magantie87cc812019-01-10 15:20:06 +0000529 const std::deque<uint32_t>& cpus() const { return cpus_; }
530
Lalit Maganti1d915a62019-01-07 12:10:42 +0000531 const std::deque<UniqueTid>& utids() const { return utids_; }
532
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000533 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
534
Lalit Maganti1d915a62019-01-07 12:10:42 +0000535 private:
536 std::deque<int64_t> timestamps_;
537 std::deque<StringId> name_ids_;
Lalit Magantie87cc812019-01-10 15:20:06 +0000538 std::deque<uint32_t> cpus_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000539 std::deque<UniqueTid> utids_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000540 std::deque<ArgSetId> arg_set_ids_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000541 };
542
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000543 class AndroidLogs {
544 public:
545 inline size_t AddLogEvent(int64_t timestamp,
546 UniqueTid utid,
547 uint8_t prio,
548 StringId tag_id,
549 StringId msg_id) {
550 timestamps_.emplace_back(timestamp);
551 utids_.emplace_back(utid);
552 prios_.emplace_back(prio);
553 tag_ids_.emplace_back(tag_id);
554 msg_ids_.emplace_back(msg_id);
555 return size() - 1;
556 }
557
558 size_t size() const { return timestamps_.size(); }
559
560 const std::deque<int64_t>& timestamps() const { return timestamps_; }
561 const std::deque<UniqueTid>& utids() const { return utids_; }
562 const std::deque<uint8_t>& prios() const { return prios_; }
563 const std::deque<StringId>& tag_ids() const { return tag_ids_; }
564 const std::deque<StringId>& msg_ids() const { return msg_ids_; }
565
566 private:
567 std::deque<int64_t> timestamps_;
568 std::deque<UniqueTid> utids_;
569 std::deque<uint8_t> prios_;
570 std::deque<StringId> tag_ids_;
571 std::deque<StringId> msg_ids_;
572 };
573
Primiano Tucci0e38a142019-01-07 20:51:09 +0000574 struct Stats {
575 using IndexMap = std::map<int, int64_t>;
576 int64_t value = 0;
577 IndexMap indexed_values;
578 };
579 using StatsMap = std::array<Stats, stats::kNumKeys>;
580
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100581 using MetadataMap = std::array<std::vector<Variadic>, metadata::kNumKeys>;
582
Florian Mayer438b5ab2019-05-02 11:18:06 +0100583 class HeapProfileFrames {
584 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100585 struct Row {
586 StringId name_id;
587 int64_t mapping_row;
588 int64_t rel_pc;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100589
Florian Mayerbee52132019-05-02 13:59:56 +0100590 bool operator==(const Row& other) const {
591 return std::tie(name_id, mapping_row, rel_pc) ==
592 std::tie(other.name_id, other.mapping_row, other.rel_pc);
593 }
594 };
595
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100596 uint32_t size() const { return static_cast<uint32_t>(names_.size()); }
597
Florian Mayerbee52132019-05-02 13:59:56 +0100598 int64_t Insert(const Row& row) {
599 names_.emplace_back(row.name_id);
600 mappings_.emplace_back(row.mapping_row);
601 rel_pcs_.emplace_back(row.rel_pc);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100602 return static_cast<int64_t>(names_.size()) - 1;
603 }
604
605 const std::deque<StringId>& names() const { return names_; }
606 const std::deque<int64_t>& mappings() const { return mappings_; }
607 const std::deque<int64_t>& rel_pcs() const { return rel_pcs_; }
608
609 private:
610 std::deque<StringId> names_;
611 std::deque<int64_t> mappings_;
612 std::deque<int64_t> rel_pcs_;
613 };
614
615 class HeapProfileCallsites {
616 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100617 struct Row {
618 int64_t depth;
619 int64_t parent_id;
620 int64_t frame_row;
621
622 bool operator==(const Row& other) const {
623 return std::tie(depth, parent_id, frame_row) ==
624 std::tie(other.depth, other.parent_id, other.frame_row);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100625 }
Florian Mayerbee52132019-05-02 13:59:56 +0100626 };
627
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100628 uint32_t size() const { return static_cast<uint32_t>(frame_ids_.size()); }
629
Florian Mayerbee52132019-05-02 13:59:56 +0100630 int64_t Insert(const Row& row) {
631 frame_depths_.emplace_back(row.depth);
632 parent_callsite_ids_.emplace_back(row.parent_id);
633 frame_ids_.emplace_back(row.frame_row);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100634 return static_cast<int64_t>(frame_depths_.size()) - 1;
635 }
636
637 const std::deque<int64_t>& frame_depths() const { return frame_depths_; }
638 const std::deque<int64_t>& parent_callsite_ids() const {
639 return parent_callsite_ids_;
640 }
641 const std::deque<int64_t>& frame_ids() const { return frame_ids_; }
642
643 private:
644 std::deque<int64_t> frame_depths_;
645 std::deque<int64_t> parent_callsite_ids_;
646 std::deque<int64_t> frame_ids_;
647 };
648
649 class HeapProfileMappings {
650 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100651 struct Row {
652 StringId build_id;
653 int64_t offset;
654 int64_t start;
655 int64_t end;
656 int64_t load_bias;
657 StringId name_id;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100658
Florian Mayerbee52132019-05-02 13:59:56 +0100659 bool operator==(const Row& other) const {
660 return std::tie(build_id, offset, start, end, load_bias, name_id) ==
661 std::tie(other.build_id, other.offset, other.start, other.end,
662 other.load_bias, other.name_id);
663 }
664 };
665
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100666 uint32_t size() const { return static_cast<uint32_t>(names_.size()); }
667
Florian Mayerbee52132019-05-02 13:59:56 +0100668 int64_t Insert(const Row& row) {
669 build_ids_.emplace_back(row.build_id);
670 offsets_.emplace_back(row.offset);
671 starts_.emplace_back(row.start);
672 ends_.emplace_back(row.end);
673 load_biases_.emplace_back(row.load_bias);
674 names_.emplace_back(row.name_id);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100675 return static_cast<int64_t>(build_ids_.size()) - 1;
676 }
677
678 const std::deque<StringId>& build_ids() const { return build_ids_; }
679 const std::deque<int64_t>& offsets() const { return offsets_; }
680 const std::deque<int64_t>& starts() const { return starts_; }
681 const std::deque<int64_t>& ends() const { return ends_; }
682 const std::deque<int64_t>& load_biases() const { return load_biases_; }
683 const std::deque<StringId>& names() const { return names_; }
684
685 private:
686 std::deque<StringId> build_ids_;
687 std::deque<int64_t> offsets_;
688 std::deque<int64_t> starts_;
689 std::deque<int64_t> ends_;
690 std::deque<int64_t> load_biases_;
691 std::deque<StringId> names_;
692 };
693
694 class HeapProfileAllocations {
695 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100696 struct Row {
697 int64_t timestamp;
Florian Mayerdf1968c2019-05-13 16:39:35 +0100698 UniquePid upid;
Florian Mayerbee52132019-05-02 13:59:56 +0100699 int64_t callsite_id;
700 int64_t count;
701 int64_t size;
702 };
703
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100704 uint32_t size() const { return static_cast<uint32_t>(timestamps_.size()); }
705
Florian Mayerbee52132019-05-02 13:59:56 +0100706 void Insert(const Row& row) {
707 timestamps_.emplace_back(row.timestamp);
Florian Mayerdf1968c2019-05-13 16:39:35 +0100708 upids_.emplace_back(row.upid);
Florian Mayerbee52132019-05-02 13:59:56 +0100709 callsite_ids_.emplace_back(row.callsite_id);
710 counts_.emplace_back(row.count);
711 sizes_.emplace_back(row.size);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100712 }
713
714 const std::deque<int64_t>& timestamps() const { return timestamps_; }
Florian Mayerdf1968c2019-05-13 16:39:35 +0100715 const std::deque<UniquePid>& upids() const { return upids_; }
Florian Mayer438b5ab2019-05-02 11:18:06 +0100716 const std::deque<int64_t>& callsite_ids() const { return callsite_ids_; }
717 const std::deque<int64_t>& counts() const { return counts_; }
718 const std::deque<int64_t>& sizes() const { return sizes_; }
719
720 private:
721 std::deque<int64_t> timestamps_;
Florian Mayerdf1968c2019-05-13 16:39:35 +0100722 std::deque<UniquePid> upids_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100723 std::deque<int64_t> callsite_ids_;
724 std::deque<int64_t> counts_;
725 std::deque<int64_t> sizes_;
726 };
727
Isabelle Taylora0a22972018-08-03 12:06:12 +0100728 void ResetStorage();
Lalit Maganti35622b72018-06-06 12:03:11 +0100729
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100730 UniqueTid AddEmptyThread(uint32_t tid) {
731 unique_threads_.emplace_back(tid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100732 return static_cast<UniqueTid>(unique_threads_.size() - 1);
733 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100734
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100735 UniquePid AddEmptyProcess(uint32_t pid) {
736 unique_processes_.emplace_back(pid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100737 return static_cast<UniquePid>(unique_processes_.size() - 1);
738 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100739
Isabelle Taylora0a22972018-08-03 12:06:12 +0100740 // Return an unqiue identifier for the contents of each string.
741 // The string is copied internally and can be destroyed after this called.
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100742 // Virtual for testing.
Lalit Maganti5c454312019-04-08 12:11:17 +0100743 virtual StringId InternString(base::StringView str) {
744 return string_pool_.InternString(str);
745 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100746
Isabelle Taylora0a22972018-08-03 12:06:12 +0100747 Process* GetMutableProcess(UniquePid upid) {
Lalit Maganti676658b2018-11-20 18:24:31 +0000748 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100749 return &unique_processes_[upid];
750 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100751
Isabelle Taylora0a22972018-08-03 12:06:12 +0100752 Thread* GetMutableThread(UniqueTid utid) {
Florian Mayera1aaec22018-09-19 17:02:26 +0100753 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100754 return &unique_threads_[utid];
755 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100756
Primiano Tucci0e38a142019-01-07 20:51:09 +0000757 // Example usage: SetStats(stats::android_log_num_failed, 42);
758 void SetStats(size_t key, int64_t value) {
759 PERFETTO_DCHECK(key < stats::kNumKeys);
760 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
761 stats_[key].value = value;
762 }
763
764 // Example usage: IncrementStats(stats::android_log_num_failed, -1);
765 void IncrementStats(size_t key, int64_t increment = 1) {
766 PERFETTO_DCHECK(key < stats::kNumKeys);
767 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
768 stats_[key].value += increment;
769 }
770
Florian Mayer438b5ab2019-05-02 11:18:06 +0100771 // Example usage: IncrementIndexedStats(stats::cpu_failure, 1);
772 void IncrementIndexedStats(size_t key, int index, int64_t increment = 1) {
773 PERFETTO_DCHECK(key < stats::kNumKeys);
774 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
775 stats_[key].indexed_values[index] += increment;
776 }
777
Primiano Tucci0e38a142019-01-07 20:51:09 +0000778 // Example usage: SetIndexedStats(stats::cpu_failure, 1, 42);
779 void SetIndexedStats(size_t key, int index, int64_t value) {
780 PERFETTO_DCHECK(key < stats::kNumKeys);
781 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
782 stats_[key].indexed_values[index] = value;
783 }
784
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100785 // Example usage:
786 // SetMetadata(metadata::benchmark_name,
787 // Variadic::String(storage->InternString("foo"));
Mikhail Khokhlovb1fe42a2019-05-23 13:58:05 +0100788 // Virtual for testing.
789 virtual void SetMetadata(size_t key, Variadic value) {
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100790 PERFETTO_DCHECK(key < metadata::kNumKeys);
791 PERFETTO_DCHECK(metadata::kKeyTypes[key] == metadata::kSingle);
792 PERFETTO_DCHECK(value.type == metadata::kValueTypes[key]);
793 metadata_[key] = {value};
794 }
795
796 // Example usage:
797 // AppendMetadata(metadata::benchmark_story_tags,
798 // Variadic::String(storage->InternString("bar"));
Mikhail Khokhlovb1fe42a2019-05-23 13:58:05 +0100799 // Virtual for testing.
800 virtual void AppendMetadata(size_t key, Variadic value) {
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100801 PERFETTO_DCHECK(key < metadata::kNumKeys);
802 PERFETTO_DCHECK(metadata::kKeyTypes[key] == metadata::kMulti);
803 PERFETTO_DCHECK(value.type == metadata::kValueTypes[key]);
804 metadata_[key].push_back(value);
805 }
806
Eric Seckler77b52782019-05-02 15:18:57 +0100807 class ScopedStatsTracer {
808 public:
809 ScopedStatsTracer(TraceStorage* storage, size_t key)
810 : storage_(storage), key_(key), start_ns_(base::GetWallTimeNs()) {}
811
812 ~ScopedStatsTracer() {
813 if (!storage_)
814 return;
815 auto delta_ns = base::GetWallTimeNs() - start_ns_;
816 storage_->IncrementStats(key_, delta_ns.count());
817 }
818
819 ScopedStatsTracer(ScopedStatsTracer&& other) noexcept { MoveImpl(&other); }
820
821 ScopedStatsTracer& operator=(ScopedStatsTracer&& other) {
822 MoveImpl(&other);
823 return *this;
824 }
825
826 private:
827 ScopedStatsTracer(const ScopedStatsTracer&) = delete;
828 ScopedStatsTracer& operator=(const ScopedStatsTracer&) = delete;
829
830 void MoveImpl(ScopedStatsTracer* other) {
831 storage_ = other->storage_;
832 key_ = other->key_;
833 start_ns_ = other->start_ns_;
834 other->storage_ = nullptr;
835 }
836
837 TraceStorage* storage_;
838 size_t key_;
839 base::TimeNanos start_ns_;
840 };
841
842 ScopedStatsTracer TraceExecutionTimeIntoStats(size_t key) {
843 return ScopedStatsTracer(this, key);
844 }
845
Lalit Maganticaed37e2018-06-01 03:03:08 +0100846 // Reading methods.
Eric Secklerc93823e2019-06-03 16:49:19 +0100847 // Virtual for testing.
848 virtual NullTermStringView GetString(StringId id) const {
Lalit Maganti5c454312019-04-08 12:11:17 +0100849 return string_pool_.Get(id);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100850 }
851
Lalit Magantie9d40532018-06-29 13:15:06 +0100852 const Process& GetProcess(UniquePid upid) const {
Lalit Maganti676658b2018-11-20 18:24:31 +0000853 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100854 return unique_processes_[upid];
855 }
856
Lalit Magantie9d40532018-06-29 13:15:06 +0100857 const Thread& GetThread(UniqueTid utid) const {
Lalit Maganti1f64cfa2018-09-18 13:20:02 +0100858 // Allow utid == 0 for idle thread retrieval.
Florian Mayera1aaec22018-09-19 17:02:26 +0100859 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylor68e42192018-06-19 16:19:31 +0100860 return unique_threads_[utid];
861 }
862
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000863 static RowId CreateRowId(TableId table, uint32_t row) {
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000864 return (static_cast<RowId>(table) << kRowIdTableShift) | row;
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000865 }
866
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000867 static std::pair<int8_t /*table*/, uint32_t /*row*/> ParseRowId(RowId rowid) {
868 auto id = static_cast<uint64_t>(rowid);
869 auto table_id = static_cast<uint8_t>(id >> kRowIdTableShift);
870 auto row = static_cast<uint32_t>(id & ((1ull << kRowIdTableShift) - 1));
871 return std::make_pair(table_id, row);
872 }
873
Lalit Magantiff69c112018-09-24 12:07:47 +0100874 const Slices& slices() const { return slices_; }
Lalit Magantifde29042018-10-04 13:28:52 +0100875 Slices* mutable_slices() { return &slices_; }
876
Primiano Tucci0d72a312018-08-07 14:42:45 +0100877 const NestableSlices& nestable_slices() const { return nestable_slices_; }
878 NestableSlices* mutable_nestable_slices() { return &nestable_slices_; }
879
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000880 const CounterDefinitions& counter_definitions() const {
881 return counter_definitions_;
882 }
883 CounterDefinitions* mutable_counter_definitions() {
884 return &counter_definitions_;
885 }
886
887 const CounterValues& counter_values() const { return counter_values_; }
888 CounterValues* mutable_counter_values() { return &counter_values_; }
Isabelle Taylor14674d42018-09-07 11:33:11 +0100889
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700890 const SqlStats& sql_stats() const { return sql_stats_; }
891 SqlStats* mutable_sql_stats() { return &sql_stats_; }
892
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000893 const Instants& instants() const { return instants_; }
894 Instants* mutable_instants() { return &instants_; }
895
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000896 const AndroidLogs& android_logs() const { return android_log_; }
897 AndroidLogs* mutable_android_log() { return &android_log_; }
898
Primiano Tucci0e38a142019-01-07 20:51:09 +0000899 const StatsMap& stats() const { return stats_; }
Lalit Maganti05e8c132018-11-09 18:16:12 +0000900
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100901 const MetadataMap& metadata() const { return metadata_; }
902
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000903 const Args& args() const { return args_; }
904 Args* mutable_args() { return &args_; }
905
Lalit Maganti1d915a62019-01-07 12:10:42 +0000906 const RawEvents& raw_events() const { return raw_events_; }
907 RawEvents* mutable_raw_events() { return &raw_events_; }
908
Florian Mayer438b5ab2019-05-02 11:18:06 +0100909 const HeapProfileMappings& heap_profile_mappings() const {
910 return heap_profile_mappings_;
911 }
912 HeapProfileMappings* mutable_heap_profile_mappings() {
913 return &heap_profile_mappings_;
914 }
915
916 const HeapProfileFrames& heap_profile_frames() const {
917 return heap_profile_frames_;
918 }
919 HeapProfileFrames* mutable_heap_profile_frames() {
920 return &heap_profile_frames_;
921 }
922
923 const HeapProfileCallsites& heap_profile_callsites() const {
924 return heap_profile_callsites_;
925 }
926 HeapProfileCallsites* mutable_heap_profile_callsites() {
927 return &heap_profile_callsites_;
928 }
929
930 const HeapProfileAllocations& heap_profile_allocations() const {
931 return heap_profile_allocations_;
932 }
933 HeapProfileAllocations* mutable_heap_profile_allocations() {
934 return &heap_profile_allocations_;
935 }
936
Lalit Maganti5c454312019-04-08 12:11:17 +0100937 const StringPool& string_pool() const { return string_pool_; }
Lalit Magantiacda68b2018-10-29 15:23:25 +0000938
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100939 // |unique_processes_| always contains at least 1 element becuase the 0th ID
940 // is reserved to indicate an invalid process.
Lalit Maganti9c6395b2019-01-17 00:25:09 +0000941 size_t process_count() const { return unique_processes_.size(); }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100942
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100943 // |unique_threads_| always contains at least 1 element becuase the 0th ID
944 // is reserved to indicate an invalid thread.
Lalit Maganti9c6395b2019-01-17 00:25:09 +0000945 size_t thread_count() const { return unique_threads_.size(); }
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100946
Hector Dearman12323362018-08-09 16:09:28 +0100947 // Number of interned strings in the pool. Includes the empty string w/ ID=0.
948 size_t string_count() const { return string_pool_.size(); }
949
Ioannis Ilkosb8b11102019-01-29 17:56:55 +0000950 // Start / end ts (in nanoseconds) across the parsed trace events.
951 // Returns (0, 0) if the trace is empty.
952 std::pair<int64_t, int64_t> GetTraceTimestampBoundsNs() const;
953
Lalit Maganticaed37e2018-06-01 03:03:08 +0100954 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000955 static constexpr uint8_t kRowIdTableShift = 32;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100956
Primiano Tucci2da5d2e2018-08-10 14:23:31 +0100957 using StringHash = uint64_t;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100958
Lalit Maganti5c454312019-04-08 12:11:17 +0100959 TraceStorage(const TraceStorage&) = delete;
960 TraceStorage& operator=(const TraceStorage&) = delete;
961
962 TraceStorage(TraceStorage&&) = default;
963 TraceStorage& operator=(TraceStorage&&) = default;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000964
Lalit Maganti05e8c132018-11-09 18:16:12 +0000965 // Stats about parsing the trace.
Primiano Tucci0e38a142019-01-07 20:51:09 +0000966 StatsMap stats_{};
Lalit Maganti35622b72018-06-06 12:03:11 +0100967
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100968 // Trace metadata from chrome and benchmarking infrastructure.
969 MetadataMap metadata_{};
970
Lalit Maganticaed37e2018-06-01 03:03:08 +0100971 // One entry for each CPU in the trace.
Lalit Magantiff69c112018-09-24 12:07:47 +0100972 Slices slices_;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100973
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000974 // Args for all other tables.
975 Args args_;
976
Lalit Maganticaed37e2018-06-01 03:03:08 +0100977 // One entry for each unique string in the trace.
Lalit Maganti5c454312019-04-08 12:11:17 +0100978 StringPool string_pool_;
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100979
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100980 // One entry for each UniquePid, with UniquePid as the index.
Ioannis Ilkos9c03cbd2019-03-12 18:30:43 +0000981 // Never hold on to pointers to Process, as vector resize will
982 // invalidate them.
983 std::vector<Process> unique_processes_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100984
Isabelle Taylor68e42192018-06-19 16:19:31 +0100985 // One entry for each UniqueTid, with UniqueTid as the index.
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100986 std::deque<Thread> unique_threads_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100987
988 // Slices coming from userspace events (e.g. Chromium TRACE_EVENT macros).
989 NestableSlices nestable_slices_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100990
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000991 // The type of counters in the trace. Can be thought of the the "metadata".
992 CounterDefinitions counter_definitions_;
993
994 // The values from the Counter events from the trace. This includes CPU
995 // frequency events as well systrace trace_marker counter events.
996 CounterValues counter_values_;
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700997
998 SqlStats sql_stats_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000999
Isabelle Taylorc8c11202018-11-05 11:36:22 +00001000 // These are instantaneous events in the trace. They have no duration
1001 // and do not have a value that make sense to track over time.
1002 // e.g. signal events
1003 Instants instants_;
Lalit Maganti1d915a62019-01-07 12:10:42 +00001004
1005 // Raw events are every ftrace event in the trace. The raw event includes
1006 // the timestamp and the pid. The args for the raw event will be in the
1007 // args table. This table can be used to generate a text version of the
1008 // trace.
1009 RawEvents raw_events_;
Primiano Tucci2c761ef2019-01-07 20:20:46 +00001010 AndroidLogs android_log_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001011
1012 HeapProfileMappings heap_profile_mappings_;
1013 HeapProfileFrames heap_profile_frames_;
1014 HeapProfileCallsites heap_profile_callsites_;
1015 HeapProfileAllocations heap_profile_allocations_;
Lalit Maganticaed37e2018-06-01 03:03:08 +01001016};
1017
1018} // namespace trace_processor
1019} // namespace perfetto
1020
Florian Mayerbee52132019-05-02 13:59:56 +01001021namespace std {
1022
1023template <>
1024struct hash<::perfetto::trace_processor::TraceStorage::HeapProfileFrames::Row> {
1025 using argument_type =
1026 ::perfetto::trace_processor::TraceStorage::HeapProfileFrames::Row;
1027 using result_type = size_t;
1028
1029 result_type operator()(const argument_type& r) const {
1030 return std::hash<::perfetto::trace_processor::StringId>{}(r.name_id) ^
1031 std::hash<int64_t>{}(r.mapping_row) ^ std::hash<int64_t>{}(r.rel_pc);
1032 }
1033};
1034
1035template <>
1036struct hash<
1037 ::perfetto::trace_processor::TraceStorage::HeapProfileCallsites::Row> {
1038 using argument_type =
1039 ::perfetto::trace_processor::TraceStorage::HeapProfileCallsites::Row;
1040 using result_type = size_t;
1041
1042 result_type operator()(const argument_type& r) const {
1043 return std::hash<int64_t>{}(r.depth) ^ std::hash<int64_t>{}(r.parent_id) ^
1044 std::hash<int64_t>{}(r.frame_row);
1045 }
1046};
1047
1048template <>
1049struct hash<
1050 ::perfetto::trace_processor::TraceStorage::HeapProfileMappings::Row> {
1051 using argument_type =
1052 ::perfetto::trace_processor::TraceStorage::HeapProfileMappings::Row;
1053 using result_type = size_t;
1054
1055 result_type operator()(const argument_type& r) const {
1056 return std::hash<::perfetto::trace_processor::StringId>{}(r.build_id) ^
1057 std::hash<int64_t>{}(r.offset) ^ std::hash<int64_t>{}(r.start) ^
1058 std::hash<int64_t>{}(r.end) ^ std::hash<int64_t>{}(r.load_bias) ^
1059 std::hash<::perfetto::trace_processor::StringId>{}(r.name_id);
1060 }
1061};
1062
1063} // namespace std
1064
Lalit Maganticaed37e2018-06-01 03:03:08 +01001065#endif // SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_