2017-09-13 20:56:55 +00:00
|
|
|
#ifndef __TRACYPROTOCOL_HPP__
|
|
|
|
#define __TRACYPROTOCOL_HPP__
|
|
|
|
|
|
|
|
#include <limits>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
namespace tracy
|
|
|
|
{
|
|
|
|
|
2019-11-06 00:30:20 +00:00
|
|
|
constexpr unsigned Lz4CompressBound( unsigned isize ) { return isize + ( isize / 255 ) + 16; }
|
|
|
|
|
2020-07-07 18:32:25 +00:00
|
|
|
enum : uint32_t { ProtocolVersion = 37 };
|
2020-03-08 13:37:59 +00:00
|
|
|
enum : uint32_t { BroadcastVersion = 1 };
|
2018-09-09 17:28:53 +00:00
|
|
|
|
2017-10-19 21:48:16 +00:00
|
|
|
using lz4sz_t = uint32_t;
|
2017-09-13 20:58:04 +00:00
|
|
|
|
2017-10-19 21:48:16 +00:00
|
|
|
enum { TargetFrameSize = 256 * 1024 };
|
2019-11-06 00:30:20 +00:00
|
|
|
enum { LZ4Size = Lz4CompressBound( TargetFrameSize ) };
|
2017-09-13 20:58:04 +00:00
|
|
|
static_assert( LZ4Size <= std::numeric_limits<lz4sz_t>::max(), "LZ4Size greater than lz4sz_t" );
|
2017-09-17 11:24:50 +00:00
|
|
|
static_assert( TargetFrameSize * 2 >= 64 * 1024, "Not enough space for LZ4 stream buffer" );
|
2017-09-13 20:56:55 +00:00
|
|
|
|
2018-09-09 16:26:53 +00:00
|
|
|
enum { HandshakeShibbolethSize = 8 };
|
|
|
|
static const char HandshakeShibboleth[HandshakeShibbolethSize] = { 'T', 'r', 'a', 'c', 'y', 'P', 'r', 'f' };
|
|
|
|
|
2018-09-09 17:28:53 +00:00
|
|
|
enum HandshakeStatus : uint8_t
|
|
|
|
{
|
|
|
|
HandshakePending,
|
|
|
|
HandshakeWelcome,
|
|
|
|
HandshakeProtocolMismatch,
|
2019-02-12 00:41:09 +00:00
|
|
|
HandshakeNotAvailable,
|
|
|
|
HandshakeDropped
|
2018-09-09 17:28:53 +00:00
|
|
|
};
|
|
|
|
|
2017-10-03 21:17:58 +00:00
|
|
|
enum { WelcomeMessageProgramNameSize = 64 };
|
2018-08-19 16:19:12 +00:00
|
|
|
enum { WelcomeMessageHostInfoSize = 1024 };
|
2017-10-03 21:17:58 +00:00
|
|
|
|
2018-07-10 20:29:31 +00:00
|
|
|
#pragma pack( 1 )
|
|
|
|
|
2020-03-25 19:33:50 +00:00
|
|
|
// Must increase left query space after handling!
|
2019-04-01 16:52:32 +00:00
|
|
|
enum ServerQuery : uint8_t
|
|
|
|
{
|
|
|
|
ServerQueryTerminate,
|
|
|
|
ServerQueryString,
|
|
|
|
ServerQueryThreadString,
|
|
|
|
ServerQuerySourceLocation,
|
|
|
|
ServerQueryPlotName,
|
|
|
|
ServerQueryCallstackFrame,
|
|
|
|
ServerQueryFrameName,
|
2019-08-16 17:22:23 +00:00
|
|
|
ServerQueryDisconnect,
|
2019-11-25 22:59:48 +00:00
|
|
|
ServerQueryExternalName,
|
2020-02-26 21:35:15 +00:00
|
|
|
ServerQueryParameter,
|
2020-03-25 19:04:55 +00:00
|
|
|
ServerQuerySymbol,
|
2020-04-01 19:43:03 +00:00
|
|
|
ServerQuerySymbolCode,
|
|
|
|
ServerQueryCodeLocation
|
2019-04-01 16:52:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ServerQueryPacket
|
|
|
|
{
|
|
|
|
ServerQuery type;
|
|
|
|
uint64_t ptr;
|
2020-03-25 19:04:01 +00:00
|
|
|
uint32_t extra;
|
2019-04-01 16:52:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum { ServerQueryPacketSize = sizeof( ServerQueryPacket ) };
|
|
|
|
|
|
|
|
|
2020-03-25 20:28:02 +00:00
|
|
|
enum CpuArchitecture : uint8_t
|
|
|
|
{
|
|
|
|
CpuArchUnknown,
|
|
|
|
CpuArchX86,
|
|
|
|
CpuArchX64,
|
|
|
|
CpuArchArm32,
|
|
|
|
CpuArchArm64
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-09-24 14:10:28 +00:00
|
|
|
struct WelcomeMessage
|
|
|
|
{
|
2017-09-25 22:13:24 +00:00
|
|
|
double timerMul;
|
2018-03-31 12:03:55 +00:00
|
|
|
int64_t initBegin;
|
|
|
|
int64_t initEnd;
|
2017-09-24 14:10:28 +00:00
|
|
|
uint64_t delay;
|
2017-09-29 16:32:07 +00:00
|
|
|
uint64_t resolution;
|
2017-10-03 21:26:41 +00:00
|
|
|
uint64_t epoch;
|
2019-08-17 20:19:04 +00:00
|
|
|
uint64_t pid;
|
2020-02-25 22:12:31 +00:00
|
|
|
int64_t samplingPeriod;
|
2018-07-10 19:44:23 +00:00
|
|
|
uint8_t onDemand;
|
2019-06-13 12:05:15 +00:00
|
|
|
uint8_t isApple;
|
2020-03-25 20:28:02 +00:00
|
|
|
uint8_t cpuArch;
|
2020-05-06 16:57:05 +00:00
|
|
|
char cpuManufacturer[12];
|
|
|
|
uint32_t cpuId;
|
2017-10-03 21:17:58 +00:00
|
|
|
char programName[WelcomeMessageProgramNameSize];
|
2018-08-19 16:19:12 +00:00
|
|
|
char hostInfo[WelcomeMessageHostInfoSize];
|
2017-09-24 14:10:28 +00:00
|
|
|
};
|
|
|
|
|
2017-10-03 21:17:58 +00:00
|
|
|
enum { WelcomeMessageSize = sizeof( WelcomeMessage ) };
|
|
|
|
|
2018-07-10 20:37:39 +00:00
|
|
|
|
|
|
|
struct OnDemandPayloadMessage
|
|
|
|
{
|
|
|
|
uint64_t frames;
|
2019-06-21 17:34:34 +00:00
|
|
|
uint64_t currentTime;
|
2018-07-10 20:37:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum { OnDemandPayloadMessageSize = sizeof( OnDemandPayloadMessage ) };
|
|
|
|
|
2019-06-18 18:26:40 +00:00
|
|
|
|
|
|
|
struct BroadcastMessage
|
|
|
|
{
|
|
|
|
uint32_t broadcastVersion;
|
|
|
|
uint32_t protocolVersion;
|
2020-03-08 13:37:59 +00:00
|
|
|
uint32_t listenPort;
|
2019-06-18 18:46:12 +00:00
|
|
|
uint32_t activeTime; // in seconds
|
2019-06-18 18:26:40 +00:00
|
|
|
char programName[WelcomeMessageProgramNameSize];
|
|
|
|
};
|
|
|
|
|
|
|
|
enum { BroadcastMessageSize = sizeof( BroadcastMessage ) };
|
|
|
|
|
2018-07-10 20:29:31 +00:00
|
|
|
#pragma pack()
|
|
|
|
|
2017-09-13 20:56:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|