X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fjob_manager.cc;h=d29138e9f44baca8e34045bba9e46bdb7631a651;hb=8872a0a0028048e277a623fa08e8242dd43f4824;hp=535830c0c43cc77cb42263f8af9f3e8164484251;hpb=bb990ccc49ee724a8af2ad80bde066374af4b68a;p=dcpomatic.git diff --git a/src/lib/job_manager.cc b/src/lib/job_manager.cc index 535830c0c..d29138e9f 100644 --- a/src/lib/job_manager.cc +++ b/src/lib/job_manager.cc @@ -39,6 +39,7 @@ using boost::weak_ptr; using boost::function; using boost::dynamic_pointer_cast; using boost::optional; +using boost::bind; JobManager* JobManager::_instance = 0; @@ -61,6 +62,10 @@ JobManager::start () JobManager::~JobManager () { + BOOST_FOREACH (boost::signals2::connection& i, _connections) { + i.disconnect (); + } + { boost::mutex::scoped_lock lm (_mutex); _terminate = true; @@ -84,6 +89,7 @@ JobManager::add (shared_ptr j) { boost::mutex::scoped_lock lm (_mutex); _jobs.push_back (j); + _empty_condition.notify_all (); } emit (boost::bind (boost::ref (JobAdded), weak_ptr (j))); @@ -99,6 +105,7 @@ JobManager::add_after (shared_ptr after, shared_ptr j) list >::iterator i = find (_jobs.begin(), _jobs.end(), after); DCPOMATIC_ASSERT (i != _jobs.end()); _jobs.insert (i, j); + _empty_condition.notify_all (); } emit (boost::bind (boost::ref (JobAdded), weak_ptr (j))); @@ -143,44 +150,58 @@ JobManager::scheduler () { while (true) { + boost::mutex::scoped_lock lm (_mutex); + optional active_job; - { - boost::mutex::scoped_lock lm (_mutex); - if (_terminate) { - return; + while (true) { + bool have_new = false; + bool have_running = false; + BOOST_FOREACH (shared_ptr i, _jobs) { + if (i->running()) { + have_running = true; + active_job = i->json_name(); + } + if (i->is_new()) { + have_new = true; + } } - if (!_paused) { - BOOST_FOREACH (shared_ptr i, _jobs) { + if ((!have_running && have_new) || _terminate) { + break; + } - if (!i->finished ()) { - active_job = i->json_name (); - } + _empty_condition.wait (lm); + } - if (i->running ()) { - /* Something is already happening */ - break; - } + if (_terminate) { + break; + } - if (i->is_new()) { - i->start (); - /* Only start one job at once */ - break; - } - } + BOOST_FOREACH (shared_ptr i, _jobs) { + if (i->is_new()) { + _connections.push_back (i->FinishedImmediate.connect(bind(&JobManager::job_finished, this))); + i->start (); + /* Only start one job at once */ + break; } } + lm.unlock (); + if (active_job != _last_active_job) { emit (boost::bind (boost::ref (ActiveJobsChanged), _last_active_job, active_job)); _last_active_job = active_job; } - - dcpomatic_sleep (1); } } +void +JobManager::job_finished () +{ + _empty_condition.notify_all (); +} + JobManager * JobManager::instance () {