#include <GenericEventHandler.hpp>
Static Public Member Functions | |
static GenericEventHandler < NUM_EVENTS, CONCRETE > * | Instance () |
static void | Reset () |
static void | BeginEvent (unsigned event) throw (Exception) |
static void | EndEvent (unsigned event) |
static double | GetElapsedTime (unsigned event) |
static void | Report () |
static void | Headings () |
static void | Enable () |
static void | Disable () |
static bool | IsEnabled () |
Protected Member Functions | |
GenericEventHandler () | |
Private Member Functions | |
double | ConvertWallTimeToMilliseconds (double wallTime) |
double | ConvertWallTimeToSeconds (double wallTime) |
void | ResetImpl () |
void | BeginEventImpl (unsigned event) throw (Exception) |
void | EndEventImpl (unsigned event) |
double | GetElapsedTimeImpl (unsigned event) |
void | ReportImpl () |
void | HeadingsImpl () |
void | EnableImpl () |
void | DisableImpl () |
bool | IsEnabledImpl () |
Static Private Member Functions | |
static void | MilliSleep (unsigned milliseconds) |
Private Attributes | |
std::vector< double > | mWallTime |
std::vector< bool > | mHasBegun |
bool | mEnabled |
bool | mInUse |
Friends | |
class | TestGenericEventHandler |
class | TestCellBasedEventHandler |
class | TestHeartEventHandler |
A generic base class providing the functionality for timing various events. Subclasses provide the event codes and names; see HeartEventHandler for an example.
Note: this class assume that, for any given concrete class, the last event represents the total time, and thus wraps all other events.
The methods in this class are not implemented separately as then they would not be inline, which could impact performance; we generally want timing routines to be very lightweight.
Definition at line 58 of file GenericEventHandler.hpp.
GenericEventHandler< NUM_EVENTS, CONCRETE >::GenericEventHandler | ( | ) | [inline, protected] |
Default constructor.
Definition at line 208 of file GenericEventHandler.hpp.
static void GenericEventHandler< NUM_EVENTS, CONCRETE >::BeginEvent | ( | unsigned | event | ) | throw (Exception) [inline, static] |
Record the start of an event.
event | the index of an event (this must be less than NUM_EVENTS) |
Definition at line 133 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::BeginEventImpl().
void GenericEventHandler< NUM_EVENTS, CONCRETE >::BeginEventImpl | ( | unsigned | event | ) | throw (Exception) [inline, private] |
Record the start of an event.
event | the index of an event (this must be less than NUM_EVENTS) |
Definition at line 237 of file GenericEventHandler.hpp.
double GenericEventHandler< NUM_EVENTS, CONCRETE >::ConvertWallTimeToMilliseconds | ( | double | wallTime | ) | [inline, private] |
Convert a wall clock time to milliseconds.
wallTime | the wall time |
Definition at line 93 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::GetElapsedTimeImpl().
double GenericEventHandler< NUM_EVENTS, CONCRETE >::ConvertWallTimeToSeconds | ( | double | wallTime | ) | [inline, private] |
Convert a wall clock time to seconds. (Identity function in this implementation.)
wallTime | the wall time |
Definition at line 104 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::ReportImpl().
static void GenericEventHandler< NUM_EVENTS, CONCRETE >::Disable | ( | ) | [inline, static] |
Disable the event handler, so that event durations are no longer recorded.
Definition at line 190 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::BeginEventImpl().
void GenericEventHandler< NUM_EVENTS, CONCRETE >::DisableImpl | ( | ) | [inline, private] |
Disable the event handler, so that event durations are no longer recorded.
Definition at line 461 of file GenericEventHandler.hpp.
static void GenericEventHandler< NUM_EVENTS, CONCRETE >::Enable | ( | ) | [inline, static] |
Enable the event handler so that it will record event durations.
Definition at line 184 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::ResetImpl().
void GenericEventHandler< NUM_EVENTS, CONCRETE >::EnableImpl | ( | ) | [inline, private] |
Enable the event handler so that it will record event durations.
Definition at line 455 of file GenericEventHandler.hpp.
static void GenericEventHandler< NUM_EVENTS, CONCRETE >::EndEvent | ( | unsigned | event | ) | [inline, static] |
Record the ending of an event.
event | the index of an event (this must be less than NUM_EVENTS) |
Definition at line 143 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::ReportImpl().
void GenericEventHandler< NUM_EVENTS, CONCRETE >::EndEventImpl | ( | unsigned | event | ) | [inline, private] |
Record the ending of an event.
event | the index of an event (this must be less than NUM_EVENTS) |
Definition at line 277 of file GenericEventHandler.hpp.
static double GenericEventHandler< NUM_EVENTS, CONCRETE >::GetElapsedTime | ( | unsigned | event | ) | [inline, static] |
Will automatically determine if the event is currently ongoing or not.
event | the index of an event (this must be less than NUM_EVENTS) |
Definition at line 155 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::MilliSleep().
double GenericEventHandler< NUM_EVENTS, CONCRETE >::GetElapsedTimeImpl | ( | unsigned | event | ) | [inline, private] |
Will automatically determine if the event is currently ongoing or not.
event | the index of an event (this must be less than NUM_EVENTS) |
Definition at line 307 of file GenericEventHandler.hpp.
static void GenericEventHandler< NUM_EVENTS, CONCRETE >::Headings | ( | ) | [inline, static] |
Output the headings for a report.
Definition at line 176 of file GenericEventHandler.hpp.
void GenericEventHandler< NUM_EVENTS, CONCRETE >::HeadingsImpl | ( | ) | [inline, private] |
Output the headings for a report.
Definition at line 432 of file GenericEventHandler.hpp.
static GenericEventHandler<NUM_EVENTS, CONCRETE>* GenericEventHandler< NUM_EVENTS, CONCRETE >::Instance | ( | ) | [inline, static] |
Definition at line 114 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::BeginEvent(), GenericEventHandler< 11, MeshEventHandler >::Disable(), GenericEventHandler< 11, MeshEventHandler >::Enable(), GenericEventHandler< 11, MeshEventHandler >::EndEvent(), GenericEventHandler< 11, MeshEventHandler >::GetElapsedTime(), GenericEventHandler< 11, MeshEventHandler >::Headings(), GenericEventHandler< 11, MeshEventHandler >::IsEnabled(), GenericEventHandler< 11, MeshEventHandler >::Report(), and GenericEventHandler< 11, MeshEventHandler >::Reset().
static bool GenericEventHandler< NUM_EVENTS, CONCRETE >::IsEnabled | ( | ) | [inline, static] |
Check whether the event handler is enabled.
Definition at line 198 of file GenericEventHandler.hpp.
bool GenericEventHandler< NUM_EVENTS, CONCRETE >::IsEnabledImpl | ( | ) | [inline, private] |
Check whether the event handler is enabled.
Definition at line 469 of file GenericEventHandler.hpp.
static void GenericEventHandler< NUM_EVENTS, CONCRETE >::MilliSleep | ( | unsigned | milliseconds | ) | [inline, static, private] |
Sleep for a specified number of milliseconds. Used in testing. Ought to be more portable than sleep() or usleep().
milliseconds | minimum number of milliseconds for which to sleep (ought to be a multiple of 10) |
Definition at line 78 of file GenericEventHandler.hpp.
static void GenericEventHandler< NUM_EVENTS, CONCRETE >::Report | ( | ) | [inline, static] |
Print a report on the timed events and reset the handler.
Assumes all events have ended.
If there is a collection of processes then the report will include an average and maximum over all CPUs.
Definition at line 168 of file GenericEventHandler.hpp.
void GenericEventHandler< NUM_EVENTS, CONCRETE >::ReportImpl | ( | ) | [inline, private] |
Print a report on the timed events and reset the handler.
Assumes all events have ended.
If there is a collection of processes then the report will include an average and maximum over all CPUs.
Definition at line 334 of file GenericEventHandler.hpp.
static void GenericEventHandler< NUM_EVENTS, CONCRETE >::Reset | ( | ) | [inline, static] |
Reset the event handler - set all event durations to zero.
Definition at line 123 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::ReportImpl().
void GenericEventHandler< NUM_EVENTS, CONCRETE >::ResetImpl | ( | ) | [inline, private] |
Reset the event handler - set all event durations to zero.
Definition at line 221 of file GenericEventHandler.hpp.
bool GenericEventHandler< NUM_EVENTS, CONCRETE >::mEnabled [private] |
Whether the event handler is recording event times
Definition at line 68 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::BeginEventImpl(), GenericEventHandler< 11, MeshEventHandler >::DisableImpl(), GenericEventHandler< 11, MeshEventHandler >::EnableImpl(), GenericEventHandler< 11, MeshEventHandler >::EndEventImpl(), GenericEventHandler< 11, MeshEventHandler >::GenericEventHandler(), GenericEventHandler< 11, MeshEventHandler >::GetElapsedTimeImpl(), GenericEventHandler< 11, MeshEventHandler >::IsEnabledImpl(), and GenericEventHandler< 11, MeshEventHandler >::ReportImpl().
std::vector<bool> GenericEventHandler< NUM_EVENTS, CONCRETE >::mHasBegun [private] |
Whether each event is in progress
Definition at line 67 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::BeginEventImpl(), GenericEventHandler< 11, MeshEventHandler >::EndEventImpl(), GenericEventHandler< 11, MeshEventHandler >::GenericEventHandler(), GenericEventHandler< 11, MeshEventHandler >::GetElapsedTimeImpl(), GenericEventHandler< 11, MeshEventHandler >::ReportImpl(), and GenericEventHandler< 11, MeshEventHandler >::ResetImpl().
bool GenericEventHandler< NUM_EVENTS, CONCRETE >::mInUse [private] |
Determines if any of the event have begun
Definition at line 69 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::BeginEventImpl(), GenericEventHandler< 11, MeshEventHandler >::GenericEventHandler(), GenericEventHandler< 11, MeshEventHandler >::ReportImpl(), and GenericEventHandler< 11, MeshEventHandler >::ResetImpl().
std::vector<double> GenericEventHandler< NUM_EVENTS, CONCRETE >::mWallTime [private] |
Wall time assigned to each event
Definition at line 66 of file GenericEventHandler.hpp.
Referenced by GenericEventHandler< 11, MeshEventHandler >::BeginEventImpl(), GenericEventHandler< 11, MeshEventHandler >::EndEventImpl(), GenericEventHandler< 11, MeshEventHandler >::GenericEventHandler(), GenericEventHandler< 11, MeshEventHandler >::GetElapsedTimeImpl(), GenericEventHandler< 11, MeshEventHandler >::ReportImpl(), and GenericEventHandler< 11, MeshEventHandler >::ResetImpl().