Fix truncated log timestamps in at least some cases.
[dcpomatic.git] / src / lib / job_manager.h
index 8b79fd67d330c6078563da2f5972a8766801095c..560b5ca66c15d8ca9cf8c4840592a1a404bc8cff 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
  *  @brief A simple scheduler for jobs.
  */
 
-#include <list>
+#include "signaller.h"
 #include <boost/thread/mutex.hpp>
+#include <boost/thread.hpp>
+#include <boost/signals2.hpp>
+#include <list>
 
 class Job;
+class Film;
+class Playlist;
+
+extern void wait_for_jobs ();
 
 /** @class JobManager
  *  @brief A simple scheduler for jobs.
- *
- *  JobManager simply keeps a list of pending jobs, and assumes that all the jobs
- *  are sufficiently CPU intensive that there is no point running them in parallel;
- *  so jobs are just run one after the other.
  */
-class JobManager
+class JobManager : public Signaller, public boost::noncopyable
 {
 public:
 
-       void add (boost::shared_ptr<Job>);
-       void add_after (boost::shared_ptr<Job> after, boost::shared_ptr<Job> j);
+       boost::shared_ptr<Job> add (boost::shared_ptr<Job>);
        std::list<boost::shared_ptr<Job> > get () const;
        bool work_to_do () const;
        bool errors () const;
 
+       void analyse_audio (
+               boost::shared_ptr<const Film> film,
+               boost::shared_ptr<const Playlist> playlist,
+               boost::signals2::connection& connection,
+               boost::function<void()> ready
+               );
+
+       boost::signals2::signal<void (boost::weak_ptr<Job>)> JobAdded;
+       boost::signals2::signal<void (boost::optional<std::string>, boost::optional<std::string>)> ActiveJobsChanged;
+
        static JobManager* instance ();
+       static void drop ();
 
 private:
+       /* This function is part of the test suite */
+       friend void ::wait_for_jobs ();
+
        JobManager ();
+       ~JobManager ();
        void scheduler ();
-       
+       void start ();
+
        mutable boost::mutex _mutex;
        std::list<boost::shared_ptr<Job> > _jobs;
+       bool _terminate;
+
+       boost::optional<std::string> _last_active_job;
+       boost::thread* _scheduler;
 
        static JobManager* _instance;
 };