Supporters update.
[dcpomatic.git] / src / lib / verify_dcp_job.cc
1 /*
2     Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic 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     DCP-o-matic 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 DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "config.h"
23 #include "cross.h"
24 #include "verify_dcp_job.h"
25 #include "content.h"
26
27 #include "i18n.h"
28
29
30 using std::string;
31 using std::vector;
32 using std::shared_ptr;
33 using boost::optional;
34 #if BOOST_VERSION >= 106100
35 using namespace boost::placeholders;
36 #endif
37
38
39 VerifyDCPJob::VerifyDCPJob(vector<boost::filesystem::path> directories, vector<boost::filesystem::path> kdms)
40         : Job (shared_ptr<Film>())
41         , _directories (directories)
42         , _kdms(kdms)
43 {
44
45 }
46
47
48 VerifyDCPJob::~VerifyDCPJob ()
49 {
50         stop_thread ();
51 }
52
53
54 string
55 VerifyDCPJob::name () const
56 {
57         return _("Verify DCP");
58 }
59
60
61 string
62 VerifyDCPJob::json_name () const
63 {
64         return N_("verify_dcp");
65 }
66
67
68 void
69 VerifyDCPJob::update_stage (string s, optional<boost::filesystem::path> path)
70 {
71         if (path) {
72                 s += ": " + path->string();
73         }
74         sub (s);
75 }
76
77
78 void
79 VerifyDCPJob::run ()
80 {
81         vector<dcp::DecryptedKDM> decrypted_kdms;
82         auto key = Config::instance()->decryption_chain()->key();
83         if (key) {
84                 for (auto kdm: _kdms) {
85                         decrypted_kdms.push_back(dcp::DecryptedKDM{dcp::EncryptedKDM(dcp::file_to_string(kdm)), *key});
86                 }
87         }
88
89         _notes = dcp::verify(
90                 _directories,
91                 decrypted_kdms,
92                 bind(&VerifyDCPJob::update_stage, this, _1, _2),
93                 bind(&VerifyDCPJob::set_progress, this, _1, false),
94                 {},
95                 libdcp_resources_path() / "xsd"
96                 );
97
98         bool failed = false;
99         for (auto i: _notes) {
100                 if (i.type() == dcp::VerificationNote::Type::ERROR) {
101                         failed = true;
102                 }
103         }
104
105         set_progress (1);
106         set_state (failed ? FINISHED_ERROR : FINISHED_OK);
107 }