Supporters update.
[dcpomatic.git] / src / lib / check_content_job.cc
1 /*
2     Copyright (C) 2018 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 "check_content_job.h"
23 #include "content.h"
24 #include "dcp_content.h"
25 #include "examine_content_job.h"
26 #include "film.h"
27 #include "job_manager.h"
28 #include "string_text_file_content.h"
29 #include <iostream>
30
31 #include "i18n.h"
32
33
34 using std::cout;
35 using std::dynamic_pointer_cast;
36 using std::make_shared;
37 using std::shared_ptr;
38 using std::string;
39
40
41 CheckContentJob::CheckContentJob (shared_ptr<const Film> film)
42         : Job (film)
43 {
44
45 }
46
47 CheckContentJob::~CheckContentJob ()
48 {
49         stop_thread ();
50 }
51
52 string
53 CheckContentJob::name () const
54 {
55         return _("Checking content");
56 }
57
58 string
59 CheckContentJob::json_name () const
60 {
61         return N_("check_content");
62 }
63
64 void
65 CheckContentJob::run ()
66 {
67         set_progress_unknown ();
68
69         auto content = _film->content();
70         std::vector<shared_ptr<Content>> changed;
71         std::copy_if (content.begin(), content.end(), std::back_inserter(changed), [](shared_ptr<Content> c) { return c->changed(); });
72
73         if (_film->last_written_by_earlier_than(2, 16, 15)) {
74                 for (auto c: content) {
75                         if (auto stf = dynamic_pointer_cast<StringTextFileContent>(c)) {
76                                 stf->check_font_ids();
77                         } else if (auto dcp = dynamic_pointer_cast<DCPContent>(c)) {
78                                 dcp->check_font_ids();
79                         }
80                 }
81         }
82
83         if (!changed.empty()) {
84                 for (auto i: changed) {
85                         JobManager::instance()->add(make_shared<ExamineContentJob>(_film, i));
86                 }
87                 set_message (_("Some files have been changed since they were added to the project.\n\nThese files will now be re-examined, so you may need to check their settings."));
88         }
89
90         set_progress (1);
91         set_state (FINISHED_OK);
92 }