2016-02-16 23:21:12 +03:00
/**
Lightweight profiler library for c + +
2016-08-11 23:52:33 +03:00
Copyright ( C ) 2016 Sergey Yagovtsev , Victor Zarubkin
2016-02-16 23:21:12 +03:00
This program is free software : you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation , either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2016-02-17 23:43:37 +03:00
* */
2016-02-16 23:21:12 +03:00
2016-08-28 23:40:23 +03:00
# ifndef EASY_PROFILER____H_______
# define EASY_PROFILER____H_______
2016-02-16 23:21:12 +03:00
2016-09-29 23:29:57 +03:00
# include "easy/profiler_aux.h"
2016-02-16 23:21:12 +03:00
2016-08-31 21:51:22 +03:00
# if defined ( __clang__ )
2016-09-11 16:57:35 +03:00
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wgnu-zero-variadic-macro-arguments"
2016-08-31 21:51:22 +03:00
# endif
2016-09-27 22:28:04 +03:00
namespace profiler {
const uint8_t EASY_VERSION_MAJOR = 0 ;
const uint8_t EASY_VERSION_MINOR = 1 ;
const uint16_t EASY_VERSION_REV = 0 ;
const uint32_t EASY_FULL_VERSION = ( ( uint32_t ) EASY_VERSION_MAJOR < < 24 ) | ( ( uint32_t ) EASY_VERSION_MINOR < < 16 ) | ( uint32_t ) EASY_VERSION_REV ;
}
2016-09-29 23:08:20 +03:00
# ifdef BUILD_WITH_EASY_PROFILER
2016-02-16 23:21:12 +03:00
2016-03-03 14:55:38 +03:00
/**
2016-09-13 23:03:01 +03:00
\ defgroup profiler EasyProfiler
2016-03-03 14:55:38 +03:00
*/
2016-09-15 23:15:07 +03:00
// EasyProfiler core API:
2016-09-13 23:03:01 +03:00
/** Macro for beginning of a block with custom name and color.
2016-03-03 14:55:38 +03:00
\ code
2016-09-29 23:29:57 +03:00
# include "easy/profiler.h"
2016-09-07 21:32:14 +03:00
void foo ( )
{
// some code ...
2016-09-11 16:57:35 +03:00
2016-09-20 22:57:34 +03:00
EASY_BLOCK ( " Check something " , profiler : : OFF ) ; // Disabled block (There is possibility to enable this block later via GUI)
2016-09-07 21:32:14 +03:00
if ( something ) {
EASY_BLOCK ( " Calling bar() " ) ; // Block with default color
bar ( ) ;
}
2016-08-28 23:40:23 +03:00
else {
EASY_BLOCK ( " Calling baz() " , profiler : : colors : : Red ) ; // Red block
baz ( ) ;
}
2016-09-11 16:57:35 +03:00
EASY_END_BLOCK ; // End of "Check something" block (Even if "Check something" is disabled, this EASY_END_BLOCK will not end any other block).
2016-09-20 22:57:34 +03:00
EASY_BLOCK ( " Some another block " , profiler : : colors : : Blue , profiler : : ON_WITHOUT_CHILDREN ) ; // Block with Blue color without
2016-09-11 16:57:35 +03:00
// some another code...
2016-09-20 22:57:34 +03:00
EASY_BLOCK ( " Calculate sum " ) ; // This block will not be profiled because it's parent is ON_WITHOUT_CHILDREN
int sum = 0 ;
for ( int i = 0 ; i < 10 ; + + i )
sum + = i ;
EASY_END_BLOCK ; // End of "Calculate sum" block
2016-09-07 21:32:14 +03:00
}
2016-03-03 14:55:38 +03:00
\ endcode
2016-08-28 23:40:23 +03:00
Block will be automatically completed by destructor .
2016-03-03 14:55:38 +03:00
\ ingroup profiler
*/
2016-09-11 16:57:35 +03:00
# define EASY_BLOCK(name, ...)\
2016-09-22 23:06:43 +03:00
EASY_LOCAL_STATIC_PTR ( const : : profiler : : BaseBlockDescriptor * , EASY_UNIQUE_DESC ( __LINE__ ) , : : profiler : : registerDescription ( : : profiler : : extract_enable_flag ( __VA_ARGS__ ) , \
2016-09-13 23:03:01 +03:00
EASY_UNIQUE_LINE_ID , EASY_COMPILETIME_NAME ( name ) , __FILE__ , __LINE__ , : : profiler : : BLOCK_TYPE_BLOCK , : : profiler : : extract_color ( __VA_ARGS__ ) ) ) ; \
2016-09-09 00:09:47 +03:00
: : profiler : : Block EASY_UNIQUE_BLOCK ( __LINE__ ) ( EASY_UNIQUE_DESC ( __LINE__ ) , EASY_RUNTIME_NAME ( name ) ) ; \
2016-08-28 23:40:23 +03:00
: : profiler : : beginBlock ( EASY_UNIQUE_BLOCK ( __LINE__ ) ) ; // this is to avoid compiler warning about unused variable
2016-02-16 23:21:12 +03:00
2016-09-13 23:03:01 +03:00
/** Macro for beginning of a block with function name and custom color.
2016-03-03 14:55:38 +03:00
\ code
2016-09-29 23:29:57 +03:00
# include "easy/profiler.h"
2016-09-07 21:32:14 +03:00
void foo ( ) {
EASY_FUNCTION ( ) ; // Block with name="foo" and default color
//some code...
}
2016-03-03 14:55:38 +03:00
2016-08-28 23:40:23 +03:00
void bar ( ) {
EASY_FUNCTION ( profiler : : colors : : Green ) ; // Green block with name="bar"
//some code...
}
2016-09-11 16:57:35 +03:00
void baz ( ) {
2016-09-20 22:57:34 +03:00
EASY_FUNCTION ( profiler : : FORCE_ON ) ; // Force enabled block with name="baz" and default color (This block will be profiled even if it's parent is OFF_RECURSIVE)
2016-09-11 16:57:35 +03:00
// som code...
}
2016-03-03 14:55:38 +03:00
\ endcode
2016-08-28 23:40:23 +03:00
Name of the block automatically created with function name .
2016-03-03 14:55:38 +03:00
\ ingroup profiler
*/
2016-09-11 16:57:35 +03:00
# define EASY_FUNCTION(...)\
2016-09-22 23:06:43 +03:00
EASY_LOCAL_STATIC_PTR ( const : : profiler : : BaseBlockDescriptor * , EASY_UNIQUE_DESC ( __LINE__ ) , : : profiler : : registerDescription ( : : profiler : : extract_enable_flag ( __VA_ARGS__ ) , \
2016-09-13 23:03:01 +03:00
EASY_UNIQUE_LINE_ID , __func__ , __FILE__ , __LINE__ , : : profiler : : BLOCK_TYPE_BLOCK , : : profiler : : extract_color ( __VA_ARGS__ ) ) ) ; \
2016-09-09 00:09:47 +03:00
: : profiler : : Block EASY_UNIQUE_BLOCK ( __LINE__ ) ( EASY_UNIQUE_DESC ( __LINE__ ) , " " ) ; \
2016-08-31 21:51:00 +03:00
: : profiler : : beginBlock ( EASY_UNIQUE_BLOCK ( __LINE__ ) ) ; // this is to avoid compiler warning about unused variable
2016-03-03 14:55:38 +03:00
2016-09-13 23:03:01 +03:00
/** Macro for completion of last opened block.
2016-02-16 23:21:12 +03:00
2016-03-03 14:55:38 +03:00
\ code
2016-09-29 23:29:57 +03:00
# include "easy/profiler.h"
2016-08-28 23:40:23 +03:00
int foo ( )
2016-03-03 14:55:38 +03:00
{
2016-08-28 23:40:23 +03:00
// some code ...
2016-09-07 21:32:14 +03:00
int sum = 0 ;
EASY_BLOCK ( " Calculating sum " ) ;
for ( int i = 0 ; i < 10 ; + + i ) {
sum + = i ;
}
EASY_END_BLOCK ;
2016-08-28 23:40:23 +03:00
// some antoher code here ...
return sum ;
2016-03-03 14:55:38 +03:00
}
\ endcode
\ ingroup profiler
*/
2016-09-11 16:57:35 +03:00
# define EASY_END_BLOCK ::profiler::endBlock();
2016-02-16 23:21:12 +03:00
2016-09-13 23:03:01 +03:00
/** Macro for creating event with custom name and color.
2016-03-03 14:55:38 +03:00
2016-08-28 23:40:23 +03:00
Event is a block with zero duration and special type .
\ warning Event ends immidiately and calling EASY_END_BLOCK after EASY_EVENT
will end previously opened EASY_BLOCK or EASY_FUNCTION .
\ ingroup profiler
*/
2016-09-11 16:57:35 +03:00
# define EASY_EVENT(name, ...)\
2016-09-22 23:06:43 +03:00
EASY_LOCAL_STATIC_PTR ( const : : profiler : : BaseBlockDescriptor * , EASY_UNIQUE_DESC ( __LINE__ ) , : : profiler : : registerDescription ( \
: : profiler : : extract_enable_flag ( __VA_ARGS__ ) , EASY_UNIQUE_LINE_ID , EASY_COMPILETIME_NAME ( name ) , \
2016-09-13 23:03:01 +03:00
__FILE__ , __LINE__ , : : profiler : : BLOCK_TYPE_EVENT , : : profiler : : extract_color ( __VA_ARGS__ ) ) ) ; \
: : profiler : : storeEvent ( EASY_UNIQUE_DESC ( __LINE__ ) , EASY_RUNTIME_NAME ( name ) ) ;
2016-03-03 14:55:38 +03:00
2016-09-13 23:03:01 +03:00
/** Macro for enabling profiler.
2016-09-11 16:57:35 +03:00
2016-03-03 14:55:38 +03:00
\ ingroup profiler
*/
2016-09-11 16:57:35 +03:00
# define EASY_PROFILER_ENABLE ::profiler::setEnabled(true);
2016-02-16 23:21:12 +03:00
2016-09-13 23:03:01 +03:00
/** Macro for disabling profiler.
2016-09-11 16:57:35 +03:00
2016-03-03 14:55:38 +03:00
\ ingroup profiler
*/
2016-09-11 16:57:35 +03:00
# define EASY_PROFILER_DISABLE ::profiler::setEnabled(false);
2016-02-16 23:21:12 +03:00
2016-09-13 23:03:01 +03:00
/** Macro for current thread registration.
2016-08-28 23:40:23 +03:00
2016-09-13 23:03:01 +03:00
\ note If this thread has been already registered then nothing happens .
2016-08-28 23:40:23 +03:00
\ ingroup profiler
*/
2016-09-11 16:57:35 +03:00
# define EASY_THREAD(name)\
2016-09-22 23:06:43 +03:00
EASY_THREAD_LOCAL static const char * EASY_TOKEN_CONCATENATE ( unique_profiler_thread_name , __LINE__ ) = 0 ; \
2016-09-20 22:57:34 +03:00
: : profiler : : ThreadGuard EASY_TOKEN_CONCATENATE ( unique_profiler_thread_guard , __LINE__ ) ; \
2016-09-22 23:06:43 +03:00
if ( ! EASY_TOKEN_CONCATENATE ( unique_profiler_thread_name , __LINE__ ) ) \
2016-09-20 22:57:34 +03:00
EASY_TOKEN_CONCATENATE ( unique_profiler_thread_name , __LINE__ ) = : : profiler : : registerThread ( name , \
EASY_TOKEN_CONCATENATE ( unique_profiler_thread_guard , __LINE__ ) ) ;
2016-07-31 22:12:11 +03:00
2016-09-13 23:03:01 +03:00
/** Macro for main thread registration.
2016-08-28 23:40:23 +03:00
2016-09-13 23:03:01 +03:00
This is just for user ' s comfort . There is no difference for EasyProfiler GUI between different threads .
2016-08-28 23:40:23 +03:00
\ ingroup profiler
*/
2016-09-11 16:57:35 +03:00
# define EASY_MAIN_THREAD EASY_THREAD("Main")
2016-07-31 22:12:11 +03:00
2016-09-15 23:15:07 +03:00
/** Enable or disable event tracing (context switch events).
\ note Default value is controlled by EASY_EVENT_TRACING_ENABLED macro .
\ note Change will take effect on the next call to EASY_PROFILER_ENABLE .
\ sa EASY_PROFILER_ENABLE , EASY_EVENT_TRACING_ENABLED
\ ingroup profiler
*/
# define EASY_SET_EVENT_TRACING_ENABLED(isEnabled) ::profiler::setEventTracingEnabled(isEnabled);
/** Set event tracing thread priority (low or normal).
Event tracing with low priority will affect your application performance much more less , but
it can be late to gather information about thread / process ( thread could be finished to the moment
when event tracing thread will be awaken ) and you will not see process name and process id
information in GUI for such threads . You will still be able to see all context switch events .
Event tracing with normal priority could gather more information about processes but potentially
it could affect performance as it has more work to do . Usually you will not notice any performance
breakdown , but if you care about that then you change set event tracing priority level to low .
\ sa EASY_LOW_PRIORITY_EVENT_TRACING
\ ingroup profiler
*/
# define EASY_SET_LOW_PRIORITY_EVENT_TRACING(isLowPriority) ::profiler::setLowPriorityEventTracing(isLowPriority);
2016-09-13 23:03:01 +03:00
/** Macro for setting temporary log-file path for Unix event tracing system.
\ note Default value is " /tmp/cs_profiling_info.log " .
\ ingroup profiler
*/
# define EASY_EVENT_TRACING_SET_LOG(filename) ::profiler::setContextSwitchLogFilename(filename);
/** Macro returning current path to the temporary log-file for Unix event tracing system.
\ ingroup profiler
*/
# define EASY_EVENT_TRACING_LOG ::profiler::getContextSwitchLogFilename();
2016-09-15 23:15:07 +03:00
// EasyProfiler settings:
/** If != 0 then EasyProfiler will measure time for blocks storage expansion.
If 0 then EasyProfiler will be compiled without blocks of code responsible
for measuring these events .
These are " EasyProfiler.ExpandStorage " blocks on a diagram .
\ ingroup profiler
*/
2016-09-11 16:57:35 +03:00
# define EASY_MEASURE_STORAGE_EXPAND 0
2016-09-15 23:15:07 +03:00
/** If true then "EasyProfiler.ExpandStorage" events are enabled by default and will be
writed to output file or translated over the net .
If false then you need to enable these events via GUI if you ' ll want to see them .
\ ingroup profiler
*/
# define EASY_STORAGE_EXPAND_ENABLED true
/** If true then EasyProfiler event tracing is enabled by default
and will be turned on and off when you call profiler : : setEnabled ( ) .
Otherwise , it have to be turned on via GUI and then it will be
turned on / off with next calls of profiler : : setEnabled ( ) .
\ ingroup profiler
*/
# define EASY_EVENT_TRACING_ENABLED true
/** If true then EasyProfiler.ETW thread (Event tracing for Windows) will have low priority by default.
\ sa EASY_SET_LOW_PRIORITY_EVENT_TRACING
\ note You can always change priority level via GUI or API while profiling session is not launched .
You don ' t need to rebuild or restart your application for that .
\ ingroup profiler
*/
# define EASY_LOW_PRIORITY_EVENT_TRACING true
2016-09-17 12:54:47 +03:00
/** If != 0 then EasyProfiler will print error messages into stderr.
Otherwise , no log messages will be printed .
\ ingroup profiler
*/
# define EASY_LOG_ENABLED 1
2016-09-15 23:15:07 +03:00
2016-09-29 23:08:20 +03:00
# else // #ifdef BUILD_WITH_EASY_PROFILER
2016-09-15 23:15:07 +03:00
2016-09-11 16:57:35 +03:00
# define EASY_BLOCK(...)
# define EASY_FUNCTION(...)
# define EASY_END_BLOCK
# define EASY_PROFILER_ENABLE
# define EASY_PROFILER_DISABLE
# define EASY_EVENT(...)
# define EASY_THREAD(...)
# define EASY_MAIN_THREAD
2016-09-15 23:15:07 +03:00
# define EASY_SET_EVENT_TRACING_ENABLED(isEnabled)
# define EASY_SET_LOW_PRIORITY_EVENT_TRACING(isLowPriority)
2016-09-13 23:03:01 +03:00
# ifndef _WIN32
# define EASY_EVENT_TRACING_SET_LOG(filename)
# define EASY_EVENT_TRACING_LOG ""
# endif
2016-09-15 23:15:07 +03:00
# define EASY_MEASURE_STORAGE_EXPAND 0
# define EASY_STORAGE_EXPAND_ENABLED false
# define EASY_EVENT_TRACING_ENABLED false
# define EASY_LOW_PRIORITY_EVENT_TRACING true
2016-09-17 12:54:47 +03:00
# define EASY_LOG_ENABLED 0
2016-09-15 23:15:07 +03:00
2016-09-29 23:08:20 +03:00
# endif // #ifndef BUILD_WITH_EASY_PROFILER
2016-02-18 23:50:06 +03:00
2016-09-11 16:57:35 +03:00
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
2016-02-16 23:21:12 +03:00
2016-08-14 22:22:44 +03:00
class ProfileManager ;
2016-09-20 22:57:34 +03:00
struct ThreadStorage ;
2016-08-14 22:22:44 +03:00
2016-08-28 02:41:02 +03:00
namespace profiler {
2016-03-04 11:59:36 +03:00
2016-09-11 16:57:35 +03:00
//////////////////////////////////////////////////////////////////////
// Core types
2016-02-16 23:21:12 +03:00
2016-09-15 22:41:47 +03:00
const uint16_t DEFAULT_PORT = 28077 ;
2016-02-16 23:21:12 +03:00
2016-09-06 23:03:05 +03:00
typedef uint64_t timestamp_t ;
typedef uint32_t thread_id_t ;
2016-08-28 02:41:02 +03:00
typedef uint32_t block_id_t ;
2016-03-03 15:48:00 +03:00
2016-08-28 02:41:02 +03:00
enum BlockType : uint8_t
{
BLOCK_TYPE_EVENT = 0 ,
2016-09-04 14:48:35 +03:00
BLOCK_TYPE_BLOCK ,
2016-08-11 23:52:33 +03:00
2016-08-28 02:41:02 +03:00
BLOCK_TYPES_NUMBER
} ;
typedef BlockType block_type_t ;
2016-09-07 21:32:14 +03:00
2016-09-11 16:57:35 +03:00
//***********************************************
2016-09-07 21:32:14 +03:00
2016-02-20 05:24:12 +03:00
# pragma pack(push,1)
2016-08-28 02:41:02 +03:00
class PROFILER_API BaseBlockDescriptor
{
2016-09-09 00:09:47 +03:00
friend : : ProfileManager ;
2016-09-20 22:57:34 +03:00
friend : : ThreadStorage ;
2016-09-09 00:09:47 +03:00
2016-08-28 02:41:02 +03:00
protected :
2016-02-20 05:24:12 +03:00
2016-09-20 22:57:34 +03:00
block_id_t m_id ; ///< This descriptor id (We can afford this spending because there are much more blocks than descriptors)
int m_line ; ///< Line number in the source file
color_t m_color ; ///< Color of the block packed into 1-byte structure
block_type_t m_type ; ///< Type of the block (See BlockType)
EasyBlockStatus m_status ; ///< If false then blocks with such id() will not be stored by profiler during profile session
2016-03-03 14:55:38 +03:00
2016-09-20 22:57:34 +03:00
BaseBlockDescriptor ( block_id_t _id , EasyBlockStatus _status , int _line , block_type_t _block_type , color_t _color ) ;
2016-02-24 06:31:05 +03:00
2016-08-28 02:41:02 +03:00
public :
2016-03-03 14:55:38 +03:00
2016-09-09 00:09:47 +03:00
inline block_id_t id ( ) const { return m_id ; }
2016-08-28 02:41:02 +03:00
inline int line ( ) const { return m_line ; }
inline color_t color ( ) const { return m_color ; }
2016-09-09 00:09:47 +03:00
inline block_type_t type ( ) const { return m_type ; }
2016-09-20 22:57:34 +03:00
inline EasyBlockStatus status ( ) const { return m_status ; }
2016-02-20 05:24:12 +03:00
2016-09-11 16:57:35 +03:00
} ; // END of class BaseBlockDescriptor.
2016-02-18 19:27:17 +03:00
2016-09-11 16:57:35 +03:00
//***********************************************
2016-02-20 05:24:12 +03:00
2016-08-28 02:41:02 +03:00
class PROFILER_API BaseBlockData
2016-08-11 23:52:33 +03:00
{
2016-09-04 14:48:35 +03:00
friend : : ProfileManager ;
2016-08-28 02:41:02 +03:00
protected :
timestamp_t m_begin ;
timestamp_t m_end ;
block_id_t m_id ;
2016-08-11 23:52:33 +03:00
public :
2016-09-04 19:35:58 +03:00
BaseBlockData ( const BaseBlockData & ) = default ;
2016-08-28 02:41:02 +03:00
BaseBlockData ( timestamp_t _begin_time , block_id_t _id ) ;
2016-08-11 23:52:33 +03:00
2016-08-28 02:41:02 +03:00
inline timestamp_t begin ( ) const { return m_begin ; }
inline timestamp_t end ( ) const { return m_end ; }
inline block_id_t id ( ) const { return m_id ; }
2016-09-04 14:48:35 +03:00
inline timestamp_t duration ( ) const { return m_end - m_begin ; }
2016-08-28 18:19:12 +03:00
2016-09-04 14:48:35 +03:00
inline void setId ( block_id_t _id ) { m_id = _id ; }
2016-09-04 19:35:58 +03:00
private :
BaseBlockData ( ) = delete ;
2016-09-11 16:57:35 +03:00
} ; // END of class BaseBlockData.
2016-08-28 02:41:02 +03:00
# pragma pack(pop)
2016-08-11 23:52:33 +03:00
2016-09-11 16:57:35 +03:00
//***********************************************
2016-09-22 23:06:43 +03:00
class PROFILER_API Block EASY_FINAL : public BaseBlockData
2016-08-14 22:22:44 +03:00
{
friend : : ProfileManager ;
2016-09-11 16:57:35 +03:00
friend : : ThreadStorage ;
2016-08-14 16:05:10 +03:00
2016-09-20 22:57:34 +03:00
const char * m_name ;
EasyBlockStatus m_status ;
2016-08-28 02:41:02 +03:00
private :
2016-09-11 16:57:35 +03:00
void start ( ) ;
void start ( timestamp_t _time ) ;
2016-08-28 02:41:02 +03:00
void finish ( ) ;
2016-09-11 16:57:35 +03:00
void finish ( timestamp_t _time ) ;
2016-09-09 00:09:47 +03:00
inline bool finished ( ) const { return m_end > = m_begin ; }
2016-09-20 22:57:34 +03:00
inline EasyBlockStatus status ( ) const { return m_status ; }
inline void setStatus ( EasyBlockStatus _status ) { m_status = _status ; }
2016-08-28 02:41:02 +03:00
2016-08-14 22:22:44 +03:00
public :
2016-08-14 16:05:10 +03:00
2016-09-04 14:48:35 +03:00
Block ( Block & & that ) ;
2016-09-22 23:06:43 +03:00
Block ( const BaseBlockDescriptor * _desc , const char * _runtimeName ) ;
2016-09-11 16:57:35 +03:00
Block ( timestamp_t _begin_time , block_id_t _id , const char * _runtimeName ) ;
2016-08-28 02:41:02 +03:00
~ Block ( ) ;
2016-02-24 06:31:05 +03:00
2016-08-28 02:41:02 +03:00
inline const char * name ( ) const { return m_name ; }
2016-09-11 16:57:35 +03:00
2016-09-13 23:03:01 +03:00
private :
Block ( const Block & ) = delete ;
Block & operator = ( const Block & ) = delete ;
2016-09-11 16:57:35 +03:00
} ; // END of class Block.
//***********************************************
2016-09-22 23:06:43 +03:00
class PROFILER_API ThreadGuard EASY_FINAL {
2016-09-20 22:57:34 +03:00
friend : : ProfileManager ;
thread_id_t m_id = 0 ;
public :
~ ThreadGuard ( ) ;
} ;
2016-09-11 16:57:35 +03:00
//////////////////////////////////////////////////////////////////////
// Core API
2016-09-13 23:03:01 +03:00
// Note: it is better to use macros defined above than a direct calls to API.
2016-09-11 16:57:35 +03:00
extern " C " {
2016-09-13 23:03:01 +03:00
/** Registers static description of a block.
It is general information which is common for all such blocks .
Includes color , block type ( see BlockType ) , file - name , line - number , compile - time name of a block and enable - flag .
\ ingroup profiler
*/
2016-09-20 22:57:34 +03:00
PROFILER_API const BaseBlockDescriptor * registerDescription ( EasyBlockStatus _status , const char * _autogenUniqueId , const char * _compiletimeName , const char * _filename , int _line , block_type_t _block_type , color_t _color ) ;
2016-09-13 23:03:01 +03:00
/** Stores event in the blocks list.
An event ends instantly and has zero duration .
\ param _desc Reference to the previously registered description .
\ param _runtimeName Standard zero - terminated string which will be copied to the events buffer .
\ ingroup profiler
*/
2016-09-22 23:06:43 +03:00
PROFILER_API void storeEvent ( const BaseBlockDescriptor * _desc , const char * _runtimeName ) ;
2016-09-13 23:03:01 +03:00
/** Begins block.
\ ingroup profiler
*/
PROFILER_API void beginBlock ( Block & _block ) ;
/** Ends last started block.
\ ingroup profiler
*/
PROFILER_API void endBlock ( ) ;
/** Enable or disable profiler.
\ ingroup profiler
*/
PROFILER_API void setEnabled ( bool _isEnable ) ;
/** Save all gathered blocks into file.
\ note This also disables profiler .
\ ingroup profiler
*/
PROFILER_API uint32_t dumpBlocksToFile ( const char * _filename ) ;
/** Register current thread and give it a name.
\ note Only first call of registerThread ( ) for the current thread will have an effect .
\ ingroup profiler
*/
2016-09-20 22:57:34 +03:00
PROFILER_API const char * registerThread ( const char * _name , ThreadGuard & ) ;
2016-09-13 23:03:01 +03:00
2016-09-15 23:15:07 +03:00
/** Enable or disable event tracing.
\ note This change will take an effect on the next call of setEnabled ( true ) ;
\ sa setEnabled , EASY_SET_EVENT_TRACING_ENABLED
\ ingroup profiler
*/
PROFILER_API void setEventTracingEnabled ( bool _isEnable ) ;
/** Set event tracing thread priority (low or normal).
\ note This change will take effect on the next call of setEnabled ( true ) ;
\ sa setEnabled , EASY_SET_LOW_PRIORITY_EVENT_TRACING
\ ingroup profiler
*/
PROFILER_API void setLowPriorityEventTracing ( bool _isLowPriority ) ;
2016-09-13 23:03:01 +03:00
/** Set temporary log-file path for Unix event tracing system.
\ note Default value is " /tmp/cs_profiling_info.log " .
\ ingroup profiler
*/
PROFILER_API void setContextSwitchLogFilename ( const char * _name ) ;
/** Returns current path to the temporary log-file for Unix event tracing system.
\ ingroup profiler
*/
2016-09-11 16:57:35 +03:00
PROFILER_API const char * getContextSwitchLogFilename ( ) ;
2016-09-13 23:03:01 +03:00
2016-09-20 22:57:34 +03:00
PROFILER_API void startListenSignalToCapture ( ) ;
PROFILER_API void stopListenSignalToCapture ( ) ;
2016-09-11 16:57:35 +03:00
}
2016-02-24 06:31:05 +03:00
2016-08-28 02:41:02 +03:00
//////////////////////////////////////////////////////////////////////
2016-08-14 22:22:44 +03:00
2016-08-02 21:18:04 +03:00
} // END of namespace profiler.
2016-02-16 23:21:12 +03:00
2016-08-31 21:51:22 +03:00
# if defined ( __clang__ )
2016-09-11 16:57:35 +03:00
# pragma clang diagnostic pop
2016-08-31 21:51:22 +03:00
# endif
2016-08-28 23:40:23 +03:00
# endif // EASY_PROFILER____H_______