diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-03-26 00:55:58 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-03-26 00:55:58 +0000 |
| commit | 8bb8f8e8d11ffbf7c18d6162c9983d1a18f4311b (patch) | |
| tree | 7e3bfdfc7e82e41e411b40eaec48f07a387ee967 /src/lib/job.h | |
| parent | 0d64c6dfd3bf8f59946795f8b97c5351b2619fa2 (diff) | |
Basics of allowing job cancellation (#83, #16).
Diffstat (limited to 'src/lib/job.h')
| -rw-r--r-- | src/lib/job.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/lib/job.h b/src/lib/job.h index c98dbaea1..fd036bce2 100644 --- a/src/lib/job.h +++ b/src/lib/job.h @@ -28,6 +28,7 @@ #include <boost/thread/mutex.hpp> #include <boost/enable_shared_from_this.hpp> #include <boost/signals2.hpp> +#include <boost/thread.hpp> class Film; @@ -46,12 +47,14 @@ public: virtual void run () = 0; void start (); + void cancel (); bool is_new () const; bool running () const; bool finished () const; bool finished_ok () const; bool finished_in_error () const; + bool finished_cancelled () const; std::string error_summary () const; std::string error_details () const; @@ -74,10 +77,11 @@ protected: /** Description of a job's state */ enum State { - NEW, ///< the job hasn't been started yet - RUNNING, ///< the job is running - FINISHED_OK, ///< the job has finished successfully - FINISHED_ERROR ///< the job has finished in error + NEW, ///< the job hasn't been started yet + RUNNING, ///< the job is running + FINISHED_OK, ///< the job has finished successfully + FINISHED_ERROR, ///< the job has finished in error + FINISHED_CANCELLED ///< the job was cancelled }; void set_state (State); @@ -90,6 +94,8 @@ private: void run_wrapper (); + boost::thread* _thread; + /** mutex for _state and _error */ mutable boost::mutex _state_mutex; /** current state of the job */ |
