QGCMapEngineManager.h 7.93 KB
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
dogmaphobic's avatar
dogmaphobic committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28


/// @file
///     @author Gus Grubba <mavlink@grubba.com>

#ifndef OfflineMapsManager_H
#define OfflineMapsManager_H

#include "QmlObjectListModel.h"
#include "QGCToolbox.h"
#include "QGCLoggingCategory.h"
#include "QGCMapEngine.h"
#include "QGCMapTileSet.h"

Q_DECLARE_LOGGING_CATEGORY(QGCMapEngineManagerLog)

class QGCMapEngineManager : public QGCTool
{
    Q_OBJECT
public:
29
    QGCMapEngineManager(QGCApplication* app, QGCToolbox* toolbox);
dogmaphobic's avatar
dogmaphobic committed
30 31
    ~QGCMapEngineManager();

Gus Grubba's avatar
Gus Grubba committed
32 33 34 35 36 37 38 39
    enum ImportAction {
        ActionNone,
        ActionImporting,
        ActionExporting,
        ActionDone,
    };
    Q_ENUMS(ImportAction)

dogmaphobic's avatar
dogmaphobic committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
    Q_PROPERTY(int                  tileX0          READ    tileX0          NOTIFY tileX0Changed)
    Q_PROPERTY(int                  tileX1          READ    tileX1          NOTIFY tileX1Changed)
    Q_PROPERTY(int                  tileY0          READ    tileY0          NOTIFY tileY0Changed)
    Q_PROPERTY(int                  tileY1          READ    tileY1          NOTIFY tileY1Changed)
    Q_PROPERTY(quint64              tileCount       READ    tileCount       NOTIFY tileCountChanged)
    Q_PROPERTY(QString              tileCountStr    READ    tileCountStr    NOTIFY tileCountChanged)
    Q_PROPERTY(quint64              tileSize        READ    tileSize        NOTIFY tileSizeChanged)
    Q_PROPERTY(QString              tileSizeStr     READ    tileSizeStr     NOTIFY tileSizeChanged)
    Q_PROPERTY(QmlObjectListModel*  tileSets        READ    tileSets        NOTIFY tileSetsChanged)
    Q_PROPERTY(QStringList          mapList         READ    mapList         CONSTANT)
    Q_PROPERTY(QString              mapboxToken     READ    mapboxToken     WRITE   setMapboxToken  NOTIFY  mapboxTokenChanged)
    Q_PROPERTY(quint32              maxMemCache     READ    maxMemCache     WRITE   setMaxMemCache  NOTIFY  maxMemCacheChanged)
    Q_PROPERTY(quint32              maxDiskCache    READ    maxDiskCache    WRITE   setMaxDiskCache NOTIFY  maxDiskCacheChanged)
    Q_PROPERTY(QString              errorMessage    READ    errorMessage    NOTIFY  errorMessageChanged)
    //-- Disk Space in MB
    Q_PROPERTY(quint32              freeDiskSpace   READ    freeDiskSpace   NOTIFY  freeDiskSpaceChanged)
    Q_PROPERTY(quint32              diskSpace       READ    diskSpace       CONSTANT)
Gus Grubba's avatar
Gus Grubba committed
57
    //-- Tile set export
58
    Q_PROPERTY(int                  selectedCount   READ    selectedCount   NOTIFY selectedCountChanged)
Gus Grubba's avatar
Gus Grubba committed
59 60 61 62
    Q_PROPERTY(int                  actionProgress  READ    actionProgress  NOTIFY actionProgressChanged)
    Q_PROPERTY(ImportAction         importAction    READ    importAction    NOTIFY importActionChanged)

    Q_PROPERTY(bool                 importReplace   READ    importReplace   WRITE   setImportReplace   NOTIFY importReplaceChanged)
dogmaphobic's avatar
dogmaphobic committed
63 64 65

    Q_INVOKABLE void                loadTileSets            ();
    Q_INVOKABLE void                updateForCurrentView    (double lon0, double lat0, double lon1, double lat1, int minZoom, int maxZoom, const QString& mapName);
dogmaphobic's avatar
dogmaphobic committed
66
    Q_INVOKABLE void                startDownload           (const QString& name, const QString& mapType);
dogmaphobic's avatar
dogmaphobic committed
67 68 69 70 71
    Q_INVOKABLE void                saveSetting             (const QString& key,  const QString& value);
    Q_INVOKABLE QString             loadSetting             (const QString& key,  const QString& defaultValue);
    Q_INVOKABLE void                deleteTileSet           (QGCCachedTileSet* tileSet);
    Q_INVOKABLE QString             getUniqueName           ();
    Q_INVOKABLE bool                findName                (const QString& name);
72 73
    Q_INVOKABLE void                selectAll               ();
    Q_INVOKABLE void                selectNone              ();
Gus Grubba's avatar
Gus Grubba committed
74
    Q_INVOKABLE bool                exportSets              (QString path = QString());
Gus Grubba's avatar
Gus Grubba committed
75
    Q_INVOKABLE bool                importSets              (QString path = QString());
Gus Grubba's avatar
Gus Grubba committed
76
    Q_INVOKABLE void                resetAction             ();
dogmaphobic's avatar
dogmaphobic committed
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93

