Fix erroneous reports of unresolved assets when checking OV/VF pairs.
[libdcp.git] / src / verify.cc
1 /*
2     Copyright (C) 2018-2019 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     libdcp is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with libdcp.  If not, see <http://www.gnu.org/licenses/>.
18
19     In addition, as a special exception, the copyright holders give
20     permission to link the code of portions of this program with the
21     OpenSSL library under certain conditions as described in each
22     individual source file, and distribute linked combinations
23     including the two.
24
25     You must obey the GNU General Public License in all respects
26     for all of the code used other than OpenSSL.  If you modify
27     file(s) with this exception, you may extend this exception to your
28     version of the file(s), but you are not obligated to do so.  If you
29     do not wish to do so, delete this exception statement from your
30     version.  If you delete this exception statement from all source
31     files in the program, then also delete it here.
32 */
33
34 #include "verify.h"
35 #include "dcp.h"
36 #include "cpl.h"
37 #include "reel.h"
38 #include "reel_picture_asset.h"
39 #include "reel_sound_asset.h"
40 #include "exceptions.h"
41 #include "compose.hpp"
42 #include <boost/foreach.hpp>
43 #include <list>
44 #include <vector>
45 #include <iostream>
46
47 using std::list;
48 using std::vector;
49 using std::string;
50 using std::cout;
51 using boost::shared_ptr;
52 using boost::optional;
53 using boost::function;
54
55 using namespace dcp;
56
57 enum Result {
58         RESULT_GOOD,
59         RESULT_CPL_PKL_DIFFER,
60         RESULT_BAD
61 };
62
63 static Result
64 verify_asset (shared_ptr<DCP> dcp, shared_ptr<ReelAsset> reel_asset, function<void (float)> progress)
65 {
66         string const actual_hash = reel_asset->asset_ref()->hash(progress);
67
68         list<shared_ptr<PKL> > pkls = dcp->pkls();
69         /* We've read this DCP in so it must have at least one PKL */
70         DCP_ASSERT (!pkls.empty());
71
72         shared_ptr<Asset> asset = reel_asset->asset_ref().asset();
73
74         optional<string> pkl_hash;
75         BOOST_FOREACH (shared_ptr<PKL> i, pkls) {
76                 pkl_hash = i->hash (reel_asset->asset_ref()->id());
77                 if (pkl_hash) {
78                         break;
79                 }
80         }
81
82         DCP_ASSERT (pkl_hash);
83
84         optional<string> cpl_hash = reel_asset->hash();
85         if (cpl_hash && *cpl_hash != *pkl_hash) {
86                 return RESULT_CPL_PKL_DIFFER;
87         }
88
89         if (actual_hash != *pkl_hash) {
90                 return RESULT_BAD;
91         }
92
93         return RESULT_GOOD;
94 }
95
96 list<VerificationNote>
97 dcp::verify (vector<boost::filesystem::path> directories, function<void (string, optional<boost::filesystem::path>)> stage, function<void (float)> progress)
98 {
99         list<VerificationNote> notes;
100
101         list<shared_ptr<DCP> > dcps;
102         BOOST_FOREACH (boost::filesystem::path i, directories) {
103                 dcps.push_back (shared_ptr<DCP> (new DCP (i)));
104         }
105
106         BOOST_FOREACH (shared_ptr<DCP> dcp, dcps) {
107                 stage ("Checking DCP", dcp->directory());
108                 DCP::ReadErrors errors;
109                 try {
110                         dcp->read (true, &errors);
111                 } catch (DCPReadError& e) {
112                         notes.push_back (VerificationNote(VerificationNote::VERIFY_ERROR, VerificationNote::GENERAL_READ, string(e.what())));
113                 } catch (XMLError& e) {
114                         notes.push_back (VerificationNote(VerificationNote::VERIFY_ERROR, VerificationNote::GENERAL_READ, string(e.what())));
115                 }
116
117                 BOOST_FOREACH (shared_ptr<CPL> cpl, dcp->cpls()) {
118                         stage ("Checking CPL", cpl->file());
119
120                         /* Check that the CPL's hash corresponds to the PKL */
121                         BOOST_FOREACH (shared_ptr<PKL> i, dcp->pkls()) {
122                                 optional<string> h = i->hash(cpl->id());
123                                 if (h && make_digest(Data(*cpl->file())) != *h) {
124                                         notes.push_back (VerificationNote(VerificationNote::VERIFY_ERROR, VerificationNote::CPL_HASH_INCORRECT));
125                                 }
126                         }
127
128                         BOOST_FOREACH (shared_ptr<Reel> reel, cpl->reels()) {
129                                 stage ("Checking reel", optional<boost::filesystem::path>());
130                                 if (reel->main_picture()) {
131                                         /* Check reel stuff */
132                                         Fraction const frame_rate = reel->main_picture()->frame_rate();
133                                         if (frame_rate.denominator != 1 ||
134                                             (frame_rate.numerator != 24 &&
135                                              frame_rate.numerator != 25 &&
136                                              frame_rate.numerator != 30 &&
137                                              frame_rate.numerator != 48 &&
138                                              frame_rate.numerator != 50 &&
139                                              frame_rate.numerator != 60)) {
140                                                 notes.push_back (VerificationNote(VerificationNote::VERIFY_ERROR, VerificationNote::INVALID_PICTURE_FRAME_RATE));
141                                         }
142                                         /* Check asset */
143                                         if (reel->main_picture()->asset_ref().resolved()) {
144                                                 stage ("Checking picture asset hash", reel->main_picture()->asset()->file());
145                                                 Result const r = verify_asset (dcp, reel->main_picture(), progress);
146                                                 switch (r) {
147                                                 case RESULT_BAD:
148                                                         notes.push_back (
149                                                                 VerificationNote(
150                                                                         VerificationNote::VERIFY_ERROR, VerificationNote::PICTURE_HASH_INCORRECT, *reel->main_picture()->asset()->file()
151                                                                         )
152                                                                 );
153                                                         break;
154                                                 case RESULT_CPL_PKL_DIFFER:
155                                                         notes.push_back (VerificationNote(VerificationNote::VERIFY_ERROR, VerificationNote::PKL_CPL_PICTURE_HASHES_DISAGREE));
156                                                         break;
157                                                 default:
158                                                         break;
159                                                 }
160                                         }
161                                 }
162                                 if (reel->main_sound() && reel->main_sound()->asset_ref().resolved()) {
163                                         stage ("Checking sound asset hash", reel->main_sound()->asset()->file());
164                                         Result const r = verify_asset (dcp, reel->main_sound(), progress);
165                                         switch (r) {
166                                         case RESULT_BAD:
167                                                 notes.push_back (
168                                                         VerificationNote(
169                                                                 VerificationNote::VERIFY_ERROR, VerificationNote::SOUND_HASH_INCORRECT, *reel->main_sound()->asset()->file()
170                                                                 )
171                                                         );
172                                                 break;
173                                         case RESULT_CPL_PKL_DIFFER:
174                                                 notes.push_back (VerificationNote (VerificationNote::VERIFY_ERROR, VerificationNote::PKL_CPL_SOUND_HASHES_DISAGREE));
175                                                 break;
176                                         default:
177                                                 break;
178                                         }
179                                 }
180                         }
181                 }
182         }
183
184         return notes;
185 }