Enroute Flight Navigation
A navigation app for VFR pilots
TrafficDataSource_Abstract.h
1/***************************************************************************
2 * Copyright (C) 2021-2024 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QProperty>
24
25#include "positioning/PositionInfo.h"
26#include "traffic/ConnectionInfo.h"
27#include "traffic/TrafficFactor_DistanceOnly.h"
28#include "traffic/TrafficFactor_WithPosition.h"
29#include "traffic/Warning.h"
30
31
32namespace Traffic {
33
42class TrafficDataSource_Abstract : public QObject {
43 Q_OBJECT
44
45public:
52 TrafficDataSource_Abstract(bool isCanonical, QObject* parent);
53
54 // Standard destructor
55 ~TrafficDataSource_Abstract() override = default;
56
57
58
59 //
60 // Properties
61 //
62
68 Q_PROPERTY(bool canonical READ canonical CONSTANT)
69
70
82
88 Q_PROPERTY(Traffic::ConnectionInfo connectionInfo READ connectionInfo CONSTANT)
89
94 Q_PROPERTY(QString dataFormat READ dataFormat CONSTANT)
95
102 Q_PROPERTY(QString errorString READ errorString WRITE setErrorString NOTIFY errorStringChanged)
103
105 Q_PROPERTY(QString icon READ icon CONSTANT)
106
116
128
135 Q_PROPERTY(QString sourceName READ sourceName CONSTANT)
136
145
154
155
156
157 //
158 // Getter methods
159 //
160
165 [[nodiscard]] bool canonical() const
166 {
167 return m_canonical;
168 }
169
174 [[nodiscard]] virtual Traffic::ConnectionInfo connectionInfo() const { return {}; }
175
180 [[nodiscard]] QString connectivityStatus() const
181 {
182 return m_connectivityStatus;
183 }
184
189 [[nodiscard]] virtual QString dataFormat() const = 0;
190
195 [[nodiscard]] QString errorString() const
196 {
197 return m_errorString;
198 }
199
204 [[nodiscard]] virtual QString icon() const = 0;
205
210 [[nodiscard]] Units::Distance pressureAltitude() const {return m_pressureAltitude.value();}
211
216 [[nodiscard]] QBindable<Units::Distance> bindablePressureAltitude() const {return &m_pressureAltitude;}
217
222 [[nodiscard]] bool receivingHeartbeat() const
223 {
224 return m_heartbeatTimer.isActive();
225 }
226
231 [[nodiscard]] virtual QString sourceName() const = 0;
232
237 [[nodiscard]] QString trafficReceiverRuntimeError() const
238 {
239 return m_trafficReceiverRuntimeError;
240 }
241
246 [[nodiscard]] QString trafficReceiverSelfTestError() const
247 {
248 return m_trafficReceiverSelfTestError;
249 }
250
251
252signals:
254 void connectivityStatusChanged(QString newStatus);
255
257 void errorStringChanged(QString newError);
258
267
276
277 /* \brief Password request
278 *
279 * This signal is emitted whenever the traffic receiver asks for a
280 * password. Note that this is not the WiFi-Password.
281 *
282 * @param SSID Name of the WiFi network that is currently in use.
283 */
284 void passwordRequest(const QString& SSID);
285
286 /* \brief Password storage request
287 *
288 * This signal is emitted whenever the traffic receiver has successfully
289 * connected using a password that was not yet in the database.
290 *
291 * @param SSID Name of the WiFi network that is was used in use.
292 */
293 void passwordStorageRequest(const QString& SSID, const QString& password);
294
301
304
307
310
318 void trafficReceiverHwVersion(QString result);
319
327 void trafficReceiverObVersion(QString result);
328
336 void trafficReceiverSwVersion(QString result);
337
348
349public slots:
356 virtual void connectToTrafficReceiver() = 0;
357
366
375 virtual void setPassword(const QString& SSID, const QString& password)
376 {
377 Q_UNUSED(SSID)
378 Q_UNUSED(password)
379 }
380
381protected:
389 void processFLARMData(const QString& data);
390
400 void processGDLMessage(const QByteArray& message);
401
413 void processXGPSString(const QByteArray& data);
414
420
425 void setConnectivityStatus(const QString& newConnectivityStatus);
426
431 void setErrorString(const QString& newErrorString = QString());
432
441 void setPressureAltitude(Units::Distance newPressureAltitude);
442
450 void setReceivingHeartbeat(bool newReceivingHeartbeat);
451
456 void setTrafficReceiverRuntimeError(const QString& newErrorString);
457
462 void setTrafficReceiverSelfTestError(const QString& newErrorString);
463
464private:
465 Q_DISABLE_COPY_MOVE(TrafficDataSource_Abstract)
466
467 /* This method expects exactly one line containing a valid FLARM/NMEA
468 * sentence. This is a string typically looks like
469 * "$PFLAA,0,1587,1588,40,1,AA1237,225,,37,-1.6,1*7F". The method
470 * interprets the string and updates the properties and emits signals as
471 * appropriate. Invalid strings are silently ignored.
472 */
473 void processFLARMSentence(const QString& sentence);
474 // Methods interpreting specific FLARM/NMEA messages
475 void processFLARMMessageGPGGA(const QStringList& arguments); // NMEA GPS 3D-fix data
476 void processFLARMMessageGPRMC(const QStringList& arguments); // Recommended minimum specific GPS/Transit data
477 void processFLARMMessagePFLAA(const QStringList& arguments); // Data on other proximate aircraft
478 void processFLARMMessagePFLAE(const QStringList& arguments); // Self-test result and errors codes
479 static void processFLARMMessagePFLAS(const QStringList& arguments); // Debug Information
480 void processFLARMMessagePFLAU(const QStringList& arguments); // FLARM Heartbeat
481 void processFLARMMessagePFLAV(const QStringList& arguments); // Version information
482 void processFLARMMessagePGRMZ(const QStringList& arguments); // Garmin's barometric altitude
483 static void processFLARMMessagePXCV(const QStringList& arguments); // XCVario
484 QString m_FLARMDataBuffer;
485
486 // Property caches
487 bool m_canonical {false};
488 QString m_connectivityStatus;
489 QString m_errorString;
490 QString m_trafficReceiverRuntimeError;
491 QString m_trafficReceiverSelfTestError;
492
493 // True altitude of own aircraft. We store these values because the
494 // necessary information to compile a PositionInfo class does not always
495 // come in one piece. Whenever a valid altitude is set, the timer should be
496 // started. The timer can then be used to check if the altitude information
497 // is recent enough to be used. Whenever an invalid altitude is set, the
498 // timer should be stopped.
499 Units::Distance m_trueAltitude;
500 Units::Distance m_trueAltitudeFOM; // Fig. of Merit
501 QTimer m_trueAltitudeTimer;
502
503 // Pressure altitude of own aircraft. The timer will reset the pressureAltitude
504 // to an invalid value if no data is received for a while.
505 QProperty<Units::Distance> m_pressureAltitude;
506 QTimer m_pressureAltitudeTimer;
507
508 // Heartbeat timer
509 QTimer m_heartbeatTimer;
510 bool m_hasHeartbeat {false};
511
512 // Targets
514 Traffic::TrafficFactor_DistanceOnly m_factorDistanceOnly;
515};
516
517} // namespace Traffic
Geographic position.
Connection to a traffic data receiver.
void trafficReceiverSelfTestErrorChanged()
Notifier signal.
virtual QString dataFormat() const =0
Getter function for the property with the same name.
QString icon
Icon that can be used to represent the connection in a GUI.
bool receivingHeartbeat() const
Getter function for the property with the same name.
QString trafficReceiverRuntimeError() const
Getter function for the property with the same name.
TrafficDataSource_Abstract(bool isCanonical, QObject *parent)
Default constructor.
void errorStringChanged(QString newError)
Notifier signal.
void connectivityStatusChanged(QString newStatus)
Notifier signal.
QString trafficReceiverSelfTestError() const
Getter function for the property with the same name.
void processXGPSString(const QByteArray &data)
Process one XGPS string.
QString connectivityStatus() const
Getter function for the property with the same name.
virtual Traffic::ConnectionInfo connectionInfo() const
Getter function for the property with the same name.
void setReceivingHeartbeat(bool newReceivingHeartbeat)
Setter method for the property with the same name.
void setErrorString(const QString &newErrorString=QString())
Setter function for the property with the same name.
virtual void setPassword(const QString &SSID, const QString &password)
Set password.
void warning(const Traffic::Warning &warning)
Traffic warning.
void resetReceivingHeartbeat()
Resetter method for the property with the same name.
Units::Distance pressureAltitude
Pressure altitude.
void processGDLMessage(const QByteArray &message)
Process one GDL90 message.
void trafficReceiverHwVersion(QString result)
Traffic receiver hardware version.
void factorWithPosition(const Traffic::TrafficFactor_WithPosition &factor)
Traffic factor with position.
Units::Distance pressureAltitude() const
Getter method for property with the same name.
void setTrafficReceiverSelfTestError(const QString &newErrorString)
Setter function for the property with the same name.
QString trafficReceiverRuntimeError
String describing the last traffic data receiver runtime error.
void receivingHeartbeatChanged(bool)
Notifier signal.
virtual void connectToTrafficReceiver()=0
Start attempt to connect to traffic receiver.
void processFLARMData(const QString &data)
Process FLARM/NMEA data.
virtual QString icon() const =0
Getter function for the property with the same name.
Traffic::ConnectionInfo connectionInfo
Connection Info.
QBindable< Units::Distance > bindablePressureAltitude() const
Getter method for property with the same name.
void setPressureAltitude(Units::Distance newPressureAltitude)
Setter function for the property with the same name.
virtual void disconnectFromTrafficReceiver()=0
Disconnect from traffic receiver.
void setConnectivityStatus(const QString &newConnectivityStatus)
Setter function for the property with the same name.
void trafficReceiverSwVersion(QString result)
Traffic receiver software version.
QString errorString
String describing the last socket error.
void setTrafficReceiverRuntimeError(const QString &newErrorString)
Setter function for the property with the same name.
QString errorString() const
Getter function for the property with the same name.
void factorWithoutPosition(const Traffic::TrafficFactor_DistanceOnly &factor)
Traffic factor without position.
void trafficReceiverRuntimeErrorChanged()
Notifier signal.
void positionUpdated(Positioning::PositionInfo pInfo)
Position info.
QString trafficReceiverSelfTestError
String describing the last traffic data receiver self-test error.
void trafficReceiverObVersion(QString result)
Traffic receiver obstacle database version.
virtual QString sourceName() const =0
Getter function for the property with the same name.
Traffic factor where only distance is known.
Traffic factor whose precise position is known.
Traffic warning.
Definition Warning.h:40
Convenience class for distance computations.
Definition Distance.h:35
Conversion between units used in aviation.
Definition Angle.h:34