blob: 813b24a6faeb6d393fab38f81630bc347f2f6f26 [file] [log] [blame]
Lalit Maganticaed37e2018-06-01 03:03:08 +01001/*
2 * Copyright (C) 2018 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#include "src/trace_processor/trace_storage.h"
18
19#include <string.h>
20
21namespace perfetto {
22namespace trace_processor {
23
Isabelle Taylor47328cf2018-06-12 14:33:59 +010024TraceStorage::TraceStorage() {
Lalit Maganti1f64cfa2018-09-18 13:20:02 +010025 // Upid/utid 0 is reserved for idle processes/threads.
Primiano Tuccib75dcee2018-08-08 12:21:36 +010026 unique_processes_.emplace_back(0);
27 unique_threads_.emplace_back(0);
28
29 // Reserve string ID 0 for the empty string.
Primiano Tucci2da5d2e2018-08-10 14:23:31 +010030 InternString("");
Primiano Tucci463af6f2018-09-09 15:10:42 +010031
32 // Initialize all CPUs @ freq 0Hz.
33 for (size_t cpu = 0; cpu < base::kMaxCpus; cpu++)
34 cpu_freq_[cpu].emplace_back(0, 0);
Isabelle Taylor47328cf2018-06-12 14:33:59 +010035}
36
Lalit Maganti35622b72018-06-06 12:03:11 +010037TraceStorage::~TraceStorage() {}
Lalit Maganticaed37e2018-06-01 03:03:08 +010038
Isabelle Taylora0a22972018-08-03 12:06:12 +010039void TraceStorage::AddSliceToCpu(uint32_t cpu,
40 uint64_t start_ns,
41 uint64_t duration_ns,
Isabelle Taylor14674d42018-09-07 11:33:11 +010042 UniqueTid utid,
43 uint64_t cycles) {
Lalit Maganti9dacc852018-09-18 13:28:32 +010044 slices_.AddSlice(cpu, start_ns, duration_ns, utid, cycles);
45}
Isabelle Taylor3dd366c2018-06-22 16:21:41 +010046
Primiano Tucci2da5d2e2018-08-10 14:23:31 +010047StringId TraceStorage::InternString(base::StringView str) {
48 auto hash = str.Hash();
Lalit Maganti35622b72018-06-06 12:03:11 +010049 auto id_it = string_index_.find(hash);
50 if (id_it != string_index_.end()) {
Primiano Tucci2da5d2e2018-08-10 14:23:31 +010051 PERFETTO_DCHECK(base::StringView(string_pool_[id_it->second]) == str);
Lalit Maganti35622b72018-06-06 12:03:11 +010052 return id_it->second;
Lalit Maganticaed37e2018-06-01 03:03:08 +010053 }
Primiano Tucci2da5d2e2018-08-10 14:23:31 +010054 string_pool_.emplace_back(str.ToStdString());
Lalit Maganti35622b72018-06-06 12:03:11 +010055 StringId string_id = string_pool_.size() - 1;
56 string_index_.emplace(hash, string_id);
57 return string_id;
Lalit Maganticaed37e2018-06-01 03:03:08 +010058}
59
Isabelle Taylora0a22972018-08-03 12:06:12 +010060void TraceStorage::ResetStorage() {
61 *this = TraceStorage();
62}
63
Lalit Maganticaed37e2018-06-01 03:03:08 +010064} // namespace trace_processor
65} // namespace perfetto