From 2368f3371bbdb587888d5f04095623c7b8b2ac2e Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Mon, 9 Nov 2015 16:48:12 +0100 Subject: Store Thumbnails with image hashes This drastically improves the time it takes to select a dive with several pictures at the expense of longer startup and bigger hash files. Signed-off-by: Robert C. Helling Signed-off-by: Dirk Hohndel --- qthelper.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'qthelper.cpp') diff --git a/qthelper.cpp b/qthelper.cpp index 7e4d64ec8..67ce5daff 100644 --- a/qthelper.cpp +++ b/qthelper.cpp @@ -1108,6 +1108,7 @@ extern "C" void reverseGeoLookup(degrees_t latitude, degrees_t longitude, uint32 QHash hashOf; QMutex hashOfMutex; QHash localFilenameOf; +QHash thumbnailCache; extern "C" char * hashstring(char * filename) { @@ -1131,6 +1132,7 @@ void read_hashes() QDataStream stream(&hashfile); stream >> localFilenameOf; stream >> hashOf; + stream >> thumbnailCache; hashfile.close(); } } @@ -1142,6 +1144,7 @@ void write_hashes() QDataStream stream(&hashfile); stream << localFilenameOf; stream << hashOf; + stream << thumbnailCache; hashfile.commit(); } else { qDebug() << "cannot open" << hashfile.fileName(); -- cgit v1.2.3-70-g09d2