mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
Changed to astyle format and added comment
This commit is contained in:
@@ -8,63 +8,86 @@
|
||||
|
||||
namespace BlackCore
|
||||
{
|
||||
/*
|
||||
* Constructor
|
||||
*/
|
||||
CCoreRuntime::CCoreRuntime(bool withDbus, QObject *parent) :
|
||||
QObject(parent), m_init(false), m_dbusServer(nullptr),
|
||||
m_contextNetwork(nullptr), m_contextVoice(nullptr),
|
||||
m_contextSettings(nullptr), m_contextApplication(nullptr)
|
||||
{
|
||||
this->init(withDbus);
|
||||
}
|
||||
|
||||
/*
|
||||
* Init runtime
|
||||
*/
|
||||
void CCoreRuntime::init(bool withDbus)
|
||||
{
|
||||
if (m_init) return;
|
||||
BlackMisc::registerMetadata();
|
||||
BlackMisc::initResources();
|
||||
|
||||
// TODO: read settings
|
||||
if (withDbus)
|
||||
{
|
||||
QString dBusAddress = "session";
|
||||
this->m_dbusServer = new CDBusServer(dBusAddress, this);
|
||||
}
|
||||
|
||||
// contexts
|
||||
this->m_contextSettings = new CContextSettings(this);
|
||||
if (withDbus) this->m_contextSettings->registerWithDBus(this->m_dbusServer);
|
||||
|
||||
this->m_contextNetwork = new CContextNetwork(this);
|
||||
if (withDbus) this->m_contextNetwork->registerWithDBus(this->m_dbusServer);
|
||||
|
||||
this->m_contextApplication = new CContextApplication(this);
|
||||
if (withDbus) this->m_contextApplication->registerWithDBus(this->m_dbusServer);
|
||||
|
||||
this->m_contextVoice = new CContextVoice(this);
|
||||
if (withDbus) this->m_contextVoice->registerWithDBus(this->m_dbusServer);
|
||||
|
||||
// flag
|
||||
m_init = true;
|
||||
}
|
||||
|
||||
IContextNetwork *CCoreRuntime::getIContextNetwork() { return this->m_contextNetwork; }
|
||||
|
||||
const IContextNetwork *CCoreRuntime::getIContextNetwork() const { return this->m_contextNetwork; }
|
||||
|
||||
IContextVoice *CCoreRuntime::getIContextVoice() { return this->m_contextVoice; }
|
||||
|
||||
const IContextVoice *CCoreRuntime::getIContextVoice() const { return this->m_contextVoice; }
|
||||
|
||||
IContextSettings *CCoreRuntime::getIContextSettings() { return this->m_contextSettings; }
|
||||
|
||||
const IContextSettings *CCoreRuntime::getIContextSettings() const { return this->m_contextSettings; }
|
||||
|
||||
const IContextApplication *CCoreRuntime::getIContextApplication() const { return this->m_contextApplication; }
|
||||
|
||||
IContextApplication *CCoreRuntime::getIContextApplication() { return this->m_contextApplication; }
|
||||
/*
|
||||
* Constructor
|
||||
*/
|
||||
CCoreRuntime::CCoreRuntime(bool withDbus, QObject *parent) :
|
||||
QObject(parent), m_init(false), m_dbusServer(nullptr),
|
||||
m_contextNetwork(nullptr), m_contextVoice(nullptr),
|
||||
m_contextSettings(nullptr), m_contextApplication(nullptr)
|
||||
{
|
||||
this->init(withDbus);
|
||||
}
|
||||
|
||||
/*
|
||||
* Init runtime
|
||||
*/
|
||||
void CCoreRuntime::init(bool withDbus)
|
||||
{
|
||||
if (m_init) return;
|
||||
BlackMisc::registerMetadata();
|
||||
BlackMisc::initResources();
|
||||
|
||||
// TODO: read settings
|
||||
if (withDbus) {
|
||||
QString dBusAddress = "session";
|
||||
this->m_dbusServer = new CDBusServer(dBusAddress, this);
|
||||
}
|
||||
|
||||
// contexts
|
||||
this->m_contextSettings = new CContextSettings(this);
|
||||
if (withDbus) this->m_contextSettings->registerWithDBus(this->m_dbusServer);
|
||||
|
||||
this->m_contextNetwork = new CContextNetwork(this);
|
||||
if (withDbus) this->m_contextNetwork->registerWithDBus(this->m_dbusServer);
|
||||
|
||||
this->m_contextApplication = new CContextApplication(this);
|
||||
if (withDbus) this->m_contextApplication->registerWithDBus(this->m_dbusServer);
|
||||
|
||||
this->m_contextVoice = new CContextVoice(this);
|
||||
if (withDbus) this->m_contextVoice->registerWithDBus(this->m_dbusServer);
|
||||
|
||||
// flag
|
||||
m_init = true;
|
||||
}
|
||||
|
||||
IContextNetwork *CCoreRuntime::getIContextNetwork()
|
||||
{
|
||||
return this->m_contextNetwork;
|
||||
}
|
||||
|
||||
const IContextNetwork *CCoreRuntime::getIContextNetwork() const
|
||||
{
|
||||
return this->m_contextNetwork;
|
||||
}
|
||||
|
||||
IContextVoice *CCoreRuntime::getIContextVoice()
|
||||
{
|
||||
return this->m_contextVoice;
|
||||
}
|
||||
|
||||
const IContextVoice *CCoreRuntime::getIContextVoice() const
|
||||
{
|
||||
return this->m_contextVoice;
|
||||
}
|
||||
|
||||
IContextSettings *CCoreRuntime::getIContextSettings()
|
||||
{
|
||||
return this->m_contextSettings;
|
||||
}
|
||||
|
||||
const IContextSettings *CCoreRuntime::getIContextSettings() const
|
||||
{
|
||||
return this->m_contextSettings;
|
||||
}
|
||||
|
||||
const IContextApplication *CCoreRuntime::getIContextApplication() const
|
||||
{
|
||||
return this->m_contextApplication;
|
||||
}
|
||||
|
||||
IContextApplication *CCoreRuntime::getIContextApplication()
|
||||
{
|
||||
return this->m_contextApplication;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,108 +5,109 @@
|
||||
|
||||
namespace BlackCore
|
||||
{
|
||||
class CDBusServer;
|
||||
class CContextNetwork;
|
||||
class CContextVoice;
|
||||
class CContextSettings;
|
||||
class CContextApplication;
|
||||
class IContextNetwork;
|
||||
class IContextVoice;
|
||||
class IContextSettings;
|
||||
class IContextApplication;
|
||||
// forward declaration, see review
|
||||
// https://dev.vatsim-germany.org/boards/22/topics/1350?r=1359#message-1359
|
||||
class CDBusServer;
|
||||
class CContextNetwork;
|
||||
class CContextVoice;
|
||||
class CContextSettings;
|
||||
class CContextApplication;
|
||||
class IContextNetwork;
|
||||
class IContextVoice;
|
||||
class IContextSettings;
|
||||
class IContextApplication;
|
||||
|
||||
/*!
|
||||
* \brief The CCoreRuntime class
|
||||
*/
|
||||
class CCoreRuntime : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
private:
|
||||
bool m_init; /*!< flag */
|
||||
CDBusServer *m_dbusServer;
|
||||
CContextNetwork *m_contextNetwork;
|
||||
CContextVoice *m_contextVoice;
|
||||
CContextSettings *m_contextSettings;
|
||||
CContextApplication *m_contextApplication;
|
||||
|
||||
/*!
|
||||
* \brief The CCoreRuntime class
|
||||
* \brief Init
|
||||
* \param withDbus
|
||||
*/
|
||||
class CCoreRuntime : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
void init(bool withDbus);
|
||||
|
||||
private:
|
||||
bool m_init; /*!< flag */
|
||||
CDBusServer *m_dbusServer;
|
||||
CContextNetwork *m_contextNetwork;
|
||||
CContextVoice *m_contextVoice;
|
||||
CContextSettings *m_contextSettings;
|
||||
CContextApplication *m_contextApplication;
|
||||
public:
|
||||
/*!
|
||||
* \brief Constructor
|
||||
* \param withDbus
|
||||
* \param parent
|
||||
*/
|
||||
CCoreRuntime(bool withDbus = true, QObject *parent = nullptr);
|
||||
|
||||
/*!
|
||||
* \brief Init
|
||||
* \param withDbus
|
||||
*/
|
||||
void init(bool withDbus);
|
||||
/*!
|
||||
* \brief Destructor
|
||||
*/
|
||||
virtual ~CCoreRuntime() {}
|
||||
|
||||
public:
|
||||
/*!
|
||||
* \brief Constructor
|
||||
* \param withDbus
|
||||
* \param parent
|
||||
*/
|
||||
CCoreRuntime(bool withDbus = true, QObject *parent = nullptr);
|
||||
/*!
|
||||
* \brief DBus server
|
||||
* \return
|
||||
*/
|
||||
const CDBusServer *getDBusServer() const {
|
||||
return this->m_dbusServer;
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief Destructor
|
||||
*/
|
||||
virtual ~CCoreRuntime() {}
|
||||
/*!
|
||||
* \brief Context for network
|
||||
* \return
|
||||
*/
|
||||
IContextNetwork *getIContextNetwork();
|
||||
|
||||
/*!
|
||||
* \brief DBus server
|
||||
* \return
|
||||
*/
|
||||
const CDBusServer *getDBusServer() const
|
||||
{
|
||||
return this->m_dbusServer;
|
||||
}
|
||||
/*!
|
||||
* \brief Context for network
|
||||
* \return
|
||||
*/
|
||||
const IContextNetwork *getIContextNetwork() const;
|
||||
|
||||
/*!
|
||||
* \brief Context for network
|
||||
* \return
|
||||
*/
|
||||
IContextNetwork *getIContextNetwork();
|
||||
/*!
|
||||
* \brief Context for network
|
||||
* \return
|
||||
*/
|
||||
IContextVoice *getIContextVoice();
|
||||
|
||||
/*!
|
||||
* \brief Context for network
|
||||
* \return
|
||||
*/
|
||||
const IContextNetwork *getIContextNetwork() const;
|
||||
|
||||
/*!
|
||||
* \brief Context for network
|
||||
* \return
|
||||
*/
|
||||
IContextVoice *getIContextVoice();
|
||||
|
||||
/*!
|
||||
* \brief Context for network
|
||||
* \return
|
||||
*/
|
||||
const IContextVoice *getIContextVoice() const;
|
||||
/*!
|
||||
* \brief Context for network
|
||||
* \return
|
||||
*/
|
||||
const IContextVoice *getIContextVoice() const;
|
||||
|
||||
|
||||
/*!
|
||||
* \brief Settings
|
||||
* \return
|
||||
*/
|
||||
IContextSettings *getIContextSettings();
|
||||
/*!
|
||||
* \brief Settings
|
||||
* \return
|
||||
*/
|
||||
IContextSettings *getIContextSettings();
|
||||
|
||||
/*!
|
||||
* \brief Settings
|
||||
* \return
|
||||
*/
|
||||
const IContextSettings *getIContextSettings() const;
|
||||
/*!
|
||||
* \brief Settings
|
||||
* \return
|
||||
*/
|
||||
const IContextSettings *getIContextSettings() const;
|
||||
|
||||
/*!
|
||||
* \brief Context for application
|
||||
* \return
|
||||
*/
|
||||
const IContextApplication *getIContextApplication() const;
|
||||
/*!
|
||||
* \brief Context for application
|
||||
* \return
|
||||
*/
|
||||
const IContextApplication *getIContextApplication() const;
|
||||
|
||||
/*!
|
||||
* \brief Application
|
||||
* \return
|
||||
*/
|
||||
IContextApplication *getIContextApplication();
|
||||
/*!
|
||||
* \brief Application
|
||||
* \return
|
||||
*/
|
||||
IContextApplication *getIContextApplication();
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
#endif // guard
|
||||
|
||||
Reference in New Issue
Block a user