Tidy and fix logging.
[dcpomatic.git] / src / lib / job.cc
1 /*
2     Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/job.cc
22  *  @brief A parent class to represent long-running tasks which are run in their own thread.
23  */
24
25 #include "job.h"
26 #include "util.h"
27 #include "cross.h"
28 #include "exceptions.h"
29 #include "film.h"
30 #include "log.h"
31 #include "dcpomatic_log.h"
32 #include "compose.hpp"
33 #include <dcp/exceptions.h>
34 #include <sub/exceptions.h>
35 #include <boost/thread.hpp>
36 #include <boost/filesystem.hpp>
37 #include <boost/foreach.hpp>
38 #include <boost/date_time/posix_time/posix_time.hpp>
39 #include <iostream>
40
41 #include "i18n.h"
42
43 using std::string;
44 using std::list;
45 using std::cout;
46 using boost::shared_ptr;
47 using boost::optional;
48 using boost::function;
49
50 /** @param film Associated film, or 0 */
51 Job::Job (shared_ptr<const Film> film)
52         : _film (film)
53         , _thread (0)
54         , _state (NEW)
55         , _start_time (0)
56         , _sub_start_time (0)
57         , _progress (0)
58         , _ran_for (0)
59 {
60
61 }
62
63 Job::~Job ()
64 {
65         if (_thread) {
66                 _thread->interrupt ();
67                 /* We can't use DCPOMATIC_ASSERT here as it may throw an exception */
68                 if (_thread->joinable ()) {
69                         try {
70                                 _thread->join ();
71                         } catch (...) {
72                                 /* Too late to do anything about this */
73                         }
74                 }
75         }
76
77         delete _thread;
78 }
79
80 /** Start the job in a separate thread, returning immediately */
81 void
82 Job::start ()
83 {
84         set_state (RUNNING);
85         _start_time = time (0);
86         _sub_start_time = time (0);
87         _thread = new boost::thread (boost::bind (&Job::run_wrapper, this));
88 #ifdef DCPOMATIC_LINUX
89         pthread_setname_np (_thread->native_handle(), "job-wrapper");
90 #endif
91 }
92
93 /** A wrapper for the ::run() method to catch exceptions */
94 void
95 Job::run_wrapper ()
96 {
97         try {
98
99                 run ();
100
101         } catch (dcp::FileError& e) {
102
103                 string m = String::compose (_("An error occurred whilst handling the file %1."), boost::filesystem::path (e.filename()).leaf());
104
105                 try {
106                         boost::filesystem::space_info const s = boost::filesystem::space (e.filename());
107                         if (s.available < pow (1024, 3)) {
108                                 m += N_("\n\n");
109                                 m += _("The drive that the film is stored on is low in disc space.  Free some more space and try again.");
110                         }
111                 } catch (...) {
112
113                 }
114
115                 set_error (e.what(), m);
116                 set_progress (1);
117                 set_state (FINISHED_ERROR);
118
119         } catch (OpenFileError& e) {
120
121                 set_error (
122                         String::compose (_("Could not open %1"), e.file().string()),
123                         String::compose (
124                                 _("DCP-o-matic could not open the file %1 (%2).  Perhaps it does not exist or is in an unexpected format."),
125                                 boost::filesystem::absolute (e.file()).string(),
126                                 e.what()
127                                 )
128                         );
129
130                 set_progress (1);
131                 set_state (FINISHED_ERROR);
132
133         } catch (boost::filesystem::filesystem_error& e) {
134
135                 if (e.code() == boost::system::errc::no_such_file_or_directory) {
136                         set_error (
137                                 String::compose (_("Could not open %1"), e.path1().string ()),
138                                 String::compose (
139                                         _("DCP-o-matic could not open the file %1 (%2).  Perhaps it does not exist or is in an unexpected format."),
140                                         boost::filesystem::absolute (e.path1()).string(),
141                                         e.what()
142                                         )
143                                 );
144                 } else {
145                         set_error (
146                                 e.what (),
147                                 string (_("It is not known what caused this error.")) + "  " + REPORT_PROBLEM
148                                 );
149                 }
150
151                 set_progress (1);
152                 set_state (FINISHED_ERROR);
153
154         } catch (boost::thread_interrupted &) {
155
156                 set_state (FINISHED_CANCELLED);
157
158         } catch (sub::SubripError& e) {
159
160                 string extra = "Error is near:\n";
161                 BOOST_FOREACH (string i, e.context()) {
162                         extra += i + "\n";
163                 }
164
165                 set_error (e.what (), extra);
166                 set_progress (1);
167                 set_state (FINISHED_ERROR);
168
169         } catch (std::bad_alloc& e) {
170
171                 set_error (_("Out of memory"), _("There was not enough memory to do this.  If you are running a 32-bit operating system try reducing the number of encoding threads in the General tab of Preferences."));
172                 set_progress (1);
173                 set_state (FINISHED_ERROR);
174
175         } catch (dcp::DCPReadError& e) {
176
177                 set_error (e.message(), e.detail().get_value_or(""));
178                 set_progress (1);
179                 set_state (FINISHED_ERROR);
180
181         } catch (KDMError& e) {
182
183                 set_error (e.summary(), e.detail());
184                 set_progress (1);
185                 set_state (FINISHED_ERROR);
186
187         } catch (std::exception& e) {
188
189                 set_error (
190                         e.what (),
191                         string (_("It is not known what caused this error.")) + "  " + REPORT_PROBLEM
192                         );
193
194                 set_progress (1);
195                 set_state (FINISHED_ERROR);
196
197         } catch (...) {
198
199                 set_error (
200                         _("Unknown error"),
201                         string (_("It is not known what caused this error.")) + "  " + REPORT_PROBLEM
202                         );
203
204                 set_progress (1);
205                 set_state (FINISHED_ERROR);
206         }
207 }
208
209 /** @return true if this job is new (ie has not started running) */
210 bool
211 Job::is_new () const
212 {
213         boost::mutex::scoped_lock lm (_state_mutex);
214         return _state == NEW;
215 }
216
217 /** @return true if the job is running */
218 bool
219 Job::running () const
220 {
221         boost::mutex::scoped_lock lm (_state_mutex);
222         return _state == RUNNING;
223 }
224
225 /** @return true if the job has finished (either successfully or unsuccessfully) */
226 bool
227 Job::finished () const
228 {
229         boost::mutex::scoped_lock lm (_state_mutex);
230         return _state == FINISHED_OK || _state == FINISHED_ERROR || _state == FINISHED_CANCELLED;
231 }
232
233 /** @return true if the job has finished successfully */
234 bool
235 Job::finished_ok () const
236 {
237         boost::mutex::scoped_lock lm (_state_mutex);
238         return _state == FINISHED_OK;
239 }
240
241 /** @return true if the job has finished unsuccessfully */
242 bool
243 Job::finished_in_error () const
244 {
245         boost::mutex::scoped_lock lm (_state_mutex);
246         return _state == FINISHED_ERROR;
247 }
248
249 bool
250 Job::finished_cancelled () const
251 {
252         boost::mutex::scoped_lock lm (_state_mutex);
253         return _state == FINISHED_CANCELLED;
254 }
255
256 bool
257 Job::paused_by_user () const
258 {
259         boost::mutex::scoped_lock lm (_state_mutex);
260         return _state == PAUSED_BY_USER;
261 }
262
263 bool
264 Job::paused_by_priority () const
265 {
266         boost::mutex::scoped_lock lm (_state_mutex);
267         return _state == PAUSED_BY_PRIORITY;
268 }
269
270 /** Set the state of this job.
271  *  @param s New state.
272  */
273 void
274 Job::set_state (State s)
275 {
276         bool finished = false;
277
278         {
279                 boost::mutex::scoped_lock lm (_state_mutex);
280                 _state = s;
281
282                 if (_state == FINISHED_OK || _state == FINISHED_ERROR || _state == FINISHED_CANCELLED) {
283                         _ran_for = time(0) - _start_time;
284                         finished = true;
285                         _sub_name.clear ();
286                 }
287         }
288
289         if (finished) {
290                 emit (boost::bind (boost::ref (Finished)));
291         }
292 }
293
294 /** @return DCPTime (in seconds) that this sub-job has been running */
295 int
296 Job::elapsed_sub_time () const
297 {
298         if (_sub_start_time == 0) {
299                 return 0;
300         }
301
302         return time (0) - _sub_start_time;
303 }
304
305 /** Check to see if this job has been interrupted or paused */
306 void
307 Job::check_for_interruption_or_pause ()
308 {
309         boost::this_thread::interruption_point ();
310
311         boost::mutex::scoped_lock lm (_state_mutex);
312         while (_state == PAUSED_BY_USER || _state == PAUSED_BY_PRIORITY) {
313                 emit (boost::bind (boost::ref (Progress)));
314                 _pause_changed.wait (lm);
315         }
316 }
317
318 /** Set the progress of the current part of the job.
319  *  @param p Progress (from 0 to 1)
320  *  @param force Do not ignore this update, even if it hasn't been long since the last one.
321  */
322 void
323 Job::set_progress (float p, bool force)
324 {
325         check_for_interruption_or_pause ();
326
327         if (!force) {
328                 /* Check for excessively frequent progress reporting */
329                 boost::mutex::scoped_lock lm (_progress_mutex);
330                 struct timeval now;
331                 gettimeofday (&now, 0);
332                 if (_last_progress_update && _last_progress_update->tv_sec > 0) {
333                         double const elapsed = (now.tv_sec + now.tv_usec / 1000000.0)
334                                 - (_last_progress_update->tv_sec + _last_progress_update->tv_usec / 1000000.0);
335                         if (elapsed < 0.5) {
336                                 return;
337                         }
338                 }
339                 _last_progress_update = now;
340         }
341
342         set_progress_common (p);
343 }
344
345 void
346 Job::set_progress_common (optional<float> p)
347 {
348         {
349                 boost::mutex::scoped_lock lm (_progress_mutex);
350                 _progress = p;
351         }
352
353         emit (boost::bind (boost::ref (Progress)));
354 }
355
356 /** @return fractional progress of the current sub-job, if known */
357 optional<float>
358 Job::progress () const
359 {
360         boost::mutex::scoped_lock lm (_progress_mutex);
361         return _progress;
362 }
363
364 void
365 Job::sub (string n)
366 {
367         {
368                 boost::mutex::scoped_lock lm (_progress_mutex);
369                 LOG_GENERAL ("Sub-job %1 starting", n);
370                 _sub_name = n;
371         }
372
373         set_progress (0, true);
374         _sub_start_time = time (0);
375 }
376
377 string
378 Job::error_details () const
379 {
380         boost::mutex::scoped_lock lm (_state_mutex);
381         return _error_details;
382 }
383
384 /** @return A summary of any error that the job has generated */
385 string
386 Job::error_summary () const
387 {
388         boost::mutex::scoped_lock lm (_state_mutex);
389         return _error_summary;
390 }
391
392 /** Set the current error string.
393  *  @param s New error string.
394  *  @param d New error detail string.
395  */
396 void
397 Job::set_error (string s, string d)
398 {
399         if (_film) {
400                 _film->log()->log (String::compose ("Error in job: %1 (%2)", s, d), LogEntry::TYPE_ERROR);
401         }
402
403         boost::mutex::scoped_lock lm (_state_mutex);
404         _error_summary = s;
405         _error_details = d;
406 }
407
408 /** Say that this job's progress will be unknown until further notice */
409 void
410 Job::set_progress_unknown ()
411 {
412         check_for_interruption_or_pause ();
413         set_progress_common (optional<float> ());
414 }
415
416 /** @return Human-readable status of this job */
417 string
418 Job::status () const
419 {
420         optional<float> p = progress ();
421         int const t = elapsed_sub_time ();
422         int const r = remaining_time ();
423
424         string s;
425         if (!finished () && p) {
426                 int pc = lrintf (p.get() * 100);
427                 if (pc == 100) {
428                         /* 100% makes it sound like we've finished when we haven't */
429                         pc = 99;
430                 }
431
432                 char buffer[64];
433                 snprintf (buffer, sizeof(buffer), "%d%%", pc);
434                 s += buffer;
435
436                 if (t > 10 && r > 0) {
437                         boost::posix_time::ptime now = boost::posix_time::second_clock::local_time();
438                         boost::posix_time::ptime finish = now + boost::posix_time::seconds(r);
439                         char finish_string[16];
440                         snprintf (finish_string, sizeof(finish_string), "%02d:%02d", int(finish.time_of_day().hours()), int(finish.time_of_day().minutes()));
441                         string day;
442                         if (now.date() != finish.date()) {
443                                 /// TRANSLATORS: the %1 in this string will be filled in with a day of the week
444                                 /// to say what day a job will finish.
445                                 day = String::compose (_(" on %1"), finish.date().day_of_week().as_long_string());
446                         }
447                         /// TRANSLATORS: "remaining; finishing at" here follows an amount of time that is remaining
448                         /// on an operation; after it is an estimated wall-clock completion time.
449                         s += String::compose(
450                                 _("; %1 remaining; finishing at %2%3"),
451                                 seconds_to_approximate_hms(r), finish_string, day
452                                 );
453                 }
454         } else if (finished_ok ()) {
455                 s = String::compose (_("OK (ran for %1)"), seconds_to_hms (_ran_for));
456         } else if (finished_in_error ()) {
457                 s = String::compose (_("Error: %1"), error_summary ());
458         } else if (finished_cancelled ()) {
459                 s = _("Cancelled");
460         }
461
462         return s;
463 }
464
465 string
466 Job::json_status () const
467 {
468         boost::mutex::scoped_lock lm (_state_mutex);
469
470         switch (_state) {
471         case NEW:
472                 return N_("new");
473         case RUNNING:
474                 return N_("running");
475         case PAUSED_BY_USER:
476         case PAUSED_BY_PRIORITY:
477                 return N_("paused");
478         case FINISHED_OK:
479                 return N_("finished_ok");
480         case FINISHED_ERROR:
481                 return N_("finished_error");
482         case FINISHED_CANCELLED:
483                 return N_("finished_cancelled");
484         }
485
486         return "";
487 }
488
489 /** @return An estimate of the remaining time for this sub-job, in seconds */
490 int
491 Job::remaining_time () const
492 {
493         if (progress().get_value_or(0) == 0) {
494                 return elapsed_sub_time ();
495         }
496
497         return elapsed_sub_time() / progress().get() - elapsed_sub_time();
498 }
499
500 void
501 Job::cancel ()
502 {
503         if (!_thread) {
504                 return;
505         }
506
507         if (paused_by_user() || paused_by_priority()) {
508                 resume ();
509         }
510
511         _thread->interrupt ();
512         DCPOMATIC_ASSERT (_thread->joinable ());
513         _thread->join ();
514         delete _thread;
515         _thread = 0;
516 }
517
518 /** @return true if the job was paused, false if it was not running */
519 bool
520 Job::pause_by_user ()
521 {
522         bool paused = false;
523         {
524                 boost::mutex::scoped_lock lm (_state_mutex);
525                 /* We can set _state here directly because we have a lock and we aren't
526                    setting the job to FINISHED_*
527                 */
528                 if (_state == RUNNING) {
529                         paused = true;
530                         _state = PAUSED_BY_USER;
531                 }
532         }
533
534         if (paused) {
535                 _pause_changed.notify_all ();
536         }
537
538         return paused;
539 }
540
541 void
542 Job::pause_by_priority ()
543 {
544         if (running ()) {
545                 set_state (PAUSED_BY_PRIORITY);
546                 _pause_changed.notify_all ();
547         }
548 }
549
550 void
551 Job::resume ()
552 {
553         if (paused_by_user() || paused_by_priority()) {
554                 set_state (RUNNING);
555                 _pause_changed.notify_all ();
556         }
557 }
558
559 void
560 Job::when_finished (boost::signals2::connection& connection, function<void()> finished)
561 {
562         boost::mutex::scoped_lock lm (_state_mutex);
563         if (_state == FINISHED_OK || _state == FINISHED_ERROR || _state == FINISHED_CANCELLED) {
564                 finished ();
565         } else {
566                 connection = Finished.connect (finished);
567         }
568 }
569
570 optional<string>
571 Job::message () const
572 {
573         boost::mutex::scoped_lock lm (_state_mutex);
574         return _message;
575 }
576
577 void
578 Job::set_message (string m)
579 {
580         boost::mutex::scoped_lock lm (_state_mutex);
581         _message = m;
582 }