X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fjob.h;h=c98dbaea15dfb13133611f61727439d332158470;hb=ab1a666e724911c41dfe08fc96748b38ace839c1;hp=b391304792e0a3e9ab0a926ae440b3dfcf806e8d;hpb=c0ed407fb02891f0dd364e78b6192f0e6dbe1d8d;p=dcpomatic.git diff --git a/src/lib/job.h b/src/lib/job.h index b39130479..c98dbaea1 100644 --- a/src/lib/job.h +++ b/src/lib/job.h @@ -27,11 +27,9 @@ #include #include #include -#include +#include -class Log; -class FilmState; -class Options; +class Film; /** @class Job * @brief A parent class to represent long-running tasks which are run in their own thread. @@ -39,7 +37,8 @@ class Options; class Job : public boost::enable_shared_from_this { public: - Job (boost::shared_ptr s, boost::shared_ptr o, Log* l); + Job (boost::shared_ptr s); + virtual ~Job() {} /** @return user-readable name of this job */ virtual std::string name () const = 0; @@ -48,12 +47,14 @@ public: void start (); + bool is_new () const; bool running () const; bool finished () const; bool finished_ok () const; bool finished_in_error () const; - std::string error () const; + std::string error_summary () const; + std::string error_details () const; int elapsed_time () const; virtual std::string status () const; @@ -64,10 +65,8 @@ public: void descend (float); float overall_progress () const; - void emit_finished (); - - /** Emitted from the GUI thread */ - sigc::signal0 Finished; + /** Emitted by the JobManagerView from the UI thread */ + boost::signals2::signal Finished; protected: @@ -82,14 +81,10 @@ protected: }; void set_state (State); - void set_error (std::string e); + void set_error (std::string s, std::string d); - /** FilmState for this job */ - boost::shared_ptr _fs; - /** options in use for this job */ - boost::shared_ptr _opt; - /** a log that this job can write to */ - Log* _log; + /** Film for this job */ + boost::shared_ptr _film; private: @@ -99,8 +94,9 @@ private: mutable boost::mutex _state_mutex; /** current state of the job */ State _state; - /** message for an error that has occurred (when state == FINISHED_ERROR) */ - std::string _error; + /** summary of an error that has occurred (when state == FINISHED_ERROR) */ + std::string _error_summary; + std::string _error_details; /** time that this job was started */ time_t _start_time; @@ -119,6 +115,8 @@ private: /** true if this job's progress will always be unknown */ bool _progress_unknown; + + int _ran_for; }; #endif