Enroute Flight Navigation
A navigation app for VFR pilots
NOTAMList.h
1/***************************************************************************
2 * Copyright (C) 2023-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 <QQmlEngine>
24
25#include "geomaps/Waypoint.h"
26#include "notam/NOTAM.h"
27#include "units/Timespan.h"
28
29namespace NOTAM {
30
31
38
39class NOTAMList {
40 Q_GADGET
41 QML_VALUE_TYPE(notamList)
42
43 friend QDataStream& operator<<(QDataStream& stream, const NOTAMList& notamList);
44 friend QDataStream& operator>>(QDataStream& stream, NOTAMList& notamList);
45
46public:
52 NOTAMList() = default;
53
67 NOTAMList(const QJsonDocument& jsonDoc, const QGeoCircle& region, QSet<QString>* cancelledNotamNumbers=nullptr);
68
69
70 //
71 // Properties
72 //
73
75 Q_PROPERTY(bool isEmpty READ isEmpty CONSTANT)
76
78 Q_PROPERTY(bool isValid READ isValid CONSTANT)
79
81 Q_PROPERTY(QList<NOTAM> notams READ notams CONSTANT)
82
84 Q_PROPERTY(QGeoCircle region READ region CONSTANT)
85
87 Q_PROPERTY(QDateTime retrieved READ retrieved CONSTANT)
88
90 Q_PROPERTY(QString summary READ summary CONSTANT)
91
92
93
94 //
95 // Getter Methods
96 //
97
102 Q_REQUIRED_RESULT bool isEmpty() const { return m_notams.isEmpty(); }
103
108 Q_REQUIRED_RESULT bool isValid() const { return m_retrieved.isValid() && m_region.isValid(); }
109
114 Q_REQUIRED_RESULT QList<NOTAM> notams() const { return m_notams; }
115
120 Q_REQUIRED_RESULT QGeoCircle region() const { return m_region; }
121
126 Q_REQUIRED_RESULT QDateTime retrieved() const { return m_retrieved; }
127
132 Q_REQUIRED_RESULT QString summary() const;
133
134
135
136 //
137 // Methods
138 //
139
145 Q_REQUIRED_RESULT Units::Timespan age() const;
146
154 Q_REQUIRED_RESULT NOTAMList cleaned(const QSet<QString>& cancelledNotamNumbers) const;
155
162 Q_REQUIRED_RESULT bool isOutdated() const { auto _age = age(); return !_age.isFinite() || (_age > Units::Timespan::fromH(24)); }
163
170 Q_REQUIRED_RESULT bool needsUpdate() const { auto _age = age(); return !_age.isFinite() || (_age > Units::Timespan::fromH(12)); }
171
181 Q_REQUIRED_RESULT NOTAMList restricted(const GeoMaps::Waypoint& waypoint) const;
182
185
186private:
187 /* List of Notams */
188 QList<NOTAM> m_notams;
189
190 /* Region */
191 QGeoCircle m_region;
192
193 /* Time of request */
194 QDateTime m_retrieved;
195};
196
201QDataStream& operator<<(QDataStream& stream, const NOTAMList& notamList);
202
207QDataStream& operator>>(QDataStream& stream, NOTAMList& notamList);
208
209} // namespace NOTAM
210
211
212// Declare meta types
213Q_DECLARE_METATYPE(NOTAM::NOTAMList)
Waypoint, such as an airfield, a navaid station or a reporting point.
Definition Waypoint.h:41
A list of NOTAMs.
Definition NOTAMList.h:39
Q_REQUIRED_RESULT bool needsUpdate() const
Check if list needs update.
Definition NOTAMList.h:170
Q_REQUIRED_RESULT NOTAMList cleaned(const QSet< QString > &cancelledNotamNumbers) const
Sublist with expired and duplicated entries removed.
bool isValid
Validity.
Definition NOTAMList.h:78
Q_REQUIRED_RESULT Units::Timespan age() const
Time span between retrieved and now.
QList< NOTAM > notams
List of Notams.
Definition NOTAMList.h:81
Q_REQUIRED_RESULT QDateTime retrieved() const
Getter function for the property with the same name.
Definition NOTAMList.h:126
NOTAMList()=default
Constructs an empty NOTAMList.
QString summary
One-line summary.
Definition NOTAMList.h:90
Q_REQUIRED_RESULT QList< NOTAM > notams() const
Getter function for the property with the same name.
Definition NOTAMList.h:114
QDateTime retrieved
Date of retrieval.
Definition NOTAMList.h:87
static constexpr Units::Distance restrictionRadius
Radius used in the method restricted()
Definition NOTAMList.h:184
Q_REQUIRED_RESULT QGeoCircle region() const
Getter function for the property with the same name.
Definition NOTAMList.h:120
Q_REQUIRED_RESULT bool isValid() const
Getter function for the property with the same name.
Definition NOTAMList.h:108
Q_REQUIRED_RESULT NOTAMList restricted(const GeoMaps::Waypoint &waypoint) const
Sublist of notams relevant to a given waypoint.
bool isEmpty
Emptyness.
Definition NOTAMList.h:75
Q_REQUIRED_RESULT bool isOutdated() const
Check if outdated.
Definition NOTAMList.h:162
QGeoCircle region
Region covered by this list.
Definition NOTAMList.h:84
Q_REQUIRED_RESULT QString summary() const
Getter function for the property with the same name.
This extremely simple class holds a the data item of a NOTAM.
Definition NOTAM.h:33
Convenience class for distance computations.
Definition Distance.h:35
static Q_INVOKABLE constexpr Units::Distance fromNM(double distanceInNM)
Constructs a distance.
Definition Distance.h:82
Convenience class for time computations.
Definition Timespan.h:35
static auto fromH(double timeInH) -> Timespan
Constructs a time.
Definition Timespan.h:46