Give DCPFrameRate a constructor. Add repeat member and cleverer dcp frame rate calcu...
[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 DecodeOptions> od, shared_ptr<const EncodeOptions> oe, shared_ptr<Job> req)
38         : Job (f, req)
39         , _decode_opt (od)
40         , _encode_opt (oe)
41         , _bad (0)
42 {
43
44 }
45
46 string
47 CheckHashesJob::name () const
48 {
49         return String::compose ("Check hashes of %1", _film->name());
50 }
51
52 void
53 CheckHashesJob::run ()
54 {
55         _bad = 0;
56
57         if (!_film->dcp_length()) {
58                 throw EncodeError ("cannot check hashes of a DCP with unknown length");
59         }
60         
61         SourceFrame const N = _film->dcp_trim_start() + _film->dcp_length().get();
62         DCPFrameRate const dfr (_film->frames_per_second ());
63
64         int const inc = dfr.skip ? 2 : 1;
65         
66         for (SourceFrame i = _film->dcp_trim_start(); i < N; i += inc) {
67                 string const j2k_file = _encode_opt->frame_out_path (i, false);
68                 string const hash_file = _encode_opt->hash_out_path (i, false);
69
70                 if (!boost::filesystem::exists (j2k_file)) {
71                         _film->log()->log (String::compose ("Frame %1 has a missing J2K file.", i));
72                         boost::filesystem::remove (hash_file);
73                         ++_bad;
74                 } else if (!boost::filesystem::exists (hash_file)) {
75                         _film->log()->log (String::compose ("Frame %1 has a missing hash file.", i));
76                         boost::filesystem::remove (j2k_file);
77                         ++_bad;
78                 } else {
79                         ifstream ref (hash_file.c_str ());
80                         string hash;
81                         ref >> hash;
82                         if (hash != md5_digest (j2k_file)) {
83                                 _film->log()->log (String::compose ("Frame %1 has wrong hash; deleting.", i));
84                                 boost::filesystem::remove (j2k_file);
85                                 boost::filesystem::remove (hash_file);
86                                 ++_bad;
87                         }
88                 }
89
90                 set_progress (float (i) / N);
91         }
92
93         if (_bad) {
94                 shared_ptr<Job> tc;
95
96                 if (_film->dcp_ab()) {
97                         tc.reset (new ABTranscodeJob (_film, _decode_opt, _encode_opt, shared_from_this()));
98                 } else {
99                         tc.reset (new TranscodeJob (_film, _decode_opt, _encode_opt, shared_from_this()));
100                 }
101                 
102                 JobManager::instance()->add_after (shared_from_this(), tc);
103                 JobManager::instance()->add_after (tc, shared_ptr<Job> (new CheckHashesJob (_film, _decode_opt, _encode_opt, tc)));
104         }
105                 
106         set_progress (1);
107         set_state (FINISHED_OK);
108 }
109
110 string
111 CheckHashesJob::status () const
112 {
113         stringstream s;
114         s << Job::status ();
115         if (overall_progress() > 0) {
116                 if (_bad == 0) {
117                         s << "; no bad frames found";
118                 } else if (_bad == 1) {
119                         s << "; 1 bad frame found";
120                 } else {
121                         s << "; " << _bad << " bad frames found";
122                 }
123         }
124         return s.str ();
125 }