From bed373d380d35294b03d228a2ef41cfa8fceb4b0 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 20 Aug 2013 23:48:51 +0100 Subject: Support TGA file directories and improve progress reporting when hashing directories of image files. --- src/lib/util.cc | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) (limited to 'src/lib/util.cc') diff --git a/src/lib/util.cc b/src/lib/util.cc index 26dfa8bf7..4180bbfd7 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -61,6 +61,7 @@ extern "C" { #include "sound_processor.h" #include "config.h" #include "ratio.h" +#include "job.h" #ifdef DCPOMATIC_WINDOWS #include "stack.hpp" #endif @@ -407,15 +408,24 @@ md5_digest (boost::filesystem::path file) return s.str (); } +/** @param job Optional job for which to report progress */ string -md5_digest_directory (boost::filesystem::path directory) +md5_digest_directory (boost::filesystem::path directory, shared_ptr job) { int const buffer_size = 64 * 1024; char buffer[buffer_size]; MD5_CTX md5_context; MD5_Init (&md5_context); - + + int files = 0; + if (job) { + for (boost::filesystem::directory_iterator i(directory); i != boost::filesystem::directory_iterator(); ++i) { + ++files; + } + } + + int j = 0; for (boost::filesystem::directory_iterator i(directory); i != boost::filesystem::directory_iterator(); ++i) { ifstream f (i->path().string().c_str(), std::ios::binary); if (!f.good ()) { @@ -432,6 +442,11 @@ md5_digest_directory (boost::filesystem::path directory) MD5_Update (&md5_context, buffer, t); bytes -= t; } + + if (job) { + job->set_progress (float (j) / files); + ++j; + } } unsigned char digest[MD5_DIGEST_LENGTH]; @@ -781,6 +796,6 @@ valid_image_file (boost::filesystem::path f) { string ext = f.extension().string(); transform (ext.begin(), ext.end(), ext.begin(), ::tolower); - return (ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp"); + return (ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp" || ext == ".tga"); } -- cgit v1.2.3