Enroute Flight Navigation
A navigation app for VFR pilots
DataManager.h
1/***************************************************************************
2 * Copyright (C) 2019-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#include <QStandardPaths>
25
26#include "GlobalObject.h"
27#include "dataManagement/Downloadable_MultiFile.h"
28#include "dataManagement/Downloadable_SingleFile.h"
29#include "units/ByteSize.h"
30
31
32namespace DataManagement {
33
69
71{
72 Q_OBJECT
73 QML_ELEMENT
74 QML_SINGLETON
75
76public:
85 explicit DataManager(QObject* parent=nullptr);
86
87 ~DataManager() override = default;
88
89 // No default constructor, important for QML singleton
90 explicit DataManager() = delete;
91
92 // factory function for QML singleton
93 static DataManagement::DataManager* create(QQmlEngine* /*unused*/, QJSEngine* /*unused*/)
94 {
96 }
97
98
99 // deferred initialization
100 void deferredInitialization() override;
101
102
103
104 //
105 // PROPERTIES
106 //
107
115
116
120 Q_PROPERTY(DataManagement::Downloadable_MultiFile* aviationMaps READ aviationMaps CONSTANT)
121
126 Q_PROPERTY(DataManagement::Downloadable_MultiFile* baseMapsRaster READ baseMapsRaster CONSTANT)
127
132 Q_PROPERTY(DataManagement::Downloadable_MultiFile* baseMapsVector READ baseMapsVector CONSTANT)
133
138 Q_PROPERTY(DataManagement::Downloadable_MultiFile* baseMaps READ baseMaps CONSTANT)
139
144 Q_PROPERTY(DataManagement::Downloadable_MultiFile* databases READ databases CONSTANT)
145
151 Q_PROPERTY(DataManagement::Downloadable_MultiFile* items READ items CONSTANT)
152
154 Q_PROPERTY(DataManagement::Downloadable_SingleFile* mapList READ mapList CONSTANT)
155
157 Q_PROPERTY(DataManagement::Downloadable_MultiFile* mapsAndData READ mapsAndData CONSTANT)
158
163 Q_PROPERTY(DataManagement::Downloadable_MultiFile* mapSets READ mapSets CONSTANT)
164
169 Q_PROPERTY(DataManagement::Downloadable_MultiFile* terrainMaps READ terrainMaps CONSTANT)
170
172 Q_PROPERTY(QString whatsNew READ whatsNew NOTIFY whatsNewChanged)
173
175 Q_PROPERTY(Units::ByteSize whatsNewHash READ whatsNewHash NOTIFY whatsNewChanged)
176
177
178 //
179 // Getter Methods
180 //
181
186 [[nodiscard]] bool appUpdateRequired() const { return m_appUpdateRequired; }
187
192 [[nodiscard]] DataManagement::Downloadable_MultiFile* aviationMaps() { return &m_aviationMaps; }
193
198 [[nodiscard]] DataManagement::Downloadable_MultiFile* baseMaps() { return &m_baseMaps; }
199
204 [[nodiscard]] DataManagement::Downloadable_MultiFile* baseMapsRaster() { return &m_baseMapsRaster; }
205
210 [[nodiscard]] DataManagement::Downloadable_MultiFile* baseMapsVector() { return &m_baseMapsVector; }
211
216 [[nodiscard]] DataManagement::Downloadable_MultiFile* databases() { return &m_databases; }
217
222 [[nodiscard]] DataManagement::Downloadable_MultiFile* items() { return &m_items; }
223
228 [[nodiscard]] DataManagement::Downloadable_SingleFile* mapList() { return &m_mapList; }
229
234 [[nodiscard]] DataManagement::Downloadable_MultiFile* mapsAndData() { return &m_mapsAndData; }
235
240 [[nodiscard]] DataManagement::Downloadable_MultiFile* mapSets() { return &m_mapSets; }
241
246 [[nodiscard]] DataManagement::Downloadable_MultiFile* terrainMaps() { return &m_terrainMaps; }
247
252 [[nodiscard]] QString whatsNew() const { return m_whatsNew; }
253
258 [[nodiscard]] Units::ByteSize whatsNewHash() const { return qHash(m_whatsNew, 0); }
259
260
261 //
262 // Methods
263 //
264
282 Q_INVOKABLE QString import(const QString& fileName, const QString& newName);
283
299 Q_INVOKABLE QString importOpenAir(const QString& fileName, const QString& newName);
300
301public slots:
308
309signals:
312
320 void error(const QString& message);
321
324
325private:
326 Q_DISABLE_COPY_MOVE(DataManager)
327
328 // Clean the data directory.
329 //
330 // - delete all files with unexpected file names
331 // - earlier versions of this program constructed files with names ending in
332 // ".geojson.geojson" or ".mbtiles.mbtiles". We correct those file names
333 // here.
334 // - remove all empty sub directories
335 void cleanDataDirectory();
336
337 // This slot is called when a local file of one of the Downloadables changes
338 // content or existence. If the Downloadable in question has no file
339 // anymore, and has an invalid URL, it is then removed.
340 void onItemFileChanged();
341
342 // This slot updates the DownloadableGroups as well as the propery
343 // 'whatsNew', by reading the file 'maps.json' and by checking the data
344 // directory for locally installed, unsupported files.
345 void updateDataItemListAndWhatsNew();
346
347 // This method checks if a Downloadable item with the given url and
348 // localFileName already exists in _items. If so, it returns a pointer to
349 // that item. If not, then a Downloadable with the url and localFileName is
350 // created and added to _items. Depending on localFileName, it will also be
351 // added to _aviationMap, _baseMaps, or _databases. A pointer to that item is
352 // then returned.
353 DataManagement::Downloadable_SingleFile* createOrRecycleItem(const QUrl& url, const QString& localFileName, const QGeoRectangle& bBox);
354
355 bool m_appUpdateRequired {false};
356
357 // Full path name of data directory, without trailing slash
358 QString m_dataDirectory {QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + "/aviation_maps"};
359
360 // The current whats new string from _aviationMaps.
361 QString m_whatsNew;
362
363 // This Downloadable object manages the central text file that describes the
364 // remotely available aviation maps.
365 DataManagement::Downloadable_SingleFile m_mapList { QUrl(QStringLiteral("https://enroute-data.akaflieg-freiburg.de/enroute-GeoJSONv003/maps.json")), QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + "/maps.json" };
366
367 // List of geographic maps
368 DataManagement::Downloadable_MultiFile m_aviationMaps {DataManagement::Downloadable_MultiFile::SingleUpdate};
369 DataManagement::Downloadable_MultiFile m_baseMaps {DataManagement::Downloadable_MultiFile::SingleUpdate};
370 DataManagement::Downloadable_MultiFile m_baseMapsRaster {DataManagement::Downloadable_MultiFile::SingleUpdate};
371 DataManagement::Downloadable_MultiFile m_baseMapsVector {DataManagement::Downloadable_MultiFile::SingleUpdate};
372 DataManagement::Downloadable_MultiFile m_databases {DataManagement::Downloadable_MultiFile::SingleUpdate};
373 DataManagement::Downloadable_MultiFile m_items {DataManagement::Downloadable_MultiFile::SingleUpdate};
374 DataManagement::Downloadable_MultiFile m_mapsAndData {DataManagement::Downloadable_MultiFile::SingleUpdate};
375 DataManagement::Downloadable_MultiFile m_terrainMaps {DataManagement::Downloadable_MultiFile::SingleUpdate};
376
377 // List of geographic map sets
378 DataManagement::Downloadable_MultiFile m_mapSets {DataManagement::Downloadable_MultiFile::SingleUpdate};
379};
380
381} // namespace DataManagement
Manages the list of geographic maps.
Definition DataManager.h:71
Units::ByteSize whatsNewHash
Hash of the current "what's new" message.
DataManagement::Downloadable_MultiFile * terrainMaps()
Getter function for the property with the same name.
DataManagement::Downloadable_MultiFile * baseMaps
Downloadable_MultiFile that holds all base maps.
void deferredInitialization() override
Non-constructor initialization.
DataManagement::Downloadable_MultiFile * terrainMaps
Downloadable_MultiFile that holds all terrain maps.
bool appUpdateRequired
Indiates that the app needs to be updated.
DataManagement::Downloadable_MultiFile * aviationMaps
Downloadable_MultiFile that holds all aviation maps.
DataManagement::Downloadable_MultiFile * databases
Downloadable_MultiFile that holds all databases.
DataManagement::Downloadable_MultiFile * mapSets()
Getter function for the property with the same name.
DataManagement::Downloadable_SingleFile * mapList()
Getter function for the property with the same name.
QString whatsNew() const
Getter function for the property with the same name.
DataManagement::Downloadable_MultiFile * aviationMaps()
Getter function for the property with the same name.
DataManagement::Downloadable_MultiFile * baseMapsVector()
Getter function for the property with the same name.
DataManagement::Downloadable_MultiFile * items()
Getter function for the property with the same name.
Q_INVOKABLE QString importOpenAir(const QString &fileName, const QString &newName)
Import airspace data into the library of locally installed maps.
DataManagement::Downloadable_MultiFile * items
Downloadable_MultiFile that holds all data items.
DataManagement::Downloadable_MultiFile * baseMapsRaster
Downloadable_MultiFile that holds all base maps in raster format.
DataManagement::Downloadable_MultiFile * baseMapsVector
Downloadable_MultiFile that holds all base maps in vector format.
void whatsNewChanged()
Notifier signal.
DataManagement::Downloadable_MultiFile * mapsAndData
Downloadable_MultiFile that holds all the map sets and databases.
DataManagement::Downloadable_MultiFile * mapsAndData()
Getter function for the property with the same name.
DataManager(QObject *parent=nullptr)
Standard constructor.
DataManagement::Downloadable_SingleFile * mapList
Downloadable_SingleFile that holds the list of all maps and databases.
DataManagement::Downloadable_MultiFile * mapSets
Downloadable_MultiFile that holds all map sets.
Units::ByteSize whatsNewHash() const
Getter function for the property with the same name.
void error(const QString &message)
Error message for user.
DataManagement::Downloadable_MultiFile * baseMaps()
Getter function for the property with the same name.
DataManagement::Downloadable_MultiFile * baseMapsRaster()
Getter function for the property with the same name.
void updateRemoteDataItemListIfOutdated()
Triggers an update of the list of remotely available data items.
QString whatsNew
Current "what's new" message.
DataManagement::Downloadable_MultiFile * databases()
Getter function for the property with the same name.
Group of closely related downloadable items.
@ SingleUpdate
Update children that are updatable.
static Q_INVOKABLE DataManagement::DataManager * dataManager()
Pointer to appplication-wide static GeoMaps::DataManager instance.
GlobalObject(QObject *parent=nullptr)
Standard constructor.
Convenience class for size_t.
Definition ByteSize.h:37
Conversion between units used in aviation.
Definition Angle.h:34