QGeoMapReplyQGC.cpp 6.79 KB
Newer Older
dogmaphobic's avatar
dogmaphobic committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
/****************************************************************************
**
** Copyright (C) 2013 Aaron McCarthy <mccarthy.aaron@gmail.com>
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtLocation module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.  For licensing terms and
** conditions see http://qt.digia.com/licensing.  For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights.  These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3.0 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU General Public License version 3.0 requirements will be
** met: http://www.gnu.org/copyleft/gpl.html.
**
**
** $QT_END_LICENSE$
**
** 2015.4.4
** Adapted for use with QGroundControl
**
** Gus Grubba <mavlink@grubba.com>
**
****************************************************************************/

dogmaphobic's avatar
dogmaphobic committed
47 48
#include "QGCMapEngine.h"
#include "QGeoMapReplyQGC.h"
49
#include "QGeoTileFetcherQGC.h"
dogmaphobic's avatar
dogmaphobic committed
50

dogmaphobic's avatar
dogmaphobic committed
51 52 53 54
#include <QtLocation/private/qgeotilespec_p.h>
#include <QtNetwork/QNetworkAccessManager>
#include <QFile>

55 56
int QGeoTiledMapReplyQGC::_requestCount = 0;

dogmaphobic's avatar
dogmaphobic committed
57 58 59 60 61 62 63 64
//-----------------------------------------------------------------------------
QGeoTiledMapReplyQGC::QGeoTiledMapReplyQGC(QNetworkAccessManager *networkManager, const QNetworkRequest &request, const QGeoTileSpec &spec, QObject *parent)
    : QGeoTiledMapReply(spec, parent)
    , _reply(NULL)
    , _request(request)
    , _networkManager(networkManager)
{
    if(_request.url().isEmpty()) {
Gus Grubba's avatar
Gus Grubba committed
65
        if(!_badMapbox.size()) {
66 67
            QFile b(":/res/notile.png");
            if(b.open(QFile::ReadOnly))
Gus Grubba's avatar
Gus Grubba committed
68
                _badMapbox = b.readAll();
69
        }
Gus Grubba's avatar
Gus Grubba committed
70
        setMapImageData(_badMapbox);
71 72 73
        setMapImageFormat("png");
        setFinished(true);
        setCached(false);
dogmaphobic's avatar
dogmaphobic committed
74 75 76 77 78 79 80 81 82 83
    } else {
        QGCFetchTileTask* task = getQGCMapEngine()->createFetchTileTask((UrlFactory::MapType)spec.mapId(), spec.x(), spec.y(), spec.zoom());
        connect(task, &QGCFetchTileTask::tileFetched, this, &QGeoTiledMapReplyQGC::cacheReply);
        connect(task, &QGCMapTask::error, this, &QGeoTiledMapReplyQGC::cacheError);
        getQGCMapEngine()->addTask(task);
    }
}

//-----------------------------------------------------------------------------
QGeoTiledMapReplyQGC::~QGeoTiledMapReplyQGC()
84 85 86 87 88 89 90
{
    _clearReply();
}

//-----------------------------------------------------------------------------
void
QGeoTiledMapReplyQGC::_clearReply()
dogmaphobic's avatar
dogmaphobic committed
91
{
92
    _timer.stop();
dogmaphobic's avatar
dogmaphobic committed
93 94 95
    if (_reply) {
        _reply->deleteLater();
        _reply = 0;
96
        _requestCount--;
dogmaphobic's avatar
dogmaphobic committed
97 98
    }
}
99

dogmaphobic's avatar
dogmaphobic committed
100 101
//-----------------------------------------------------------------------------
void
102
QGeoTiledMapReplyQGC::abort()
dogmaphobic's avatar
dogmaphobic committed
103
{
104
    _timer.stop();
105 106
    if (_reply)
        _reply->abort();
dogmaphobic's avatar
dogmaphobic committed
107 108 109 110 111 112
}

