blob: 62d8ce481c3da7144e810a3af227c4c7f3c7fcce [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
Isabelle Taylora97c5f52018-10-23 17:36:12 +010046enum RefType {
47 kNoRef = 0,
48 kUtid = 1,
49 kCpuId = 2,
50 kIrq = 3,
51 kSoftIrq = 4,
52};
Isabelle Taylor14674d42018-09-07 11:33:11 +010053
Lalit Maganticaed37e2018-06-01 03:03:08 +010054// Stores a data inside a trace file in a columnar form. This makes it efficient
55// to read or search across a single field of the trace (e.g. all the thread
56// names for a given CPU).
57class TraceStorage {
58 public:
Isabelle Taylor47328cf2018-06-12 14:33:59 +010059 TraceStorage();
Isabelle Taylora0a22972018-08-03 12:06:12 +010060 TraceStorage(const TraceStorage&) = delete;
61
62 virtual ~TraceStorage();
Isabelle Taylor47328cf2018-06-12 14:33:59 +010063
Isabelle Taylora0a22972018-08-03 12:06:12 +010064 struct Stats {
65 uint64_t mismatched_sched_switch_tids_ = 0;
66 };
Lalit Maganti35622b72018-06-06 12:03:11 +010067
Isabelle Taylora0a22972018-08-03 12:06:12 +010068 // Information about a unique process seen in a trace.
69 struct Process {
Primiano Tuccib75dcee2018-08-08 12:21:36 +010070 explicit Process(uint32_t p) : pid(p) {}
Isabelle Taylora0a22972018-08-03 12:06:12 +010071 uint64_t start_ns = 0;
72 uint64_t end_ns = 0;
73 StringId name_id = 0;
Primiano Tuccib75dcee2018-08-08 12:21:36 +010074 uint32_t pid = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +010075 };
76
77 // Information about a unique thread seen in a trace.
78 struct Thread {
Primiano Tuccib75dcee2018-08-08 12:21:36 +010079 explicit Thread(uint32_t t) : tid(t) {}
Isabelle Taylora0a22972018-08-03 12:06:12 +010080 uint64_t start_ns = 0;
81 uint64_t end_ns = 0;
82 StringId name_id = 0;
83 UniquePid upid = 0;
Primiano Tuccib75dcee2018-08-08 12:21:36 +010084 uint32_t tid = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +010085 };
Isabelle Taylor3dd366c2018-06-22 16:21:41 +010086
Lalit Magantiff69c112018-09-24 12:07:47 +010087 class Slices {
Lalit Maganti35622b72018-06-06 12:03:11 +010088 public:
Lalit Magantifde29042018-10-04 13:28:52 +010089 inline size_t AddSlice(uint32_t cpu,
90 uint64_t start_ns,
91 uint64_t duration_ns,
92 UniqueTid utid) {
Lalit Magantiff69c112018-09-24 12:07:47 +010093 cpus_.emplace_back(cpu);
Lalit Maganti35622b72018-06-06 12:03:11 +010094 start_ns_.emplace_back(start_ns);
95 durations_.emplace_back(duration_ns);
Isabelle Taylora0a22972018-08-03 12:06:12 +010096 utids_.emplace_back(utid);
Lalit Magantifde29042018-10-04 13:28:52 +010097 return slice_count() - 1;
98 }
99
100 void set_duration(size_t index, uint64_t duration_ns) {
101 durations_[index] = duration_ns;
Lalit Maganti35622b72018-06-06 12:03:11 +0100102 }
103
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100104 size_t slice_count() const { return start_ns_.size(); }
Lalit Maganti35622b72018-06-06 12:03:11 +0100105
Lalit Magantiff69c112018-09-24 12:07:47 +0100106 const std::deque<uint32_t>& cpus() const { return cpus_; }
107
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100108 const std::deque<uint64_t>& start_ns() const { return start_ns_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100109
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100110 const std::deque<uint64_t>& durations() const { return durations_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100111
Isabelle Taylor68e42192018-06-19 16:19:31 +0100112 const std::deque<UniqueTid>& utids() const { return utids_; }
113
Lalit Maganti35622b72018-06-06 12:03:11 +0100114 private:
Hector Dearman947f12a2018-09-11 16:50:36 +0100115 // Each deque below has the same number of entries (the number of slices
Lalit Maganti35622b72018-06-06 12:03:11 +0100116 // in the trace for the CPU).
Lalit Magantiff69c112018-09-24 12:07:47 +0100117 std::deque<uint32_t> cpus_;
Lalit Maganti35622b72018-06-06 12:03:11 +0100118 std::deque<uint64_t> start_ns_;
119 std::deque<uint64_t> durations_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100120 std::deque<UniqueTid> utids_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100121 };
Isabelle Taylor68e42192018-06-19 16:19:31 +0100122
Primiano Tucci0d72a312018-08-07 14:42:45 +0100123 class NestableSlices {
124 public:
125 inline void AddSlice(uint64_t start_ns,
126 uint64_t duration_ns,
127 UniqueTid utid,
128 StringId cat,
129 StringId name,
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100130 uint8_t depth,
131 uint64_t stack_id,
132 uint64_t parent_stack_id) {
Primiano Tucci0d72a312018-08-07 14:42:45 +0100133 start_ns_.emplace_back(start_ns);
134 durations_.emplace_back(duration_ns);
135 utids_.emplace_back(utid);
136 cats_.emplace_back(cat);
137 names_.emplace_back(name);
138 depths_.emplace_back(depth);
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100139 stack_ids_.emplace_back(stack_id);
140 parent_stack_ids_.emplace_back(parent_stack_id);
Primiano Tucci0d72a312018-08-07 14:42:45 +0100141 }
142
143 size_t slice_count() const { return start_ns_.size(); }
144 const std::deque<uint64_t>& start_ns() const { return start_ns_; }
145 const std::deque<uint64_t>& durations() const { return durations_; }
146 const std::deque<UniqueTid>& utids() const { return utids_; }
147 const std::deque<StringId>& cats() const { return cats_; }
148 const std::deque<StringId>& names() const { return names_; }
149 const std::deque<uint8_t>& depths() const { return depths_; }
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100150 const std::deque<uint64_t>& stack_ids() const { return stack_ids_; }
151 const std::deque<uint64_t>& parent_stack_ids() const {
152 return parent_stack_ids_;
153 }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100154
155 private:
156 std::deque<uint64_t> start_ns_;
157 std::deque<uint64_t> durations_;
158 std::deque<UniqueTid> utids_;
159 std::deque<StringId> cats_;
160 std::deque<StringId> names_;
161 std::deque<uint8_t> depths_;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100162 std::deque<uint64_t> stack_ids_;
163 std::deque<uint64_t> parent_stack_ids_;
Lalit Maganti35622b72018-06-06 12:03:11 +0100164 };
165
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100166 class Counters {
167 public:
Lalit Magantifde29042018-10-04 13:28:52 +0100168 inline size_t AddCounter(uint64_t timestamp,
169 uint64_t duration,
170 StringId name_id,
171 double value,
Lalit Magantifde29042018-10-04 13:28:52 +0100172 int64_t ref,
173 RefType type) {
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100174 timestamps_.emplace_back(timestamp);
175 durations_.emplace_back(duration);
176 name_ids_.emplace_back(name_id);
177 values_.emplace_back(value);
178 refs_.emplace_back(ref);
179 types_.emplace_back(type);
Lalit Magantifde29042018-10-04 13:28:52 +0100180 return counter_count() - 1;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100181 }
Lalit Magantifde29042018-10-04 13:28:52 +0100182
183 void set_duration(size_t index, uint64_t duration) {
184 durations_[index] = duration;
185 }
186
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100187 size_t counter_count() const { return timestamps_.size(); }
188
189 const std::deque<uint64_t>& timestamps() const { return timestamps_; }
190
191 const std::deque<uint64_t>& durations() const { return durations_; }
192
193 const std::deque<StringId>& name_ids() const { return name_ids_; }
194
195 const std::deque<double>& values() const { return values_; }
196
197 const std::deque<int64_t>& refs() const { return refs_; }
198
199 const std::deque<RefType>& types() const { return types_; }
200
201 private:
202 std::deque<uint64_t> timestamps_;
203 std::deque<uint64_t> durations_;
204 std::deque<StringId> name_ids_;
205 std::deque<double> values_;
206 std::deque<int64_t> refs_;
207 std::deque<RefType> types_;
208 };
209
Isabelle Taylora0a22972018-08-03 12:06:12 +0100210 void ResetStorage();
Lalit Maganti35622b72018-06-06 12:03:11 +0100211
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100212 UniqueTid AddEmptyThread(uint32_t tid) {
213 unique_threads_.emplace_back(tid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100214 return static_cast<UniqueTid>(unique_threads_.size() - 1);
215 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100216
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100217 UniquePid AddEmptyProcess(uint32_t pid) {
218 unique_processes_.emplace_back(pid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100219 return static_cast<UniquePid>(unique_processes_.size() - 1);
220 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100221
Isabelle Taylora0a22972018-08-03 12:06:12 +0100222 void AddMismatchedSchedSwitch() { ++stats_.mismatched_sched_switch_tids_; }
Lalit Maganticaed37e2018-06-01 03:03:08 +0100223
Isabelle Taylora0a22972018-08-03 12:06:12 +0100224 // Return an unqiue identifier for the contents of each string.
225 // The string is copied internally and can be destroyed after this called.
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100226 // Virtual for testing.
227 virtual StringId InternString(base::StringView);
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100228
Isabelle Taylora0a22972018-08-03 12:06:12 +0100229 Process* GetMutableProcess(UniquePid upid) {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100230 PERFETTO_DCHECK(upid > 0 && upid < unique_processes_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100231 return &unique_processes_[upid];
232 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100233
Isabelle Taylora0a22972018-08-03 12:06:12 +0100234 Thread* GetMutableThread(UniqueTid utid) {
Florian Mayera1aaec22018-09-19 17:02:26 +0100235 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100236 return &unique_threads_[utid];
237 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100238
Lalit Maganticaed37e2018-06-01 03:03:08 +0100239 // Reading methods.
Isabelle Taylora0a22972018-08-03 12:06:12 +0100240 const std::string& GetString(StringId id) const {
241 PERFETTO_DCHECK(id < string_pool_.size());
242 return string_pool_[id];
243 }
244
Lalit Magantie9d40532018-06-29 13:15:06 +0100245 const Process& GetProcess(UniquePid upid) const {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100246 PERFETTO_DCHECK(upid > 0 && upid < unique_processes_.size());
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100247 return unique_processes_[upid];
248 }
249
Lalit Magantie9d40532018-06-29 13:15:06 +0100250 const Thread& GetThread(UniqueTid utid) const {
Lalit Maganti1f64cfa2018-09-18 13:20:02 +0100251 // Allow utid == 0 for idle thread retrieval.
Florian Mayera1aaec22018-09-19 17:02:26 +0100252 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylor68e42192018-06-19 16:19:31 +0100253 return unique_threads_[utid];
254 }
255
Lalit Magantiff69c112018-09-24 12:07:47 +0100256 const Slices& slices() const { return slices_; }
Lalit Magantifde29042018-10-04 13:28:52 +0100257 Slices* mutable_slices() { return &slices_; }
258
Primiano Tucci0d72a312018-08-07 14:42:45 +0100259 const NestableSlices& nestable_slices() const { return nestable_slices_; }
260 NestableSlices* mutable_nestable_slices() { return &nestable_slices_; }
261
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100262 const Counters& counters() const { return counters_; }
263 Counters* mutable_counters() { return &counters_; }
Isabelle Taylor14674d42018-09-07 11:33:11 +0100264
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100265 // |unique_processes_| always contains at least 1 element becuase the 0th ID
266 // is reserved to indicate an invalid process.
267 size_t process_count() const { return unique_processes_.size() - 1; }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100268
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100269 // |unique_threads_| always contains at least 1 element becuase the 0th ID
270 // is reserved to indicate an invalid thread.
271 size_t thread_count() const { return unique_threads_.size() - 1; }
272
Hector Dearman12323362018-08-09 16:09:28 +0100273 // Number of interned strings in the pool. Includes the empty string w/ ID=0.
274 size_t string_count() const { return string_pool_.size(); }
275
Lalit Maganticaed37e2018-06-01 03:03:08 +0100276 private:
Isabelle Taylora0a22972018-08-03 12:06:12 +0100277 TraceStorage& operator=(const TraceStorage&) = default;
278
Primiano Tucci2da5d2e2018-08-10 14:23:31 +0100279 using StringHash = uint64_t;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100280
Lalit Maganti35622b72018-06-06 12:03:11 +0100281 // Metadata counters for events being added.
282 Stats stats_;
283
Lalit Maganticaed37e2018-06-01 03:03:08 +0100284 // One entry for each CPU in the trace.
Lalit Magantiff69c112018-09-24 12:07:47 +0100285 Slices slices_;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100286
287 // One entry for each unique string in the trace.
Lalit Maganti35622b72018-06-06 12:03:11 +0100288 std::deque<std::string> string_pool_;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100289
290 // One entry for each unique string in the trace.
Lalit Maganti35622b72018-06-06 12:03:11 +0100291 std::unordered_map<StringHash, StringId> string_index_;
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100292
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100293 // One entry for each UniquePid, with UniquePid as the index.
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100294 std::deque<Process> unique_processes_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100295
Isabelle Taylor68e42192018-06-19 16:19:31 +0100296 // One entry for each UniqueTid, with UniqueTid as the index.
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100297 std::deque<Thread> unique_threads_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100298
299 // Slices coming from userspace events (e.g. Chromium TRACE_EVENT macros).
300 NestableSlices nestable_slices_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100301
302 // Counter events from the trace. This includes CPU frequency events as well
303 // systrace trace_marker counter events.
304 Counters counters_;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100305};
306
307} // namespace trace_processor
308} // namespace perfetto
309
310#endif // SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_