VideoTools
|
An abstract base class for a singleton that keeps track of open sockets and their associated handlers. More...
#include <geventloop.h>
Classes | |
struct | Running |
RAII class that sets a boolean, for implementations of run()/running(). More... | |
Public Member Functions | |
virtual | ~EventLoop () |
Destructor. | |
virtual std::string | run ()=0 |
Runs the main event loop. More... | |
virtual bool | running () const =0 |
Returns true if called from within run(). | |
virtual void | quit (std::string reason)=0 |
Causes run() to return (once the call stack has unwound). More... | |
virtual void | quit (const G::SignalSafe &)=0 |
A signal-safe overload to quit() the event loop. | |
virtual void | addRead (Descriptor fd, EventHandler &handler)=0 |
Adds the given event source descriptor and associated handler to the read list. More... | |
virtual void | addWrite (Descriptor fd, EventHandler &handler)=0 |
Adds the given event source descriptor and associated handler to the write list. More... | |
virtual void | addException (Descriptor fd, EventHandler &handler)=0 |
Adds the given event source descriptor and associated handler to the exception list. More... | |
virtual void | dropRead (Descriptor fd)=0 |
Removes the given event source descriptor from the list of read sources. More... | |
virtual void | dropWrite (Descriptor fd)=0 |
Removes the given event source descriptor from the list of write sources. More... | |
virtual void | dropException (Descriptor fd)=0 |
Removes the given event source descriptor from the list of exception sources. More... | |
virtual void | setTimeout (G::EpochTime t)=0 |
Used by GNet::TimerList. More... | |
virtual std::string | report () const =0 |
Returns a line of text reporting the status of the event loop. More... | |
Static Public Member Functions | |
static EventLoop * | create () |
A factory method which creates an instance of a derived class on the heap. More... | |
static EventLoop & | instance () |
Returns a reference to an instance of the class, if any. More... | |
static bool | exists () |
Returns true if an instance exists. | |
static void | stop (const G::SignalSafe &) |
Calls quit() on instance(). | |
Protected Member Functions | |
EventLoop () | |
Constructor. | |
An abstract base class for a singleton that keeps track of open sockets and their associated handlers.
Derived classes are used to implement different event loops, such as select() or WinSock.
In practice sockets are added and removed from the class by calling GNet::Socket::addReadHandler() etc rather than EventLoop::addRead(). This is to improve the encapsulation of the GNet::Descriptor data type within Socket.
The class has a static member for finding an instance, but instances are not created automatically.
Definition at line 52 of file geventloop.h.
|
pure virtual |
Adds the given event source descriptor and associated handler to the exception list.
See also Socket::addExceptionHandler().
|
pure virtual |
Adds the given event source descriptor and associated handler to the read list.
See also Socket::addReadHandler().
|
pure virtual |
Adds the given event source descriptor and associated handler to the write list.
See also Socket::addWriteHandler().
|
static |
A factory method which creates an instance of a derived class on the heap.
Throws on error.
|
pure virtual |
Removes the given event source descriptor from the list of exception sources.
See also Socket::dropExceptionHandler().
|
pure virtual |
Removes the given event source descriptor from the list of read sources.
See also Socket::dropReadHandler().
|
pure virtual |
Removes the given event source descriptor from the list of write sources.
See also Socket::dropWriteHandler().
|
static |
Returns a reference to an instance of the class, if any.
Throws if none. Does not do any instantiation itself.
Definition at line 43 of file geventloop.cpp.
|
pure virtual |
|
pure virtual |
Returns a line of text reporting the status of the event loop.
Used in debugging and diagnostics.
|
pure virtual |
Runs the main event loop.
Returns a quit() reason, if any.
|
pure virtual |
Used by GNet::TimerList.
Sets the absolute time at which TimerList::doTimeouts() is to be called. A zero time is used if there are no active timers.