Missing frames treated as bad on check hashes. Try to stop running makedcp if jobs...
authorCarl Hetherington <cth@carlh.net>
Sun, 21 Oct 2012 11:24:59 +0000 (12:24 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 21 Oct 2012 11:24:59 +0000 (12:24 +0100)
src/lib/check_hashes_job.cc
src/tools/makedcp.cc

index d64ccc866b921412dfc45d99729a35651322781b..eff9153d958ca6dbba7b0080dfd86312cf372b6f 100644 (file)
@@ -55,15 +55,24 @@ CheckHashesJob::run ()
                string const j2k_file = _opt->frame_out_path (i, false);
                string const hash_file = j2k_file + ".md5";
 
-               ifstream ref (hash_file.c_str ());
-               string hash;
-               ref >> hash;
-
-               if (hash != md5_digest (j2k_file)) {
-                       _log->log ("Frame " + lexical_cast<string> (i) + " has wrong hash; deleting.");
-                       filesystem::remove (j2k_file);
+               if (!filesystem::exists (j2k_file)) {
+                       _log->log (String::compose ("Frame %1 has a missing J2K file.", i));
                        filesystem::remove (hash_file);
                        ++_bad;
+               } else if (!filesystem::exists (hash_file)) {
+                       _log->log (String::compose ("Frame %1 has a missing hash file.", i));
+                       filesystem::remove (j2k_file);
+                       ++_bad;
+               } else {
+                       ifstream ref (hash_file.c_str ());
+                       string hash;
+                       ref >> hash;
+                       if (hash != md5_digest (j2k_file)) {
+                               _log->log (String::compose ("Frame %1 has wrong hash; deleting.", i));
+                               filesystem::remove (j2k_file);
+                               filesystem::remove (hash_file);
+                               ++_bad;
+                       }
                }
 
                set_progress (float (i) / _fs->length());
index 71a07fe7188aa4ea0b2c2242af965f9759be5e20..23b68148d30f9e71bc27955bf48ec61dd16b38a1 100644 (file)
@@ -164,9 +164,9 @@ main (int argc, char* argv[])
 
        film->make_dcp (true);
 
-       bool all_done = false;
+       bool should_stop = false;
        bool first = true;
-       while (!all_done) {
+       while (!should_stop) {
 
                dvdomatic_sleep (5);
 
@@ -178,8 +178,10 @@ main (int argc, char* argv[])
                }
 
                first = false;
-               
-               all_done = true;
+
+               int unfinished = 0;
+               int finished_in_error = 0;
+
                for (list<shared_ptr<Job> >::iterator i = jobs.begin(); i != jobs.end(); ++i) {
                        if (progress) {
                                cout << (*i)->name() << ": ";
@@ -192,9 +194,15 @@ main (int argc, char* argv[])
                                        cout << ": Running           \n";
                                }
                        }
-                       
+
                        if (!(*i)->finished ()) {
-                               all_done = false;
+                               cout << (*i)->name() << " not finished.\n";
+                               ++unfinished;
+                       }
+
+                       if ((*i)->finished_in_error ()) {
+                               cout << (*i)->name() << " finished in error.\n";
+                               ++finished_in_error;
                        }
 
                        if (!progress && (*i)->finished_in_error ()) {
@@ -204,6 +212,10 @@ main (int argc, char* argv[])
                                cout << (*i)->status() << "\n";
                        }
                }
+
+               if (unfinished == 0 || finished_in_error != 0) {
+                       should_stop = true;
+               }
        }
 
        return 0;