Move some methods out of util.{cc,h}
[dcpomatic.git] / src / lib / job.cc
1 /*
2     Copyright (C) 2012-2021 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
22 /** @file  src/job.cc
23  *  @brief A parent class to represent long-running tasks which are run in their own thread.
24  */
25
26
27 #include "compose.hpp"
28 #include "constants.h"
29 #include "cross.h"
30 #include "dcpomatic_log.h"
31 #include "exceptions.h"
32 #include "film.h"
33 #include "job.h"
34 #include "log.h"
35 #include "util.h"
36 #include <dcp/exceptions.h>
37 #include <sub/exceptions.h>
38 #include <boost/date_time/posix_time/posix_time.hpp>
39 #include <boost/filesystem.hpp>
40 #include <boost/thread.hpp>
41 #include <iostream>
42
43 #include "i18n.h"
44
45
46 using std::cout;
47 using std::function;
48 using std::list;
49 using std::shared_ptr;
50 using std::string;
51 using boost::optional;
52 using namespace dcpomatic;
53
54
55 /** @param film Associated film, or 0 */
56 Job::Job (shared_ptr<const Film> film)
57         : _film (film)
58         , _state (NEW)
59         , _start_time (0)
60         , _sub_start_time (0)
61         , _progress (0)
62         , _ran_for (0)
63 {
64
65 }
66
67
68 Job::~Job ()
69 {
70 #ifdef DCPOMATIC_DEBUG
71         /* Any subclass should have called stop_thread in its destructor */
72         assert (!_thread.joinable());
73 #endif
74 }
75
76
77 void
78 Job::stop_thread ()
79 {
80         boost::this_thread::disable_interruption dis;
81
82         _thread.interrupt ();
83         try {
84                 _thread.join ();
85         } catch (...) {}
86 }
87
88
89 /** Start the job in a separate thread, returning immediately */
90 void
91 Job::start ()
92 {
93         set_state (RUNNING);
94         _start_time = time (0);
95         _sub_start_time = time (0);
96         _thread = boost::thread (boost::bind(&Job::run_wrapper, this));
97 #ifdef DCPOMATIC_LINUX
98         pthread_setname_np (_thread.native_handle(), "job-wrapper");
99 #endif
100 }
101
102
103 /** A wrapper for the ::run() method to catch exceptions */
104 void
105 Job::run_wrapper ()
106 {
107         start_of_thread (String::compose("Job-%1", json_name()));
108
109         try {
110
111                 run ();
112
113         } catch (dcp::FileError& e) {
114
115                 string m = String::compose (_("An error occurred whilst handling the file %1."), boost::filesystem::path (e.filename()).leaf());
116
117                 try {
118                         auto const s = boost::filesystem::space (e.filename());
119                         if (s.available < pow (1024, 3)) {
120                                 m += N_("\n\n");
121                                 m += _("The drive that the film is stored on is low in disc space.  Free some more space and try again.");
122                         }
123                 } catch (...) {
124
125                 }
126
127                 set_error (e.what(), m);
128                 set_progress (1);
129                 set_state (FINISHED_ERROR);
130
131         } catch (dcp::StartCompressionError& e) {
132
133                 bool done = false;
134
135 #ifdef DCPOMATIC_WINDOWS
136 #if (__GNUC__ && !__x86_64__)
137                 /* 32-bit */
138                 set_error (
139                         _("Failed to encode the DCP."),
140                         _("This error has probably occurred because you are running the 32-bit version of DCP-o-matic and "
141                           "trying to use too many encoding threads.  Please reduce the 'number of threads DCP-o-matic should "
142                           "use' in the General tab of Preferences and try again.")
143                         );
144                 done = true;
145 #else
146                 /* 64-bit */
147                 if (running_32_on_64()) {
148                         set_error (
149                                 _("Failed to encode the DCP."),
150                                 _("This error has probably occurred because you are running the 32-bit version of DCP-o-matic.  Please re-install DCP-o-matic with the 64-bit installer and try again.")
151                                 );
152                         done = true;
153                 }
154 #endif
155 #endif
156
157                 if (!done) {
158                         set_error (
159                                 e.what (),
160                                 string (_("It is not known what caused this error.")) + "  " + REPORT_PROBLEM
161                                 );
162                 }
163
164                 set_progress (1);
165                 set_state (FINISHED_ERROR);
166
167         } catch (OpenFileError& e) {
168
169                 set_error (
170                         String::compose (_("Could not open %1"), e.file().string()),
171                         String::compose (
172                                 _("DCP-o-matic could not open the file %1 (%2).  Perhaps it does not exist or is in an unexpected format."),
173                                 boost::filesystem::absolute (e.file()).string(),
174                                 e.what()
175                                 )
176                         );
177
178                 set_progress (1);
179                 set_state (FINISHED_ERROR);
180
181         } catch (boost::filesystem::filesystem_error& e) {
182
183                 if (e.code() == boost::system::errc::no_such_file_or_directory) {
184                         set_error (
185                                 String::compose (_("Could not open %1"), e.path1().string ()),
186                                 String::compose (
187                                         _("DCP-o-matic could not open the file %1 (%2).  Perhaps it does not exist or is in an unexpected format."),
188                                         boost::filesystem::absolute (e.path1()).string(),
189                                         e.what()
190                                         )
191                                 );
192                 } else {
193                         set_error (
194                                 e.what (),
195                                 string (_("It is not known what caused this error.")) + "  " + REPORT_PROBLEM
196                                 );
197                 }
198
199                 set_progress (1);
200                 set_state (FINISHED_ERROR);
201
202         } catch (boost::thread_interrupted &) {
203                 /* The job was cancelled; there's nothing else we need to do here */
204         } catch (sub::SubripError& e) {
205
206                 string extra = "Error is near:\n";
207                 for (auto i: e.context()) {
208                         extra += i + "\n";
209                 }
210
211                 set_error (e.what (), extra);
212                 set_progress (1);
213                 set_state (FINISHED_ERROR);
214
215         } catch (std::bad_alloc& e) {
216
217                 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."));
218                 set_progress (1);
219                 set_state (FINISHED_ERROR);
220
221         } catch (dcp::ReadError& e) {
222
223                 set_error (e.message(), e.detail().get_value_or(""));
224                 set_progress (1);
225                 set_state (FINISHED_ERROR);
226
227         } catch (KDMError& e) {
228
229                 set_error (e.summary(), e.detail());
230                 set_progress (1);
231                 set_state (FINISHED_ERROR);
232
233         } catch (FileError& e) {
234
235                 set_error (e.what(), e.what());
236                 set_progress (1);
237                 set_state (FINISHED_ERROR);
238
239         } catch (CPLNotFoundError& e) {
240
241                 set_error(e.what());
242                 set_progress(1);
243                 set_state(FINISHED_ERROR);
244
245         } catch (std::exception& e) {
246
247                 set_error (
248                         e.what (),
249                         string (_("It is not known what caused this error.")) + "  " + REPORT_PROBLEM
250                         );
251
252                 set_progress (1);
253                 set_state (FINISHED_ERROR);
254
255         } catch (...) {
256
257                 set_error (
258                         _("Unknown error"),
259                         string (_("It is not known what caused this error.")) + "  " + REPORT_PROBLEM
260                         );
261
262                 set_progress (1);
263                 set_state (FINISHED_ERROR);
264         }
265 }
266
267
268 /** @return true if this job is new (ie has not started running) */
269 bool
270 Job::is_new () const
271 {
272         boost::mutex::scoped_lock lm (_state_mutex);
273         return _state == NEW;
274 }
275
276
277 /** @return true if the job is running */
278 bool
279 Job::running () const
280 {
281         boost::mutex::scoped_lock lm (_state_mutex);
282         return _state == RUNNING;
283 }
284
285
286 /** @return true if the job has finished (either successfully or unsuccessfully) */
287 bool
288 Job::finished () const
289 {
290         boost::mutex::scoped_lock lm (_state_mutex);
291         return _state == FINISHED_OK || _state == FINISHED_ERROR || _state == FINISHED_CANCELLED;
292 }
293
294
295 /** @return true if the job has finished successfully */
296 bool
297 Job::finished_ok () const
298 {
299         boost::mutex::scoped_lock lm (_state_mutex);
300         return _state == FINISHED_OK;
301 }
302
303
304 /** @return true if the job has finished unsuccessfully */
305 bool
306 Job::finished_in_error () const
307 {
308         boost::mutex::scoped_lock lm (_state_mutex);
309         return _state == FINISHED_ERROR;
310 }
311
312
313 bool
314 Job::finished_cancelled () const
315 {
316         boost::mutex::scoped_lock lm (_state_mutex);
317         return _state == FINISHED_CANCELLED;
318 }
319
320
321 bool
322 Job::paused_by_user () const
323 {
324         boost::mutex::scoped_lock lm (_state_mutex);
325         return _state == PAUSED_BY_USER;
326 }
327
328
329 bool
330 Job::paused_by_priority () const
331 {
332         boost::mutex::scoped_lock lm (_state_mutex);
333         return _state == PAUSED_BY_PRIORITY;
334 }
335
336
337 /** Set the state of this job.
338  *  @param s New state.
339  */
340 void
341 Job::set_state (State s)
342 {
343         bool finished = false;
344
345         {
346                 boost::mutex::scoped_lock lm (_state_mutex);
347                 _state = s;
348
349                 if (_state == FINISHED_OK || _state == FINISHED_ERROR || _state == FINISHED_CANCELLED) {
350                         _ran_for = time(0) - _start_time;
351                         finished = true;
352                         _sub_name.clear ();
353                 }
354         }
355
356         if (finished) {
357                 emit (boost::bind (boost::ref (Finished)));
358                 FinishedImmediate ();
359         }
360 }
361
362
363 /** @return DCPTime (in seconds) that this sub-job has been running */
364 int
365 Job::elapsed_sub_time () const
366 {
367         if (_sub_start_time == 0) {
368                 return 0;
369         }
370
371         return time (0) - _sub_start_time;
372 }
373
374
375 /** Check to see if this job has been interrupted or paused */
376 void
377 Job::check_for_interruption_or_pause ()
378 {
379         boost::this_thread::interruption_point ();
380
381         boost::mutex::scoped_lock lm (_state_mutex);
382         while (_state == PAUSED_BY_USER || _state == PAUSED_BY_PRIORITY) {
383                 emit (boost::bind (boost::ref (Progress)));
384                 _pause_changed.wait (lm);
385         }
386 }
387
388
389 optional<float>
390 Job::seconds_since_last_progress_update () const
391 {
392         boost::mutex::scoped_lock lm (_progress_mutex);
393         if (!_last_progress_update) {
394                 return {};
395         }
396
397         struct timeval now;
398         gettimeofday (&now, 0);
399
400         return seconds(now) - seconds(*_last_progress_update);
401 }
402
403
404 /** Set the progress of the current part of the job.
405  *  @param p Progress (from 0 to 1)
406  *  @param force Do not ignore this update, even if it hasn't been long since the last one.
407  */
408 void
409 Job::set_progress (float p, bool force)
410 {
411         check_for_interruption_or_pause ();
412
413         if (!force) {
414                 /* Check for excessively frequent progress reporting */
415                 boost::mutex::scoped_lock lm (_progress_mutex);
416                 struct timeval now;
417                 gettimeofday (&now, 0);
418                 if (_last_progress_update && _last_progress_update->tv_sec > 0) {
419                         double const elapsed = seconds(now) - seconds(*_last_progress_update);
420                         if (elapsed < 0.5) {
421                                 return;
422                         }
423                 }
424                 _last_progress_update = now;
425         }
426
427         set_progress_common (p);
428 }
429
430
431 void
432 Job::set_progress_common (optional<float> p)
433 {
434         {
435                 boost::mutex::scoped_lock lm (_progress_mutex);
436                 _progress = p;
437         }
438
439         emit (boost::bind (boost::ref (Progress)));
440 }
441
442
443 /** @return fractional progress of the current sub-job, if known */
444 optional<float>
445 Job::progress () const
446 {
447         boost::mutex::scoped_lock lm (_progress_mutex);
448         return _progress;
449 }
450
451
452 void
453 Job::sub (string n)
454 {
455         {
456                 boost::mutex::scoped_lock lm (_progress_mutex);
457                 LOG_GENERAL ("Sub-job %1 starting", n);
458                 _sub_name = n;
459         }
460
461         set_progress (0, true);
462         _sub_start_time = time (0);
463 }
464
465
466 string
467 Job::error_details () const
468 {
469         boost::mutex::scoped_lock lm (_state_mutex);
470         return _error_details;
471 }
472
473
474 /** @return A summary of any error that the job has generated */
475 string
476 Job::error_summary () const
477 {
478         boost::mutex::scoped_lock lm (_state_mutex);
479         return _error_summary;
480 }
481
482
483 /** Set the current error string.
484  *  @param s New error string.
485  *  @param d New error detail string.
486  */
487 void
488 Job::set_error (string s, string d)
489 {
490         if (_film) {
491                 _film->log()->log (String::compose ("Error in job: %1 (%2)", s, d), LogEntry::TYPE_ERROR);
492         }
493
494         boost::mutex::scoped_lock lm (_state_mutex);
495         _error_summary = s;
496         _error_details = d;
497 }
498
499
500 /** Say that this job's progress will be unknown until further notice */
501 void
502 Job::set_progress_unknown ()
503 {
504         check_for_interruption_or_pause ();
505         set_progress_common (optional<float> ());
506 }
507
508
509 /** @return Human-readable status of this job */
510 string
511 Job::status () const
512 {
513         optional<float> p = progress ();
514         int const t = elapsed_sub_time ();
515         int const r = remaining_time ();
516
517         auto day_of_week_to_string = [](boost::gregorian::greg_weekday d) -> std::string {
518                 switch (d.as_enum()) {
519                 case boost::date_time::Sunday:
520                         return _("Sunday");
521                 case boost::date_time::Monday:
522                         return _("Monday");
523                 case boost::date_time::Tuesday:
524                         return _("Tuesday");
525                 case boost::date_time::Wednesday:
526                         return _("Wednesday");
527                 case boost::date_time::Thursday:
528                         return _("Thursday");
529                 case boost::date_time::Friday:
530                         return _("Friday");
531                 case boost::date_time::Saturday:
532                         return _("Saturday");
533                 }
534
535                 return d.as_long_string();
536         };
537
538         string s;
539         if (!finished () && p) {
540                 int pc = lrintf (p.get() * 100);
541                 if (pc == 100) {
542                         /* 100% makes it sound like we've finished when we haven't */
543                         pc = 99;
544                 }
545
546                 char buffer[64];
547                 snprintf (buffer, sizeof(buffer), "%d%%", pc);
548                 s += buffer;
549
550                 if (t > 10 && r > 0) {
551                         auto now = boost::posix_time::second_clock::local_time();
552                         auto finish = now + boost::posix_time::seconds(r);
553                         char finish_string[16];
554                         snprintf (finish_string, sizeof(finish_string), "%02d:%02d", int(finish.time_of_day().hours()), int(finish.time_of_day().minutes()));
555                         string day;
556                         if (now.date() != finish.date()) {
557                                 /// TRANSLATORS: the %1 in this string will be filled in with a day of the week
558                                 /// to say what day a job will finish.
559                                 day = String::compose (_(" on %1"), day_of_week_to_string(finish.date().day_of_week()));
560                         }
561                         /// TRANSLATORS: "remaining; finishing at" here follows an amount of time that is remaining
562                         /// on an operation; after it is an estimated wall-clock completion time.
563                         s += String::compose(
564                                 _("; %1 remaining; finishing at %2%3"),
565                                 seconds_to_approximate_hms(r), finish_string, day
566                                 );
567                 }
568         } else if (finished_ok ()) {
569                 s = String::compose (_("OK (ran for %1)"), seconds_to_hms (_ran_for));
570         } else if (finished_in_error ()) {
571                 s = String::compose (_("Error: %1"), error_summary ());
572         } else if (finished_cancelled ()) {
573                 s = _("Cancelled");
574         }
575
576         return s;
577 }
578
579
580 string
581 Job::json_status () const
582 {
583         boost::mutex::scoped_lock lm (_state_mutex);
584
585         switch (_state) {
586         case NEW:
587                 return N_("new");
588         case RUNNING:
589                 return N_("running");
590         case PAUSED_BY_USER:
591         case PAUSED_BY_PRIORITY:
592                 return N_("paused");
593         case FINISHED_OK:
594                 return N_("finished_ok");
595         case FINISHED_ERROR:
596                 return N_("finished_error");
597         case FINISHED_CANCELLED:
598                 return N_("finished_cancelled");
599         }
600
601         return "";
602 }
603
604
605 /** @return An estimate of the remaining time for this sub-job, in seconds */
606 int
607 Job::remaining_time () const
608 {
609         if (progress().get_value_or(0) == 0) {
610                 return elapsed_sub_time ();
611         }
612
613         return elapsed_sub_time() / progress().get() - elapsed_sub_time();
614 }
615
616
617 void
618 Job::cancel ()
619 {
620         if (_thread.joinable()) {
621                 resume();
622
623                 _thread.interrupt ();
624                 _thread.join ();
625         }
626
627         set_state (FINISHED_CANCELLED);
628 }
629
630
631 /** @return true if the job was paused, false if it was not running */
632 bool
633 Job::pause_by_user ()
634 {
635         bool paused = false;
636         {
637                 boost::mutex::scoped_lock lm (_state_mutex);
638                 /* We can set _state here directly because we have a lock and we aren't
639                    setting the job to FINISHED_*
640                 */
641                 if (_state == RUNNING) {
642                         paused = true;
643                         _state = PAUSED_BY_USER;
644                 }
645         }
646
647         if (paused) {
648                 _pause_changed.notify_all ();
649         }
650
651         return paused;
652 }
653
654
655 void
656 Job::pause_by_priority ()
657 {
658         if (running ()) {
659                 set_state (PAUSED_BY_PRIORITY);
660                 _pause_changed.notify_all ();
661         }
662 }
663
664
665 void
666 Job::resume ()
667 {
668         if (paused_by_user() || paused_by_priority()) {
669                 set_state (RUNNING);
670                 _pause_changed.notify_all ();
671         }
672 }
673
674
675 void
676 Job::when_finished (boost::signals2::connection& connection, function<void()> finished)
677 {
678         boost::mutex::scoped_lock lm (_state_mutex);
679         if (_state == FINISHED_OK || _state == FINISHED_ERROR || _state == FINISHED_CANCELLED) {
680                 finished ();
681         } else {
682                 connection = Finished.connect (finished);
683         }
684 }
685
686
687 optional<string>
688 Job::message () const
689 {
690         boost::mutex::scoped_lock lm (_state_mutex);
691         return _message;
692 }
693
694
695 void
696 Job::set_message (string m)
697 {
698         boost::mutex::scoped_lock lm (_state_mutex);
699         _message = m;
700 }