Enroute Flight Navigation
A navigation app for VFR pilots
|
Base class for all traffic receiver data sources. More...
#include <TrafficDataSource_Abstract.h>
Public Slots | |
virtual void | connectToTrafficReceiver ()=0 |
Start attempt to connect to traffic receiver. | |
virtual void | disconnectFromTrafficReceiver ()=0 |
Disconnect from traffic receiver. | |
virtual void | setPassword (const QString &SSID, const QString &password) |
Set password. | |
Signals | |
void | connectivityStatusChanged (QString newStatus) |
Notifier signal. | |
void | errorStringChanged (QString newError) |
Notifier signal. | |
void | factorWithoutPosition (const Traffic::TrafficFactor_DistanceOnly &factor) |
Traffic factor without position. | |
void | factorWithPosition (const Traffic::TrafficFactor_WithPosition &factor) |
Traffic factor with position. | |
void | positionUpdated (Positioning::PositionInfo pInfo) |
Position info. | |
void | receivingHeartbeatChanged (bool) |
Notifier signal. | |
void | trafficReceiverRuntimeErrorChanged () |
Notifier signal. | |
void | trafficReceiverSelfTestErrorChanged () |
Notifier signal. | |
void | trafficReceiverHwVersion (QString result) |
Traffic receiver hardware version. | |
void | trafficReceiverObVersion (QString result) |
Traffic receiver obstacle database version. | |
void | trafficReceiverSwVersion (QString result) |
Traffic receiver software version. | |
void | warning (const Traffic::Warning &warning) |
Traffic warning. | |
Public Member Functions | |
TrafficDataSource_Abstract (bool isCanonical, QObject *parent) | |
Default constructor. | |
bool | canonical () const |
Getter function for the property with the same name. | |
virtual Traffic::ConnectionInfo | connectionInfo () const |
Getter function for the property with the same name. | |
QString | connectivityStatus () const |
Getter function for the property with the same name. | |
virtual QString | dataFormat () const =0 |
Getter function for the property with the same name. | |
QString | errorString () const |
Getter function for the property with the same name. | |
virtual QString | icon () const =0 |
Getter function for the property with the same name. | |
Units::Distance | pressureAltitude () const |
Getter method for property with the same name. | |
QBindable< Units::Distance > | bindablePressureAltitude () const |
Getter method for property with the same name. | |
bool | receivingHeartbeat () const |
Getter function for the property with the same name. | |
virtual QString | sourceName () const =0 |
Getter function for the property with the same name. | |
QString | trafficReceiverRuntimeError () const |
Getter function for the property with the same name. | |
QString | trafficReceiverSelfTestError () const |
Getter function for the property with the same name. | |
Protected Member Functions | |
void | processFLARMData (const QString &data) |
Process FLARM/NMEA data. | |
void | processGDLMessage (const QByteArray &message) |
Process one GDL90 message. | |
void | processXGPSString (const QByteArray &data) |
Process one XGPS string. | |
void | resetReceivingHeartbeat () |
Resetter method for the property with the same name. | |
void | setConnectivityStatus (const QString &newConnectivityStatus) |
Setter function for the property with the same name. | |
void | setErrorString (const QString &newErrorString=QString()) |
Setter function for the property with the same name. | |
void | setPressureAltitude (Units::Distance newPressureAltitude) |
Setter function for the property with the same name. | |
void | setReceivingHeartbeat (bool newReceivingHeartbeat) |
Setter method for the property with the same name. | |
void | setTrafficReceiverRuntimeError (const QString &newErrorString) |
Setter function for the property with the same name. | |
void | setTrafficReceiverSelfTestError (const QString &newErrorString) |
Setter function for the property with the same name. | |
Properties | |
bool | canonical |
Canonicity. | |
QString | connectivityStatus |
Connectivity status. | |
Traffic::ConnectionInfo | connectionInfo |
Connection Info. | |
QString | dataFormat |
Data format. | |
QString | errorString |
String describing the last socket error. | |
QString | icon |
Icon that can be used to represent the connection in a GUI. | |
Units::Distance | pressureAltitude |
Pressure altitude. | |
bool | receivingHeartbeat |
Heartbeat indicator. | |
QString | sourceName |
Source name. | |
QString | trafficReceiverRuntimeError |
String describing the last traffic data receiver runtime error. | |
QString | trafficReceiverSelfTestError |
String describing the last traffic data receiver self-test error. | |
Base class for all traffic receiver data sources.
This is an abstract base class for all classes that connect to a traffic receiver. In addition to the properties listed below, the class also emits imporant data via the signals barometricAltitudeUpdated, factorWithoutPosition, factorWithPosition and warning. It contains methods to interpret FLARM and GDL90 data streams.
Definition at line 42 of file TrafficDataSource_Abstract.h.
Traffic::TrafficDataSource_Abstract::TrafficDataSource_Abstract | ( | bool | isCanonical, |
QObject * | parent ) |
Default constructor.
isCanonical | Intializer for property canonical |
parent | The standard QObject parent pointer |
|
inlinenodiscard |
Getter method for property with the same name.
Definition at line 216 of file TrafficDataSource_Abstract.h.
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 165 of file TrafficDataSource_Abstract.h.
|
inlinenodiscardvirtual |
Getter function for the property with the same name.
Reimplemented in Traffic::TrafficDataSource_BluetoothClassic, Traffic::TrafficDataSource_BluetoothLowEnergy, Traffic::TrafficDataSource_SerialPort, Traffic::TrafficDataSource_Tcp, and Traffic::TrafficDataSource_Udp.
Definition at line 174 of file TrafficDataSource_Abstract.h.
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 180 of file TrafficDataSource_Abstract.h.
|
pure virtualslot |
Start attempt to connect to traffic receiver.
If this class is connected to a traffic receiver, this method does nothing. Otherwise, it stops any ongoing connection attempt and starts a new attempt to connect to a potential receiver.
|
nodiscardpure virtual |
Getter function for the property with the same name.
Implemented in Traffic::TrafficDataSource_BluetoothClassic, Traffic::TrafficDataSource_BluetoothLowEnergy, Traffic::TrafficDataSource_File, Traffic::TrafficDataSource_SerialPort, Traffic::TrafficDataSource_Simulate, Traffic::TrafficDataSource_Tcp, and Traffic::TrafficDataSource_Udp.
|
pure virtualslot |
Disconnect from traffic receiver.
This method stops any ongoing connection or connection attempt. This method will not reset the property errorString, so that the error remains visible even after the class has been disconnected from the traffic receiver.
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 195 of file TrafficDataSource_Abstract.h.
|
signal |
Traffic factor without position.
This signal is emitted when the traffic receiver informs this class about traffic whose position is not known.
factor | Traffic factor. |
|
signal |
Traffic factor with position.
This signal is emitted when the traffic receiver informs this class about traffic whose position is known.
factor | Traffic factor. |
|
nodiscardpure virtual |
Getter function for the property with the same name.
Implemented in Traffic::TrafficDataSource_BluetoothClassic, Traffic::TrafficDataSource_BluetoothLowEnergy, Traffic::TrafficDataSource_File, Traffic::TrafficDataSource_SerialPort, Traffic::TrafficDataSource_Simulate, Traffic::TrafficDataSource_Tcp, and Traffic::TrafficDataSource_Udp.
|
signal |
Position info.
If this class received position information from a connected traffic receiver, this information is emitted here.
|
inlinenodiscard |
Getter method for property with the same name.
Definition at line 210 of file TrafficDataSource_Abstract.h.
|
protected |
Process FLARM/NMEA data.
This method handles FLARM/NMEA data. It collects data until a full FLARM/NMEA sentence is found and then calls processFLARMSentence() to handle that sentence.
data | A QString containing FLARM/NMEA data. |
|
protected |
Process one GDL90 message.
This method expects exactly one GDL90 message, including starting and trailing 0x7e bytes. The method interprets the string and updates the properties and emits signals as appropriate. Invalid messages are silently ignored.
message | A QByteArray containing a GDL90 message. |
|
protected |
Process one XGPS string.
This method expects exactly XGPS/XTRAFFIC string, as specified in
https://www.foreflight.com/support/network-gps/
The method interprets the string and updates the properties and emits signals as appropriate. Invalid messages are silently ignored.
data | A QByteArray containing an XGPS string. |
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 222 of file TrafficDataSource_Abstract.h.
|
protected |
Resetter method for the property with the same name.
This is equivalent to calling setReceivingHeartbeat(false)
|
protected |
Setter function for the property with the same name.
newConnectivityStatus | Property connectivityStatus |
|
protected |
Setter function for the property with the same name.
newErrorString | Property errorString |
|
inlinevirtualslot |
Set password.
If the implementation of the traffic data source supports passwords, this method checks if the traffic data source is waiting for a password with key SSID. If so, it will send the password to the traffic data receiver. If the implementation of the traffic data source does not support passwords, this method does nothing.
Definition at line 375 of file TrafficDataSource_Abstract.h.
|
protected |
Setter function for the property with the same name.
This method must be used by child classes to update the pressure altitude The class uses a timer internally to reset the position info to "invalid" after the time specified in PositionInfo::lifetime seconds.
newPressureAltitude | Pressure Altitude |
|
protected |
Setter method for the property with the same name.
When set to 'true' a timer is stated that will automatically reset the property to 'false' after 5 seconds of inactivity.
newReceivingHeartbeat | Property receivingHeartbeat |
|
protected |
Setter function for the property with the same name.
newErrorString | Property errorString |
|
protected |
Setter function for the property with the same name.
newErrorString | Property errorString |
|
nodiscardpure virtual |
Getter function for the property with the same name.
Implemented in Traffic::TrafficDataSource_BluetoothClassic, Traffic::TrafficDataSource_BluetoothLowEnergy, Traffic::TrafficDataSource_File, Traffic::TrafficDataSource_SerialPort, Traffic::TrafficDataSource_Simulate, Traffic::TrafficDataSource_Tcp, and Traffic::TrafficDataSource_Udp.
|
signal |
Traffic receiver hardware version.
If this class receives information about the hardware version of a connected traffic receiver, this information is emitted here.
result | String that identifies the hardware version |
|
signal |
Traffic receiver obstacle database version.
If this class receives information about the obstacle database version of a connected traffic receiver, this information is emitted here.
result | String that identifies the obstacle database version |
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 237 of file TrafficDataSource_Abstract.h.
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 246 of file TrafficDataSource_Abstract.h.
|
signal |
Traffic receiver software version.
If this class receives information about the software version of a connected traffic receiver, this information is emitted here.
result | String that identifies the software version |
|
signal |
Traffic warning.
This signal is emitted when the traffic receiver issues a traffic warning. An invalid warning (i.e. a warning with alarm level = -1) is emitted to indicate that the last warning is no longer active and should be disregarded.
warning | Traffic warning. |
|
read |
Canonicity.
This property contains 'true' if the connection is a canonical connection that cannot be deleted.
Definition at line 68 of file TrafficDataSource_Abstract.h.
|
read |
Connection Info.
This property contains a connection info that can be used to save and restore this connection.
Definition at line 88 of file TrafficDataSource_Abstract.h.
|
readwrite |
Connectivity status.
This property contains a human-readable, translated string that describes if the class has established a connection to a traffic receiver. A typical string could be "Bound to an address and port, but not connected yet.". Subclasses shall use the setter function to set the property content.
The setter method is protected and can be used by subclasses to update the property content.
Definition at line 81 of file TrafficDataSource_Abstract.h.
|
read |
Data format.
This property contains a string of the form "FLARM/NMEA" or "GDL90 ยท XGPS".
Definition at line 94 of file TrafficDataSource_Abstract.h.
|
readwrite |
String describing the last socket error.
This property holds a translated, human-readable string that describes the last error, or an empty string when there is not error. The string is cleared when a new connection attempt is started.
Definition at line 102 of file TrafficDataSource_Abstract.h.
|
read |
Pressure altitude.
This property holds information about the pressure altitude, that is, the altitude that you would read off your altimeter if the altimeter is set to 1013.2 hPa. To ensure that the data is up-to-date, the position information will be set to "invalid" when no data has arrived for more than the time specified in PositionInfo::lifetime.
Definition at line 115 of file TrafficDataSource_Abstract.h.
|
readwrite |
Heartbeat indicator.
When active, traffic receivers send regular heartbeat messages. These can be used to verify that the connection to the receiver works, even in times when no traffic is reported. This property indicates if the class receives heartbeat messages from at least one of the known receivers.
The setter and resetter methods are protected and can be used by subclasses to update the property content.
Definition at line 127 of file TrafficDataSource_Abstract.h.
|
read |
Source name.
This property contains a short, human-readable and translated description of the source. A typical string is "TCP connection to 132.168.1.1 port 2000".
Definition at line 135 of file TrafficDataSource_Abstract.h.
|
readwrite |
String describing the last traffic data receiver runtime error.
This property holds a translated, human-readable string that describes the last error reported by the traffic receiver, or an empty string when there is not error. The string is cleared when a new connection attempt is started.
Definition at line 144 of file TrafficDataSource_Abstract.h.
|
readwrite |
String describing the last traffic data receiver self-test error.
This property holds a translated, human-readable string that describes the last error reported by the traffic receiver self-test, or an empty string when there is not error. The string is cleared when a new connection attempt is started.
Definition at line 153 of file TrafficDataSource_Abstract.h.