Merge remote-tracking branch 'origin/master' into 2.0
[dcpomatic.git] / src / lib / job.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file src/job.cc
21  *  @brief A parent class to represent long-running tasks which are run in their own thread.
22  */
23
24 #include <boost/thread.hpp>
25 #include <boost/filesystem.hpp>
26 #include <dcp/exceptions.h>
27 #include "job.h"
28 #include "util.h"
29 #include "cross.h"
30 #include "ui_signaller.h"
31 #include "exceptions.h"
32 #include "film.h"
33 #include "log.h"
34
35 #include "i18n.h"
36
37 using std::string;
38 using std::list;
39 using std::cout;
40 using boost::shared_ptr;
41
42 Job::Job (shared_ptr<const Film> f)
43         : _film (f)
44         , _thread (0)
45         , _state (NEW)
46         , _start_time (0)
47         , _progress (0)
48         , _ran_for (0)
49 {
50
51 }
52
53 /** Start the job in a separate thread, returning immediately */
54 void
55 Job::start ()
56 {
57         set_state (RUNNING);
58         _start_time = time (0);
59         _thread = new boost::thread (boost::bind (&Job::run_wrapper, this));
60 }
61
62 /** A wrapper for the ::run() method to catch exceptions */
63 void
64 Job::run_wrapper ()
65 {
66         try {
67
68                 run ();
69
70         } catch (dcp::FileError& e) {
71
72                 string m = String::compose (_("An error occurred whilst handling the file %1."), boost::filesystem::path (e.filename()).leaf());
73
74                 try {
75                         boost::filesystem::space_info const s = boost::filesystem::space (e.filename());
76                         if (s.available < pow (1024, 3)) {
77                                 m += N_("\n\n");
78                                 m += _("The drive that the film is stored on is low in disc space.  Free some more space and try again.");
79                         }
80                 } catch (...) {
81
82                 }
83
84                 set_error (e.what(), m);
85                 set_progress (1);
86                 set_state (FINISHED_ERROR);
87                 
88         } catch (OpenFileError& e) {
89
90                 set_error (
91                         String::compose (_("Could not open %1"), e.file().string()),
92                         String::compose (_("DCP-o-matic could not open the file %1.  Perhaps it does not exist or is in an unexpected format."), e.file().string())
93                         );
94
95                 set_progress (1);
96                 set_state (FINISHED_ERROR);
97
98         } catch (boost::thread_interrupted &) {
99
100                 set_state (FINISHED_CANCELLED);
101
102         } catch (std::bad_alloc& e) {
103
104                 set_error (_("Out of memory"), _("There was not enough memory to do this."));
105                 set_progress (1);
106                 set_state (FINISHED_ERROR);
107                 
108         } catch (std::exception& e) {
109
110                 set_error (
111                         e.what (),
112                         _("It is not known what caused this error.  Please report the problem to the DCP-o-matic author (carl@dcpomatic.com).")
113                         );
114
115                 set_progress (1);
116                 set_state (FINISHED_ERROR);
117                 
118         } catch (...) {
119
120                 set_error (
121                         _("Unknown error"),
122                         _("It is not known what caused this error.  Please report the problem to the DCP-o-matic author (carl@dcpomatic.com).")
123                         );
124
125                 set_progress (1);
126                 set_state (FINISHED_ERROR);
127         }
128 }
129
130 /** @return true if this job is new (ie has not started running) */
131 bool
132 Job::is_new () const
133 {
134         boost::mutex::scoped_lock lm (_state_mutex);
135         return _state == NEW;
136 }
137
138 /** @return true if the job is running */
139 bool
140 Job::running () const
141 {
142         boost::mutex::scoped_lock lm (_state_mutex);
143         return _state == RUNNING;
144 }
145
146 /** @return true if the job has finished (either successfully or unsuccessfully) */
147 bool
148 Job::finished () const
149 {
150         boost::mutex::scoped_lock lm (_state_mutex);
151         return _state == FINISHED_OK || _state == FINISHED_ERROR || _state == FINISHED_CANCELLED;
152 }
153
154 /** @return true if the job has finished successfully */
155 bool
156 Job::finished_ok () const
157 {
158         boost::mutex::scoped_lock lm (_state_mutex);
159         return _state == FINISHED_OK;
160 }
161
162 /** @return true if the job has finished unsuccessfully */
163 bool
164 Job::finished_in_error () const
165 {
166         boost::mutex::scoped_lock lm (_state_mutex);
167         return _state == FINISHED_ERROR;
168 }
169
170 bool
171 Job::finished_cancelled () const
172 {
173         boost::mutex::scoped_lock lm (_state_mutex);
174         return _state == FINISHED_CANCELLED;
175 }
176
177 bool
178 Job::paused () const
179 {
180         boost::mutex::scoped_lock lm (_state_mutex);
181         return _state == PAUSED;
182 }
183         
184 /** Set the state of this job.
185  *  @param s New state.
186  */
187 void
188 Job::set_state (State s)
189 {
190         bool finished = false;
191
192         {
193                 boost::mutex::scoped_lock lm (_state_mutex);
194                 _state = s;
195
196                 if (_state == FINISHED_OK || _state == FINISHED_ERROR || _state == FINISHED_CANCELLED) {
197                         _ran_for = elapsed_time ();
198                         finished = true;
199                         _sub_name.clear ();
200                 }
201         }
202
203         if (finished && ui_signaller) {
204                 ui_signaller->emit (boost::bind (boost::ref (Finished)));
205         }       
206 }
207
208 /** @return DCPTime (in seconds) that this sub-job has been running */
209 int
210 Job::elapsed_time () const
211 {
212         if (_start_time == 0) {
213                 return 0;
214         }
215         
216         return time (0) - _start_time;
217 }
218
219 /** Set the progress of the current part of the job.
220  *  @param p Progress (from 0 to 1)
221  */
222 void
223 Job::set_progress (float p, bool force)
224 {
225         if (!force && fabs (p - progress()) < 0.01) {
226                 /* Calm excessive progress reporting */
227                 return;
228         }
229
230         boost::mutex::scoped_lock lm (_progress_mutex);
231         _progress = p;
232         boost::this_thread::interruption_point ();
233
234         if (paused ()) {
235                 dcpomatic_sleep (1);
236         }
237
238         if (ui_signaller) {
239                 ui_signaller->emit (boost::bind (boost::ref (Progress)));
240         }
241 }
242
243 /** @return fractional progress of the current sub-job, or -1 if not known */
244 float
245 Job::progress () const
246 {
247         boost::mutex::scoped_lock lm (_progress_mutex);
248         return _progress.get_value_or (-1);
249 }
250
251 void
252 Job::sub (string n)
253 {
254         {
255                 boost::mutex::scoped_lock lm (_progress_mutex);
256                 _sub_name = n;
257         }
258         
259         set_progress (0, true);
260 }
261
262 string
263 Job::error_details () const
264 {
265         boost::mutex::scoped_lock lm (_state_mutex);
266         return _error_details;
267 }
268
269 /** @return A summary of any error that the job has generated */
270 string
271 Job::error_summary () const
272 {
273         boost::mutex::scoped_lock lm (_state_mutex);
274         return _error_summary;
275 }
276
277 /** Set the current error string.
278  *  @param e New error string.
279  */
280 void
281 Job::set_error (string s, string d)
282 {
283         _film->log()->log (String::compose ("Error in job: %1 (%2)", s, d), Log::TYPE_ERROR);
284         boost::mutex::scoped_lock lm (_state_mutex);
285         _error_summary = s;
286         _error_details = d;
287 }
288
289 /** Say that this job's progress will be unknown until further notice */
290 void
291 Job::set_progress_unknown ()
292 {
293         boost::mutex::scoped_lock lm (_progress_mutex);
294         _progress.reset ();
295 }
296
297 /** @return Human-readable status of this job */
298 string
299 Job::status () const
300 {
301         float const p = progress ();
302         int const t = elapsed_time ();
303         int const r = remaining_time ();
304
305         int pc = rint (p * 100);
306         if (pc == 100) {
307                 /* 100% makes it sound like we've finished when we haven't */
308                 pc = 99;
309         }
310
311         SafeStringStream s;
312         if (!finished ()) {
313                 s << pc << N_("%");
314                 if (p >= 0 && t > 10 && r > 0) {
315                         /// TRANSLATORS: remaining here follows an amount of time that is remaining
316                         /// on an operation.
317                         s << "; " << seconds_to_approximate_hms (r) << " " << _("remaining");
318                 }
319         } else if (finished_ok ()) {
320                 s << String::compose (_("OK (ran for %1)"), seconds_to_hms (_ran_for));
321         } else if (finished_in_error ()) {
322                 s << String::compose (_("Error (%1)"), error_summary());
323         } else if (finished_cancelled ()) {
324                 s << _("Cancelled");
325         }
326
327         return s.str ();
328 }
329
330 /** @return An estimate of the remaining time for this sub-job, in seconds */
331 int
332 Job::remaining_time () const
333 {
334         return elapsed_time() / progress() - elapsed_time();
335 }
336
337 void
338 Job::cancel ()
339 {
340         if (!_thread) {
341                 return;
342         }
343
344         _thread->interrupt ();
345         _thread->join ();
346 }
347
348 void
349 Job::pause ()
350 {
351         if (running ()) {
352                 set_state (PAUSED);
353         }
354 }
355
356 void
357 Job::resume ()
358 {
359         if (paused ()) {
360                 set_state (RUNNING);
361         }
362 }