bd5634669985116de4b74ee9aa6ca9609973bcfe
[dcpomatic.git] / src / lib / verify_dcp_job.cc
1 /*
2     Copyright (C) 2018-2019 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 #include "cross.h"
22 #include "verify_dcp_job.h"
23 #include "content.h"
24
25 #include "i18n.h"
26
27 using std::string;
28 using std::vector;
29 using std::shared_ptr;
30 using boost::optional;
31 #if BOOST_VERSION >= 106100
32 using namespace boost::placeholders;
33 #endif
34
35 VerifyDCPJob::VerifyDCPJob (vector<boost::filesystem::path> directories)
36         : Job (shared_ptr<Film>())
37         , _directories (directories)
38 {
39
40 }
41
42 VerifyDCPJob::~VerifyDCPJob ()
43 {
44         stop_thread ();
45 }
46
47 string
48 VerifyDCPJob::name () const
49 {
50         return _("Verify DCP");
51 }
52
53 string
54 VerifyDCPJob::json_name () const
55 {
56         return N_("verify_dcp");
57 }
58
59 void
60 VerifyDCPJob::update_stage (string s, optional<boost::filesystem::path> path)
61 {
62         if (path) {
63                 s += ": " + path->string();
64         }
65         sub (s);
66 }
67
68 void
69 VerifyDCPJob::run ()
70 {
71         _notes = dcp::verify (_directories, bind (&VerifyDCPJob::update_stage, this, _1, _2), bind (&VerifyDCPJob::set_progress, this, _1, false), xsd_path());
72
73         bool failed = false;
74         for (auto i: _notes) {
75                 if (i.type() == dcp::VerificationNote::Type::ERROR) {
76                         failed = true;
77                 }
78         }
79
80         set_progress (1);
81         set_state (failed ? FINISHED_ERROR : FINISHED_OK);
82 }