tracy/server/TracyView.hpp

184 lines
5.4 KiB
C++
Raw Normal View History

2017-09-12 23:33:50 +00:00
#ifndef __TRACYVIEW_HPP__
#define __TRACYVIEW_HPP__
#include <atomic>
2017-09-14 00:00:13 +00:00
#include <mutex>
2017-09-12 23:33:50 +00:00
#include <string>
#include <thread>
2017-09-14 00:00:13 +00:00
#include <unordered_map>
2017-09-14 00:16:51 +00:00
#include <unordered_set>
2017-09-14 00:00:13 +00:00
#include <vector>
#include "../common/tracy_lz4.hpp"
#include "../common/TracySocket.hpp"
2017-09-14 00:00:13 +00:00
#include "../common/TracyQueue.hpp"
#include "TracyCharUtil.hpp"
2017-09-14 00:00:13 +00:00
#include "TracyEvent.hpp"
#include "TracySlab.hpp"
2017-09-15 18:17:39 +00:00
#include "TracyVector.hpp"
2017-09-12 23:33:50 +00:00
struct ImVec2;
2017-09-12 23:33:50 +00:00
namespace tracy
{
2017-09-13 21:40:28 +00:00
struct QueueItem;
2017-09-30 14:58:02 +00:00
class FileRead;
2017-09-30 14:20:08 +00:00
class FileWrite;
2017-09-13 21:40:28 +00:00
2017-09-12 23:33:50 +00:00
class View
{
public:
View() : View( "127.0.0.1" ) {}
View( const char* addr );
2017-09-30 14:58:02 +00:00
View( FileRead& f );
2017-09-12 23:33:50 +00:00
~View();
static bool ShouldExit();
2017-09-15 00:30:22 +00:00
static void Draw();
2017-09-12 23:33:50 +00:00
private:
2017-09-21 23:15:58 +00:00
struct ThreadData
{
2017-09-21 23:58:59 +00:00
uint64_t id;
2017-09-21 23:15:58 +00:00
Vector<Event*> timeline;
};
2017-10-04 16:17:31 +00:00
struct LockMap
{
uint64_t srcloc;
2017-10-04 16:51:50 +00:00
Vector<LockEvent*> timeline;
std::unordered_set<uint64_t> threads;
2017-10-04 16:17:31 +00:00
};
2017-09-12 23:33:50 +00:00
void Worker();
2017-09-14 17:44:49 +00:00
void DispatchProcess( const QueueItem& ev );
void DispatchProcess( const QueueItem& ev, const char*& ptr );
void ServerQuery( uint8_t type, uint64_t data );
2017-09-14 17:44:49 +00:00
void Process( const QueueItem& ev );
2017-10-03 14:41:32 +00:00
void ProcessZoneBegin( const QueueZoneBegin& ev );
void ProcessZoneEnd( const QueueZoneEnd& ev );
void ProcessFrameMark( const QueueFrameMark& ev );
void ProcessZoneText( const QueueZoneText& ev );
void ProcessZoneName( const QueueZoneName& ev );
2017-10-04 14:16:40 +00:00
void ProcessLockAnnounce( const QueueLockAnnounce& ev );
void ProcessLockWait( const QueueLockWait& ev );
void ProcessLockObtain( const QueueLockObtain& ev );
void ProcessLockRelease( const QueueLockRelease& ev );
2017-10-06 15:05:14 +00:00
void ProcessLockMark( const QueueLockMark& ev );
2017-09-14 00:00:13 +00:00
2017-09-14 00:16:51 +00:00
void CheckString( uint64_t ptr );
2017-09-21 23:30:57 +00:00
void CheckThreadString( uint64_t id );
2017-09-27 00:18:17 +00:00
void CheckCustomString( uint64_t ptr, Event* dst );
void CheckSourceLocation( uint64_t ptr );
2017-09-14 17:43:40 +00:00
void AddString( uint64_t ptr, std::string&& str );
2017-09-21 23:30:57 +00:00
void AddThreadString( uint64_t id, std::string&& str );
2017-09-27 00:18:17 +00:00
void AddCustomString( uint64_t ptr, std::string&& str );
2017-10-03 14:41:32 +00:00
void AddSourceLocation( const QueueSourceLocation& srcloc );
2017-09-14 00:16:51 +00:00
2017-09-21 23:15:58 +00:00
void NewZone( Event* zone, uint64_t thread );
void UpdateZone( Event* zone );
2017-09-14 19:05:01 +00:00
void InsertZone( Event* zone, Event* parent, Vector<Event*>& vec );
void InsertLockEvent( LockMap& lockmap, LockEvent* lev );
2017-10-04 17:42:44 +00:00
void UpdateLockCount( Vector<LockEvent*>& timeline, size_t pos );
2017-10-04 16:51:50 +00:00
2017-09-18 19:26:22 +00:00
uint64_t GetFrameTime( size_t idx ) const;
2017-09-20 20:34:56 +00:00
uint64_t GetFrameBegin( size_t idx ) const;
uint64_t GetFrameEnd( size_t idx ) const;
int64_t GetLastTime() const;
2017-09-24 14:40:16 +00:00
int64_t GetZoneEnd( const Event& ev ) const;
2017-09-24 01:23:01 +00:00
Vector<Event*>& GetParentVector( const Event& ev );
2017-09-24 14:45:08 +00:00
const char* TimeToString( int64_t ns ) const;
2017-09-21 00:10:20 +00:00
const char* GetString( uint64_t ptr ) const;
2017-09-21 23:30:57 +00:00
const char* GetThreadString( uint64_t id ) const;
const QueueSourceLocation& GetSourceLocation( uint64_t srcloc ) const;
2017-09-15 00:30:22 +00:00
void DrawImpl();
2017-09-30 12:37:21 +00:00
void DrawConnection();
2017-09-18 00:37:25 +00:00
void DrawFrames();
2017-09-20 22:57:26 +00:00
void DrawZones();
2017-09-23 22:12:26 +00:00
int DrawZoneLevel( const Vector<Event*>& vec, bool hover, double pxns, const ImVec2& wpos, int offset, int depth );
int DrawLocks( uint64_t tid, bool hover, double pxns, const ImVec2& wpos, int offset, const LockEvent*& highlight );
2017-09-29 19:49:14 +00:00
void DrawZoneInfoWindow();
2017-09-15 00:30:22 +00:00
2017-10-01 17:31:22 +00:00
uint32_t GetZoneColor( const Event& ev );
uint32_t GetZoneColor( const QueueSourceLocation& srcloc );
uint32_t GetZoneHighlight( const Event& ev, bool migration );
2017-09-30 11:45:02 +00:00
float GetZoneThickness( const Event& ev );
2017-10-01 17:31:22 +00:00
void ZoomToZone( const Event& ev );
2017-09-29 20:55:24 +00:00
void ZoneTooltip( const Event& ev );
2017-09-29 19:57:00 +00:00
2017-09-30 14:20:08 +00:00
void Write( FileWrite& f );
void WriteTimeline( FileWrite& f, const Vector<Event*>& vec );
2017-09-30 15:09:00 +00:00
void ReadTimeline( FileRead& f, Vector<Event*>& vec, Event* parent, const std::unordered_map<uint64_t, const char*>& stringMap );
2017-09-30 14:20:08 +00:00
2017-09-12 23:33:50 +00:00
std::string m_addr;
Socket m_sock;
2017-09-12 23:33:50 +00:00
std::thread m_thread;
std::atomic<bool> m_shutdown;
2017-09-17 22:31:09 +00:00
std::atomic<bool> m_connected;
std::atomic<bool> m_hasData;
2017-09-30 14:58:02 +00:00
bool m_staticView;
2017-09-12 23:54:22 +00:00
2017-09-14 17:43:40 +00:00
// this block must be locked
2017-09-14 00:00:13 +00:00
std::mutex m_lock;
2017-09-15 22:40:51 +00:00
Vector<uint64_t> m_frames;
Vector<ThreadData*> m_threads;
2017-09-14 00:16:51 +00:00
std::unordered_map<uint64_t, std::string> m_strings;
2017-09-21 23:30:57 +00:00
std::unordered_map<uint64_t, std::string> m_threadNames;
std::unordered_set<const char*, charutil::Hasher, charutil::Comparator> m_customStrings;
std::unordered_map<uint64_t, QueueSourceLocation> m_sourceLocation;
2017-10-04 16:17:31 +00:00
std::unordered_map<uint64_t, LockMap> m_lockMap;
2017-09-25 21:38:49 +00:00
uint64_t m_zonesCnt;
2017-09-14 00:00:13 +00:00
std::mutex m_mbpslock;
std::vector<float> m_mbps;
2017-09-14 00:00:13 +00:00
// not used for vis - no need to lock
2017-10-03 14:41:32 +00:00
std::unordered_map<uint64_t, std::vector<Event*>> m_zoneStack;
2017-09-14 00:16:51 +00:00
std::unordered_set<uint64_t> m_pendingStrings;
2017-09-21 23:30:57 +00:00
std::unordered_set<uint64_t> m_pendingThreads;
std::unordered_set<uint64_t> m_pendingSourceLocation;
2017-09-27 00:18:17 +00:00
std::unordered_map<uint64_t, Event*> m_pendingCustomStrings;
2017-09-21 23:15:58 +00:00
std::unordered_map<uint64_t, uint32_t> m_threadMap;
Slab<EventSize*1024*1024> m_slab;
LZ4_streamDecode_t* m_stream;
char* m_buffer;
int m_bufferOffset;
2017-09-18 00:37:25 +00:00
int m_frameScale;
2017-09-18 22:26:40 +00:00
bool m_pause;
int m_frameStart;
2017-09-20 19:21:21 +00:00
2017-09-20 23:13:23 +00:00
int64_t m_zvStart;
int64_t m_zvEnd;
2017-09-26 19:49:50 +00:00
int64_t m_zvStartNext;
int64_t m_zvEndNext;
uint64_t m_delay;
2017-09-29 16:32:07 +00:00
uint64_t m_resolution;
double m_timerMul;
std::string m_captureName;
2017-09-29 19:49:14 +00:00
int8_t m_lastCpu;
2017-09-29 19:49:14 +00:00
const Event* m_zoneInfoWindow;
const Event* m_zoneHighlight;
const LockEvent* m_lockHighlight;
2017-09-12 23:33:50 +00:00
};
}
#endif