Enroute Flight Navigation
A navigation app for VFR pilots
|
Base class for global singleton objects. More...
#include <GlobalObject.h>
Public Member Functions | |
GlobalObject (QObject *parent=nullptr) | |
Standard constructor. | |
~GlobalObject () override=default | |
Standard deconstructor. | |
Static Public Member Functions | |
static void | clear () |
Deletes all globally defined objects. | |
static Q_INVOKABLE bool | canConstruct () |
Indicates if the static methods are ready to be used. | |
static Q_INVOKABLE Navigation::Clock * | clock () |
Pointer to appplication-wide static Navigation::Clock instance. | |
static Q_INVOKABLE DataManagement::DataManager * | dataManager () |
Pointer to appplication-wide static GeoMaps::DataManager instance. | |
static Q_INVOKABLE DemoRunner * | demoRunner () |
Pointer to appplication-wide static DemoRunner instance. | |
static Q_INVOKABLE Traffic::FlarmnetDB * | flarmnetDB () |
Pointer to appplication-wide static FlarmnetDB instance. | |
static Q_INVOKABLE Platform::FileExchange_Abstract * | fileExchange () |
Pointer to appplication-wide static FileExchange instance. | |
static Q_INVOKABLE GeoMaps::GeoMapProvider * | geoMapProvider () |
Pointer to appplication-wide static GeoMaps::GeoMapProvider instance. | |
static Q_INVOKABLE GlobalSettings * | globalSettings () |
Pointer to appplication-wide static Settings instance. | |
static Q_INVOKABLE Librarian * | librarian () |
Pointer to appplication-wide static librarian instance. | |
static Q_INVOKABLE Platform::PlatformAdaptor_Abstract * | platformAdaptor () |
Pointer to appplication-wide static PlatformAdaptor instance. | |
static Q_INVOKABLE Sensors * | sensors () |
Pointer to appplication-wide static Navigation::Clock instance. | |
static Q_INVOKABLE Navigation::Navigator * | navigator () |
Pointer to appplication-wide static Navigation::Navigator instance. | |
static Q_INVOKABLE Traffic::PasswordDB * | passwordDB () |
Pointer to appplication-wide static PasswordDB instance. | |
static Q_INVOKABLE Positioning::PositionProvider * | positionProvider () |
Pointer to appplication-wide static PositionProvider instance. | |
static Q_INVOKABLE NOTAM::NOTAMProvider * | notamProvider () |
Pointer to appplication-wide static notification manager instance. | |
static Q_INVOKABLE Notifications::NotificationManager * | notificationManager () |
Pointer to appplication-wide static notification manager instance. | |
static Q_INVOKABLE QNetworkAccessManager * | networkAccessManager () |
Pointer to appplication-wide static QNetworkAccessManager instance. | |
static Q_INVOKABLE DataManagement::SSLErrorHandler * | sslErrorHandler () |
Pointer to appplication-wide static QNetworkAccessManager instance. | |
static Q_INVOKABLE Traffic::TrafficDataProvider * | trafficDataProvider () |
Pointer to appplication-wide static TrafficDataProvider instance. | |
static Q_INVOKABLE GeoMaps::WaypointLibrary * | waypointLibrary () |
Pointer to appplication-wide static WaypointLibrary instance. | |
static Q_INVOKABLE Weather::WeatherDataProvider * | weatherDataProvider () |
Pointer to appplication-wide static WeatherDataProvider instance. | |
Protected Member Functions | |
virtual void | deferredInitialization () |
Non-constructor initialization. | |
Base class for global singleton objects.
This is the base class for static instances of classes that are used throughout the application. The instances are constructed lazily at runtime, whenever the appropriate methods are called. They are children of the QCoreApplication object and deleted along with this object.
Although all relevant methods are static, it is possible to construct an instance of this class, which allows to use this class from QML.
The static methods return pointers to application-wide static objects. They must only be called while a global QCoreApplication instance exists. If these conditions are satisfied, the pointers returned are guaranteed to be valid. The instances are owned by this class and must not be deleted. QML ownership has been set to QQmlEngine::CppOwnership.
Objects that inherit from this class MUST NOT call any of the static methods from their constructors. Instead, the method deferredInitialization() can be used, which is called immediately after the constructor returns.
The methods in this class are reentrant, but not thread safe.
Definition at line 106 of file GlobalObject.h.
|
explicit |
Standard constructor.
parent | The standard QObject parent pointer |
|
overridedefault |
Standard deconstructor.
This destructor will destruct all application-wide static instances managed by this class.
|
static |
Indicates if the static methods are ready to be used.
This is relevant for C++ code that is called from Android, often at unexpected times (during startup, …). This code should check that the GlobalObject class is ready before using it.
|
static |
Deletes all globally defined objects.
This method will delete all globally defined objects in the correct order.
|
static |
Pointer to appplication-wide static Navigation::Clock instance.
|
static |
Pointer to appplication-wide static GeoMaps::DataManager instance.
|
inlineprotectedvirtual |
Non-constructor initialization.
This method is called by the static methods that create global instances immediately after the constructor returns. This class can be re-implemented to perform initialization steps that refer to other singleton objects.
Reimplemented in DataManagement::DataManager, GeoMaps::GeoMapProvider, Navigation::Navigator, NOTAM::NOTAMProvider, Notifications::NotificationManager, Platform::FileExchange, Platform::FileExchange, Platform::FileExchange, Platform::FileExchange, Platform::FileExchange, Platform::PlatformAdaptor, and Sensors.
Definition at line 270 of file GlobalObject.h.
|
static |
Pointer to appplication-wide static DemoRunner instance.
|
static |
Pointer to appplication-wide static FileExchange instance.
|
static |
Pointer to appplication-wide static FlarmnetDB instance.
|
static |
Pointer to appplication-wide static GeoMaps::GeoMapProvider instance.
|
static |
Pointer to appplication-wide static Settings instance.
|
static |
Pointer to appplication-wide static librarian instance.
|
static |
Pointer to appplication-wide static Navigation::Navigator instance.
|
static |
Pointer to appplication-wide static QNetworkAccessManager instance.
|
static |
Pointer to appplication-wide static notification manager instance.
|
static |
Pointer to appplication-wide static notification manager instance.
|
static |
Pointer to appplication-wide static PasswordDB instance.
|
static |
Pointer to appplication-wide static PlatformAdaptor instance.
|
static |
Pointer to appplication-wide static PositionProvider instance.
|
static |
Pointer to appplication-wide static Navigation::Clock instance.
|
static |
Pointer to appplication-wide static QNetworkAccessManager instance.
|
static |
Pointer to appplication-wide static TrafficDataProvider instance.
|
static |
Pointer to appplication-wide static WaypointLibrary instance.
|
static |
Pointer to appplication-wide static WeatherDataProvider instance.