Enroute Flight Navigation
A navigation app for VFR pilots
TrafficDataSource_File.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 <QFile>
24#include <QTextStream>
25
26#include "traffic/TrafficDataSource_Abstract.h"
27
28using namespace Qt::Literals::StringLiterals;
29
30
31namespace Traffic {
32
39 Q_OBJECT
40
41public:
50 TrafficDataSource_File(bool isCanonical, const QString& fileName, QObject* parent);
51
52 // Standard destructor
53 ~TrafficDataSource_File() override = default;
54
61 static auto containsFLARMSimulationData(const QString& fileName) -> bool;
62
67 [[nodiscard]] QString dataFormat() const override { return u"FLARM/NMEA"_s; }
68
76 [[nodiscard]] QString icon() const override { return u"/icons/material/ic_file_download.svg"_s; }
77
85 [[nodiscard]] QString sourceName() const override
86 {
87 return tr("Simulator file %1").arg(simulatorFile.fileName());
88 }
89
90public slots:
96 void connectToTrafficReceiver() override;
97
104
105private slots:
106 // Read one line from the simulator file's text stream and passes the string
107 // on to processFLARMMessage. Sets up a timer to read the next line in due
108 // time.
109 void readFromSimulatorStream();
110
111 // Update the properties "errorString" and "connectivityStatus".
112 void updateProperties();
113
114private:
115 Q_DISABLE_COPY_MOVE(TrafficDataSource_File)
116
117 QTextStream textStream;
118
119 // Simulator related members
120 QFile simulatorFile;
121 QTextStream simulatorTextStream;
122 QTimer simulatorTimer;
123 int lastTime {0};
124 QString lastPayload;
125 QString buffer;
126};
127
128} // namespace Traffic
TrafficDataSource_Abstract(bool isCanonical, QObject *parent)
Default constructor.
TrafficDataSource_File(bool isCanonical, const QString &fileName, QObject *parent)
Default constructor.
void disconnectFromTrafficReceiver() override
Disconnect from traffic receiver.
QString sourceName() const override
Getter function for the property with the same name.
static auto containsFLARMSimulationData(const QString &fileName) -> bool
Reads file and checks if the file contains FLARM simulation data.
void connectToTrafficReceiver() override
Start attempt to connect to traffic receiver.
QString dataFormat() const override
Getter function for the property with the same name.
QString icon() const override
Getter function for the property with the same name.