mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
110 lines
2.6 KiB
C++
Executable File
110 lines
2.6 KiB
C++
Executable File
#ifndef __TRACYVIEW_HPP__
|
|
#define __TRACYVIEW_HPP__
|
|
|
|
#include <atomic>
|
|
#include <mutex>
|
|
#include <string>
|
|
#include <thread>
|
|
#include <unordered_map>
|
|
#include <unordered_set>
|
|
#include <vector>
|
|
|
|
#include "../common/tracy_lz4.hpp"
|
|
#include "../common/TracySocket.hpp"
|
|
#include "../common/TracyQueue.hpp"
|
|
#include "TracyEvent.hpp"
|
|
#include "TracySlab.hpp"
|
|
#include "TracySourceLocation.hpp"
|
|
#include "TracyVector.hpp"
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
struct QueueItem;
|
|
|
|
class View
|
|
{
|
|
public:
|
|
View() : View( "127.0.0.1" ) {}
|
|
View( const char* addr );
|
|
~View();
|
|
|
|
static bool ShouldExit();
|
|
static void Draw();
|
|
|
|
private:
|
|
struct ThreadData
|
|
{
|
|
Vector<Event*> timeline;
|
|
};
|
|
|
|
void Worker();
|
|
|
|
void DispatchProcess( const QueueItem& ev );
|
|
void DispatchProcess( const QueueItem& ev, const char*& ptr );
|
|
|
|
void Process( const QueueItem& ev );
|
|
void ProcessZoneBegin( uint64_t id, const QueueZoneBegin& ev );
|
|
void ProcessZoneEnd( uint64_t id, const QueueZoneEnd& ev );
|
|
void ProcessFrameMark( uint64_t id );
|
|
|
|
void CheckString( uint64_t ptr );
|
|
void AddString( uint64_t ptr, std::string&& str );
|
|
|
|
void NewZone( Event* zone, uint64_t thread );
|
|
void UpdateZone( Event* zone );
|
|
|
|
uint64_t GetFrameTime( size_t idx ) const;
|
|
uint64_t GetFrameBegin( size_t idx ) const;
|
|
uint64_t GetFrameEnd( size_t idx ) const;
|
|
uint64_t GetLastTime() const;
|
|
const char* TimeToString( uint64_t ns ) const;
|
|
const char* GetString( uint64_t ptr ) const;
|
|
|
|
void DrawImpl();
|
|
void DrawFrames();
|
|
void DrawZones();
|
|
|
|
std::string m_addr;
|
|
|
|
Socket m_sock;
|
|
std::thread m_thread;
|
|
std::atomic<bool> m_shutdown;
|
|
std::atomic<bool> m_connected;
|
|
std::atomic<bool> m_hasData;
|
|
|
|
// this block must be locked
|
|
std::mutex m_lock;
|
|
Vector<uint64_t> m_frames;
|
|
Vector<SourceLocation> m_srcFile;
|
|
Vector<ThreadData> m_threads;
|
|
std::unordered_map<uint64_t, std::string> m_strings;
|
|
|
|
std::mutex m_mbpslock;
|
|
std::vector<float> m_mbps;
|
|
|
|
// not used for vis - no need to lock
|
|
std::unordered_map<uint64_t, QueueZoneEnd> m_pendingEndZone;
|
|
std::unordered_map<uint64_t, Event*> m_openZones;
|
|
std::unordered_set<uint64_t> m_pendingStrings;
|
|
std::unordered_map<SourceLocation, uint32_t, SourceLocation::Hasher, SourceLocation::Comparator> m_locationRef;
|
|
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;
|
|
|
|
int m_frameScale;
|
|
bool m_pause;
|
|
int m_frameStart;
|
|
|
|
int64_t m_zvStart;
|
|
int64_t m_zvEnd;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|