Re-transcode and re-check J2Ks after a bad one is found.
[dcpomatic.git] / src / lib / check_hashes_job.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <fstream>
21 #include <boost/lexical_cast.hpp>
22 #include <boost/filesystem.hpp>
23 #include "check_hashes_job.h"
24 #include "film_state.h"
25 #include "options.h"
26 #include "log.h"
27 #include "job_manager.h"
28 #include "ab_transcode_job.h"
29 #include "transcode_job.h"
30
31 using namespace std;
32 using namespace boost;
33
34 CheckHashesJob::CheckHashesJob (shared_ptr<const FilmState> s, shared_ptr<const Options> o, Log* l)
35         : Job (s, o, l)
36         , _bad (0)
37 {
38
39 }
40
41 string
42 CheckHashesJob::name () const
43 {
44         stringstream s;
45         s << "Check hashes of " << _fs->name;
46         return s.str ();
47 }
48
49 void
50 CheckHashesJob::run ()
51 {
52         _bad = 0;
53         
54         for (int i = 0; i < _fs->length; ++i) {
55                 string const j2k_file = _opt->frame_out_path (i, false);
56                 string const hash_file = j2k_file + ".md5";
57
58                 ifstream ref (hash_file.c_str ());
59                 string hash;
60                 ref >> hash;
61
62                 if (hash != md5_digest (j2k_file)) {
63                         _log->log ("Frame " + lexical_cast<string> (i) + " has wrong hash; deleting.");
64                         filesystem::remove (j2k_file);
65                         filesystem::remove (hash_file);
66                         ++_bad;
67                 }
68
69                 set_progress (float (i) / _fs->length);
70         }
71
72         if (_bad) {
73                 shared_ptr<Job> tc;
74
75                 if (_fs->dcp_ab) {
76                         tc.reset (new ABTranscodeJob (_fs, _opt, _log));
77                 } else {
78                         tc.reset (new TranscodeJob (_fs, _opt, _log));
79                 }
80                 
81                 JobManager::instance()->add_after (shared_from_this(), tc);
82                 JobManager::instance()->add_after (tc, shared_ptr<Job> (new CheckHashesJob (_fs, _opt, _log)));
83         }
84                 
85         set_progress (1);
86         set_state (FINISHED_OK);
87 }
88
89 string
90 CheckHashesJob::status () const
91 {
92         stringstream s;
93         s << Job::status ();
94         if (overall_progress() > 0) {
95                 if (_bad == 0) {
96                         s << "; no bad frames found";
97                 } else if (_bad == 1) {
98                         s << "; 1 bad frame found";
99                 } else {
100                         s << "; " << _bad << " bad frames found";
101                 }
102         }
103         return s.str ();
104 }