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

Conversation

beckerhe
Copy link
Collaborator

@beckerhe beckerhe commented Dec 5, 2022

Some GetOrCreateTrack functions in TrackManager used to take a const std::string&. Changing that to std::string_view was to intrusive for the huge mechanical change that switched everything to std::string_view.

So this PR follows up on the missing parts. It enables transparent comparison for async_tracks_ and variable_tracks and rearranges the code so that it follows our return early guideline.

Some GetOrCreate<Something>Track functions in TrackManager used to take
a const std::string&. Changing that to std::string_view was to intrusive
for the huge mechanical change that switched everything to
std::string_view.

So this PR follows up on the missing parts. It enables transparent
comparison for `async_tracks_` and `variable_tracks` and rearranges the
code so that it follows our return early guideline.
Comment on lines -118 to +120
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_;
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).

@beckerhe beckerhe marked this pull request as ready for review December 5, 2022 11:04
@beckerhe beckerhe merged commit 3444c73 into google:main Dec 5, 2022
@beckerhe beckerhe deleted the track_manager_fixup branch December 5, 2022 12:57
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants