diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-11-27 01:04:37 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-11-28 21:12:00 +0100 |
| commit | 07b21bb92a8d54c6c03de9aadc63ab93b65d9bc5 (patch) | |
| tree | 5054e3da62eab53c31a01962d982fd1a89112751 /src/lib/check_content_change_job.cc | |
| parent | 121988b23c485ccb5ac8220c1776d10cb33e0db7 (diff) | |
Extract part of the content change job to Content.
Diffstat (limited to 'src/lib/check_content_change_job.cc')
| -rw-r--r-- | src/lib/check_content_change_job.cc | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/src/lib/check_content_change_job.cc b/src/lib/check_content_change_job.cc index c4d050c0e..967291bb3 100644 --- a/src/lib/check_content_change_job.cc +++ b/src/lib/check_content_change_job.cc @@ -63,23 +63,9 @@ CheckContentChangeJob::run () { set_progress_unknown (); - list<shared_ptr<Content> > changed; - - for (auto i: _film->content()) { - bool ic = false; - for (size_t j = 0; j < i->number_of_paths(); ++j) { - if (boost::filesystem::last_write_time(i->path(j)) != i->last_write_time(j)) { - ic = true; - break; - } - } - if (!ic && i->calculate_digest() != i->digest()) { - ic = true; - } - if (ic) { - changed.push_back (i); - } - } + auto content = _film->content(); + std::vector<shared_ptr<Content>> changed; + std::copy_if (content.begin(), content.end(), std::back_inserter(changed), [](shared_ptr<Content> c) { return c->changed(); }); if (!changed.empty()) { if (_gui) { |
