mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 00:16:51 +08:00
* missing exports for new classes * public non virtual convertToQString, propertyByIndex * removed left-over of watchdog * virtual destructor for avionicsbase.h
This commit is contained in:
committed by
Mathew Sutcliffe
parent
e7f65ba0b6
commit
f18cfed087
@@ -12,6 +12,7 @@
|
||||
#ifndef BLACKCORE_AIRSPACE_ANALYZER_H
|
||||
#define BLACKCORE_AIRSPACE_ANALYZER_H
|
||||
|
||||
#include "blackcore/blackcoreexport.h"
|
||||
#include "blackcore/network.h"
|
||||
#include "blackmisc/simulation/airspaceaircraftsnapshot.h"
|
||||
#include "blackmisc/simulation/remoteaircraftprovider.h"
|
||||
@@ -31,7 +32,7 @@ namespace BlackCore
|
||||
//! clients nearby. The server does not take care of that. When a client crashes, no delete packet is ever sent. This class therefore monitors callsigns and emits a timeout signal if it
|
||||
//! wasn't resetted during the specified timeout value.
|
||||
//!
|
||||
class CAirspaceAnalyzer :
|
||||
class BLACKCORE_EXPORT CAirspaceAnalyzer :
|
||||
public BlackMisc::CContinuousWorker,
|
||||
public BlackMisc::Simulation::COwnAircraftAware,
|
||||
public BlackMisc::Simulation::CRemoteAircraftAware
|
||||
|
||||
@@ -12,7 +12,11 @@
|
||||
#ifndef BLACKCORE_AIRSPACE_MONITOR_H
|
||||
#define BLACKCORE_AIRSPACE_MONITOR_H
|
||||
|
||||
#include "blackcoreexport.h"
|
||||
#include "blackcore/blackcoreexport.h"
|
||||
#include "blackcore/network.h"
|
||||
#include "blackcore/vatsimbookingreader.h"
|
||||
#include "blackcore/vatsimdatafilereader.h"
|
||||
#include "airspace_analyzer.h"
|
||||
#include "blackmisc/simulation/simulatedaircraftlist.h"
|
||||
#include "blackmisc/simulation/ownaircraftprovider.h"
|
||||
#include "blackmisc/simulation/remoteaircraftprovider.h"
|
||||
@@ -22,10 +26,6 @@
|
||||
#include "blackmisc/aviation/flightplan.h"
|
||||
#include "blackmisc/network/userlist.h"
|
||||
#include "blackmisc/aviation/callsignset.h"
|
||||
#include "network.h"
|
||||
#include "vatsimbookingreader.h"
|
||||
#include "vatsimdatafilereader.h"
|
||||
#include "airspace_analyzer.h"
|
||||
|
||||
namespace BlackCore
|
||||
{
|
||||
|
||||
@@ -1,83 +0,0 @@
|
||||
/* Copyright (C) 2014
|
||||
* swift project Community / Contributors
|
||||
*
|
||||
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
||||
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
||||
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
||||
* contained in the LICENSE file.
|
||||
*/
|
||||
|
||||
//! \file
|
||||
|
||||
#ifndef BLACKCORE_AIRSPACE_WATCHDOG_H
|
||||
#define BLACKCORE_AIRSPACE_WATCHDOG_H
|
||||
|
||||
#include "blackcoreexport.h"
|
||||
#include "blackmisc/pq/time.h"
|
||||
#include "blackmisc/aviation/callsign.h"
|
||||
#include <QObject>
|
||||
#include <QHash>
|
||||
|
||||
namespace BlackCore
|
||||
{
|
||||
|
||||
/*!
|
||||
* CAirspaceWatchdog monitores any added callsign, if it has timed out.
|
||||
*
|
||||
* This class was introduced due to a flaw in the VATSIM server implementation:
|
||||
* Every client needs to send an add/delete packet on its own to inform other
|
||||
* clients nearby. The server does not take care of that. When a client crashes,
|
||||
* no delete packet is ever sent. This class therefore monitors callsigns and
|
||||
* emits a timeout signal if it wasn't resetted during the specified timeout
|
||||
* value.
|
||||
*/
|
||||
class BLACKCORE_EXPORT CAirspaceWatchdog : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
//! Default constructor
|
||||
CAirspaceWatchdog(QObject *parent);
|
||||
|
||||
//! Constructor
|
||||
CAirspaceWatchdog(const BlackMisc::PhysicalQuantities::CTime & initialTimeOut, QObject *parent);
|
||||
|
||||
//! Sets the maximum time, after a client is considered timed out
|
||||
void setTimeout(const BlackMisc::PhysicalQuantities::CTime &value) { m_timeout = value; }
|
||||
|
||||
//! Returns the currently configured timeout value
|
||||
const BlackMisc::PhysicalQuantities::CTime &getTimeout() const { return m_timeout; }
|
||||
|
||||
//! Add a new callsign to watch list
|
||||
void addCallsign(const BlackMisc::Aviation::CCallsign &callsign);
|
||||
|
||||
//! Reset the watchdog for Callsign
|
||||
//! The callsign must have been added by \sa addCallsign before.
|
||||
void resetCallsign(const BlackMisc::Aviation::CCallsign &callsign);
|
||||
|
||||
//! Remove Callsign from watch list
|
||||
void removeCallsign(const BlackMisc::Aviation::CCallsign &callsign);
|
||||
|
||||
//! Remove all watched callsigns
|
||||
void removeAll();
|
||||
|
||||
signals:
|
||||
//! Callsign has timed out
|
||||
void timeout(const BlackMisc::Aviation::CCallsign &callsign);
|
||||
|
||||
protected:
|
||||
//! \overload QObject::timerEvent
|
||||
virtual void timerEvent(QTimerEvent * event) override;
|
||||
|
||||
private:
|
||||
|
||||
void checkTimeouts();
|
||||
|
||||
BlackMisc::PhysicalQuantities::CTime m_timeout = {15, BlackMisc::PhysicalQuantities::CTimeUnit::s() }; //!< Timeout value
|
||||
QHash<BlackMisc::Aviation::CCallsign, QDateTime> m_callsignTimestamps; //!< Hash of callsigns and latest timestamp
|
||||
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif
|
||||
@@ -12,6 +12,7 @@
|
||||
#ifndef BLACKCORE_SIMULATOR_COMMON_H
|
||||
#define BLACKCORE_SIMULATOR_COMMON_H
|
||||
|
||||
#include "blackcore/blackcoreexport.h"
|
||||
#include "blackcore/interpolator.h"
|
||||
#include "blackcore/simulator.h"
|
||||
#include "blackmisc/simulation/simulatorplugininfo.h"
|
||||
@@ -31,7 +32,7 @@ namespace BlackCore
|
||||
{
|
||||
|
||||
//! Common base class with providers, interface and some base functionality
|
||||
class CSimulatorCommon :
|
||||
class BLACKCORE_EXPORT CSimulatorCommon :
|
||||
public BlackCore::ISimulator,
|
||||
public BlackMisc::Simulation::COwnAircraftAware, // gain access to in memor own aircraft data
|
||||
public BlackMisc::Simulation::CRemoteAircraftAware // gain access to in memory remote aircraft data
|
||||
|
||||
Reference in New Issue
Block a user