diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-03-07 16:37:31 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-05-13 13:52:35 -0700 |
commit | f60343eebbf6a31a4643dde9f4454f6ce84f61d3 (patch) | |
tree | 160871fa52c6973c1d9e1459df6c98d6b5db19a4 /core/imagedownloader.cpp | |
parent | 5d372cfda3770207ce95e6d64ac2ee141681421b (diff) | |
download | subsurface-f60343eebbf6a31a4643dde9f4454f6ce84f61d3.tar.gz |
Dive pictures: replace picture struct by QString
In imagedownloader.cpp the only thing we need from the picture struct
is the filename. Therefore, use QStrings instead of the picture struct.
This simplifies memory management.
Remove the clone_picture() function, which is not needed anymore.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/imagedownloader.cpp')
-rw-r--r-- | core/imagedownloader.cpp | 50 |
1 files changed, 19 insertions, 31 deletions
diff --git a/core/imagedownloader.cpp b/core/imagedownloader.cpp index 772365d38..a1f98fc9c 100644 --- a/core/imagedownloader.cpp +++ b/core/imagedownloader.cpp @@ -16,23 +16,17 @@ static QUrl cloudImageURL(const char *filename) return QUrl::fromUserInput(QString("https://cloud.subsurface-divelog.org/images/").append(hash)); } -ImageDownloader::ImageDownloader(struct picture *pic) +ImageDownloader::ImageDownloader(const QString &filename_in) : filename(filename_in) { - picture = pic; -} - -ImageDownloader::~ImageDownloader() -{ - picture_free(picture); } void ImageDownloader::load(bool fromHash) { - if (fromHash && loadFromUrl(cloudImageURL(picture->filename))) + if (fromHash && loadFromUrl(cloudImageURL(qPrintable(filename)))) return; // If loading from hash failed, try to load from filename - loadFromUrl(QUrl::fromUserInput(QString(picture->filename))); + loadFromUrl(QUrl::fromUserInput(filename)); } bool ImageDownloader::loadFromUrl(const QUrl &url) @@ -75,7 +69,7 @@ void ImageDownloader::saveImage(QNetworkReply *reply, bool &success) stream.writeRawData(imageData.data(), imageData.length()); imageFile.waitForBytesWritten(-1); imageFile.close(); - learnHash(QString(picture->filename), imageFile.fileName(), hash.result()); + learnHash(filename, imageFile.fileName(), hash.result()); } // This should be called to make the picture actually show. // Problem is DivePictureModel is not in core. @@ -84,22 +78,18 @@ void ImageDownloader::saveImage(QNetworkReply *reply, bool &success) } -static void loadPicture(struct picture *picture, bool fromHash) +static void loadPicture(QString filename, bool fromHash) { static QSet<QString> queuedPictures; static QMutex pictureQueueMutex; - if (!picture) - return; QMutexLocker locker(&pictureQueueMutex); - if (queuedPictures.contains(QString(picture->filename))) { - picture_free(picture); + if (queuedPictures.contains(filename)) return; - } - queuedPictures.insert(QString(picture->filename)); + queuedPictures.insert(filename); locker.unlock(); - ImageDownloader download(picture); + ImageDownloader download(filename); download.load(fromHash); } @@ -113,38 +103,36 @@ static QImage loadImage(const QString &fileName, const char *format = nullptr) return res; } -QImage getHashedImage(struct picture *picture) +QImage getHashedImage(const QString &file) { QImage res; - QUrl url = QUrl::fromUserInput(localFilePath(QString(picture->filename))); - if(url.isLocalFile()) + QUrl url = QUrl::fromUserInput(localFilePath(file)); + if (url.isLocalFile()) res = loadImage(url.toLocalFile()); if (res.isNull()) { // This did not load anything. Let's try to get the image from other sources // Let's try to load it locally via its hash - QString filename = localFilePath(picture->filename); - qDebug() << QStringLiteral("Translated filename: %1 -> %2").arg(picture->filename, filename); - if (filename.isNull()) { + QString filenameLocal = localFilePath(qPrintable(file)); + qDebug() << QStringLiteral("Translated filename: %1 -> %2").arg(file, filenameLocal); + if (filenameLocal.isNull()) { // That didn't produce a local filename. // Try the cloud server // TODO: This is dead code at the moment. - QtConcurrent::run(loadPicture, clone_picture(picture), true); + QtConcurrent::run(loadPicture, file, true); } else { // Load locally from translated file name - res = loadImage(filename); + res = loadImage(filenameLocal); if (!res.isNull()) { // Make sure the hash still matches the image file - qDebug() << "Loaded picture from translated filename" << filename; - QtConcurrent::run(hashPicture, clone_picture(picture)); + QtConcurrent::run(hashPicture, filenameLocal); } else { // Interpret filename as URL - qInfo() << "Failed loading picture from translated filename" << filename; - QtConcurrent::run(loadPicture, clone_picture(picture), false); + QtConcurrent::run(loadPicture, filenameLocal, false); } } } else { // We loaded successfully. Now, make sure hash is up to date. - QtConcurrent::run(hashPicture, clone_picture(picture)); + QtConcurrent::run(hashPicture, file); } return res; } |