2019-12-15 22:28:19 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
# include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2019-12-16 17:55:21 +00:00
|
|
|
#include <fstream>
|
2019-12-15 22:28:19 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2021-05-06 16:10:08 +00:00
|
|
|
#include <string.h>
|
2021-01-22 01:07:31 +00:00
|
|
|
#include <unordered_map>
|
2019-12-15 22:28:19 +00:00
|
|
|
|
2021-05-06 16:10:08 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
# define stat64 _stat64
|
|
|
|
#endif
|
|
|
|
#if defined __CYGWIN__ || defined __APPLE__
|
|
|
|
# define stat64 stat
|
|
|
|
#endif
|
|
|
|
|
2019-12-16 17:55:21 +00:00
|
|
|
#include "json.hpp"
|
|
|
|
|
2019-12-15 22:28:19 +00:00
|
|
|
#include "../../server/TracyFileWrite.hpp"
|
2021-05-06 16:10:08 +00:00
|
|
|
#include "../../server/TracyMmap.hpp"
|
2019-12-15 22:28:19 +00:00
|
|
|
#include "../../server/TracyWorker.hpp"
|
2021-05-06 16:10:08 +00:00
|
|
|
#include "../../zstd/zstd.h"
|
2019-12-15 22:28:19 +00:00
|
|
|
|
2019-12-16 17:55:21 +00:00
|
|
|
using json = nlohmann::json;
|
2019-12-15 22:28:19 +00:00
|
|
|
|
|
|
|
void Usage()
|
|
|
|
{
|
2019-12-16 17:55:21 +00:00
|
|
|
printf( "Usage: import-chrome input.json output.tracy\n\n" );
|
2019-12-15 22:28:19 +00:00
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int main( int argc, char** argv )
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
if( !AttachConsole( ATTACH_PARENT_PROCESS ) )
|
|
|
|
{
|
|
|
|
AllocConsole();
|
|
|
|
SetConsoleMode( GetStdHandle( STD_OUTPUT_HANDLE ), 0x07 );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
tracy::FileWrite::Compression clev = tracy::FileWrite::Compression::Fast;
|
|
|
|
|
2019-12-16 17:55:21 +00:00
|
|
|
if( argc != 3 ) Usage();
|
2019-12-15 22:28:19 +00:00
|
|
|
|
|
|
|
const char* input = argv[1];
|
|
|
|
const char* output = argv[2];
|
|
|
|
|
|
|
|
printf( "Loading...\r" );
|
|
|
|
fflush( stdout );
|
2019-12-16 17:55:21 +00:00
|
|
|
|
2021-05-06 16:10:08 +00:00
|
|
|
json j;
|
|
|
|
|
|
|
|
const auto fnsz = strlen( input );
|
|
|
|
if( fnsz > 4 && memcmp( input+fnsz-4, ".zst", 4 ) == 0 )
|
2019-12-15 22:28:19 +00:00
|
|
|
{
|
2021-05-06 16:10:08 +00:00
|
|
|
FILE* f = fopen( input, "rb" );
|
|
|
|
if( !f )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "Cannot open input file!\n" );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
struct stat64 sb;
|
|
|
|
if( stat64( input, &sb ) != 0 )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "Cannot open input file!\n" );
|
|
|
|
fclose( f );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto zsz = sb.st_size;
|
|
|
|
auto zbuf = (char*)mmap( nullptr, zsz, PROT_READ, MAP_SHARED, fileno( f ), 0 );
|
|
|
|
fclose( f );
|
|
|
|
if( !zbuf )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "Cannot mmap input file!\n" );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
2021-05-06 20:19:25 +00:00
|
|
|
auto zctx = ZSTD_createDStream();
|
|
|
|
ZSTD_initDStream( zctx );
|
|
|
|
|
|
|
|
enum { tmpSize = 64*1024 };
|
|
|
|
auto tmp = new char[tmpSize];
|
|
|
|
|
|
|
|
ZSTD_inBuffer_s zin = { zbuf, (size_t)zsz };
|
|
|
|
ZSTD_outBuffer_s zout = { tmp, (size_t)tmpSize };
|
|
|
|
|
|
|
|
std::vector<uint8_t> buf;
|
|
|
|
buf.reserve( 1024*1024 );
|
|
|
|
|
|
|
|
while( zin.pos < zin.size )
|
2021-05-06 16:10:08 +00:00
|
|
|
{
|
2021-05-06 20:19:25 +00:00
|
|
|
const auto res = ZSTD_decompressStream( zctx, &zout, &zin );
|
|
|
|
if( ZSTD_isError( res ) )
|
|
|
|
{
|
|
|
|
ZSTD_freeDStream( zctx );
|
|
|
|
delete[] tmp;
|
|
|
|
fprintf( stderr, "Couldn't decompress input file (%s)!\n", ZSTD_getErrorName( res ) );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
if( zout.pos > 0 )
|
|
|
|
{
|
|
|
|
const auto bsz = buf.size();
|
|
|
|
buf.resize( bsz + zout.pos );
|
2021-05-06 20:26:40 +00:00
|
|
|
memcpy( buf.data() + bsz, tmp, zout.pos );
|
2021-05-06 20:19:25 +00:00
|
|
|
zout.pos = 0;
|
|
|
|
}
|
2021-05-06 16:10:08 +00:00
|
|
|
}
|
|
|
|
|
2021-05-06 20:19:25 +00:00
|
|
|
ZSTD_freeDStream( zctx );
|
|
|
|
delete[] tmp;
|
|
|
|
munmap( zbuf, zsz );
|
|
|
|
|
|
|
|
j = json::parse( buf.begin(), buf.end() );
|
2021-05-06 16:10:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::ifstream is( input );
|
|
|
|
if( !is.is_open() )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "Cannot open input file!\n" );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
is >> j;
|
|
|
|
is.close();
|
2019-12-15 22:28:19 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 17:55:21 +00:00
|
|
|
printf( "\33[2KParsing...\r" );
|
|
|
|
fflush( stdout );
|
2019-12-15 22:28:19 +00:00
|
|
|
|
2021-05-10 15:20:39 +00:00
|
|
|
// encode a pair of "real pid, real tid" from a trace into a
|
|
|
|
// pseudo thread ID living in the single namespace of Tracy threads.
|
2021-05-15 10:54:29 +00:00
|
|
|
struct PidTidEncoder
|
|
|
|
{
|
|
|
|
uint64_t tid;
|
|
|
|
uint64_t pid;
|
|
|
|
uint64_t pseudo_tid; // fake thread id, unique within Tracy
|
2021-05-07 00:47:03 +00:00
|
|
|
};
|
|
|
|
|
2021-05-10 15:20:39 +00:00
|
|
|
std::vector<PidTidEncoder> tid_encoders;
|
2019-12-16 17:55:21 +00:00
|
|
|
std::vector<tracy::Worker::ImportEventTimeline> timeline;
|
|
|
|
std::vector<tracy::Worker::ImportEventMessages> messages;
|
2020-06-20 13:30:06 +00:00
|
|
|
std::vector<tracy::Worker::ImportEventPlots> plots;
|
2021-01-22 01:07:31 +00:00
|
|
|
std::unordered_map<uint64_t, std::string> threadNames;
|
2019-12-15 22:28:19 +00:00
|
|
|
|
2021-05-10 15:20:39 +00:00
|
|
|
const auto getPseudoTid = [&](json& val) -> uint64_t {
|
|
|
|
const auto real_tid = val["tid"].get<uint64_t>();
|
|
|
|
|
2021-05-15 10:54:29 +00:00
|
|
|
if( val.contains( "pid" ) )
|
|
|
|
{
|
2021-05-10 15:49:07 +00:00
|
|
|
// there might be multiple processes so we allocate a pseudo-tid
|
|
|
|
// for each pair (pid, real_tid)
|
|
|
|
const auto pid = val["pid"].get<uint64_t>();
|
|
|
|
|
2021-05-15 10:54:29 +00:00
|
|
|
for ( auto &pair : tid_encoders)
|
|
|
|
{
|
|
|
|
if( pair.pid == pid && pair.tid == real_tid ) return pair.pseudo_tid;
|
2021-05-07 00:47:03 +00:00
|
|
|
}
|
|
|
|
|
2021-05-15 10:56:52 +00:00
|
|
|
assert( pid <= std::numeric_limits<uint32_t>::max() );
|
|
|
|
assert( real_tid <= std::numeric_limits<uint32_t>::max() );
|
|
|
|
|
|
|
|
const auto pseudo_tid = ( real_tid & 0xFFFFFFFF ) | ( pid << 32 );
|
2021-05-10 15:49:07 +00:00
|
|
|
tid_encoders.emplace_back(PidTidEncoder {real_tid, pid, pseudo_tid});
|
|
|
|
return pseudo_tid;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-05-15 10:54:29 +00:00
|
|
|
return real_tid;
|
2021-05-10 15:49:07 +00:00
|
|
|
}
|
2021-05-07 00:47:03 +00:00
|
|
|
};
|
|
|
|
|
2019-12-16 20:41:57 +00:00
|
|
|
if( j.is_object() && j.contains( "traceEvents" ) )
|
|
|
|
{
|
|
|
|
j = j["traceEvents"];
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !j.is_array() )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "Input must be either an array of events or an object containing an array of events under \"traceEvents\" key.\n" );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
2019-12-16 17:55:21 +00:00
|
|
|
for( auto& v : j )
|
|
|
|
{
|
|
|
|
const auto type = v["ph"].get<std::string>();
|
2020-05-12 18:36:11 +00:00
|
|
|
|
|
|
|
std::string zoneText = "";
|
2021-05-15 10:54:29 +00:00
|
|
|
if( v.contains( "args" ) )
|
2020-05-12 18:36:11 +00:00
|
|
|
{
|
2021-05-15 10:54:29 +00:00
|
|
|
for( auto& kv : v["args"].items() )
|
2020-05-12 18:36:11 +00:00
|
|
|
{
|
2021-05-10 14:59:03 +00:00
|
|
|
const auto val = kv.value();
|
2021-05-15 10:54:29 +00:00
|
|
|
const std::string s = val.is_string() ? val.get<std::string>() : val.dump();
|
2021-05-10 14:59:03 +00:00
|
|
|
zoneText += kv.key() + ": " + s + "\n";
|
2020-05-12 18:36:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-10 23:27:48 +00:00
|
|
|
std::string locFile;
|
|
|
|
uint32_t locLine = 0;
|
|
|
|
if( v.contains( "loc" ) )
|
|
|
|
{
|
|
|
|
auto loc = v["loc"].get<std::string>();
|
|
|
|
const auto lpos = loc.find_last_of( ':' );
|
|
|
|
if( lpos == std::string::npos )
|
|
|
|
{
|
|
|
|
std::swap( loc, locFile );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
locFile = loc.substr( 0, lpos );
|
|
|
|
locLine = atoi( loc.c_str() + lpos + 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-16 17:55:21 +00:00
|
|
|
if( type == "B" )
|
|
|
|
{
|
|
|
|
timeline.emplace_back( tracy::Worker::ImportEventTimeline {
|
2021-05-10 15:20:39 +00:00
|
|
|
getPseudoTid(v),
|
2019-12-16 17:55:21 +00:00
|
|
|
uint64_t( v["ts"].get<double>() * 1000. ),
|
|
|
|
v["name"].get<std::string>(),
|
2020-05-12 18:36:11 +00:00
|
|
|
std::move(zoneText),
|
2021-05-10 23:27:48 +00:00
|
|
|
false,
|
|
|
|
std::move(locFile),
|
|
|
|
locLine
|
2019-12-16 17:55:21 +00:00
|
|
|
} );
|
2019-12-15 22:28:19 +00:00
|
|
|
}
|
2019-12-16 17:55:21 +00:00
|
|
|
else if( type == "E" )
|
|
|
|
{
|
|
|
|
timeline.emplace_back( tracy::Worker::ImportEventTimeline {
|
2021-05-10 15:20:39 +00:00
|
|
|
getPseudoTid(v),
|
2019-12-16 17:55:21 +00:00
|
|
|
uint64_t( v["ts"].get<double>() * 1000. ),
|
|
|
|
"",
|
2020-05-12 18:36:11 +00:00
|
|
|
std::move(zoneText),
|
2019-12-16 17:55:21 +00:00
|
|
|
true
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
else if( type == "X" )
|
|
|
|
{
|
2021-05-10 15:20:39 +00:00
|
|
|
const auto tid = getPseudoTid(v);
|
2019-12-16 17:55:21 +00:00
|
|
|
const auto ts0 = uint64_t( v["ts"].get<double>() * 1000. );
|
2020-08-07 02:42:03 +00:00
|
|
|
const auto ts1 = ts0 + uint64_t( v["dur"].get<double>() * 1000. );
|
2019-12-16 17:55:21 +00:00
|
|
|
const auto name = v["name"].get<std::string>();
|
2021-05-10 23:27:48 +00:00
|
|
|
timeline.emplace_back( tracy::Worker::ImportEventTimeline { tid, ts0, name, std::move(zoneText), false, std::move(locFile), locLine } );
|
2020-05-12 09:44:36 +00:00
|
|
|
timeline.emplace_back( tracy::Worker::ImportEventTimeline { tid, ts1, "", "", true } );
|
2019-12-16 17:55:21 +00:00
|
|
|
}
|
|
|
|
else if( type == "i" || type == "I" )
|
|
|
|
{
|
|
|
|
messages.emplace_back( tracy::Worker::ImportEventMessages {
|
2021-05-10 15:20:39 +00:00
|
|
|
getPseudoTid(v),
|
2019-12-16 17:55:21 +00:00
|
|
|
uint64_t( v["ts"].get<double>() * 1000. ),
|
|
|
|
v["name"].get<std::string>()
|
|
|
|
} );
|
|
|
|
}
|
2020-06-20 21:57:30 +00:00
|
|
|
else if( type == "C" )
|
|
|
|
{
|
|
|
|
auto timestamp = int64_t( v["ts"].get<double>() * 1000 );
|
|
|
|
for( auto& kv : v["args"].items() )
|
|
|
|
{
|
|
|
|
bool plotFound = false;
|
|
|
|
auto& metricName = kv.key();
|
|
|
|
auto dataPoint = std::make_pair( timestamp, kv.value().get<double>() );
|
|
|
|
|
|
|
|
// The input file is assumed to have only very few metrics,
|
|
|
|
// so iterating through plots is not a problem.
|
|
|
|
for( auto& plot : plots )
|
|
|
|
{
|
|
|
|
if( plot.name == metricName )
|
|
|
|
{
|
|
|
|
plot.data.emplace_back( dataPoint );
|
|
|
|
plotFound = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( !plotFound )
|
|
|
|
{
|
|
|
|
auto formatting = tracy::PlotValueFormatting::Number;
|
|
|
|
|
|
|
|
// NOTE: With C++20 one could say metricName.ends_with( "_bytes" ) instead of rfind
|
|
|
|
auto metricNameLen = metricName.size();
|
|
|
|
if ( metricNameLen >= 6 && metricName.rfind( "_bytes" ) == metricNameLen - 6 ) {
|
|
|
|
formatting = tracy::PlotValueFormatting::Memory;
|
|
|
|
}
|
|
|
|
|
|
|
|
plots.emplace_back( tracy::Worker::ImportEventPlots {
|
|
|
|
std::move( metricName ),
|
|
|
|
formatting,
|
|
|
|
{ dataPoint }
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-22 01:07:31 +00:00
|
|
|
else if (type == "M")
|
|
|
|
{
|
|
|
|
if (v.contains("name") && v["name"] == "thread_name" && v.contains("args") && v["args"].is_object() && v["args"].contains("name"))
|
|
|
|
{
|
2021-05-10 15:20:39 +00:00
|
|
|
const auto tid = getPseudoTid(v);
|
2021-05-07 00:47:03 +00:00
|
|
|
threadNames[tid] = v["args"]["name"].get<std::string>();
|
2021-01-22 01:07:31 +00:00
|
|
|
}
|
|
|
|
}
|
2019-12-16 17:55:21 +00:00
|
|
|
}
|
2019-12-15 22:28:19 +00:00
|
|
|
|
2019-12-16 17:55:21 +00:00
|
|
|
std::stable_sort( timeline.begin(), timeline.end(), [] ( const auto& l, const auto& r ) { return l.timestamp < r.timestamp; } );
|
|
|
|
std::stable_sort( messages.begin(), messages.end(), [] ( const auto& l, const auto& r ) { return l.timestamp < r.timestamp; } );
|
2020-06-20 13:30:06 +00:00
|
|
|
for( auto& v : plots ) std::stable_sort( v.data.begin(), v.data.end(), [] ( const auto& l, const auto& r ) { return l.first < r.first; } );
|
2019-12-15 22:28:19 +00:00
|
|
|
|
2019-12-16 17:55:21 +00:00
|
|
|
uint64_t mts = 0;
|
|
|
|
if( !timeline.empty() )
|
2019-12-15 22:28:19 +00:00
|
|
|
{
|
2019-12-16 17:55:21 +00:00
|
|
|
mts = timeline[0].timestamp;
|
2019-12-15 22:28:19 +00:00
|
|
|
}
|
2019-12-16 17:55:21 +00:00
|
|
|
if( !messages.empty() )
|
2019-12-15 22:28:19 +00:00
|
|
|
{
|
2019-12-16 17:55:21 +00:00
|
|
|
if( mts > messages[0].timestamp ) mts = messages[0].timestamp;
|
2019-12-15 22:28:19 +00:00
|
|
|
}
|
2020-06-21 11:57:37 +00:00
|
|
|
for( auto& plot : plots )
|
|
|
|
{
|
|
|
|
if( mts > plot.data[0].first ) mts = plot.data[0].first;
|
|
|
|
}
|
2019-12-16 17:55:21 +00:00
|
|
|
for( auto& v : timeline ) v.timestamp -= mts;
|
|
|
|
for( auto& v : messages ) v.timestamp -= mts;
|
2020-06-20 21:57:30 +00:00
|
|
|
for( auto& plot : plots )
|
2020-06-21 11:57:37 +00:00
|
|
|
{
|
2020-06-23 23:14:55 +00:00
|
|
|
for( auto& v : plot.data ) v.first -= mts;
|
2020-06-21 11:57:37 +00:00
|
|
|
}
|
2019-12-16 17:55:21 +00:00
|
|
|
|
|
|
|
printf( "\33[2KProcessing...\r" );
|
|
|
|
fflush( stdout );
|
|
|
|
|
2021-01-22 02:32:03 +00:00
|
|
|
auto&& getFilename = [](const char* in) {
|
|
|
|
auto out = in;
|
|
|
|
while (*out) ++out;
|
|
|
|
--out;
|
|
|
|
while (out > in && (*out != '/' || *out != '\\')) out--;
|
|
|
|
return out;
|
|
|
|
};
|
|
|
|
|
|
|
|
tracy::Worker worker( getFilename(output), getFilename(input), timeline, messages, plots, threadNames );
|
2019-12-16 17:55:21 +00:00
|
|
|
|
|
|
|
auto w = std::unique_ptr<tracy::FileWrite>( tracy::FileWrite::Open( output, clev ) );
|
|
|
|
if( !w )
|
2019-12-15 22:28:19 +00:00
|
|
|
{
|
2019-12-16 17:55:21 +00:00
|
|
|
fprintf( stderr, "Cannot open output file!\n" );
|
2019-12-15 22:28:19 +00:00
|
|
|
exit( 1 );
|
|
|
|
}
|
2019-12-19 16:25:22 +00:00
|
|
|
printf( "\33[2KSaving...\r" );
|
2019-12-16 17:55:21 +00:00
|
|
|
fflush( stdout );
|
|
|
|
worker.Write( *w );
|
2019-12-15 22:28:19 +00:00
|
|
|
|
2019-12-19 16:25:22 +00:00
|
|
|
printf( "\33[2KCleanup...\n" );
|
|
|
|
fflush( stdout );
|
|
|
|
|
2019-12-15 22:28:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|