    int                             tileX0                  () { return _totalSet.tileX0; }
    int                             tileX1                  () { return _totalSet.tileX1; }
    int                             tileY0                  () { return _totalSet.tileY0; }
    int                             tileY1                  () { return _totalSet.tileY1; }
    quint64                         tileCount               () { return _totalSet.tileCount; }
    QString                         tileCountStr            ();
    quint64                         tileSize                () { return _totalSet.tileSize; }
    QString                         tileSizeStr             ();
    QStringList                     mapList                 ();
    QString                         mapboxToken             ();
    QmlObjectListModel*             tileSets                () { return &_tileSets; }
    quint32                         maxMemCache             ();
    quint32                         maxDiskCache            ();
    QString                         errorMessage            () { return _errorMessage; }
    quint64                         freeDiskSpace           () { return _freeDiskSpace; }
    quint64                         diskSpace               () { return _diskSpace; }
94
    int                             selectedCount           ();
Gus Grubba's avatar
Gus Grubba committed
95 96 97
    int                             actionProgress          () { return _actionProgress; }
    ImportAction                    importAction            () { return _importAction; }
    bool                            importReplace           () { return _importReplace; }
dogmaphobic's avatar
dogmaphobic committed
98 99 100 101

    void                            setMapboxToken          (QString token);
    void                            setMaxMemCache          (quint32 size);
    void                            setMaxDiskCache         (quint32 size);
Gus Grubba's avatar
Gus Grubba committed
102
    void                            setImportReplace        (bool replace) { _importReplace = replace; emit importReplaceChanged(); }
dogmaphobic's avatar
dogmaphobic committed
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

    void                            setErrorMessage         (const QString& error) { _errorMessage = error; emit errorMessageChanged(); }

    // Override from QGCTool
    void setToolbox(QGCToolbox *toolbox);

signals:
    void tileX0Changed          ();
    void tileX1Changed          ();
    void tileY0Changed          ();
    void tileY1Changed          ();
    void tileCountChanged       ();
    void tileSizeChanged        ();
    void mapboxTokenChanged     ();
    void tileSetsChanged        ();
    void maxMemCacheChanged     ();
    void maxDiskCacheChanged    ();
    void errorMessageChanged    ();
    void freeDiskSpaceChanged   ();
122
    void selectedCountChanged   ();
Gus Grubba's avatar
Gus Grubba committed
123 124 125
    void actionProgressChanged  ();
    void importActionChanged    ();
    void importReplaceChanged   ();
dogmaphobic's avatar
dogmaphobic committed
126 127 128 129 130 131 132 133 134 135

public slots:
    void taskError              (QGCMapTask::TaskType type, QString error);

private slots:
    void _tileSetSaved          (QGCCachedTileSet* set);
    void _tileSetFetched        (QGCCachedTileSet* tileSets);
    void _tileSetDeleted        (quint64 setID);
    void _updateTotals          (quint32 totaltiles, quint64 totalsize, quint32 defaulttiles, quint64 defaultsize);
    void _resetCompleted        ();
Gus Grubba's avatar
Gus Grubba committed
136 137
    void _actionCompleted       ();
    void _actionProgressHandler (int percentage);
dogmaphobic's avatar
dogmaphobic committed
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154

private:
    void _updateDiskFreeSpace   ();

private:
    QGCTileSet  _totalSet;
    double      _topleftLat;
    double      _topleftLon;
    double      _bottomRightLat;
    double      _bottomRightLon;
    int         _minZoom;
    int         _maxZoom;
    quint64     _setID;
    quint32     _freeDiskSpace;
    quint32     _diskSpace;
    QmlObjectListModel _tileSets;
    QString     _errorMessage;
Gus Grubba's avatar
Gus Grubba committed
155 156 157
    int         _actionProgress;
    ImportAction _importAction;
    bool        _importReplace;
dogmaphobic's avatar
dogmaphobic committed
158 159 160
};

#endif