blob: fb4e92cefbf71b87aba47bc28ba2c2939779b1ad [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>
25#include <vector>
26
Lalit Maganti35622b72018-06-06 12:03:11 +010027#include "perfetto/base/logging.h"
Primiano Tucci2da5d2e2018-08-10 14:23:31 +010028#include "perfetto/base/string_view.h"
Hector Dearmanc8339932018-08-10 11:22:46 +010029#include "perfetto/base/utils.h"
Lalit Maganti35622b72018-06-06 12:03:11 +010030
Lalit Maganticaed37e2018-06-01 03:03:08 +010031namespace perfetto {
32namespace trace_processor {
33
Isabelle Taylora0a22972018-08-03 12:06:12 +010034// UniquePid is an offset into |unique_processes_|. This is necessary because
35// Unix pids are reused and thus not guaranteed to be unique over a long
36// period of time.
37using UniquePid = uint32_t;
Primiano Tucci0d72a312018-08-07 14:42:45 +010038
Isabelle Taylora0a22972018-08-03 12:06:12 +010039// UniqueTid is an offset into |unique_threads_|. Necessary because tids can
40// be reused.
41using UniqueTid = uint32_t;
42
Primiano Tucci0d72a312018-08-07 14:42:45 +010043// StringId is an offset into |string_pool_|.
44using StringId = size_t;
45
Hector Dearman9e6ddd82018-09-21 10:17:02 +010046enum RefType { kUTID = 0, kCPU_ID = 1 };
Isabelle Taylor14674d42018-09-07 11:33:11 +010047
Lalit Maganticaed37e2018-06-01 03:03:08 +010048// Stores a data inside a trace file in a columnar form. This makes it efficient
49// to read or search across a single field of the trace (e.g. all the thread
50// names for a given CPU).
51class TraceStorage {
52 public:
Isabelle Taylor47328cf2018-06-12 14:33:59 +010053 TraceStorage();
Isabelle Taylora0a22972018-08-03 12:06:12 +010054 TraceStorage(const TraceStorage&) = delete;
55
56 virtual ~TraceStorage();
Isabelle Taylor47328cf2018-06-12 14:33:59 +010057
Isabelle Taylora0a22972018-08-03 12:06:12 +010058 struct Stats {
59 uint64_t mismatched_sched_switch_tids_ = 0;
60 };
Lalit Maganti35622b72018-06-06 12:03:11 +010061
Isabelle Taylora0a22972018-08-03 12:06:12 +010062 // Information about a unique process seen in a trace.
63 struct Process {
Primiano Tuccib75dcee2018-08-08 12:21:36 +010064 explicit Process(uint32_t p) : pid(p) {}
Isabelle Taylora0a22972018-08-03 12:06:12 +010065 uint64_t start_ns = 0;
66 uint64_t end_ns = 0;
67 StringId name_id = 0;
Primiano Tuccib75dcee2018-08-08 12:21:36 +010068 uint32_t pid = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +010069 };
70
71 // Information about a unique thread seen in a trace.
72 struct Thread {
Primiano Tuccib75dcee2018-08-08 12:21:36 +010073 explicit Thread(uint32_t t) : tid(t) {}
Isabelle Taylora0a22972018-08-03 12:06:12 +010074 uint64_t start_ns = 0;
75 uint64_t end_ns = 0;
76 StringId name_id = 0;
77 UniquePid upid = 0;
Primiano Tuccib75dcee2018-08-08 12:21:36 +010078 uint32_t tid = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +010079 };
Isabelle Taylor3dd366c2018-06-22 16:21:41 +010080
Lalit Magantiff69c112018-09-24 12:07:47 +010081 class Slices {
Lalit Maganti35622b72018-06-06 12:03:11 +010082 public:
Lalit Magantiff69c112018-09-24 12:07:47 +010083 inline void AddSlice(uint32_t cpu,
84 uint64_t start_ns,
Lalit Maganti35622b72018-06-06 12:03:11 +010085 uint64_t duration_ns,
Isabelle Taylor15314ea2018-09-19 11:35:19 +010086 UniqueTid utid) {
Lalit Magantiff69c112018-09-24 12:07:47 +010087 cpus_.emplace_back(cpu);
Lalit Maganti35622b72018-06-06 12:03:11 +010088 start_ns_.emplace_back(start_ns);
89 durations_.emplace_back(duration_ns);
Isabelle Taylora0a22972018-08-03 12:06:12 +010090 utids_.emplace_back(utid);
Lalit Maganti35622b72018-06-06 12:03:11 +010091 }
92
Isabelle Taylor47328cf2018-06-12 14:33:59 +010093 size_t slice_count() const { return start_ns_.size(); }
Lalit Maganti35622b72018-06-06 12:03:11 +010094
Lalit Magantiff69c112018-09-24 12:07:47 +010095 const std::deque<uint32_t>& cpus() const { return cpus_; }
96
Isabelle Taylor47328cf2018-06-12 14:33:59 +010097 const std::deque<uint64_t>& start_ns() const { return start_ns_; }
Lalit Maganti35622b72018-06-06 12:03:11 +010098
Isabelle Taylor47328cf2018-06-12 14:33:59 +010099 const std::deque<uint64_t>& durations() const { return durations_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100100
Isabelle Taylor68e42192018-06-19 16:19:31 +0100101 const std::deque<UniqueTid>& utids() const { return utids_; }
102
Lalit Maganti35622b72018-06-06 12:03:11 +0100103 private:
Hector Dearman947f12a2018-09-11 16:50:36 +0100104 // Each deque below has the same number of entries (the number of slices
Lalit Maganti35622b72018-06-06 12:03:11 +0100105 // in the trace for the CPU).
Lalit Magantiff69c112018-09-24 12:07:47 +0100106 std::deque<uint32_t> cpus_;
Lalit Maganti35622b72018-06-06 12:03:11 +0100107 std::deque<uint64_t> start_ns_;
108 std::deque<uint64_t> durations_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100109 std::deque<UniqueTid> utids_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100110 };
Isabelle Taylor68e42192018-06-19 16:19:31 +0100111
Primiano Tucci0d72a312018-08-07 14:42:45 +0100112 class NestableSlices {
113 public:
114 inline void AddSlice(uint64_t start_ns,
115 uint64_t duration_ns,
116 UniqueTid utid,
117 StringId cat,
118 StringId name,
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100119 uint8_t depth,
120 uint64_t stack_id,
121 uint64_t parent_stack_id) {
Primiano Tucci0d72a312018-08-07 14:42:45 +0100122 start_ns_.emplace_back(start_ns);
123 durations_.emplace_back(duration_ns);
124 utids_.emplace_back(utid);
125 cats_.emplace_back(cat);
126 names_.emplace_back(name);
127 depths_.emplace_back(depth);
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100128 stack_ids_.emplace_back(stack_id);
129 parent_stack_ids_.emplace_back(parent_stack_id);
Primiano Tucci0d72a312018-08-07 14:42:45 +0100130 }
131
132 size_t slice_count() const { return start_ns_.size(); }
133 const std::deque<uint64_t>& start_ns() const { return start_ns_; }
134 const std::deque<uint64_t>& durations() const { return durations_; }
135 const std::deque<UniqueTid>& utids() const { return utids_; }
136 const std::deque<StringId>& cats() const { return cats_; }
137 const std::deque<StringId>& names() const { return names_; }
138 const std::deque<uint8_t>& depths() const { return depths_; }
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100139 const std::deque<uint64_t>& stack_ids() const { return stack_ids_; }
140 const std::deque<uint64_t>& parent_stack_ids() const {
141 return parent_stack_ids_;
142 }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100143
144 private:
145 std::deque<uint64_t> start_ns_;
146 std::deque<uint64_t> durations_;
147 std::deque<UniqueTid> utids_;
148 std::deque<StringId> cats_;
149 std::deque<StringId> names_;
150 std::deque<uint8_t> depths_;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100151 std::deque<uint64_t> stack_ids_;
152 std::deque<uint64_t> parent_stack_ids_;
Lalit Maganti35622b72018-06-06 12:03:11 +0100153 };
154
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100155 class Counters {
156 public:
157 inline void AddCounter(uint64_t timestamp,
158 uint64_t duration,
159 StringId name_id,
160 double value,
Isabelle Taylor31e04402018-09-19 12:13:25 +0100161 double value_delta,
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100162 int64_t ref,
163 RefType type) {
164 timestamps_.emplace_back(timestamp);
165 durations_.emplace_back(duration);
166 name_ids_.emplace_back(name_id);
167 values_.emplace_back(value);
Isabelle Taylor31e04402018-09-19 12:13:25 +0100168 value_deltas_.emplace_back(value_delta);
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100169 refs_.emplace_back(ref);
170 types_.emplace_back(type);
171 }
172 size_t counter_count() const { return timestamps_.size(); }
173
174 const std::deque<uint64_t>& timestamps() const { return timestamps_; }
175
176 const std::deque<uint64_t>& durations() const { return durations_; }
177
178 const std::deque<StringId>& name_ids() const { return name_ids_; }
179
180 const std::deque<double>& values() const { return values_; }
181
Isabelle Taylor31e04402018-09-19 12:13:25 +0100182 const std::deque<double>& value_deltas() const { return value_deltas_; }
183
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100184 const std::deque<int64_t>& refs() const { return refs_; }
185
186 const std::deque<RefType>& types() const { return types_; }
187
188 private:
189 std::deque<uint64_t> timestamps_;
190 std::deque<uint64_t> durations_;
191 std::deque<StringId> name_ids_;
192 std::deque<double> values_;
Isabelle Taylor31e04402018-09-19 12:13:25 +0100193 std::deque<double> value_deltas_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100194 std::deque<int64_t> refs_;
195 std::deque<RefType> types_;
196 };
197
Isabelle Taylora0a22972018-08-03 12:06:12 +0100198 void ResetStorage();
Lalit Maganti35622b72018-06-06 12:03:11 +0100199
Isabelle Taylora0a22972018-08-03 12:06:12 +0100200 void AddSliceToCpu(uint32_t cpu,
201 uint64_t start_ns,
202 uint64_t duration_ns,
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100203 UniqueTid utid);
Lalit Maganti35622b72018-06-06 12:03:11 +0100204
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100205 UniqueTid AddEmptyThread(uint32_t tid) {
206 unique_threads_.emplace_back(tid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100207 return static_cast<UniqueTid>(unique_threads_.size() - 1);
208 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100209
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100210 UniquePid AddEmptyProcess(uint32_t pid) {
211 unique_processes_.emplace_back(pid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100212 return static_cast<UniquePid>(unique_processes_.size() - 1);
213 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100214
Isabelle Taylora0a22972018-08-03 12:06:12 +0100215 void AddMismatchedSchedSwitch() { ++stats_.mismatched_sched_switch_tids_; }
Lalit Maganticaed37e2018-06-01 03:03:08 +0100216
Isabelle Taylora0a22972018-08-03 12:06:12 +0100217 // Return an unqiue identifier for the contents of each string.
218 // The string is copied internally and can be destroyed after this called.
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100219 // Virtual for testing.
220 virtual StringId InternString(base::StringView);
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100221
Isabelle Taylora0a22972018-08-03 12:06:12 +0100222 Process* GetMutableProcess(UniquePid upid) {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100223 PERFETTO_DCHECK(upid > 0 && upid < unique_processes_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100224 return &unique_processes_[upid];
225 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100226
Isabelle Taylora0a22972018-08-03 12:06:12 +0100227 Thread* GetMutableThread(UniqueTid utid) {
Florian Mayera1aaec22018-09-19 17:02:26 +0100228 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100229 return &unique_threads_[utid];
230 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100231
Lalit Maganticaed37e2018-06-01 03:03:08 +0100232 // Reading methods.
Isabelle Taylora0a22972018-08-03 12:06:12 +0100233 const std::string& GetString(StringId id) const {
234 PERFETTO_DCHECK(id < string_pool_.size());
235 return string_pool_[id];
236 }
237
Lalit Magantie9d40532018-06-29 13:15:06 +0100238 const Process& GetProcess(UniquePid upid) const {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100239 PERFETTO_DCHECK(upid > 0 && upid < unique_processes_.size());
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100240 return unique_processes_[upid];
241 }
242
Lalit Magantie9d40532018-06-29 13:15:06 +0100243 const Thread& GetThread(UniqueTid utid) const {
Lalit Maganti1f64cfa2018-09-18 13:20:02 +0100244 // Allow utid == 0 for idle thread retrieval.
Florian Mayera1aaec22018-09-19 17:02:26 +0100245 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylor68e42192018-06-19 16:19:31 +0100246 return unique_threads_[utid];
247 }
248
Lalit Magantiff69c112018-09-24 12:07:47 +0100249 const Slices& slices() const { return slices_; }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100250 const NestableSlices& nestable_slices() const { return nestable_slices_; }
251 NestableSlices* mutable_nestable_slices() { return &nestable_slices_; }
252
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100253 const Counters& counters() const { return counters_; }
254 Counters* mutable_counters() { return &counters_; }
Isabelle Taylor14674d42018-09-07 11:33:11 +0100255
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100256 // |unique_processes_| always contains at least 1 element becuase the 0th ID
257 // is reserved to indicate an invalid process.
258 size_t process_count() const { return unique_processes_.size() - 1; }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100259
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100260 // |unique_threads_| always contains at least 1 element becuase the 0th ID
261 // is reserved to indicate an invalid thread.
262 size_t thread_count() const { return unique_threads_.size() - 1; }
263
Hector Dearman12323362018-08-09 16:09:28 +0100264 // Number of interned strings in the pool. Includes the empty string w/ ID=0.
265 size_t string_count() const { return string_pool_.size(); }
266
Lalit Maganticaed37e2018-06-01 03:03:08 +0100267 private:
Isabelle Taylora0a22972018-08-03 12:06:12 +0100268 TraceStorage& operator=(const TraceStorage&) = default;
269
Primiano Tucci2da5d2e2018-08-10 14:23:31 +0100270 using StringHash = uint64_t;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100271
Lalit Maganti35622b72018-06-06 12:03:11 +0100272 // Metadata counters for events being added.
273 Stats stats_;
274
Lalit Maganticaed37e2018-06-01 03:03:08 +0100275 // One entry for each CPU in the trace.
Lalit Magantiff69c112018-09-24 12:07:47 +0100276 Slices slices_;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100277
278 // One entry for each unique string in the trace.
Lalit Maganti35622b72018-06-06 12:03:11 +0100279 std::deque<std::string> string_pool_;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100280
281 // One entry for each unique string in the trace.
Lalit Maganti35622b72018-06-06 12:03:11 +0100282 std::unordered_map<StringHash, StringId> string_index_;
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100283
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100284 // One entry for each UniquePid, with UniquePid as the index.
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100285 std::deque<Process> unique_processes_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100286
Isabelle Taylor68e42192018-06-19 16:19:31 +0100287 // One entry for each UniqueTid, with UniqueTid as the index.
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100288 std::deque<Thread> unique_threads_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100289
290 // Slices coming from userspace events (e.g. Chromium TRACE_EVENT macros).
291 NestableSlices nestable_slices_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100292
293 // Counter events from the trace. This includes CPU frequency events as well
294 // systrace trace_marker counter events.
295 Counters counters_;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100296};
297
298} // namespace trace_processor
299} // namespace perfetto
300
301#endif // SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_