//-----------------------------------------------------------------------------
void
QGeoTiledMapReplyQGC::networkReplyFinished()
{
113
    _timer.stop();
dogmaphobic's avatar
dogmaphobic committed
114 115 116 117 118 119 120 121 122 123 124 125 126 127
    if (!_reply) {
        return;
    }
    if (_reply->error() != QNetworkReply::NoError) {
        return;
    }
    QByteArray a = _reply->readAll();
    setMapImageData(a);
    QString format = getQGCMapEngine()->urlFactory()->getImageFormat((UrlFactory::MapType)tileSpec().mapId(), a);
    if(!format.isEmpty()) {
        setMapImageFormat(format);
        getQGCMapEngine()->cacheTile((UrlFactory::MapType)tileSpec().mapId(), tileSpec().x(), tileSpec().y(), tileSpec().zoom(), a, format);
    }
    setFinished(true);
128
    _clearReply();
dogmaphobic's avatar
dogmaphobic committed
129 130 131 132 133 134
}

//-----------------------------------------------------------------------------
void
QGeoTiledMapReplyQGC::networkReplyError(QNetworkReply::NetworkError error)
{
135
    _timer.stop();
dogmaphobic's avatar
dogmaphobic committed
136 137 138 139 140
    if (!_reply) {
        return;
    }
    if (error != QNetworkReply::OperationCanceledError) {
        qWarning() << "Fetch tile error:" << _reply->errorString();
141
        setError(QGeoTiledMapReply::CommunicationError, _reply->errorString());
dogmaphobic's avatar
dogmaphobic committed
142
    }
143
    setFinished(true);
144
    _clearReply();
dogmaphobic's avatar
dogmaphobic committed
145 146 147 148 149 150
}

//-----------------------------------------------------------------------------
void
QGeoTiledMapReplyQGC::cacheError(QGCMapTask::TaskType type, QString /*errorString*/)
{
151 152 153
    if(!getQGCMapEngine()->isInternetActive()) {
        setError(QGeoTiledMapReply::CommunicationError, "Network not available");
        setFinished(true);
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
    } else {
        if(type != QGCMapTask::taskFetchTile) {
            qWarning() << "QGeoTiledMapReplyQGC::cacheError() for wrong task";
        }
        //-- Tile not in cache. Get it off the Internet.
#if !defined(__mobile__)
        QNetworkProxy proxy = _networkManager->proxy();
        QNetworkProxy tProxy;
        tProxy.setType(QNetworkProxy::DefaultProxy);
        _networkManager->setProxy(tProxy);
#endif
        _reply = _networkManager->get(_request);
        _reply->setParent(0);
        connect(_reply, SIGNAL(finished()),                         this, SLOT(networkReplyFinished()));
        connect(_reply, SIGNAL(error(QNetworkReply::NetworkError)), this, SLOT(networkReplyError(QNetworkReply::NetworkError)));
#if !defined(__mobile__)
        _networkManager->setProxy(proxy);
#endif
        //- Wait for an answer up to 10 seconds
        connect(&_timer, &QTimer::timeout, this, &QGeoTiledMapReplyQGC::timeout);
        _timer.setSingleShot(true);
        _timer.start(10000);
        _requestCount++;
dogmaphobic's avatar
dogmaphobic committed
177 178 179 180 181 182 183 184 185 186 187 188 189
    }
}

//-----------------------------------------------------------------------------
void
QGeoTiledMapReplyQGC::cacheReply(QGCCacheTile* tile)
{
    setMapImageData(tile->img());
    setMapImageFormat(tile->format());
    setFinished(true);
    setCached(true);
    tile->deleteLater();
}
190 191 192 193 194 195 196 197 198

//-----------------------------------------------------------------------------
void
QGeoTiledMapReplyQGC::timeout()
{
    if(_reply) {
        _reply->abort();
    }
}