![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This mostly concrete interface defines the operations that can be performed on a software timer. More...
This mostly concrete interface defines the operations that can be performed on a software timer.
Software timers execute 'in-thread' in that all operations (start, timer expired callbacks, etc.) are performed in a single thread.
Because the timer context (i.e. the timer owner), timer methods and callbacks all occur in the same thread, the timer context will never receive a timer expired callback AFTER the timer's stop() method has been called.
NOTES: o The timer context must implement the following method: virtual void expired( void ) noexcept;
o Because the timing source of an individual thread may NOT be a clean divider of the timer duration, the timer duration is taken as the minimum. For example: if the timing source has a resolution of 20msec per count, and the timer duration on the start() timer call is 5 msec, then the timer will expire after the next full count, i.e. after 20msec, not 5msec. IT IS THE APPLICATION'S RESPONSIBILITY TO MANAGE THE RESOLUTION OF THE TIMING SOURCES.
#include <Timer.h>
Public Member Functions | |
Timer (TimerManager &timingSource) | |
Constructor | |
Timer () | |
Constructor. Alternate constructor - that defers the assignment of the timing source | |
virtual void | start (unsigned long timerDurationInMilliseconds) noexcept |
Starts the timer with an initial count down count duration of 'timerDurationInMilliseconds'. | |
virtual void | stop () noexcept |
Stops the timer. | |
unsigned long | count () const noexcept |
Returns the current count (in milliseconds) | |
virtual void | setTimingSource (TimerManager &timingSource) noexcept |
Sets the timing source. | |
![]() | |
virtual void | expired (void) noexcept=0 |
Notification of the count reaching zero. | |
virtual | ~CounterCallback_ () |
Virtual Destructor. | |
![]() | |
bool | insert_ (void *newContainerPtr) |
Helper method to trap when inserting an item in multiple containers. | |
bool | isInContainer_ (const void *containerPtr) const noexcept |
Returns 'true' if the instance is in the specified container. | |
Protected Member Functions | |
void | decrement (unsigned long milliseconds=1) noexcept |
See Cpl::System::CounterCallback_. | |
void | increment (unsigned long milliseconds) noexcept |
See Cpl::System::CounterCallback_. | |
![]() | |
ExtendedItem () | |
Constructor. | |
ExtendedItem (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
Protected Attributes | |
TimerManager * | m_timingSource |
The timer's tick source. | |
unsigned long | m_count |
Current count. | |
Additional Inherited Members | |
![]() | |
static void | remove_ (Item *itemPtr) noexcept |
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container. | |
![]() | |
void * | m_prevPtr_ |
The previous link field. | |
![]() | |
void * | m_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
Cpl::System::Timer::Timer | ( | TimerManager & | timingSource | ) |
Constructor
Cpl::System::Timer::Timer | ( | ) |
Constructor. Alternate constructor - that defers the assignment of the timing source
|
virtualnoexcept |
Returns the current count (in milliseconds)
Implements Cpl::System::CounterCallback_.
|
protectedvirtualnoexcept |
See Cpl::System::CounterCallback_.
Implements Cpl::System::CounterCallback_.
|
protectedvirtualnoexcept |
See Cpl::System::CounterCallback_.
Implements Cpl::System::CounterCallback_.
|
virtualnoexcept |
Sets the timing source.
This method CAN ONLY BE CALLED when the timer is has never been started or it has been stopped
|
virtualnoexcept |
Starts the timer with an initial count down count duration of 'timerDurationInMilliseconds'.
If the timer is currently running, the timer is first stopped, and then restarted.
|
virtualnoexcept |
Stops the timer.
It is okay to call stop() even after the timer has previously expired or explicitly stopped.
Reimplemented in Cpl::Dm::Persistent::Record.
|
protected |
Current count.
|
protected |
The timer's tick source.