1#ifndef Cpl_System_EventLoop_h_
2#define Cpl_System_EventLoop_h_
25#ifndef OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD
26#define OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD 1
168 void notify( uint8_t eventNumber ) noexcept;
#define Cpl_System_EventFlag_T
Default the Event Flags data type to 32 Events flags.
Definition EventFlag.h:20
#define OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD
Specifies the default timeout period for waiting on a event.
Definition EventLoop.h:26
This abstract class defines the interface to generated a 'Event Flag'.
Definition EventFlag.h:44
This concrete class is a Runnable object that provides a event driven execution model for a thread.
Definition EventLoop.h:52
unsigned long m_timeout
Timeout period for waiting on the next event.
Definition EventLoop.h:191
bool m_run
Flag used to help with the pleaseStop() request.
Definition EventLoop.h:200
EventLoop(unsigned long timeOutPeriodInMsec=OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD, SharedEventHandlerApi *eventHandler=0)
Constructor.
Cpl::System::Semaphore m_sema
Semaphore associated with the mailbox (note: the Thread semaphore is NOT used)
Definition EventLoop.h:188
int su_signal(void) noexcept
See Cpl::System::Signable.
void su_notifyEvents(Cpl_System_EventFlag_T events) noexcept
See Cpl::System::EventFlag.
unsigned long m_timeStartOfLoop
Timestamp, in milliseconds, of start of event/wait loop.
Definition EventLoop.h:194
void notify(uint8_t eventNumber) noexcept
See Cpl::System::EventFlag.
void notifyEvents(Cpl_System_EventFlag_T events) noexcept
See Cpl::System::EventFlag.
void setThreadOfExecution_(Thread *myThreadPtr)
See Cpl::System::Runnable.
virtual void startEventLoop() noexcept
This method is used to initialize the Event Loop's thread has started to executed.
Cpl_System_EventFlag_T m_events
The variable holds the current state of all Event Flags.
Definition EventLoop.h:197
void pleaseStop()
See Cpl::System::Runnable.
virtual bool waitAndProcessEvents(bool skipWait=false) noexcept
This method is used to wait (and process) the next event(s).
Thread * m_myThreadPtr
A pointer to the thread the Event Loop executes in.
Definition EventLoop.h:182
int signal(void) noexcept
See Cpl::System::Signable.
virtual ~EventLoop()
Virtual destructor.
Definition EventLoop.h:67
virtual void stopEventLoop() noexcept
This method is used to clean-up the Event Loop's when the thread is being stopped.
void appRun()
See Cpl::System::Runnable.
virtual void processEventFlag(uint8_t eventNumber) noexcept
This method is used (by the concrete child class(es)) to process one or more Event Flags.
void su_notify(uint8_t eventNumber) noexcept
See Cpl::System::EventFlag.
SharedEventHandlerApi * m_eventHandler
My shared event handler (if I have one)
Definition EventLoop.h:185
This is an abstract class defines the interface for an object that is "executed" when a Thread object...
Definition Runnable.h:29
This semaphore class defines the interface for a Counting Semaphore.
Definition Semaphore.h:37
This abstract class defines the interface for a Shared Event Handler.
Definition SharedEventHandler.h:30
This abstract class defines the interface by which a client can cause an object that is waiting-on-a-...
Definition Signable.h:28
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
This mostly concrete class implements manages a list of Software Timers.
Definition TimerManager.h:36
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20