Lumiera
0.pre.03
»edit your freedom«
|
Definition at line 99 of file facade.cpp.
Private Member Functions | |
bool | checkRunningState () noexcept override |
whether this subsystem is actually operational. More... | |
operator string () const | |
a human readable name | |
bool | shouldStart (Option &) override |
determine, if any output system is required to start up explicitly. More... | |
bool | start (Option &, Subsys::SigTerm termination) override |
attempt to bring up this subsystem up. More... | |
void | triggerShutdown () noexcept override |
initiate termination of this subsystem. More... | |
Private Attributes | |
SigTerm | completedSignal_ |
Additional Inherited Members | |
Public Types inherited from Subsys | |
typedef function< void(string *)> | SigTerm |
Public Member Functions inherited from Subsys | |
Subsys & | depends (Subsys &prereq) |
define a dependency to another Subsys required for running this subsystem | |
const std::vector< Subsys * > | getPrerequisites () |
bool | isRunning () noexcept |
|
inlineoverrideprivatevirtual |
determine, if any output system is required to start up explicitly.
Moreover, extract configuration variations for specific kinds of output
Implements Subsys.
Definition at line 112 of file facade.cpp.
|
inlineoverrideprivatevirtual |
attempt to bring up this subsystem up.
On return, the subsystem must be operational, according to checkRunningState(). Failure to start up usually terminates the whole application. When this subsystem ceases to work, it must ensure to activate the given callback signal.
options | may be influencing the operation mode |
SigTerm | to be signalled by the subsystem. |
true
if actually started. Implements Subsys.
Definition at line 119 of file facade.cpp.
References OutputDirector::instance.
|
inlineoverrideprivatevirtualnoexcept |
initiate termination of this subsystem.
This trigger may be called repeatedly any time... When the subsystem actually has terminated, the SigTerm passed to start must be invoked.
Implements Subsys.
Definition at line 129 of file facade.cpp.
References OutputDirector::instance.
|
inlineoverrideprivatevirtualnoexcept |
whether this subsystem is actually operational.
When returning false
here, the application may terminate at any point without further notice Note further, that a subsystem must not be in running state when signalling termination.
Implements Subsys.
Definition at line 136 of file facade.cpp.
References OutputDirector::instance.