Enroute Flight Navigation
A navigation app for VFR pilots
|
Downloadable object. More...
#include <Downloadable_SingleFile.h>
Signals | |
void | aboutToChangeFile (QString localFileName) |
Warning that local file is about to change. | |
void | downloadProgressChanged (int percentage) |
Download progress. | |
void | remoteFileDateChanged () |
Notifier signal for the properties remoteFileDate and remoteFileSize. | |
![]() | |
void | boundingBoxChanged () |
Notifier signal. | |
void | contentTypeChanged () |
Notifier signal. | |
void | descriptionChanged () |
Notifier signal. | |
void | downloadingChanged () |
Notifier signal. | |
void | error (QString objectName, QString message) |
Download error. | |
void | fileContentChanged () |
Indicates that the content of a local file (or several local files) has changed. | |
void | fileContentChanged_delayed () |
Emitted some time after the content of one of the local files changes. | |
void | filesChanged () |
Notifier signal. | |
void | hasFileChanged () |
Notifier signal. | |
void | infoTextChanged () |
Notifier signal. | |
void | remoteFileSizeChanged () |
Notifier signal. | |
void | sectionChanged () |
Notifier signal. | |
void | updateSizeChanged () |
Notifier signal. | |
Public Member Functions | |
Downloadable_SingleFile (QUrl url, const QString &localFileName, const QGeoRectangle &bBox={}, QObject *parent=nullptr) | |
Standard constructor. | |
~Downloadable_SingleFile () override | |
Standard destructor. | |
auto | description () -> QString override |
Implementation of pure virtual getter method from Downloadable_Abstract. | |
auto | downloading () -> bool override |
Implementation of pure virtual getter method from Downloadable_Abstract. | |
auto | downloadProgress () const -> int |
Getter function for the property with the same name. | |
auto | fileName () const -> QString |
Getter function for the property with the same name. | |
auto | fileContent () const -> QByteArray |
Getter function for the property with the same name. | |
auto | files () -> QStringList override |
Implementation of pure virtual getter method from Downloadable_Abstract. | |
auto | infoText () -> QString override |
Implementation of pure virtual getter method from Downloadable_Abstract. | |
auto | remoteFileDate () const -> QDateTime |
Getter function for the property with the same name. | |
auto | remoteFileSize () -> qint64 override |
Getter function for the property with the same name. | |
auto | updateSize () -> Units::ByteSize override |
Implementation of pure virtual getter method from Downloadable_Abstract. | |
auto | url () const -> QUrl |
Getter function for the property with the same name. | |
void | setRemoteFileDate (const QDateTime &date) |
Setter function for the property with the same name. | |
void | setRemoteFileSize (qint64 size) |
Setter function for the property with the same name. | |
Q_INVOKABLE void | deleteFiles () override |
Implementation of pure virtual method from Downloadable_Abstract. | |
Q_INVOKABLE void | startDownload () override |
Initiate a download. | |
Q_INVOKABLE void | startInfoDownload () |
Contacts the server and downloads information about the remote file. | |
Q_INVOKABLE void | stopDownload () override |
Stops download process. | |
Q_INVOKABLE void | update () override |
Implementation of pure virtual method from Downloadable_Abstract. | |
![]() | |
Downloadable_Abstract (QObject *parent=nullptr) | |
Standard constructor. | |
QGeoRectangle | boundingBox () const |
Getter method for the property with the same name. | |
DataManagement::Downloadable_Abstract::ContentType | contentType () const |
Getter method for the property with the same name. | |
bool | hasFile () const |
Getter method for the property with the same name. | |
QBindable< bool > | bindableHasFile () const |
Getter method for the property with the same name. | |
QString | section () const |
Getter function for the property with the same name. | |
QBindable< QString > | bindableSection () const |
Getter function for the property with the same name. | |
virtual auto | updateSizeString () -> QString |
Getter function for the property with the same name. | |
void | setBoundingBox (const QGeoRectangle &boundingBox) |
Setter function for the property with the same name. | |
void | setContentType (DataManagement::Downloadable_Abstract::ContentType contentType) |
Setter function for the property with the same name. | |
void | setSection (const QString §ionName) |
Setter function for the property with the same name. | |
Q_INVOKABLE void | killFileContentChanged_delayed () |
Kill pending emission of signal fileContentChanged_delayed. | |
Properties | |
int | downloadProgress |
Download progress. | |
QString | fileName |
File name, as set in the constructor. | |
QByteArray | fileContent |
Content of the downloaded file. | |
QDateTime | remoteFileDate |
Modification date of the remote file. | |
qint64 | remoteFileSize |
Size of the remote file. | |
QUrl | url |
URL, as set in the constructor. | |
![]() | |
QGeoRectangle | boundingBox |
Geographic bounding box. | |
DataManagement::Downloadable_Abstract::ContentType | contentType |
Most probable content of file(s) managed by this object. | |
QString | description |
Describe installed file(s) | |
bool | downloading |
Indicates whether a download process is currently running. | |
QStringList | files |
Names of all files that have been downloaded by any of the Downloadble objects in this group (and their children) | |
bool | hasFile |
Indicates if (at least one) local file exists. | |
QString | infoText |
Short info text describing the state of the downloadable(s) | |
qint64 | remoteFileSize |
Size of the remote file. | |
QString | section |
Headline name for the Downloadable. | |
Units::ByteSize | updateSize |
Update size. | |
QString | updateSizeString |
Update size as a localized string. | |
Additional Inherited Members | |
![]() | |
enum | ContentType : quint8 { VAC , AviationMap , BaseMapVector , BaseMapRaster , Data , MapSet , TerrainMap } |
Type of content managed by this instance. More... | |
Downloadable object.
This class represents a downloadable item, such as an aviation map file. The class is able to do the following.
The URL and the name of the local file are given in the constructor and cannot be changed. See the description of the method startDownload() to see how downloads work.
Definition at line 51 of file Downloadable_SingleFile.h.
|
explicit |
Standard constructor.
url | The address in the internet where the newest version of the item can always be found. This URL should be http or https because data about the remote file (such as modification time) can be retrieved with this protocol. |
localFileName | Name of a local file where the download will be stored. If the file already exists, the constructor assumes that the file contains a previously downloaded version of the item, and that the modification time of the file is the download time. |
bBox | Bounding box, if a meaningful notion of bounding box exists for this Downloadable. |
parent | The standard QObject parent pointer. |
After construction, size and modification time of the file on the server are not known and set to -1 and an invalid QDateTime, respectively. To obtain these pieces of data from the server, use the method checkForUpdate(). Alternatively, you can write to the properties remoteFileDate and remoteFileSize directly, e.g. to restore cached data when no internet connection is available.
Use the method startFileDownload() to initiate the download process.
|
override |
Standard destructor.
This destructor will stop all running downloads and delete all temporary files. It will not delete the local file.
|
signal |
Warning that local file is about to change.
This signal is emitted once the download finished, just before the local file is overwritten with new data. It indicates that all users should stop using the file immediately. This signal is always followed by the signal localFileChanged(), which indicates that the local file can be used again.
localFileName | Name of the local file that has will change |
|
overridevirtual |
Implementation of pure virtual method from Downloadable_Abstract.
This method deletes the local file. The singals aboutToChangeLocalFile() and localFileChanged() are emitted appropriately, and a QLockFile is used at fileName()+".lock".
Implements DataManagement::Downloadable_Abstract.
|
nodiscardoverridevirtual |
Implementation of pure virtual getter method from Downloadable_Abstract.
Implements DataManagement::Downloadable_Abstract.
|
inlinenodiscardoverridevirtual |
Implementation of pure virtual getter method from Downloadable_Abstract.
Implements DataManagement::Downloadable_Abstract.
Definition at line 155 of file Downloadable_SingleFile.h.
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 161 of file Downloadable_SingleFile.h.
|
signal |
Download progress.
While the download process is running, this signal is emitted at regular intervals, so the user can learn about the progress of the operation.
percentage | An integer between 0 and 100 |
|
nodiscard |
Getter function for the property with the same name.
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 167 of file Downloadable_SingleFile.h.
|
nodiscardoverridevirtual |
Implementation of pure virtual getter method from Downloadable_Abstract.
Implements DataManagement::Downloadable_Abstract.
|
nodiscardoverridevirtual |
Implementation of pure virtual getter method from Downloadable_Abstract.
Implements DataManagement::Downloadable_Abstract.
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 191 of file Downloadable_SingleFile.h.
|
signal |
Notifier signal for the properties remoteFileDate and remoteFileSize.
This signal is emitted once one of the property remoteFileDate changes, either in response to a use of the setter methods, or because downloadRemoteFileData() has been called and data has been retrieved from the server.
|
inlinenodiscardoverridevirtual |
Getter function for the property with the same name.
Implements DataManagement::Downloadable_Abstract.
Definition at line 197 of file Downloadable_SingleFile.h.
void DataManagement::Downloadable_SingleFile::setRemoteFileDate | ( | const QDateTime & | date | ) |
Setter function for the property with the same name.
date | Property remoteFileDate |
void DataManagement::Downloadable_SingleFile::setRemoteFileSize | ( | qint64 | size | ) |
Setter function for the property with the same name.
size | Property remoteFileSize |
|
overridevirtual |
Initiate a download.
Initiate an asynchronous download of the remote file. If a download is already in progress, nothing will happen. Otherwise, the following will take place.
Once all data has been downloaded successfully to the temporary file, the process continues as follows.
Implements DataManagement::Downloadable_Abstract.
Q_INVOKABLE void DataManagement::Downloadable_SingleFile::startInfoDownload | ( | ) |
Contacts the server and downloads information about the remote file.
This method contacts the remote server, retrieves information about the remote file and updates the properties remoteFileDate and remoteFileSize accordingly. This method runs asynchronously, and emits the signal remoteFileInfoChanged() if the data really changes. If a request is already running, this method does nothing.
|
overridevirtual |
Stops download process.
This method stops the currenly running download process gracefully and deletes any partially downloaded data. No signal will be emitted. If no download is in progress, nothing will happen.
Implements DataManagement::Downloadable_Abstract.
|
nodiscardoverridevirtual |
Implementation of pure virtual getter method from Downloadable_Abstract.
Implements DataManagement::Downloadable_Abstract.
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 209 of file Downloadable_SingleFile.h.
|
read |
Download progress.
This property holds the download progress in percent, if a download is ongoing. If no download is taking place, this property is undefined.
Definition at line 108 of file Downloadable_SingleFile.h.
|
read |
Content of the downloaded file.
This convenience property holds the content of the downloaded file, or a null QByteArray, if nothing has been downloaded
Definition at line 118 of file Downloadable_SingleFile.h.
|
readwrite |
Modification date of the remote file.
If the modification date of the remote file is not known, the property holds an invalid QDateTime. The property can be set with the method checkForUpdate(), or directly written to.
Definition at line 126 of file Downloadable_SingleFile.h.
|
readwrite |
Size of the remote file.
This property holds the size of the remote file. If the size date of the remote file is not known, the property holds an -1. The property can be set with the method checkForUpdate(), or directly written to.
Definition at line 134 of file Downloadable_SingleFile.h.