WebImageCache.cc 4.54 KB
Newer Older
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
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

    QGROUNDCONTROL is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    QGROUNDCONTROL is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

/**
 * @file
 *   @brief Definition of the class WebImageCache.
 *
 *   @author Lionel Heng <hengli@student.ethz.ch>
 *
 */

#include "WebImageCache.h"

#include <QNetworkReply>
#include <QPixmap>

WebImageCache::WebImageCache(QObject* parent, uint32_t _cacheSize)
    : QObject(parent)
    , cacheSize(_cacheSize)
    , currentReference(0)
    , networkManager(new QNetworkAccessManager)
{
43
    for (uint32_t i = 0; i < cacheSize; ++i) {
44 45 46 47 48 49 50 51 52 53
        WebImagePtr image(new WebImage);

        webImages.push_back(image);
    }

    connect(networkManager.data(), SIGNAL(finished(QNetworkReply*)),
            this, SLOT(downloadFinished(QNetworkReply*)));
}

QPair<WebImagePtr, int32_t>
54
WebImageCache::lookup(const QString& url)
55 56 57
{
    QPair<WebImagePtr, int32_t> cacheEntry;

58
    for (int32_t i = 0; i < webImages.size(); ++i) {
59
        if (webImages[i]->getState() != WebImage::UNINITIALIZED &&
60
                webImages[i]->getSourceURL() == url) {
61 62 63 64 65 66
            cacheEntry.first = webImages[i];
            cacheEntry.second = i;
            break;
        }
    }

67 68
    if (cacheEntry.first.isNull()) {
        for (int32_t i = 0; i < webImages.size(); ++i) {
69
            // get uninitialized image
70
            if (webImages[i]->getState() == WebImage::UNINITIALIZED) {
71 72 73 74 75 76 77 78
                cacheEntry.first = webImages[i];
                cacheEntry.second = i;
                break;
            }
            // get oldest image
            else if (webImages[i]->getState() == WebImage::READY &&
                     (cacheEntry.first.isNull() ||
                      webImages[i]->getLastReference() <
79
                      cacheEntry.first->getLastReference())) {
80 81 82 83 84
                cacheEntry.first = webImages[i];
                cacheEntry.second = i;
            }
        }

85
        if (cacheEntry.first.isNull()) {
86
            return qMakePair(WebImagePtr(), -1);
87 88
        } else {
            if (cacheEntry.first->getState() == WebImage::READY) {
89 90 91 92 93 94 95
                cacheEntry.first->clear();
            }
            cacheEntry.first->setSourceURL(url);
            cacheEntry.first->setLastReference(currentReference);
            ++currentReference;
            cacheEntry.first->setState(WebImage::REQUESTED);

96
            if (url.left(4).compare("http") == 0) {
97
                networkManager->get(QNetworkRequest(QUrl(url)));
98 99
            } else {
                if (cacheEntry.first->setData(url)) {
100 101
                    cacheEntry.first->setSyncFlag(true);
                    cacheEntry.first->setState(WebImage::READY);
102
                } else {
103 104 105 106 107 108
                    cacheEntry.first->setState(WebImage::UNINITIALIZED);
                }
            }

            return cacheEntry;
        }
109 110
    } else {
        if (cacheEntry.first->getState() == WebImage::READY) {
111 112 113
            cacheEntry.first->setLastReference(currentReference);
            ++currentReference;
            return cacheEntry;
114
        } else {
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
            return qMakePair(WebImagePtr(), -1);
        }
    }
}

WebImagePtr
WebImageCache::at(int32_t index) const
{
    return webImages[index];
}

void
WebImageCache::downloadFinished(QNetworkReply* reply)
{
    reply->deleteLater();

131
    if (reply->error() != QNetworkReply::NoError) {
132 133 134
        return;
    }
    QVariant attribute = reply->attribute(QNetworkRequest::RedirectionTargetAttribute);
135
    if (attribute.isValid()) {
136 137 138 139
        return;
    }

    WebImagePtr image;
140 141
    foreach(image, webImages) {
        if (reply->url().toString() == image->getSourceURL()) {
142 143 144 145 146 147 148 149
            image->setData(reply->readAll());
            image->setSyncFlag(true);
            image->setState(WebImage::READY);

            return;
        }
    }
}