Speed up content discovery:
authorCarl Hetherington <cth@carlh.net>
Thu, 15 Nov 2018 23:41:22 +0000 (23:41 +0000)
committerCarl Hetherington <cth@carlh.net>
Thu, 22 Nov 2018 23:26:18 +0000 (23:26 +0000)
1. add all discovery jobs immediately rather than waiting for
   each one to finish (by polling) before starting the next.
2. replace polling with a condition in JobManager.

src/lib/examine_content_job.h
src/lib/job.cc
src/lib/job.h
src/lib/job_manager.cc
src/lib/job_manager.h
src/wx/content_view.cc

index 0f4da2457c646fff9fb47ee0efb50a74820ed033..42496372638878773e61f962524d78848b89057d 100644 (file)
@@ -32,6 +32,10 @@ public:
        std::string json_name () const;
        void run ();
 
+       boost::shared_ptr<Content> content () const {
+               return _content;
+       }
+
 private:
        boost::shared_ptr<Content> _content;
 };
index dde8cce62ad42379c999ccf2103f891afbca6b04..763005b57ef8a7ee52d3f69e4114a003a7a248f5 100644 (file)
@@ -288,6 +288,7 @@ Job::set_state (State s)
 
        if (finished) {
                emit (boost::bind (boost::ref (Finished)));
+               FinishedImmediate ();
        }
 }
 
index 4fc61cb266d2a7810ba42714dfeaaa618a0447ce..0e57021e0c1cafbcc545c2502a94d7462f2c9834 100644 (file)
@@ -89,6 +89,8 @@ public:
        boost::signals2::signal<void()> Progress;
        /** Emitted from the UI thread when the job is finished */
        boost::signals2::signal<void()> Finished;
+       /** Emitted from the job thread when the job is finished */
+       boost::signals2::signal<void()> FinishedImmediate;
 
 protected:
 
index 535830c0c43cc77cb42263f8af9f3e8164484251..d29138e9f44baca8e34045bba9e46bdb7631a651 100644 (file)
@@ -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<Job> j)
        {
                boost::mutex::scoped_lock lm (_mutex);
                _jobs.push_back (j);
+               _empty_condition.notify_all ();
        }
 
        emit (boost::bind (boost::ref (JobAdded), weak_ptr<Job> (j)));
@@ -99,6 +105,7 @@ JobManager::add_after (shared_ptr<Job> after, shared_ptr<Job> j)
                list<shared_ptr<Job> >::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<Job> (j)));
@@ -143,44 +150,58 @@ JobManager::scheduler ()
 {
        while (true) {
 
+               boost::mutex::scoped_lock lm (_mutex);
+
                optional<string> 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<Job> 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<Job> 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<Job> 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 ()
 {
index aafb7aa67aa8609ce8214ef2e500cbc6e62580af..e0b72994df9dd2ab87495df0c6be3eb710afca2e 100644 (file)
@@ -26,6 +26,7 @@
 #include <boost/thread/mutex.hpp>
 #include <boost/thread.hpp>
 #include <boost/signals2.hpp>
+#include <boost/thread/condition.hpp>
 #include <list>
 
 class Job;
@@ -78,10 +79,13 @@ private:
        void scheduler ();
        void start ();
        void priority_changed ();
+       void job_finished ();
 
        mutable boost::mutex _mutex;
+       boost::condition _empty_condition;
        /** List of jobs in the order that they will be executed */
        std::list<boost::shared_ptr<Job> > _jobs;
+       std::list<boost::signals2::connection> _connections;
        bool _terminate;
        bool _paused;
        boost::shared_ptr<Job> _paused_job;
index e1503e790f15d67161e11fb73c59881f8b8f4af3..b7f05020b5dbdd0f13dcd305599a5221c870f3ff 100644 (file)
@@ -34,6 +34,7 @@
 
 using std::string;
 using std::cout;
+using std::list;
 using boost::shared_ptr;
 using boost::weak_ptr;
 using boost::optional;
@@ -82,6 +83,8 @@ ContentView::update ()
        wxProgressDialog progress (_("DCP-o-matic"), _("Reading content directory"));
        JobManager* jm = JobManager::instance ();
 
+       list<shared_ptr<ExamineContentJob> > jobs;
+
        for (directory_iterator i = directory_iterator(*dir); i != directory_iterator(); ++i) {
                try {
                        shared_ptr<Content> content;
@@ -92,21 +95,9 @@ ContentView::update ()
                        }
 
                        if (content) {
-                               jm->add (shared_ptr<Job>(new ExamineContentJob(film, content)));
-                               while (jm->work_to_do()) {
-                                       if (!progress.Pulse()) {
-                                               /* user pressed cancel */
-                                               BOOST_FOREACH (shared_ptr<Job> i, jm->get()) {
-                                                       i->cancel();
-                                               }
-                                               return;
-                                       }
-                                       dcpomatic_sleep (1);
-                               }
-                               if (report_errors_from_last_job (this)) {
-                                       add (content);
-                                       _content.push_back (content);
-                               }
+                               shared_ptr<ExamineContentJob> job(new ExamineContentJob(film, content));
+                               jm->add (job);
+                               jobs.push_back (job);
                        }
                } catch (boost::filesystem::filesystem_error& e) {
                        /* Never mind */
@@ -114,6 +105,26 @@ ContentView::update ()
                        /* Never mind */
                }
        }
+
+       while (jm->work_to_do()) {
+               if (!progress.Pulse()) {
+                       /* user pressed cancel */
+                       BOOST_FOREACH (shared_ptr<Job> i, jm->get()) {
+                               i->cancel();
+                       }
+                       return;
+               }
+               dcpomatic_sleep (1);
+       }
+
+       /* Add content from successful jobs and report errors */
+       BOOST_FOREACH (shared_ptr<ExamineContentJob> i, jobs) {
+               if (i->finished_in_error()) {
+                       error_dialog(this, std_to_wx(i->error_summary()) + ".\n", std_to_wx(i->error_details()));
+               } else {
+                       add (i->content());
+               }
+       }
 }
 
 void