#include #include #include #ifdef _WIN32 # include # include #else # include # include # include # include #endif #include #include "TracyStorage.hpp" namespace tracy { static bool CreateDirStruct( const std::string& path ) { struct stat buf; if( stat( path.c_str(), &buf ) == 0 ) return true; if( errno != ENOENT ) { return false; } size_t pos = 0; do { pos = path.find( '/', pos+1 ); #ifdef _WIN32 if( pos == 2 ) continue; // Don't create drive name. if( _mkdir( path.substr( 0, pos ).c_str() ) != 0 ) #else if( mkdir( path.substr( 0, pos ).c_str(), S_IRWXU ) != 0 ) #endif { if( errno != EEXIST ) { return false; } } } while( pos != std::string::npos ); return true; } const char* GetSavePath( const char* file ) { enum { Pool = 8 }; enum { MaxPath = 512 }; static char bufpool[Pool][MaxPath]; static int bufsel = 0; char* buf = bufpool[bufsel]; bufsel = ( bufsel + 1 ) % Pool; #ifdef _WIN32 auto path = getenv( "APPDATA" ); auto sz = strlen( path ); memcpy( buf, path, sz ); for( size_t i=0; i