1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Thread names boilerplate.

This commit is contained in:
Bartosz Taudul
2017-09-22 01:30:57 +02:00
parent d610b9d1a2
commit 3032745cce
2 changed files with 39 additions and 0 deletions
+34
View File
@@ -212,6 +212,7 @@ void View::ProcessZoneBegin( uint64_t id, const QueueZoneBegin& ev )
CheckString( ev.filename );
CheckString( ev.function );
CheckThreadString( ev.thread );
zone->start = ev.time;
SourceLocation srcloc { ev.filename, ev.function, ev.line };
@@ -292,6 +293,15 @@ void View::CheckString( uint64_t ptr )
m_sock.Send( &ptr, sizeof( ptr ) );
}
void View::CheckThreadString( uint64_t id )
{
if( m_threadNames.find( id ) != m_threadNames.end() ) return;
if( m_pendingThreads.find( id ) != m_pendingThreads.end() ) return;
m_pendingThreads.emplace( id );
// TODO send
}
void View::AddString( uint64_t ptr, std::string&& str )
{
assert( m_strings.find( ptr ) == m_strings.end() );
@@ -302,6 +312,17 @@ void View::AddString( uint64_t ptr, std::string&& str )
m_strings.emplace( ptr, std::move( str ) );
}
void View::AddThreadString( uint64_t id, std::string&& str )
{
assert( m_threadNames.find( id ) == m_threadNames.end() );
auto it = m_pendingThreads.find( id );
assert( it != m_pendingThreads.end() );
m_pendingThreads.erase( it );
std::lock_guard<std::mutex> lock( m_lock );
m_threadNames.emplace( id, std::move( str ) );
}
void View::NewZone( Event* zone, uint64_t thread )
{
Vector<Event*>* timeline;
@@ -432,6 +453,19 @@ const char* View::GetString( uint64_t ptr ) const
}
}
const char* View::GetThreadString( uint64_t id ) const
{
const auto it = m_threadNames.find( id );
if( it == m_threadNames.end() )
{
return "???";
}
else
{
return it->second.c_str();
}
}
void View::Draw()
{
s_instance->DrawImpl();