blob: fc26e662ef266c04fcbd28a77e951e368ef148ce [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 Maganti1f464742019-02-28 13:49:31 +000028#include "perfetto/base/hash.h"
Lalit Maganti35622b72018-06-06 12:03:11 +010029#include "perfetto/base/logging.h"
Lalit Maganti770886a2018-11-16 17:40:21 +000030#include "perfetto/base/optional.h"
Primiano Tucci2da5d2e2018-08-10 14:23:31 +010031#include "perfetto/base/string_view.h"
Eric Seckler77b52782019-05-02 15:18:57 +010032#include "perfetto/base/time.h"
Hector Dearmanc8339932018-08-10 11:22:46 +010033#include "perfetto/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,
Lalit Maganti5ea9e932018-11-30 14:19:39 +000063};
64
65// The top 8 bits are set to the TableId and the bottom 32 to the row of the
66// table.
Lalit Maganti85ca4a82018-12-07 17:28:02 +000067using RowId = int64_t;
Lalit Maganti5ea9e932018-11-30 14:19:39 +000068static const RowId kInvalidRowId = 0;
69
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +000070using ArgSetId = uint32_t;
71static const ArgSetId kInvalidArgSetId = 0;
72
Isabelle Taylora97c5f52018-10-23 17:36:12 +010073enum RefType {
Primiano Tucci5403e4f2018-11-27 10:07:03 +000074 kRefNoRef = 0,
75 kRefUtid = 1,
76 kRefCpuId = 2,
77 kRefIrq = 3,
78 kRefSoftIrq = 4,
79 kRefUpid = 5,
Primiano Tucci5403e4f2018-11-27 10:07:03 +000080 kRefMax
Isabelle Taylora97c5f52018-10-23 17:36:12 +010081};
Isabelle Taylor14674d42018-09-07 11:33:11 +010082
Eric Seckler972225e2019-04-18 11:07:12 +010083const std::vector<const char*>& GetRefTypeStringMap();
84
Lalit Maganticaed37e2018-06-01 03:03:08 +010085// Stores a data inside a trace file in a columnar form. This makes it efficient
86// to read or search across a single field of the trace (e.g. all the thread
87// names for a given CPU).
88class TraceStorage {
89 public:
Isabelle Taylor47328cf2018-06-12 14:33:59 +010090 TraceStorage();
Isabelle Taylora0a22972018-08-03 12:06:12 +010091
92 virtual ~TraceStorage();
Isabelle Taylor47328cf2018-06-12 14:33:59 +010093
Isabelle Taylora0a22972018-08-03 12:06:12 +010094 // Information about a unique process seen in a trace.
95 struct Process {
Primiano Tuccib75dcee2018-08-08 12:21:36 +010096 explicit Process(uint32_t p) : pid(p) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +000097 int64_t start_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +010098 StringId name_id = 0;
Primiano Tuccib75dcee2018-08-08 12:21:36 +010099 uint32_t pid = 0;
Lalit Maganti08884242019-02-19 12:28:32 +0000100 base::Optional<UniquePid> pupid;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100101 };
102
103 // Information about a unique thread seen in a trace.
104 struct Thread {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100105 explicit Thread(uint32_t t) : tid(t) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000106 int64_t start_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100107 StringId name_id = 0;
Lalit Maganti770886a2018-11-16 17:40:21 +0000108 base::Optional<UniquePid> upid;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100109 uint32_t tid = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100110 };
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100111
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000112 // Generic key value storage which can be referenced by other tables.
113 class Args {
114 public:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000115 struct Arg {
116 StringId flat_key = 0;
117 StringId key = 0;
118 Variadic value = Variadic::Integer(0);
119
120 // This is only used by the arg tracker and so is not part of the hash.
121 RowId row_id = 0;
122 };
123
124 struct ArgHasher {
125 uint64_t operator()(const Arg& arg) const noexcept {
Lalit Maganti1f464742019-02-28 13:49:31 +0000126 base::Hash hash;
127 hash.Update(arg.key);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000128 // We don't hash arg.flat_key because it's a subsequence of arg.key.
129 switch (arg.value.type) {
130 case Variadic::Type::kInt:
Lalit Maganti1f464742019-02-28 13:49:31 +0000131 hash.Update(arg.value.int_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000132 break;
133 case Variadic::Type::kString:
Lalit Maganti1f464742019-02-28 13:49:31 +0000134 hash.Update(arg.value.string_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000135 break;
136 case Variadic::Type::kReal:
Lalit Maganti1f464742019-02-28 13:49:31 +0000137 hash.Update(arg.value.real_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000138 break;
139 }
Lalit Maganti1f464742019-02-28 13:49:31 +0000140 return hash.digest();
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000141 }
142 };
143
144 const std::deque<ArgSetId>& set_ids() const { return set_ids_; }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000145 const std::deque<StringId>& flat_keys() const { return flat_keys_; }
146 const std::deque<StringId>& keys() const { return keys_; }
Lalit Maganti1d915a62019-01-07 12:10:42 +0000147 const std::deque<Variadic>& arg_values() const { return arg_values_; }
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000148 uint32_t args_count() const {
149 return static_cast<uint32_t>(set_ids_.size());
Lalit Maganti79472be2018-12-04 13:41:27 +0000150 }
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000151
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000152 ArgSetId AddArgSet(const std::vector<Arg>& args,
153 uint32_t begin,
154 uint32_t end) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000155 base::Hash hash;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000156 for (uint32_t i = begin; i < end; i++) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000157 hash.Update(ArgHasher()(args[i]));
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000158 }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000159
Lalit Maganti1f464742019-02-28 13:49:31 +0000160 ArgSetHash digest = hash.digest();
161 auto it = arg_row_for_hash_.find(digest);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000162 if (it != arg_row_for_hash_.end()) {
163 return set_ids_[it->second];
164 }
165
166 // The +1 ensures that nothing has an id == kInvalidArgSetId == 0.
167 ArgSetId id = static_cast<uint32_t>(arg_row_for_hash_.size()) + 1;
Lalit Maganti1f464742019-02-28 13:49:31 +0000168 arg_row_for_hash_.emplace(digest, args_count());
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000169 for (uint32_t i = begin; i < end; i++) {
170 const auto& arg = args[i];
171 set_ids_.emplace_back(id);
172 flat_keys_.emplace_back(arg.flat_key);
173 keys_.emplace_back(arg.key);
174 arg_values_.emplace_back(arg.value);
175 }
176 return id;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000177 }
178
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000179 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000180 using ArgSetHash = uint64_t;
181
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000182 std::deque<ArgSetId> set_ids_;
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000183 std::deque<StringId> flat_keys_;
184 std::deque<StringId> keys_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000185 std::deque<Variadic> arg_values_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000186
187 std::unordered_map<ArgSetHash, uint32_t> arg_row_for_hash_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000188 };
189
Lalit Magantiff69c112018-09-24 12:07:47 +0100190 class Slices {
Lalit Maganti35622b72018-06-06 12:03:11 +0100191 public:
Lalit Magantifde29042018-10-04 13:28:52 +0100192 inline size_t AddSlice(uint32_t cpu,
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000193 int64_t start_ns,
194 int64_t duration_ns,
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000195 UniqueTid utid,
196 ftrace_utils::TaskState end_state,
197 int32_t priority) {
Lalit Magantiff69c112018-09-24 12:07:47 +0100198 cpus_.emplace_back(cpu);
Lalit Maganti35622b72018-06-06 12:03:11 +0100199 start_ns_.emplace_back(start_ns);
200 durations_.emplace_back(duration_ns);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100201 utids_.emplace_back(utid);
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000202 end_states_.emplace_back(end_state);
203 priorities_.emplace_back(priority);
Lalit Maganti58638932019-01-31 10:48:26 +0000204
205 if (utid >= rows_for_utids_.size())
206 rows_for_utids_.resize(utid + 1);
207 rows_for_utids_[utid].emplace_back(slice_count() - 1);
Lalit Magantifde29042018-10-04 13:28:52 +0100208 return slice_count() - 1;
209 }
210
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000211 void set_duration(size_t index, int64_t duration_ns) {
Lalit Magantifde29042018-10-04 13:28:52 +0100212 durations_[index] = duration_ns;
Lalit Maganti35622b72018-06-06 12:03:11 +0100213 }
214
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000215 void set_end_state(size_t index, ftrace_utils::TaskState end_state) {
216 end_states_[index] = end_state;
217 }
218
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100219 size_t slice_count() const { return start_ns_.size(); }
Lalit Maganti35622b72018-06-06 12:03:11 +0100220
Lalit Magantiff69c112018-09-24 12:07:47 +0100221 const std::deque<uint32_t>& cpus() const { return cpus_; }
222
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000223 const std::deque<int64_t>& start_ns() const { return start_ns_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100224
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000225 const std::deque<int64_t>& durations() const { return durations_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100226
Isabelle Taylor68e42192018-06-19 16:19:31 +0100227 const std::deque<UniqueTid>& utids() const { return utids_; }
228
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000229 const std::deque<ftrace_utils::TaskState>& end_state() const {
230 return end_states_;
231 }
232
233 const std::deque<int32_t>& priorities() const { return priorities_; }
234
Lalit Maganti58638932019-01-31 10:48:26 +0000235 const std::deque<std::vector<uint32_t>>& rows_for_utids() const {
Lalit Magantif0f09c32019-01-18 17:29:31 +0000236 return rows_for_utids_;
237 }
238
Lalit Maganti35622b72018-06-06 12:03:11 +0100239 private:
Hector Dearman947f12a2018-09-11 16:50:36 +0100240 // Each deque below has the same number of entries (the number of slices
Lalit Maganti35622b72018-06-06 12:03:11 +0100241 // in the trace for the CPU).
Lalit Magantiff69c112018-09-24 12:07:47 +0100242 std::deque<uint32_t> cpus_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000243 std::deque<int64_t> start_ns_;
244 std::deque<int64_t> durations_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100245 std::deque<UniqueTid> utids_;
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000246 std::deque<ftrace_utils::TaskState> end_states_;
247 std::deque<int32_t> priorities_;
Lalit Maganti58638932019-01-31 10:48:26 +0000248
249 // One row per utid.
250 std::deque<std::vector<uint32_t>> rows_for_utids_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100251 };
Isabelle Taylor68e42192018-06-19 16:19:31 +0100252
Primiano Tucci0d72a312018-08-07 14:42:45 +0100253 class NestableSlices {
254 public:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000255 inline size_t AddSlice(int64_t start_ns,
256 int64_t duration_ns,
Eric Seckler972225e2019-04-18 11:07:12 +0100257 int64_t ref,
258 RefType type,
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000259 StringId cat,
260 StringId name,
261 uint8_t depth,
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000262 int64_t stack_id,
263 int64_t parent_stack_id) {
Primiano Tucci0d72a312018-08-07 14:42:45 +0100264 start_ns_.emplace_back(start_ns);
265 durations_.emplace_back(duration_ns);
Eric Seckler972225e2019-04-18 11:07:12 +0100266 refs_.emplace_back(ref);
267 types_.emplace_back(type);
Primiano Tucci0d72a312018-08-07 14:42:45 +0100268 cats_.emplace_back(cat);
269 names_.emplace_back(name);
270 depths_.emplace_back(depth);
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100271 stack_ids_.emplace_back(stack_id);
272 parent_stack_ids_.emplace_back(parent_stack_id);
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000273 return slice_count() - 1;
274 }
275
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000276 void set_duration(size_t index, int64_t duration_ns) {
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000277 durations_[index] = duration_ns;
278 }
279
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000280 void set_stack_id(size_t index, int64_t stack_id) {
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000281 stack_ids_[index] = stack_id;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100282 }
283
284 size_t slice_count() const { return start_ns_.size(); }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000285 const std::deque<int64_t>& start_ns() const { return start_ns_; }
286 const std::deque<int64_t>& durations() const { return durations_; }
Eric Seckler972225e2019-04-18 11:07:12 +0100287 const std::deque<int64_t>& refs() const { return refs_; }
288 const std::deque<RefType>& types() const { return types_; }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100289 const std::deque<StringId>& cats() const { return cats_; }
290 const std::deque<StringId>& names() const { return names_; }
291 const std::deque<uint8_t>& depths() const { return depths_; }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000292 const std::deque<int64_t>& stack_ids() const { return stack_ids_; }
293 const std::deque<int64_t>& parent_stack_ids() const {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100294 return parent_stack_ids_;
295 }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100296
297 private:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000298 std::deque<int64_t> start_ns_;
299 std::deque<int64_t> durations_;
Eric Seckler972225e2019-04-18 11:07:12 +0100300 std::deque<int64_t> refs_;
301 std::deque<RefType> types_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100302 std::deque<StringId> cats_;
303 std::deque<StringId> names_;
304 std::deque<uint8_t> depths_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000305 std::deque<int64_t> stack_ids_;
306 std::deque<int64_t> parent_stack_ids_;
Lalit Maganti35622b72018-06-06 12:03:11 +0100307 };
308
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000309 class CounterDefinitions {
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100310 public:
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000311 using Id = uint32_t;
Lalit Maganti521d97b2019-04-29 13:47:03 +0100312 static constexpr Id kInvalidId = std::numeric_limits<Id>::max();
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000313
314 inline Id AddCounterDefinition(StringId name_id,
315 int64_t ref,
316 RefType type) {
317 base::Hash hash;
318 hash.Update(name_id);
319 hash.Update(ref);
320 hash.Update(type);
321
322 // TODO(lalitm): this is a perf bottleneck and likely we can do something
323 // quite a bit better here.
324 uint64_t digest = hash.digest();
325 auto it = hash_to_row_idx_.find(digest);
326 if (it != hash_to_row_idx_.end())
327 return it->second;
328
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100329 name_ids_.emplace_back(name_id);
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100330 refs_.emplace_back(ref);
331 types_.emplace_back(type);
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000332 hash_to_row_idx_.emplace(digest, size() - 1);
333 return size() - 1;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100334 }
Lalit Magantifde29042018-10-04 13:28:52 +0100335
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000336 uint32_t size() const { return static_cast<uint32_t>(name_ids_.size()); }
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100337
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100338 const std::deque<StringId>& name_ids() const { return name_ids_; }
339
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100340 const std::deque<int64_t>& refs() const { return refs_; }
341
342 const std::deque<RefType>& types() const { return types_; }
343
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000344 private:
345 std::deque<StringId> name_ids_;
346 std::deque<int64_t> refs_;
347 std::deque<RefType> types_;
348
349 std::unordered_map<uint64_t, uint32_t> hash_to_row_idx_;
350 };
351
352 class CounterValues {
353 public:
354 inline uint32_t AddCounterValue(CounterDefinitions::Id counter_id,
355 int64_t timestamp,
356 double value) {
357 counter_ids_.emplace_back(counter_id);
358 timestamps_.emplace_back(timestamp);
359 values_.emplace_back(value);
360 arg_set_ids_.emplace_back(kInvalidArgSetId);
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100361
Lalit Maganti521d97b2019-04-29 13:47:03 +0100362 if (counter_id != CounterDefinitions::kInvalidId) {
363 if (counter_id >= rows_for_counter_id_.size()) {
364 rows_for_counter_id_.resize(counter_id + 1);
365 }
366 rows_for_counter_id_[counter_id].emplace_back(size() - 1);
367 }
368 return size() - 1;
369 }
370
371 void set_counter_id(uint32_t index, CounterDefinitions::Id counter_id) {
372 PERFETTO_DCHECK(counter_ids_[index] == CounterDefinitions::kInvalidId);
373
374 counter_ids_[index] = counter_id;
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100375 if (counter_id >= rows_for_counter_id_.size()) {
376 rows_for_counter_id_.resize(counter_id + 1);
377 }
Lalit Maganti521d97b2019-04-29 13:47:03 +0100378
379 auto* new_rows = &rows_for_counter_id_[counter_id];
380 new_rows->insert(
381 std::upper_bound(new_rows->begin(), new_rows->end(), index), index);
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000382 }
383
384 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
385
386 uint32_t size() const { return static_cast<uint32_t>(counter_ids_.size()); }
387
388 const std::deque<CounterDefinitions::Id>& counter_ids() const {
389 return counter_ids_;
390 }
391
392 const std::deque<int64_t>& timestamps() const { return timestamps_; }
393
394 const std::deque<double>& values() const { return values_; }
395
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000396 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
397
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100398 const std::deque<std::vector<uint32_t>>& rows_for_counter_id() const {
399 return rows_for_counter_id_;
400 }
401
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100402 private:
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000403 std::deque<CounterDefinitions::Id> counter_ids_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000404 std::deque<int64_t> timestamps_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100405 std::deque<double> values_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000406 std::deque<ArgSetId> arg_set_ids_;
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100407
408 // Indexed by counter_id value and contains the row numbers corresponding to
409 // it.
410 std::deque<std::vector<uint32_t>> rows_for_counter_id_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100411 };
412
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700413 class SqlStats {
414 public:
415 static constexpr size_t kMaxLogEntries = 100;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100416 uint32_t RecordQueryBegin(const std::string& query,
417 int64_t time_queued,
418 int64_t time_started);
419 void RecordQueryFirstNext(uint32_t row, int64_t time_first_next);
420 void RecordQueryEnd(uint32_t row, int64_t time_end);
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700421 size_t size() const { return queries_.size(); }
422 const std::deque<std::string>& queries() const { return queries_; }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000423 const std::deque<int64_t>& times_queued() const { return times_queued_; }
424 const std::deque<int64_t>& times_started() const { return times_started_; }
Lalit Magantiaac2f652019-04-30 12:16:21 +0100425 const std::deque<int64_t>& times_first_next() const {
426 return times_first_next_;
427 }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000428 const std::deque<int64_t>& times_ended() const { return times_ended_; }
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700429
430 private:
Lalit Magantiaac2f652019-04-30 12:16:21 +0100431 uint32_t popped_queries_ = 0;
432
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700433 std::deque<std::string> queries_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000434 std::deque<int64_t> times_queued_;
435 std::deque<int64_t> times_started_;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100436 std::deque<int64_t> times_first_next_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000437 std::deque<int64_t> times_ended_;
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700438 };
439
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000440 class Instants {
441 public:
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000442 inline uint32_t AddInstantEvent(int64_t timestamp,
443 StringId name_id,
444 double value,
445 int64_t ref,
446 RefType type) {
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000447 timestamps_.emplace_back(timestamp);
448 name_ids_.emplace_back(name_id);
449 values_.emplace_back(value);
450 refs_.emplace_back(ref);
451 types_.emplace_back(type);
Lalit Maganti1c21d172019-02-07 10:48:24 +0000452 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000453 return static_cast<uint32_t>(instant_count() - 1);
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000454 }
455
Lalit Maganti521d97b2019-04-29 13:47:03 +0100456 void set_ref(uint32_t row, int64_t ref) { refs_[row] = ref; }
457
Lalit Maganti1c21d172019-02-07 10:48:24 +0000458 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
459
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000460 size_t instant_count() const { return timestamps_.size(); }
461
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000462 const std::deque<int64_t>& timestamps() const { return timestamps_; }
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000463
464 const std::deque<StringId>& name_ids() const { return name_ids_; }
465
466 const std::deque<double>& values() const { return values_; }
467
468 const std::deque<int64_t>& refs() const { return refs_; }
469
470 const std::deque<RefType>& types() const { return types_; }
471
Lalit Maganti1c21d172019-02-07 10:48:24 +0000472 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
473
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000474 private:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000475 std::deque<int64_t> timestamps_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000476 std::deque<StringId> name_ids_;
477 std::deque<double> values_;
478 std::deque<int64_t> refs_;
479 std::deque<RefType> types_;
Lalit Maganti1c21d172019-02-07 10:48:24 +0000480 std::deque<ArgSetId> arg_set_ids_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000481 };
482
Lalit Maganti1d915a62019-01-07 12:10:42 +0000483 class RawEvents {
484 public:
485 inline RowId AddRawEvent(int64_t timestamp,
486 StringId name_id,
Lalit Magantie87cc812019-01-10 15:20:06 +0000487 uint32_t cpu,
Lalit Maganti1d915a62019-01-07 12:10:42 +0000488 UniqueTid utid) {
489 timestamps_.emplace_back(timestamp);
490 name_ids_.emplace_back(name_id);
Lalit Magantie87cc812019-01-10 15:20:06 +0000491 cpus_.emplace_back(cpu);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000492 utids_.emplace_back(utid);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000493 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000494 return CreateRowId(TableId::kRawEvents,
495 static_cast<uint32_t>(raw_event_count() - 1));
496 }
497
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000498 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
499
Lalit Maganti1d915a62019-01-07 12:10:42 +0000500 size_t raw_event_count() const { return timestamps_.size(); }
501
502 const std::deque<int64_t>& timestamps() const { return timestamps_; }
503
504 const std::deque<StringId>& name_ids() const { return name_ids_; }
505
Lalit Magantie87cc812019-01-10 15:20:06 +0000506 const std::deque<uint32_t>& cpus() const { return cpus_; }
507
Lalit Maganti1d915a62019-01-07 12:10:42 +0000508 const std::deque<UniqueTid>& utids() const { return utids_; }
509
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000510 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
511
Lalit Maganti1d915a62019-01-07 12:10:42 +0000512 private:
513 std::deque<int64_t> timestamps_;
514 std::deque<StringId> name_ids_;
Lalit Magantie87cc812019-01-10 15:20:06 +0000515 std::deque<uint32_t> cpus_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000516 std::deque<UniqueTid> utids_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000517 std::deque<ArgSetId> arg_set_ids_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000518 };
519
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000520 class AndroidLogs {
521 public:
522 inline size_t AddLogEvent(int64_t timestamp,
523 UniqueTid utid,
524 uint8_t prio,
525 StringId tag_id,
526 StringId msg_id) {
527 timestamps_.emplace_back(timestamp);
528 utids_.emplace_back(utid);
529 prios_.emplace_back(prio);
530 tag_ids_.emplace_back(tag_id);
531 msg_ids_.emplace_back(msg_id);
532 return size() - 1;
533 }
534
535 size_t size() const { return timestamps_.size(); }
536
537 const std::deque<int64_t>& timestamps() const { return timestamps_; }
538 const std::deque<UniqueTid>& utids() const { return utids_; }
539 const std::deque<uint8_t>& prios() const { return prios_; }
540 const std::deque<StringId>& tag_ids() const { return tag_ids_; }
541 const std::deque<StringId>& msg_ids() const { return msg_ids_; }
542
543 private:
544 std::deque<int64_t> timestamps_;
545 std::deque<UniqueTid> utids_;
546 std::deque<uint8_t> prios_;
547 std::deque<StringId> tag_ids_;
548 std::deque<StringId> msg_ids_;
549 };
550
Primiano Tucci0e38a142019-01-07 20:51:09 +0000551 struct Stats {
552 using IndexMap = std::map<int, int64_t>;
553 int64_t value = 0;
554 IndexMap indexed_values;
555 };
556 using StatsMap = std::array<Stats, stats::kNumKeys>;
557
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100558 using MetadataMap = std::array<std::vector<Variadic>, metadata::kNumKeys>;
559
Florian Mayer438b5ab2019-05-02 11:18:06 +0100560 class HeapProfileFrames {
561 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100562 struct Row {
563 StringId name_id;
564 int64_t mapping_row;
565 int64_t rel_pc;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100566
Florian Mayerbee52132019-05-02 13:59:56 +0100567 bool operator==(const Row& other) const {
568 return std::tie(name_id, mapping_row, rel_pc) ==
569 std::tie(other.name_id, other.mapping_row, other.rel_pc);
570 }
571 };
572
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100573 uint32_t size() const { return static_cast<uint32_t>(names_.size()); }
574
Florian Mayerbee52132019-05-02 13:59:56 +0100575 int64_t Insert(const Row& row) {
576 names_.emplace_back(row.name_id);
577 mappings_.emplace_back(row.mapping_row);
578 rel_pcs_.emplace_back(row.rel_pc);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100579 return static_cast<int64_t>(names_.size()) - 1;
580 }
581
582 const std::deque<StringId>& names() const { return names_; }
583 const std::deque<int64_t>& mappings() const { return mappings_; }
584 const std::deque<int64_t>& rel_pcs() const { return rel_pcs_; }
585
586 private:
587 std::deque<StringId> names_;
588 std::deque<int64_t> mappings_;
589 std::deque<int64_t> rel_pcs_;
590 };
591
592 class HeapProfileCallsites {
593 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100594 struct Row {
595 int64_t depth;
596 int64_t parent_id;
597 int64_t frame_row;
598
599 bool operator==(const Row& other) const {
600 return std::tie(depth, parent_id, frame_row) ==
601 std::tie(other.depth, other.parent_id, other.frame_row);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100602 }
Florian Mayerbee52132019-05-02 13:59:56 +0100603 };
604
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100605 uint32_t size() const { return static_cast<uint32_t>(frame_ids_.size()); }
606
Florian Mayerbee52132019-05-02 13:59:56 +0100607 int64_t Insert(const Row& row) {
608 frame_depths_.emplace_back(row.depth);
609 parent_callsite_ids_.emplace_back(row.parent_id);
610 frame_ids_.emplace_back(row.frame_row);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100611 return static_cast<int64_t>(frame_depths_.size()) - 1;
612 }
613
614 const std::deque<int64_t>& frame_depths() const { return frame_depths_; }
615 const std::deque<int64_t>& parent_callsite_ids() const {
616 return parent_callsite_ids_;
617 }
618 const std::deque<int64_t>& frame_ids() const { return frame_ids_; }
619
620 private:
621 std::deque<int64_t> frame_depths_;
622 std::deque<int64_t> parent_callsite_ids_;
623 std::deque<int64_t> frame_ids_;
624 };
625
626 class HeapProfileMappings {
627 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100628 struct Row {
629 StringId build_id;
630 int64_t offset;
631 int64_t start;
632 int64_t end;
633 int64_t load_bias;
634 StringId name_id;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100635
Florian Mayerbee52132019-05-02 13:59:56 +0100636 bool operator==(const Row& other) const {
637 return std::tie(build_id, offset, start, end, load_bias, name_id) ==
638 std::tie(other.build_id, other.offset, other.start, other.end,
639 other.load_bias, other.name_id);
640 }
641 };
642
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100643 uint32_t size() const { return static_cast<uint32_t>(names_.size()); }
644
Florian Mayerbee52132019-05-02 13:59:56 +0100645 int64_t Insert(const Row& row) {
646 build_ids_.emplace_back(row.build_id);
647 offsets_.emplace_back(row.offset);
648 starts_.emplace_back(row.start);
649 ends_.emplace_back(row.end);
650 load_biases_.emplace_back(row.load_bias);
651 names_.emplace_back(row.name_id);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100652 return static_cast<int64_t>(build_ids_.size()) - 1;
653 }
654
655 const std::deque<StringId>& build_ids() const { return build_ids_; }
656 const std::deque<int64_t>& offsets() const { return offsets_; }
657 const std::deque<int64_t>& starts() const { return starts_; }
658 const std::deque<int64_t>& ends() const { return ends_; }
659 const std::deque<int64_t>& load_biases() const { return load_biases_; }
660 const std::deque<StringId>& names() const { return names_; }
661
662 private:
663 std::deque<StringId> build_ids_;
664 std::deque<int64_t> offsets_;
665 std::deque<int64_t> starts_;
666 std::deque<int64_t> ends_;
667 std::deque<int64_t> load_biases_;
668 std::deque<StringId> names_;
669 };
670
671 class HeapProfileAllocations {
672 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100673 struct Row {
674 int64_t timestamp;
Florian Mayerdf1968c2019-05-13 16:39:35 +0100675 UniquePid upid;
Florian Mayerbee52132019-05-02 13:59:56 +0100676 int64_t callsite_id;
677 int64_t count;
678 int64_t size;
679 };
680
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100681 uint32_t size() const { return static_cast<uint32_t>(timestamps_.size()); }
682
Florian Mayerbee52132019-05-02 13:59:56 +0100683 void Insert(const Row& row) {
684 timestamps_.emplace_back(row.timestamp);
Florian Mayerdf1968c2019-05-13 16:39:35 +0100685 upids_.emplace_back(row.upid);
Florian Mayerbee52132019-05-02 13:59:56 +0100686 callsite_ids_.emplace_back(row.callsite_id);
687 counts_.emplace_back(row.count);
688 sizes_.emplace_back(row.size);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100689 }
690
691 const std::deque<int64_t>& timestamps() const { return timestamps_; }
Florian Mayerdf1968c2019-05-13 16:39:35 +0100692 const std::deque<UniquePid>& upids() const { return upids_; }
Florian Mayer438b5ab2019-05-02 11:18:06 +0100693 const std::deque<int64_t>& callsite_ids() const { return callsite_ids_; }
694 const std::deque<int64_t>& counts() const { return counts_; }
695 const std::deque<int64_t>& sizes() const { return sizes_; }
696
697 private:
698 std::deque<int64_t> timestamps_;
Florian Mayerdf1968c2019-05-13 16:39:35 +0100699 std::deque<UniquePid> upids_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100700 std::deque<int64_t> callsite_ids_;
701 std::deque<int64_t> counts_;
702 std::deque<int64_t> sizes_;
703 };
704
Isabelle Taylora0a22972018-08-03 12:06:12 +0100705 void ResetStorage();
Lalit Maganti35622b72018-06-06 12:03:11 +0100706
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100707 UniqueTid AddEmptyThread(uint32_t tid) {
708 unique_threads_.emplace_back(tid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100709 return static_cast<UniqueTid>(unique_threads_.size() - 1);
710 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100711
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100712 UniquePid AddEmptyProcess(uint32_t pid) {
713 unique_processes_.emplace_back(pid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100714 return static_cast<UniquePid>(unique_processes_.size() - 1);
715 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100716
Isabelle Taylora0a22972018-08-03 12:06:12 +0100717 // Return an unqiue identifier for the contents of each string.
718 // The string is copied internally and can be destroyed after this called.
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100719 // Virtual for testing.
Lalit Maganti5c454312019-04-08 12:11:17 +0100720 virtual StringId InternString(base::StringView str) {
721 return string_pool_.InternString(str);
722 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100723
Isabelle Taylora0a22972018-08-03 12:06:12 +0100724 Process* GetMutableProcess(UniquePid upid) {
Lalit Maganti676658b2018-11-20 18:24:31 +0000725 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100726 return &unique_processes_[upid];
727 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100728
Isabelle Taylora0a22972018-08-03 12:06:12 +0100729 Thread* GetMutableThread(UniqueTid utid) {
Florian Mayera1aaec22018-09-19 17:02:26 +0100730 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100731 return &unique_threads_[utid];
732 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100733
Primiano Tucci0e38a142019-01-07 20:51:09 +0000734 // Example usage: SetStats(stats::android_log_num_failed, 42);
735 void SetStats(size_t key, int64_t value) {
736 PERFETTO_DCHECK(key < stats::kNumKeys);
737 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
738 stats_[key].value = value;
739 }
740
741 // Example usage: IncrementStats(stats::android_log_num_failed, -1);
742 void IncrementStats(size_t key, int64_t increment = 1) {
743 PERFETTO_DCHECK(key < stats::kNumKeys);
744 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
745 stats_[key].value += increment;
746 }
747
Florian Mayer438b5ab2019-05-02 11:18:06 +0100748 // Example usage: IncrementIndexedStats(stats::cpu_failure, 1);
749 void IncrementIndexedStats(size_t key, int index, int64_t increment = 1) {
750 PERFETTO_DCHECK(key < stats::kNumKeys);
751 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
752 stats_[key].indexed_values[index] += increment;
753 }
754
Primiano Tucci0e38a142019-01-07 20:51:09 +0000755 // Example usage: SetIndexedStats(stats::cpu_failure, 1, 42);
756 void SetIndexedStats(size_t key, int index, int64_t value) {
757 PERFETTO_DCHECK(key < stats::kNumKeys);
758 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
759 stats_[key].indexed_values[index] = value;
760 }
761
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100762 // Example usage:
763 // SetMetadata(metadata::benchmark_name,
764 // Variadic::String(storage->InternString("foo"));
765 void SetMetadata(size_t key, Variadic value) {
766 PERFETTO_DCHECK(key < metadata::kNumKeys);
767 PERFETTO_DCHECK(metadata::kKeyTypes[key] == metadata::kSingle);
768 PERFETTO_DCHECK(value.type == metadata::kValueTypes[key]);
769 metadata_[key] = {value};
770 }
771
772 // Example usage:
773 // AppendMetadata(metadata::benchmark_story_tags,
774 // Variadic::String(storage->InternString("bar"));
775 void AppendMetadata(size_t key, Variadic value) {
776 PERFETTO_DCHECK(key < metadata::kNumKeys);
777 PERFETTO_DCHECK(metadata::kKeyTypes[key] == metadata::kMulti);
778 PERFETTO_DCHECK(value.type == metadata::kValueTypes[key]);
779 metadata_[key].push_back(value);
780 }
781
Eric Seckler77b52782019-05-02 15:18:57 +0100782 class ScopedStatsTracer {
783 public:
784 ScopedStatsTracer(TraceStorage* storage, size_t key)
785 : storage_(storage), key_(key), start_ns_(base::GetWallTimeNs()) {}
786
787 ~ScopedStatsTracer() {
788 if (!storage_)
789 return;
790 auto delta_ns = base::GetWallTimeNs() - start_ns_;
791 storage_->IncrementStats(key_, delta_ns.count());
792 }
793
794 ScopedStatsTracer(ScopedStatsTracer&& other) noexcept { MoveImpl(&other); }
795
796 ScopedStatsTracer& operator=(ScopedStatsTracer&& other) {
797 MoveImpl(&other);
798 return *this;
799 }
800
801 private:
802 ScopedStatsTracer(const ScopedStatsTracer&) = delete;
803 ScopedStatsTracer& operator=(const ScopedStatsTracer&) = delete;
804
805 void MoveImpl(ScopedStatsTracer* other) {
806 storage_ = other->storage_;
807 key_ = other->key_;
808 start_ns_ = other->start_ns_;
809 other->storage_ = nullptr;
810 }
811
812 TraceStorage* storage_;
813 size_t key_;
814 base::TimeNanos start_ns_;
815 };
816
817 ScopedStatsTracer TraceExecutionTimeIntoStats(size_t key) {
818 return ScopedStatsTracer(this, key);
819 }
820
Lalit Maganticaed37e2018-06-01 03:03:08 +0100821 // Reading methods.
Lalit Maganti5c454312019-04-08 12:11:17 +0100822 NullTermStringView GetString(StringId id) const {
823 return string_pool_.Get(id);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100824 }
825
Lalit Magantie9d40532018-06-29 13:15:06 +0100826 const Process& GetProcess(UniquePid upid) const {
Lalit Maganti676658b2018-11-20 18:24:31 +0000827 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100828 return unique_processes_[upid];
829 }
830
Lalit Magantie9d40532018-06-29 13:15:06 +0100831 const Thread& GetThread(UniqueTid utid) const {
Lalit Maganti1f64cfa2018-09-18 13:20:02 +0100832 // Allow utid == 0 for idle thread retrieval.
Florian Mayera1aaec22018-09-19 17:02:26 +0100833 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylor68e42192018-06-19 16:19:31 +0100834 return unique_threads_[utid];
835 }
836
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000837 static RowId CreateRowId(TableId table, uint32_t row) {
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000838 return (static_cast<RowId>(table) << kRowIdTableShift) | row;
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000839 }
840
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000841 static std::pair<int8_t /*table*/, uint32_t /*row*/> ParseRowId(RowId rowid) {
842 auto id = static_cast<uint64_t>(rowid);
843 auto table_id = static_cast<uint8_t>(id >> kRowIdTableShift);
844 auto row = static_cast<uint32_t>(id & ((1ull << kRowIdTableShift) - 1));
845 return std::make_pair(table_id, row);
846 }
847
Lalit Magantiff69c112018-09-24 12:07:47 +0100848 const Slices& slices() const { return slices_; }
Lalit Magantifde29042018-10-04 13:28:52 +0100849 Slices* mutable_slices() { return &slices_; }
850
Primiano Tucci0d72a312018-08-07 14:42:45 +0100851 const NestableSlices& nestable_slices() const { return nestable_slices_; }
852 NestableSlices* mutable_nestable_slices() { return &nestable_slices_; }
853
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000854 const CounterDefinitions& counter_definitions() const {
855 return counter_definitions_;
856 }
857 CounterDefinitions* mutable_counter_definitions() {
858 return &counter_definitions_;
859 }
860
861 const CounterValues& counter_values() const { return counter_values_; }
862 CounterValues* mutable_counter_values() { return &counter_values_; }
Isabelle Taylor14674d42018-09-07 11:33:11 +0100863
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700864 const SqlStats& sql_stats() const { return sql_stats_; }
865 SqlStats* mutable_sql_stats() { return &sql_stats_; }
866
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000867 const Instants& instants() const { return instants_; }
868 Instants* mutable_instants() { return &instants_; }
869
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000870 const AndroidLogs& android_logs() const { return android_log_; }
871 AndroidLogs* mutable_android_log() { return &android_log_; }
872
Primiano Tucci0e38a142019-01-07 20:51:09 +0000873 const StatsMap& stats() const { return stats_; }
Lalit Maganti05e8c132018-11-09 18:16:12 +0000874
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100875 const MetadataMap& metadata() const { return metadata_; }
876
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000877 const Args& args() const { return args_; }
878 Args* mutable_args() { return &args_; }
879
Lalit Maganti1d915a62019-01-07 12:10:42 +0000880 const RawEvents& raw_events() const { return raw_events_; }
881 RawEvents* mutable_raw_events() { return &raw_events_; }
882
Florian Mayer438b5ab2019-05-02 11:18:06 +0100883 const HeapProfileMappings& heap_profile_mappings() const {
884 return heap_profile_mappings_;
885 }
886 HeapProfileMappings* mutable_heap_profile_mappings() {
887 return &heap_profile_mappings_;
888 }
889
890 const HeapProfileFrames& heap_profile_frames() const {
891 return heap_profile_frames_;
892 }
893 HeapProfileFrames* mutable_heap_profile_frames() {
894 return &heap_profile_frames_;
895 }
896
897 const HeapProfileCallsites& heap_profile_callsites() const {
898 return heap_profile_callsites_;
899 }
900 HeapProfileCallsites* mutable_heap_profile_callsites() {
901 return &heap_profile_callsites_;
902 }
903
904 const HeapProfileAllocations& heap_profile_allocations() const {
905 return heap_profile_allocations_;
906 }
907 HeapProfileAllocations* mutable_heap_profile_allocations() {
908 return &heap_profile_allocations_;
909 }
910
Lalit Maganti5c454312019-04-08 12:11:17 +0100911 const StringPool& string_pool() const { return string_pool_; }
Lalit Magantiacda68b2018-10-29 15:23:25 +0000912
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100913 // |unique_processes_| always contains at least 1 element becuase the 0th ID
914 // is reserved to indicate an invalid process.
Lalit Maganti9c6395b2019-01-17 00:25:09 +0000915 size_t process_count() const { return unique_processes_.size(); }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100916
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100917 // |unique_threads_| always contains at least 1 element becuase the 0th ID
918 // is reserved to indicate an invalid thread.
Lalit Maganti9c6395b2019-01-17 00:25:09 +0000919 size_t thread_count() const { return unique_threads_.size(); }
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100920
Hector Dearman12323362018-08-09 16:09:28 +0100921 // Number of interned strings in the pool. Includes the empty string w/ ID=0.
922 size_t string_count() const { return string_pool_.size(); }
923
Ioannis Ilkosb8b11102019-01-29 17:56:55 +0000924 // Start / end ts (in nanoseconds) across the parsed trace events.
925 // Returns (0, 0) if the trace is empty.
926 std::pair<int64_t, int64_t> GetTraceTimestampBoundsNs() const;
927
Lalit Maganticaed37e2018-06-01 03:03:08 +0100928 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000929 static constexpr uint8_t kRowIdTableShift = 32;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100930
Primiano Tucci2da5d2e2018-08-10 14:23:31 +0100931 using StringHash = uint64_t;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100932
Lalit Maganti5c454312019-04-08 12:11:17 +0100933 TraceStorage(const TraceStorage&) = delete;
934 TraceStorage& operator=(const TraceStorage&) = delete;
935
936 TraceStorage(TraceStorage&&) = default;
937 TraceStorage& operator=(TraceStorage&&) = default;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000938
Lalit Maganti05e8c132018-11-09 18:16:12 +0000939 // Stats about parsing the trace.
Primiano Tucci0e38a142019-01-07 20:51:09 +0000940 StatsMap stats_{};
Lalit Maganti35622b72018-06-06 12:03:11 +0100941
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100942 // Trace metadata from chrome and benchmarking infrastructure.
943 MetadataMap metadata_{};
944
Lalit Maganticaed37e2018-06-01 03:03:08 +0100945 // One entry for each CPU in the trace.
Lalit Magantiff69c112018-09-24 12:07:47 +0100946 Slices slices_;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100947
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000948 // Args for all other tables.
949 Args args_;
950
Lalit Maganticaed37e2018-06-01 03:03:08 +0100951 // One entry for each unique string in the trace.
Lalit Maganti5c454312019-04-08 12:11:17 +0100952 StringPool string_pool_;
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100953
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100954 // One entry for each UniquePid, with UniquePid as the index.
Ioannis Ilkos9c03cbd2019-03-12 18:30:43 +0000955 // Never hold on to pointers to Process, as vector resize will
956 // invalidate them.
957 std::vector<Process> unique_processes_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100958
Isabelle Taylor68e42192018-06-19 16:19:31 +0100959 // One entry for each UniqueTid, with UniqueTid as the index.
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100960 std::deque<Thread> unique_threads_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100961
962 // Slices coming from userspace events (e.g. Chromium TRACE_EVENT macros).
963 NestableSlices nestable_slices_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100964
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000965 // The type of counters in the trace. Can be thought of the the "metadata".
966 CounterDefinitions counter_definitions_;
967
968 // The values from the Counter events from the trace. This includes CPU
969 // frequency events as well systrace trace_marker counter events.
970 CounterValues counter_values_;
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700971
972 SqlStats sql_stats_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000973
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000974 // These are instantaneous events in the trace. They have no duration
975 // and do not have a value that make sense to track over time.
976 // e.g. signal events
977 Instants instants_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000978
979 // Raw events are every ftrace event in the trace. The raw event includes
980 // the timestamp and the pid. The args for the raw event will be in the
981 // args table. This table can be used to generate a text version of the
982 // trace.
983 RawEvents raw_events_;
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000984 AndroidLogs android_log_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100985
986 HeapProfileMappings heap_profile_mappings_;
987 HeapProfileFrames heap_profile_frames_;
988 HeapProfileCallsites heap_profile_callsites_;
989 HeapProfileAllocations heap_profile_allocations_;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100990};
991
992} // namespace trace_processor
993} // namespace perfetto
994
Florian Mayerbee52132019-05-02 13:59:56 +0100995namespace std {
996
997template <>
998struct hash<::perfetto::trace_processor::TraceStorage::HeapProfileFrames::Row> {
999 using argument_type =
1000 ::perfetto::trace_processor::TraceStorage::HeapProfileFrames::Row;
1001 using result_type = size_t;
1002
1003 result_type operator()(const argument_type& r) const {
1004 return std::hash<::perfetto::trace_processor::StringId>{}(r.name_id) ^
1005 std::hash<int64_t>{}(r.mapping_row) ^ std::hash<int64_t>{}(r.rel_pc);
1006 }
1007};
1008
1009template <>
1010struct hash<
1011 ::perfetto::trace_processor::TraceStorage::HeapProfileCallsites::Row> {
1012 using argument_type =
1013 ::perfetto::trace_processor::TraceStorage::HeapProfileCallsites::Row;
1014 using result_type = size_t;
1015
1016 result_type operator()(const argument_type& r) const {
1017 return std::hash<int64_t>{}(r.depth) ^ std::hash<int64_t>{}(r.parent_id) ^
1018 std::hash<int64_t>{}(r.frame_row);
1019 }
1020};
1021
1022template <>
1023struct hash<
1024 ::perfetto::trace_processor::TraceStorage::HeapProfileMappings::Row> {
1025 using argument_type =
1026 ::perfetto::trace_processor::TraceStorage::HeapProfileMappings::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.build_id) ^
1031 std::hash<int64_t>{}(r.offset) ^ std::hash<int64_t>{}(r.start) ^
1032 std::hash<int64_t>{}(r.end) ^ std::hash<int64_t>{}(r.load_bias) ^
1033 std::hash<::perfetto::trace_processor::StringId>{}(r.name_id);
1034 }
1035};
1036
1037} // namespace std
1038
Lalit Maganticaed37e2018-06-01 03:03:08 +01001039#endif // SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_