500e03c1d5a07d4ab427bc6bf3bb3bd918dcdd6c
[dcpomatic.git] / src / lib / check_content_change_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 #include "check_content_change_job.h"
22 #include "job_manager.h"
23 #include "examine_content_job.h"
24 #include "content.h"
25 #include "film.h"
26 #include <iostream>
27
28 #include "i18n.h"
29
30 using std::string;
31 using std::list;
32 using std::cout;
33 using std::shared_ptr;
34
35 CheckContentChangeJob::CheckContentChangeJob (shared_ptr<const Film> film)
36         : Job (film)
37 {
38
39 }
40
41 CheckContentChangeJob::~CheckContentChangeJob ()
42 {
43         stop_thread ();
44 }
45
46 string
47 CheckContentChangeJob::name () const
48 {
49         return _("Checking content for changes");
50 }
51
52 string
53 CheckContentChangeJob::json_name () const
54 {
55         return N_("check_content_change");
56 }
57
58 void
59 CheckContentChangeJob::run ()
60 {
61         set_progress_unknown ();
62
63         auto content = _film->content();
64         std::vector<shared_ptr<Content>> changed;
65         std::copy_if (content.begin(), content.end(), std::back_inserter(changed), [](shared_ptr<Content> c) { return c->changed(); });
66
67         if (!changed.empty()) {
68                 for (auto i: changed) {
69                         JobManager::instance()->add(make_shared<ExamineContentJob>(_film, i));
70                 }
71                 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."));
72         }
73
74         set_progress (1);
75         set_state (FINISHED_OK);
76 }