You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Reformat all code to coding standard
This commit is contained in:
@ -55,76 +55,96 @@ public:
|
||||
/**
|
||||
* @brief I/O
|
||||
*/
|
||||
static long getIoBlockRead() { return m_ioStats.blockRead; }
|
||||
static long getIoBlockWrite() { return m_ioStats.blockWrite; }
|
||||
static long getIoBlockRead()
|
||||
{
|
||||
return m_ioStats.blockRead;
|
||||
}
|
||||
static long getIoBlockWrite()
|
||||
{
|
||||
return m_ioStats.blockWrite;
|
||||
}
|
||||
|
||||
static void incIoBlockRead( const int blockNum = 1 );
|
||||
static void incIoBlockWrite( const int blockNum = 1 );
|
||||
|
||||
static bool getUseStats() { return m_bUseStats; }
|
||||
static void setUseStats( const bool flag ) { m_bUseStats = flag; }
|
||||
static bool getUseStats()
|
||||
{
|
||||
return m_bUseStats;
|
||||
}
|
||||
static void setUseStats( const bool flag )
|
||||
{
|
||||
m_bUseStats = flag;
|
||||
}
|
||||
|
||||
static IoStats m_ioStats; // IO
|
||||
|
||||
#ifdef PROFILE
|
||||
// Prefined event labels
|
||||
#define WE_STATS_ALLOC_DCT_EXTENT "AllocDctExtent"
|
||||
#define WE_STATS_COMPACT_VARBINARY "CompactingVarBinary"
|
||||
#define WE_STATS_COMPLETING_PARSE "CompletingParse"
|
||||
#define WE_STATS_COMPLETING_READ "CompletingRead"
|
||||
#define WE_STATS_COMPRESS_COL_INIT_ABBREV_EXT "CmpColInitAbbrevExtent"
|
||||
#define WE_STATS_COMPRESS_COL_INIT_BUF "CmpColInitBuf"
|
||||
#define WE_STATS_COMPRESS_COL_COMPRESS "CmpColCompress"
|
||||
#define WE_STATS_COMPRESS_COL_FINISH_EXTENT "CmpColFinishExtent"
|
||||
#define WE_STATS_COMPRESS_DCT_INIT_BUF "CmpDctInitBuf"
|
||||
#define WE_STATS_COMPRESS_DCT_COMPRESS "CmpDctCompress"
|
||||
#define WE_STATS_COMPRESS_DCT_SEEKO_CHUNK "CmpDctSeekOutputChunk"
|
||||
#define WE_STATS_COMPRESS_DCT_WRITE_CHUNK "CmpDctWriteChunk"
|
||||
#define WE_STATS_COMPRESS_DCT_SEEKO_HDR "CmpDctSeekOutputHdr"
|
||||
#define WE_STATS_COMPRESS_DCT_WRITE_HDR "CmpDctWriteHdr"
|
||||
#define WE_STATS_COMPRESS_DCT_BACKUP_CHUNK "CmpDctBackupChunk"
|
||||
#define WE_STATS_CREATE_COL_EXTENT "CreateColExtent"
|
||||
#define WE_STATS_CREATE_DCT_EXTENT "CreateDctExtent"
|
||||
#define WE_STATS_EXPAND_COL_EXTENT "ExpandColExtent"
|
||||
#define WE_STATS_EXPAND_DCT_EXTENT "ExpandDctExtent"
|
||||
#define WE_STATS_FLUSH_PRIMPROC_BLOCKS "FlushPrimProcBlocks"
|
||||
#define WE_STATS_INIT_COL_EXTENT "InitColExtent"
|
||||
#define WE_STATS_INIT_DCT_EXTENT "InitDctExtent"
|
||||
#define WE_STATS_OPEN_DCT_FILE "OpenDctFile"
|
||||
#define WE_STATS_PARSE_COL "ParseCol"
|
||||
#define WE_STATS_PARSE_DCT "ParseDct"
|
||||
#define WE_STATS_PARSE_DCT_SEEK_EXTENT_BLK "ParseDctSeekExtentBlk"
|
||||
#define WE_STATS_READ_INTO_BUF "ReadIntoBuf"
|
||||
#define WE_STATS_RESIZE_OUT_BUF "ResizeOutBuf"
|
||||
#define WE_STATS_WAIT_FOR_INTERMEDIATE_FLUSH "WaitForIntermediateFlush"
|
||||
#define WE_STATS_WAIT_FOR_READ_BUF "WaitForReadBuf"
|
||||
#define WE_STATS_WAIT_TO_COMPLETE_PARSE "WaitCompleteParse"
|
||||
#define WE_STATS_WAIT_TO_COMPLETE_READ "WaitCompleteRead"
|
||||
#define WE_STATS_WAIT_TO_CREATE_COL_EXTENT "WaitCreateColExtent"
|
||||
#define WE_STATS_WAIT_TO_CREATE_DCT_EXTENT "WaitCreateDctExtent"
|
||||
#define WE_STATS_WAIT_TO_EXPAND_COL_EXTENT "WaitExpandColExtent"
|
||||
#define WE_STATS_WAIT_TO_EXPAND_DCT_EXTENT "WaitExpandDctExtent"
|
||||
#define WE_STATS_WAIT_TO_PARSE_DCT "WaitParseDct"
|
||||
#define WE_STATS_WAIT_TO_RELEASE_OUT_BUF "WaitReleaseOutBuf"
|
||||
#define WE_STATS_WAIT_TO_RESERVE_OUT_BUF "WaitReserveOutBuf"
|
||||
#define WE_STATS_WAIT_TO_RESIZE_OUT_BUF "WaitResizeOutBuf"
|
||||
#define WE_STATS_WAIT_TO_SELECT_COL "WaitSelectCol"
|
||||
#define WE_STATS_WAIT_TO_SELECT_TBL "WaitSelectTbl"
|
||||
#define WE_STATS_WRITE_COL "WriteCol"
|
||||
#define WE_STATS_WRITE_DCT "WriteDct"
|
||||
#define WE_STATS_ALLOC_DCT_EXTENT "AllocDctExtent"
|
||||
#define WE_STATS_COMPACT_VARBINARY "CompactingVarBinary"
|
||||
#define WE_STATS_COMPLETING_PARSE "CompletingParse"
|
||||
#define WE_STATS_COMPLETING_READ "CompletingRead"
|
||||
#define WE_STATS_COMPRESS_COL_INIT_ABBREV_EXT "CmpColInitAbbrevExtent"
|
||||
#define WE_STATS_COMPRESS_COL_INIT_BUF "CmpColInitBuf"
|
||||
#define WE_STATS_COMPRESS_COL_COMPRESS "CmpColCompress"
|
||||
#define WE_STATS_COMPRESS_COL_FINISH_EXTENT "CmpColFinishExtent"
|
||||
#define WE_STATS_COMPRESS_DCT_INIT_BUF "CmpDctInitBuf"
|
||||
#define WE_STATS_COMPRESS_DCT_COMPRESS "CmpDctCompress"
|
||||
#define WE_STATS_COMPRESS_DCT_SEEKO_CHUNK "CmpDctSeekOutputChunk"
|
||||
#define WE_STATS_COMPRESS_DCT_WRITE_CHUNK "CmpDctWriteChunk"
|
||||
#define WE_STATS_COMPRESS_DCT_SEEKO_HDR "CmpDctSeekOutputHdr"
|
||||
#define WE_STATS_COMPRESS_DCT_WRITE_HDR "CmpDctWriteHdr"
|
||||
#define WE_STATS_COMPRESS_DCT_BACKUP_CHUNK "CmpDctBackupChunk"
|
||||
#define WE_STATS_CREATE_COL_EXTENT "CreateColExtent"
|
||||
#define WE_STATS_CREATE_DCT_EXTENT "CreateDctExtent"
|
||||
#define WE_STATS_EXPAND_COL_EXTENT "ExpandColExtent"
|
||||
#define WE_STATS_EXPAND_DCT_EXTENT "ExpandDctExtent"
|
||||
#define WE_STATS_FLUSH_PRIMPROC_BLOCKS "FlushPrimProcBlocks"
|
||||
#define WE_STATS_INIT_COL_EXTENT "InitColExtent"
|
||||
#define WE_STATS_INIT_DCT_EXTENT "InitDctExtent"
|
||||
#define WE_STATS_OPEN_DCT_FILE "OpenDctFile"
|
||||
#define WE_STATS_PARSE_COL "ParseCol"
|
||||
#define WE_STATS_PARSE_DCT "ParseDct"
|
||||
#define WE_STATS_PARSE_DCT_SEEK_EXTENT_BLK "ParseDctSeekExtentBlk"
|
||||
#define WE_STATS_READ_INTO_BUF "ReadIntoBuf"
|
||||
#define WE_STATS_RESIZE_OUT_BUF "ResizeOutBuf"
|
||||
#define WE_STATS_WAIT_FOR_INTERMEDIATE_FLUSH "WaitForIntermediateFlush"
|
||||
#define WE_STATS_WAIT_FOR_READ_BUF "WaitForReadBuf"
|
||||
#define WE_STATS_WAIT_TO_COMPLETE_PARSE "WaitCompleteParse"
|
||||
#define WE_STATS_WAIT_TO_COMPLETE_READ "WaitCompleteRead"
|
||||
#define WE_STATS_WAIT_TO_CREATE_COL_EXTENT "WaitCreateColExtent"
|
||||
#define WE_STATS_WAIT_TO_CREATE_DCT_EXTENT "WaitCreateDctExtent"
|
||||
#define WE_STATS_WAIT_TO_EXPAND_COL_EXTENT "WaitExpandColExtent"
|
||||
#define WE_STATS_WAIT_TO_EXPAND_DCT_EXTENT "WaitExpandDctExtent"
|
||||
#define WE_STATS_WAIT_TO_PARSE_DCT "WaitParseDct"
|
||||
#define WE_STATS_WAIT_TO_RELEASE_OUT_BUF "WaitReleaseOutBuf"
|
||||
#define WE_STATS_WAIT_TO_RESERVE_OUT_BUF "WaitReserveOutBuf"
|
||||
#define WE_STATS_WAIT_TO_RESIZE_OUT_BUF "WaitResizeOutBuf"
|
||||
#define WE_STATS_WAIT_TO_SELECT_COL "WaitSelectCol"
|
||||
#define WE_STATS_WAIT_TO_SELECT_TBL "WaitSelectTbl"
|
||||
#define WE_STATS_WRITE_COL "WriteCol"
|
||||
#define WE_STATS_WRITE_DCT "WriteDct"
|
||||
|
||||
// Functions used to support performance profiling
|
||||
static void enableProfiling(int nReadThreads, int nParseThreads);
|
||||
static void registerReadProfThread ( );
|
||||
static void registerParseProfThread( );
|
||||
static void startReadEvent ( const std::string& eventString )
|
||||
{ readEvent ( eventString, true ); }
|
||||
{
|
||||
readEvent ( eventString, true );
|
||||
}
|
||||
static void stopReadEvent ( const std::string& eventString )
|
||||
{ readEvent ( eventString, false ); }
|
||||
{
|
||||
readEvent ( eventString, false );
|
||||
}
|
||||
static void startParseEvent( const std::string& eventString )
|
||||
{ parseEvent( eventString, true ); }
|
||||
{
|
||||
parseEvent( eventString, true );
|
||||
}
|
||||
static void stopParseEvent ( const std::string& eventString )
|
||||
{ parseEvent( eventString, false ); }
|
||||
{
|
||||
parseEvent( eventString, false );
|
||||
}
|
||||
static void printProfilingResults( );
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user