Enroute Flight Navigation
A navigation app for VFR pilots
TileServer.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 "fileFormats/MBTILES.h"
24#include "geomaps/TileHandler.h"
25
26#include <QAbstractHttpServer>
27#include <QSharedPointer>
28
29
30namespace GeoMaps {
31
57
58class TileServer : public QAbstractHttpServer
59{
60 Q_OBJECT
61
62public:
71 explicit TileServer(QObject* parent = nullptr);
72
73 // Standard destructor
74 ~TileServer() override = default;
75
76
77
78 //
79 // Properties
80 //
81
88 Q_PROPERTY(QString serverUrl READ serverUrl NOTIFY serverUrlChanged)
89
90
91
92 //
93 // Getter Methods
94 //
95
96
100 [[nodiscard]] QString serverUrl();
101
102
103public slots:
123 void addMbtilesFileSet(const QString& baseName, const QVector<QSharedPointer<FileFormats::MBTILES>>& MBTilesFiles);
124
129 void removeMbtilesFileSet(const QString& baseName) {m_tileHandlers.take(baseName);}
130
135 void removeMbtilesFileSets() {m_tileHandlers.clear();}
136
137
138signals:
141
142
143private:
144 Q_DISABLE_COPY_MOVE(TileServer)
145
146 // Implemented pure virtual method from QAbstractHttpServer
147 bool handleRequest(const QHttpServerRequest& request, QHttpServerResponder& responder) override;
148
149 // Implemented pure virtual method from QAbstractHttpServer
150 void missingHandler(const QHttpServerRequest& request, QHttpServerResponder& responder) override;
151
161 void restart();
162
163 // List of tile handlers
164 QMap<QString, QSharedPointer<GeoMaps::TileHandler>> m_tileHandlers;
165
166 // Internal variable. Indicates if the app has been suspended.
167 // This is used on changes of QGuiApplication::applicationState,
168 // to check if the application is currently awaking from sleep,
169 // so that the server needs to be restarted (if on iOS).
170#if defined(Q_OS_IOS)
171 bool suspended = false;
172#endif
173};
174
175} // namespace GeoMaps
TileServer(QObject *parent=nullptr)
Create a new tile server.
void serverUrlChanged()
Notification signal for the property with the same name.
void removeMbtilesFileSet(const QString &baseName)
Removes a set of tile files.
Definition TileServer.h:129
QString serverUrl
URL under which this server is presently reachable.
Definition TileServer.h:88
void removeMbtilesFileSets()
Removes a set of tile files.
Definition TileServer.h:135
void addMbtilesFileSet(const QString &baseName, const QVector< QSharedPointer< FileFormats::MBTILES > > &MBTilesFiles)
Add a new set of tile files.
QString serverUrl()
Getter function for the property with the same name.