Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Change TrackManager::GetOrCreate* to std::string_view #4540

Merged
merged 1 commit into from
Dec 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 20 additions & 17 deletions src/OrbitGl/TrackManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -488,28 +488,31 @@ GpuTrack* TrackManager::GetOrCreateGpuTrack(uint64_t timeline_hash) {
return track.get();
}

VariableTrack* TrackManager::GetOrCreateVariableTrack(std::string name) {
VariableTrack* TrackManager::GetOrCreateVariableTrack(std::string_view name) {
std::lock_guard<std::recursive_mutex> lock(mutex_);
std::shared_ptr<VariableTrack> track = variable_tracks_[name];
if (track == nullptr) {
track = std::make_shared<VariableTrack>(track_container_, timeline_info_, viewport_, layout_,
name, module_manager_, capture_data_);
variable_tracks_[name] = track;
AddTrack(track);
}

auto existing_track = variable_tracks_.find(name);
if (existing_track != variable_tracks_.end()) return existing_track->second.get();

auto track = std::make_shared<VariableTrack>(track_container_, timeline_info_, viewport_, layout_,
std::string{name}, module_manager_, capture_data_);
variable_tracks_.emplace(name, track);
AddTrack(track);
return track.get();
}

AsyncTrack* TrackManager::GetOrCreateAsyncTrack(std::string name) {
AsyncTrack* TrackManager::GetOrCreateAsyncTrack(std::string_view name) {
std::lock_guard<std::recursive_mutex> lock(mutex_);
std::shared_ptr<AsyncTrack> track = async_tracks_[name];
if (track == nullptr) {
auto [unused, timer_data] = capture_data_->CreateTimerData();
track = std::make_shared<AsyncTrack>(track_container_, timeline_info_, viewport_, layout_, name,
app_, module_manager_, capture_data_, timer_data);
async_tracks_[name] = track;
AddTrack(track);
}

auto existing_track = async_tracks_.find(name);
if (existing_track != async_tracks_.end()) return existing_track->second.get();

auto [unused, timer_data] = capture_data_->CreateTimerData();
auto track = std::make_shared<AsyncTrack>(track_container_, timeline_info_, viewport_, layout_,
std::string{name}, app_, module_manager_, capture_data_,
timer_data);
async_tracks_.emplace(name, track);
AddTrack(track);
return track.get();
}

Expand Down
9 changes: 5 additions & 4 deletions src/OrbitGl/include/OrbitGl/TrackManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <stdlib.h>

#include <cstdint>
#include <functional>
#include <map>
#include <memory>
#include <mutex>
Expand Down Expand Up @@ -71,8 +72,8 @@ class TrackManager {
ThreadTrack* GetOrCreateThreadTrack(uint32_t tid);
[[nodiscard]] std::optional<ThreadTrack*> GetThreadTrack(uint32_t tid) const;
GpuTrack* GetOrCreateGpuTrack(uint64_t timeline_hash);
VariableTrack* GetOrCreateVariableTrack(std::string name);
AsyncTrack* GetOrCreateAsyncTrack(std::string name);
VariableTrack* GetOrCreateVariableTrack(std::string_view name);
AsyncTrack* GetOrCreateAsyncTrack(std::string_view name);
FrameTrack* GetOrCreateFrameTrack(uint64_t function_id);
[[nodiscard]] SystemMemoryTrack* GetSystemMemoryTrack() const {
return system_memory_track_.get();
Expand Down Expand Up @@ -115,8 +116,8 @@ class TrackManager {

std::vector<std::shared_ptr<Track>> all_tracks_;
absl::flat_hash_map<uint32_t, std::shared_ptr<ThreadTrack>> thread_tracks_;
std::map<std::string, std::shared_ptr<AsyncTrack>> async_tracks_;
std::map<std::string, std::shared_ptr<VariableTrack>> variable_tracks_;
std::map<std::string, std::shared_ptr<AsyncTrack>, std::less<>> async_tracks_;
std::map<std::string, std::shared_ptr<VariableTrack>, std::less<>> variable_tracks_;
Comment on lines -118 to +120
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is needed for transparent comparison (for tracks_.find() to accept a std::string_view even though the key type is std::string).

// Mapping from timeline to GPU tracks. Timeline name is used for stable ordering. In particular
// we want the marker tracks next to their queue track. E.g. "gfx" and "gfx_markers" should appear
// next to each other.
Expand Down