All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TraceCollector Class Reference

This is a singleton class that records TraceEvent instances and populates TraceCollection instances. More...

+ Inheritance diagram for TraceCollector:

Classes

struct  DefaultCategory
 Default Trace category which corresponds to events stored for TRACE_ macros. More...
 

Public Types

using This = TraceCollector
 
using ThisPtr = TraceCollectorPtr
 
using TimeStamp = TraceEvent::TimeStamp
 
using Key = TraceDynamicKey
 

Public Member Functions

 TF_MALLOC_TAG_NEW ("Trace","TraceCollector")
 
TRACE_API void SetEnabled (bool isEnabled)
 Enables or disables collection of events for DefaultCategory. More...
 
TRACE_API void Clear ()
 Clear all pending events from the collector. More...
 
const std::string & GetLabel ()
 Return the label associated with this collector. More...
 
TRACE_API void CreateCollection ()
 Produces a TraceCollection from all the events that recorded in the collector and issues a TraceCollectionAvailable notice. More...
 
Event Recording
template<typename Category = DefaultCategory>
TimeStamp BeginEvent (const Key &key)
 Record a begin event with key if Category is enabled. More...
 
template<typename Category = DefaultCategory>
void BeginEventAtTime (const Key &key, double ms)
 Record a begin event with key at a specified time if Category is enabled. More...
 
template<typename Category = DefaultCategory>
TimeStamp EndEvent (const Key &key)
 Record an end event with key if Category is enabled. More...
 
template<typename Category = DefaultCategory>
void EndEventAtTime (const Key &key, double ms)
 Record an end event with key at a specified time if Category is enabled. More...
 
template<typename Category = DefaultCategory>
TimeStamp MarkerEvent (const Key &key)
 Record a marker event with key if Category is enabled. More...
 
template<typename Category = DefaultCategory>
void MarkerEventAtTime (const Key &key, double ms)
 Record a marker event with key at a specified time if Category is enabled. More...
 
template<typename Category = DefaultCategory>
void BeginScope (const TraceKey &_key)
 Record a begin event for a scope described by key if Category is enabled. More...
 
template<typename Category , typename... Args>
void BeginScope (const TraceKey &key, Args &&...args)
 Record a begin event for a scope described by key and a specified category and store data arguments if Category is enabled. More...
 
template<typename... Args>
void BeginScope (const TraceKey &key, Args &&...args)
 Record a begin event for a scope described by key and store data arguments if Category is enabled. More...
 
template<typename Category = DefaultCategory>
void EndScope (const TraceKey &key)
 Record an end event described by key if Category is enabled. More...
 
template<typename Category = DefaultCategory>
void Scope (const TraceKey &key, TimeStamp start)
 Record a scope event described by key that started at start if Category is enabled. More...
 
template<typename Category , typename... Args>
void ScopeArgs (Args &&...args)
 Record multiple data events with category cat if Category is enabled. More...
 
template<typename... Args>
void ScopeArgs (Args &&...args)
 Record multiple data events with the default category if collection of events is enabled. More...
 
template<typename Category = DefaultCategory>
void MarkerEventStatic (const TraceKey &key)
 Record a scope event described by key that started at start if Category is enabled. More...
 
template<typename Category = DefaultCategory, typename T >
void StoreData (const TraceKey &key, const T &value)
 Record a data event with the given key and value if Category is enabled. More...
 
template<typename Category = DefaultCategory>
void RecordCounterDelta (const TraceKey &key, double delta)
 Record a counter delta for a name key if Category is enabled. More...
 
template<typename Category = DefaultCategory>
void RecordCounterDelta (const Key &key, double delta)
 Record a counter delta for a name key if Category is enabled. More...
 
template<typename Category = DefaultCategory>
void RecordCounterValue (const TraceKey &key, double value)
 Record a counter value for a name key if Category is enabled. More...
 
template<typename Category = DefaultCategory>
void RecordCounterValue (const Key &key, double value)
 Record a counter value for a name key and delta value if Category is enabled. More...
 
- Public Member Functions inherited from TfWeakBase
 TfWeakBase (const TfWeakBase &)
 
const TfWeakBase__GetTfWeakBase__ () const
 
const TfWeakBaseoperator= (const TfWeakBase &)
 
void EnableNotification2 () const
 
TF_API void const * GetUniqueIdentifier () const
 

Static Public Member Functions

static TRACE_API TraceCollectorGetInstance ()
 Returns the singleton instance. More...
 
static bool IsEnabled ()
 Returns whether collection of events is enabled for DefaultCategory. More...
 

Friends

class TfSingleton< TraceCollector >
 

Additional Inherited Members

- Protected Member Functions inherited from TfWeakBase
TfRefPtr< Tf_Remnant > _Register () const
 
template<class T >
TfRefPtr< Tf_Remnant > _Register (T *tempRmnt) const
 
bool _HasRemnant () const
 

Detailed Description

This is a singleton class that records TraceEvent instances and populates TraceCollection instances.

All public methods of TraceCollector are safe to call from any thread.

Definition at line 71 of file collector.h.

Member Function Documentation

TimeStamp BeginEvent ( const Key key)
inline

Record a begin event with key if Category is enabled.

A matching end event is expected some time in the future.

If the key is known at compile time BeginScope and Scope methods are preferred because they have lower overhead.

Returns
The TimeStamp of the TraceEvent or 0 if the collector is disabled.
See Also
BeginScope
Scope

Definition at line 133 of file collector.h.

void BeginEventAtTime ( const Key key,
double  ms 
)
inline

