Fix merge; other tweaks.
[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 "options.h"
25 #include "log.h"
26 #include "job_manager.h"
27 #include "ab_transcode_job.h"
28 #include "transcode_job.h"
29 #include "film.h"
30 #include "exceptions.h"
31
32 using std::string;
33 using std::stringstream;
34 using std::ifstream;
35 using boost::shared_ptr;
36
37 CheckHashesJob::CheckHashesJob (shared_ptr<Film> f, shared_ptr<const Options> o, shared_ptr<Job> req)
38         : Job (f, req)
39         , _opt (o)
40         , _bad (0)
41 {
42
43 }
44
45 string
46 CheckHashesJob::name () const
47 {
48         return String::compose ("Check hashes of %1", _film->name());
49 }
50
51 void
52 CheckHashesJob::run ()
53 {
54         _bad = 0;
55
56         if (!_film->dcp_length()) {
57                 throw EncodeError ("cannot check hashes of a DCP with unknown length");
58         }
59         
60         SourceFrame const N = _film->dcp_trim_start() + _film->dcp_length().get();
61         DCPFrameRate const dfr = dcp_frame_rate (_film->frames_per_second ());
62         
63         for (SourceFrame i = _film->dcp_trim_start(); i < N; i += dfr.skip) {
64                 string const j2k_file = _opt->frame_out_path (i, false);
65                 string const hash_file = j2k_file + ".md5";
66
67                 if (!boost::filesystem::exists (j2k_file)) {
68                         _film->log()->log (String::compose ("Frame %1 has a missing J2K file.", i));
69                         boost::filesystem::remove (hash_file);
70                         ++_bad;
71                 } else if (!boost::filesystem::exists (hash_file)) {
72                         _film->log()->log (String::compose ("Frame %1 has a missing hash file.", i));
73                         boost::filesystem::remove (j2k_file);
74                         ++_bad;
75                 } else {
76                         ifstream ref (hash_file.c_str ());
77                         string hash;
78                         ref >> hash;
79                         if (hash != md5_digest (j2k_file)) {
80                                 _film->log()->log (String::compose ("Frame %1 has wrong hash; deleting.", i));
81                                 boost::filesystem::remove (j2k_file);
82                                 boost::filesystem::remove (hash_file);
83                                 ++_bad;
84                         }
85                 }
86
87                 set_progress (float (i) / N);
88         }
89
90         if (_bad) {
91                 shared_ptr<Job> tc;
92
93                 if (_film->dcp_ab()) {
94                         tc.reset (new ABTranscodeJob (_film, _opt, shared_from_this()));
95                 } else {
96                         tc.reset (new TranscodeJob (_film, _opt, shared_from_this()));
97                 }
98                 
99                 JobManager::instance()->add_after (shared_from_this(), tc);
100                 JobManager::instance()->add_after (tc, shared_ptr<Job> (new CheckHashesJob (_film, _opt, tc)));
101         }
102                 
103         set_progress (1);
104         set_state (FINISHED_OK);
105 }
106
107 string
108 CheckHashesJob::status () const
109 {
110         stringstream s;
111         s << Job::status ();
112         if (overall_progress() > 0) {
113                 if (_bad == 0) {
114                         s << "; no bad frames found";
115                 } else if (_bad == 1) {
116                         s << "; 1 bad frame found";
117                 } else {
118                         s << "; " << _bad << " bad frames found";
119                 }
120         }
121         return s.str ();
122 }