blob: 9bd9c792a7d66561bb001eac81ed45446704c0da [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() {
Isabelle Taylor68e42192018-06-19 16:19:31 +010025 // Upid/utid 0 is reserved for invalid processes/threads.
Isabelle Taylor47328cf2018-06-12 14:33:59 +010026 unique_processes_.emplace_back();
Isabelle Taylor68e42192018-06-19 16:19:31 +010027 unique_threads_.emplace_back();
Isabelle Taylor47328cf2018-06-12 14:33:59 +010028}
29
Lalit Maganti35622b72018-06-06 12:03:11 +010030TraceStorage::~TraceStorage() {}
Lalit Maganticaed37e2018-06-01 03:03:08 +010031
Isabelle Taylora0a22972018-08-03 12:06:12 +010032void TraceStorage::AddSliceToCpu(uint32_t cpu,
33 uint64_t start_ns,
34 uint64_t duration_ns,
35 UniqueTid utid) {
36 cpu_events_[cpu].AddSlice(start_ns, duration_ns, utid);
37};
Isabelle Taylor3dd366c2018-06-22 16:21:41 +010038
Lalit Maganti35622b72018-06-06 12:03:11 +010039TraceStorage::StringId TraceStorage::InternString(const char* data,
40 size_t length) {
Lalit Maganticaed37e2018-06-01 03:03:08 +010041 uint32_t hash = 0;
Lalit Maganti3ad1a6a2018-06-07 17:54:27 +010042 for (size_t i = 0; i < length; ++i) {
Lalit Maganti35622b72018-06-06 12:03:11 +010043 hash = static_cast<uint32_t>(data[i]) + (hash * 31);
Lalit Maganticaed37e2018-06-01 03:03:08 +010044 }
Lalit Maganti35622b72018-06-06 12:03:11 +010045 auto id_it = string_index_.find(hash);
46 if (id_it != string_index_.end()) {
47 // TODO(lalitm): check if this DCHECK happens and if so, then change hash
48 // to 64bit.
Lalit Maganti3ad1a6a2018-06-07 17:54:27 +010049 PERFETTO_DCHECK(
50 strncmp(string_pool_[id_it->second].c_str(), data, length) == 0);
Lalit Maganti35622b72018-06-06 12:03:11 +010051 return id_it->second;
Lalit Maganticaed37e2018-06-01 03:03:08 +010052 }
Lalit Maganti35622b72018-06-06 12:03:11 +010053 string_pool_.emplace_back(data, length);
54 StringId string_id = string_pool_.size() - 1;
55 string_index_.emplace(hash, string_id);
56 return string_id;
Lalit Maganticaed37e2018-06-01 03:03:08 +010057}
58
Isabelle Taylora0a22972018-08-03 12:06:12 +010059void TraceStorage::ResetStorage() {
60 *this = TraceStorage();
61}
62
Lalit Maganticaed37e2018-06-01 03:03:08 +010063} // namespace trace_processor
64} // namespace perfetto