X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fjob.cc;h=2e6385d62e8499a37ed427fb3650c1e22aec5196;hp=812380594ec0ea247661951d93909773fbce2201;hb=92cafb6fc686a041354da2eabde6bcb2f6846e1d;hpb=fd040c2bd27fde35424a384174ecb56c643764cd diff --git a/src/lib/job.cc b/src/lib/job.cc index 812380594..2e6385d62 100644 --- a/src/lib/job.cc +++ b/src/lib/job.cc @@ -26,6 +26,7 @@ #include #include "job.h" #include "util.h" +#include "cross.h" #include "i18n.h" @@ -153,6 +154,13 @@ Job::finished_cancelled () const return _state == FINISHED_CANCELLED; } +bool +Job::paused () const +{ + boost::mutex::scoped_lock lm (_state_mutex); + return _state == PAUSED; +} + /** Set the state of this job. * @param s New state. */ @@ -188,6 +196,10 @@ Job::set_progress (float p) _progress_unknown = false; _stack.back().normalised = p; boost::this_thread::interruption_point (); + + if (paused ()) { + dcpomatic_sleep (1); + } } /** @return fractional overall progress, or -1 if not known */ @@ -324,3 +336,19 @@ Job::cancel () _thread->interrupt (); _thread->join (); } + +void +Job::pause () +{ + if (running ()) { + set_state (PAUSED); + } +} + +void +Job::resume () +{ + if (paused ()) { + set_state (RUNNING); + } +}