QGCMapEngineManager.h 7.89 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
    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(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
56
    //-- Tile set export
57
    Q_PROPERTY(int                  selectedCount   READ    selectedCount   NOTIFY selectedCountChanged)
Gus Grubba's avatar
Gus Grubba committed
58
    Q_PROPERTY(int                  actionProgress  READ    actionProgress  NOTIFY actionProgressChanged)
59
    Q_PROPERTY(ImportAction         importAction    READ    importAction    WRITE  setImportAction   NOTIFY importActionChanged)
Gus Grubba's avatar
Gus Grubba committed
60 61

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

    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
65
    Q_INVOKABLE void                startDownload           (const QString& name, const QString& mapType);
dogmaphobic's avatar
dogmaphobic committed
66 67 68
    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);
Gus Grubba's avatar
Gus Grubba committed
69
    Q_INVOKABLE void                renameTileSet           (QGCCachedTileSet* tileSet, QString newName);
dogmaphobic's avatar
dogmaphobic committed
70 71
    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

    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                 ();
    QmlObjectListModel*             tileSets                () { return &_tileSets; }
    quint32                         maxMemCache             ();
    quint32                         maxDiskCache            ();
    QString                         errorMessage            () { return _errorMessage; }
    quint64                         freeDiskSpace           () { return _freeDiskSpace; }
    quint64                         diskSpace               () { return _diskSpace; }
93
    int                             selectedCount           ();
Gus Grubba's avatar
Gus Grubba committed
94 95 96
    int                             actionProgress          () { return _actionProgress; }
    ImportAction                    importAction            () { return _importAction; }
    bool                            importReplace           () { return _importReplace; }
dogmaphobic's avatar
dogmaphobic committed
97 98 99

    void                            setMaxMemCache          (quint32 size);
    void                            setMaxDiskCache         (quint32 size);
Gus Grubba's avatar
Gus Grubba committed
100
    void                            setImportReplace        (bool replace) { _importReplace = replace; emit importReplaceChanged(); }
101
    void                            setImportAction         (ImportAction action)  {_importAction = action; emit importActionChanged(); }
dogmaphobic's avatar
dogmaphobic committed
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
    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 tileSetsChanged        ();
    void maxMemCacheChanged     ();
    void maxDiskCacheChanged    ();
    void errorMessageChanged    ();
    void freeDiskSpaceChanged   ();
119
    void selectedCountChanged   ();
Gus Grubba's avatar
Gus Grubba committed
120 121 122
    void actionProgressChanged  ();
    void importActionChanged    ();
    void importReplaceChanged   ();
dogmaphobic's avatar
dogmaphobic committed
123 124 125 126 127 128 129 130 131 132

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
133 134
    void _actionCompleted       ();
    void _actionProgressHandler (int percentage);
dogmaphobic's avatar
dogmaphobic committed
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151

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
152 153 154
    int         _actionProgress;
    ImportAction _importAction;
    bool        _importReplace;
dogmaphobic's avatar
dogmaphobic committed
155 156 157
};

#endif