Record a begin event with key at a specified time if Category is enabled.

This version of the method allows the passing of a specific number of elapsed milliseconds, ms, to use for this event. This method is used for testing and debugging code.

Definition at line 146 of file collector.h.

void BeginScope ( const TraceKey _key)
inline

Record a begin event for a scope described by key if Category is enabled.

It is more efficient to use the Scope method than to call both BeginScope and EndScope.

See Also
EndScope
Scope

Definition at line 214 of file collector.h.

void BeginScope ( const TraceKey key,
Args &&...  args 
)
inline

Record a begin event for a scope described by key and a specified category and store data arguments if Category is enabled.

The variadic arguments args must be an even number of parameters in the form TraceKey, Value.

See Also
EndScope
Scope
StoreData

Definition at line 227 of file collector.h.

void BeginScope ( const TraceKey key,
Args &&...  args 
)
inline

Record a begin event for a scope described by key and store data arguments if Category is enabled.

The variadic arguments args must be an even number of parameters in the form TraceKey, Value.

See Also
EndScope
Scope
StoreData

Definition at line 245 of file collector.h.

TRACE_API void Clear ( )

Clear all pending events from the collector.

No TraceCollection will be made for these events.

TRACE_API void CreateCollection ( )

Produces a TraceCollection from all the events that recorded in the collector and issues a TraceCollectionAvailable notice.

Note that creating a collection restarts tracing, i.e. events contained in this collection will not be present in subsequent collections.

TimeStamp EndEvent ( const Key key)
inline

Record an end event with key if Category is enabled.

A matching begin event must have preceded this end event.

If the key is known at compile time EndScope and Scope methods are preferred because they have lower overhead.

Returns
The TimeStamp of the TraceEvent or 0 if the collector is disabled.
See Also
EndScope
Scope

Definition at line 162 of file collector.h.

void EndEventAtTime ( const Key key,
double  ms 
)
inline

Record an end event with key at a specified time if Category is enabled.

This version of the method allows the passing of a specific number of elapsed milliseconds, ms, to use for this event. This method is used for testing and debugging code.

Definition at line 175 of file collector.h.

void EndScope ( const TraceKey key)
inline

Record an end event described by key if Category is enabled.

It is more efficient to use the Scope method than to call both BeginScope and EndScope.

See Also
BeginScope
Scope

Definition at line 260 of file collector.h.

static TRACE_API TraceCollector& GetInstance ( )
inlinestatic

Returns the singleton instance.

Definition at line 84 of file collector.h.

const std::string& GetLabel ( )
inline

Return the label associated with this collector.

Definition at line 386 of file collector.h.

static bool IsEnabled ( )
inlinestatic

Returns whether collection of events is enabled for DefaultCategory.

Definition at line 94 of file collector.h.

TimeStamp MarkerEvent ( const Key key)
inline

Record a marker event with key if Category is enabled.

Unlike begin/end, there is no matching event for marker events

Definition at line 188 of file collector.h.

void MarkerEventAtTime ( const Key key,
double  ms 
)
inline

Record a marker event with key at a specified time if Category is enabled.

This version of the method allows the passing of a specific number of elapsed milliseconds, ms, to use for this event. This method is used for testing and debugging code.

Definition at line 201 of file collector.h.

void MarkerEventStatic ( const TraceKey key)
inline

Record a scope event described by key that started at start if Category is enabled.

This method is used by the TRACE_FUNCTION, TRACE_SCOPE and TRACE_FUNCTION_SCOPE macros.

See Also
BeginScope
EndScope

Definition at line 320 of file collector.h.

void RecordCounterDelta ( const TraceKey key,
double  delta 
)
inline

Record a counter delta for a name key if Category is enabled.

Definition at line 342 of file collector.h.

void RecordCounterDelta ( const Key key,
double  delta 
)
inline

Record a counter delta for a name key if Category is enabled.

Definition at line 354 of file collector.h.

void RecordCounterValue ( const TraceKey key,
double  value 
)
inline

Record a counter value for a name key if Category is enabled.

Definition at line 363 of file collector.h.

void RecordCounterValue ( const Key key,
double  value 
)
inline

Record a counter value for a name key and delta value if Category is enabled.

Definition at line 375 of file collector.h.

void Scope ( const TraceKey key,
TimeStamp  start 
)
inline

Record a scope event described by key that started at start if Category is enabled.

This method is used by the TRACE_FUNCTION, TRACE_SCOPE and TRACE_FUNCTION_SCOPE macros.

See Also
BeginScope
EndScope

Definition at line 274 of file collector.h.

void ScopeArgs ( Args &&...  args)
inline

Record multiple data events with category cat if Category is enabled.

See Also
StoreData

Definition at line 287 of file collector.h.

void ScopeArgs ( Args &&...  args)
inline

Record multiple data events with the default category if collection of events is enabled.

The variadic arguments args must be an even number of parameters in the form TraceKey, Value. It is more efficient to use this method to store multiple data items than to use multiple calls to StoreData.

See Also
StoreData

Definition at line 305 of file collector.h.

TRACE_API void SetEnabled ( bool  isEnabled)

Enables or disables collection of events for DefaultCategory.

void StoreData ( const TraceKey key,
const T &  value 
)
inline

Record a data event with the given key and value if Category is enabled.

value may be of any type which a TraceEvent can be constructed from (bool, int, std::string, uint64, double).

See Also
ScopeArgs

Definition at line 334 of file collector.h.


The documentation for this class was generated from the following file: