Enroute Flight Navigation
A navigation app for VFR pilots
TrafficDataSource_SerialPort.h
1/***************************************************************************
2 * Copyright (C) 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 <QPropertyNotifier>
24#include <QSerialPort>
25#include <QSerialPortInfo>
26
27#include "traffic/TrafficDataSource_AbstractSocket.h"
28
29using namespace Qt::Literals::StringLiterals;
30
31
32namespace Traffic {
33
39
41 Q_OBJECT
42
43public:
52 TrafficDataSource_SerialPort(bool isCanonical, const QString& portName, QObject* parent);
53
54 // Standard destructor
55 ~TrafficDataSource_SerialPort() override = default;
56
57
58
59 //
60 // Properties
61 //
62
67 Q_PROPERTY(QSerialPortInfo sourceInfo READ sourceInfo CONSTANT)
68
69
70
71 //
72 // Getter Methods
73 //
74
75
79 [[nodiscard]] Traffic::ConnectionInfo connectionInfo() const override
80 {
82 }
83
88 [[nodiscard]] QString dataFormat() const override { return u"FLARM/NMEA"_s; }
89
97 [[nodiscard]] QString icon() const override { return u"/icons/material/ic_settings_ethernet.svg"_s; }
98
106 [[nodiscard]] QString sourceName() const override;
107
112 [[nodiscard]] QSerialPortInfo sourceInfo() const
113 {
114 return QSerialPortInfo(m_port.portName());
115 }
116
117
118public slots:
125
132
133private slots:
134 // Handle serial port errors
135 void onErrorOccurred(QSerialPort::SerialPortError error);
136
137 // Read and process received NMEA sentences
138 void onReadyRead();
139
140private:
141 Q_DISABLE_COPY_MOVE(TrafficDataSource_SerialPort)
142
143 // Copied from the constructor
144 QSerialPort m_port;
145 QPropertyNotifier m_errorChangeHandler;
146
147 // Text stream used for reading NMEA sentences
148 QTextStream m_textStream {&m_port};
149};
150
151} // namespace Traffic
Connection to a traffic data receiver.
TrafficDataSource_AbstractSocket(bool isCanonical, QObject *parent)
Default constructor.
QString sourceName() const override
Getter function for the property with the same name.
void disconnectFromTrafficReceiver() override
Disconnect from traffic receiver.
QString icon() const override
Getter function for the property with the same name.
void connectToTrafficReceiver() override
Start attempt to connect to traffic receiver.
QSerialPortInfo sourceInfo() const
Getter function for the property with the same name.
TrafficDataSource_SerialPort(bool isCanonical, const QString &portName, QObject *parent)
Default constructor.
Traffic::ConnectionInfo connectionInfo() const override
Getter function for the property with the same name.
QString dataFormat() const override
Getter function for the property with the same name.