diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-05 16:20:23 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-05 16:20:23 +0000 |
| commit | 79ce26d031d109177ba4b0f637fa2960345a37a3 (patch) | |
| tree | 987dbb3419f779fbd8192795898f3f93d0291efe /src/lib/job.cc | |
| parent | a79d78d8bb6d51f6662f1f63b9f8fd19e1a0c5f1 (diff) | |
| parent | a476ad31d447b8436326ba1bf448471f321a3ca9 (diff) | |
Merge branch 'master' into 2.0
Diffstat (limited to 'src/lib/job.cc')
| -rw-r--r-- | src/lib/job.cc | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/src/lib/job.cc b/src/lib/job.cc index 01df2c570..2ac8c6077 100644 --- a/src/lib/job.cc +++ b/src/lib/job.cc @@ -186,22 +186,33 @@ Job::paused () const void Job::set_state (State s) { - bool finished = false; + bool const finished = (s == FINISHED_OK || s == FINISHED_ERROR || s == FINISHED_CANCELLED); + /* Do this first, so that we handle things that should happen on finish before the + * job is actually marked as such. This is important for callers that do: + * + * while (JobManager::work_to_do ()) { + * ui_signaller->ui_idle (); + * } + * + * as otherwise this loop can finish before the Finished handler has been executed + * (job finishes, calls set_state(), this sets the state and sets a pending signal + * for Finished, but this is never called as a ui_idle() never happens as work_to_do() + * is now false). + */ + if (finished && ui_signaller) { + ui_signaller->emit (boost::bind (boost::ref (Finished))); + } + { boost::mutex::scoped_lock lm (_state_mutex); _state = s; - if (_state == FINISHED_OK || _state == FINISHED_ERROR || _state == FINISHED_CANCELLED) { + if (finished) { _ran_for = elapsed_time (); - finished = true; _sub_name.clear (); } } - - if (finished && ui_signaller) { - ui_signaller->emit (boost::bind (boost::ref (Finished))); - } } /** @return DCPTime (in seconds) that this sub-job has been running */ |
