f3d7deac02a4c5426674b0765083c3c8dbc55b6d
[dcpomatic.git] / src / lib / job.cc
1 /*
2     Copyright (C) 2012 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 <libdcp/exceptions.h>
27 #include "job.h"
28 #include "util.h"
29
30 using namespace std;
31 using namespace boost;
32
33 /** @param s Film that we are operating on.
34  */
35 Job::Job (shared_ptr<Film> f, shared_ptr<Job> req)
36         : _film (f)
37         , _required (req)
38         , _state (NEW)
39         , _start_time (0)
40         , _progress_unknown (false)
41         , _ran_for (0)
42 {
43         descend (1);
44 }
45
46 /** Start the job in a separate thread, returning immediately */
47 void
48 Job::start ()
49 {
50         set_state (RUNNING);
51         _start_time = time (0);
52         boost::thread (boost::bind (&Job::run_wrapper, this));
53 }
54
55 /** A wrapper for the ::run() method to catch exceptions */
56 void
57 Job::run_wrapper ()
58 {
59         try {
60
61                 run ();
62
63         } catch (libdcp::FileError& e) {
64                 
65                 set_progress (1);
66                 set_state (FINISHED_ERROR);
67                 set_error (String::compose ("%1 (%2)", e.what(), filesystem::path (e.filename()).leaf()));
68                 
69         } catch (std::exception& e) {
70
71                 set_progress (1);
72                 set_state (FINISHED_ERROR);
73                 set_error (e.what ());
74
75         }
76 }
77
78 bool
79 Job::is_new () const
80 {
81         boost::mutex::scoped_lock lm (_state_mutex);
82         return _state == NEW;
83 }
84
85 /** @return true if the job is running */
86 bool
87 Job::running () const
88 {
89         boost::mutex::scoped_lock lm (_state_mutex);
90         return _state == RUNNING;
91 }
92
93 /** @return true if the job has finished (either successfully or unsuccessfully) */
94 bool
95 Job::finished () const
96 {
97         boost::mutex::scoped_lock lm (_state_mutex);
98         return _state == FINISHED_OK || _state == FINISHED_ERROR;
99 }
100
101 /** @return true if the job has finished successfully */
102 bool
103 Job::finished_ok () const
104 {
105         boost::mutex::scoped_lock lm (_state_mutex);
106         return _state == FINISHED_OK;
107 }
108
109 /** @return true if the job has finished unsuccessfully */
110 bool
111 Job::finished_in_error () const
112 {
113         boost::mutex::scoped_lock lm (_state_mutex);
114         return _state == FINISHED_ERROR;
115 }
116
117 /** Set the state of this job.
118  *  @param s New state.
119  */
120 void
121 Job::set_state (State s)
122 {
123         boost::mutex::scoped_lock lm (_state_mutex);
124         _state = s;
125
126         if (_state == FINISHED_OK || _state == FINISHED_ERROR) {
127                 _ran_for = elapsed_time ();
128         }
129 }
130
131 /** A hack to work around our lack of cross-thread
132  *  signalling; this emits Finished, and listeners
133  *  assume that it will be emitted in the GUI thread,
134  *  so this method must be called from the GUI thread.
135  */
136 void
137 Job::emit_finished ()
138 {
139         Finished ();
140 }
141
142 /** @return Time (in seconds) that this job has been running */
143 int
144 Job::elapsed_time () const
145 {
146         if (_start_time == 0) {
147                 return 0;
148         }
149         
150         return time (0) - _start_time;
151 }
152
153 /** Set the progress of the current part of the job.
154  *  @param p Progress (from 0 to 1)
155  */
156 void
157 Job::set_progress (float p)
158 {
159         boost::mutex::scoped_lock lm (_progress_mutex);
160         _progress_unknown = false;
161         _stack.back().normalised = p;
162 }
163
164 /** @return fractional overall progress, or -1 if not known */
165 float
166 Job::overall_progress () const
167 {
168         boost::mutex::scoped_lock lm (_progress_mutex);
169         if (_progress_unknown) {
170                 return -1;
171         }
172
173         float overall = 0;
174         float factor = 1;
175         for (list<Level>::const_iterator i = _stack.begin(); i != _stack.end(); ++i) {
176                 factor *= i->allocation;
177                 overall += i->normalised * factor;
178         }
179
180         if (overall > 1) {
181                 overall = 1;
182         }
183         
184         return overall;
185 }
186
187 /** Ascend up one level in terms of progress reporting; see descend() */
188 void
189 Job::ascend ()
190 {
191         boost::mutex::scoped_lock lm (_progress_mutex);
192         
193         assert (!_stack.empty ());
194         float const a = _stack.back().allocation;
195         _stack.pop_back ();
196         _stack.back().normalised += a;
197 }
198
199 /** Descend down one level in terms of progress reporting; e.g. if
200  *  there is a task which is split up into N subtasks, each of which
201  *  report their progress from 0 to 100%, call descend() before executing
202  *  each subtask, and ascend() afterwards to ensure that overall progress
203  *  is reported correctly.
204  *
205  *  @param a Fraction (from 0 to 1) of the current task to allocate to the subtask.
206  */
207 void
208 Job::descend (float a)
209 {
210         boost::mutex::scoped_lock lm (_progress_mutex);
211         _stack.push_back (Level (a));
212 }
213
214 /** @return Any error string that the job has generated */
215 string
216 Job::error () const
217 {
218         boost::mutex::scoped_lock lm (_state_mutex);
219         return _error;
220 }
221
222 /** Set the current error string.
223  *  @param e New error string.
224  */
225 void
226 Job::set_error (string e)
227 {
228         boost::mutex::scoped_lock lm (_state_mutex);
229         _error = e;
230 }
231
232 /** Say that this job's progress will be unknown until further notice */
233 void
234 Job::set_progress_unknown ()
235 {
236         boost::mutex::scoped_lock lm (_progress_mutex);
237         _progress_unknown = true;
238 }
239
240 /** @return Human-readable status of this job */
241 string
242 Job::status () const
243 {
244         float const p = overall_progress ();
245         int const t = elapsed_time ();
246         int const r = remaining_time ();
247         
248         stringstream s;
249         if (!finished () && p >= 0 && t > 10 && r > 0) {
250                 s << rint (p * 100) << "%; " << seconds_to_approximate_hms (r) << " remaining";
251         } else if (!finished () && (t <= 10 || r == 0)) {
252                 s << rint (p * 100) << "%";
253         } else if (finished_ok ()) {
254                 s << "OK (ran for " << seconds_to_hms (_ran_for) << ")";
255         } else if (finished_in_error ()) {
256                 s << "Error (" << error() << ")";
257         }
258
259         return s.str ();
260 }
261
262 /** @return An estimate of the remaining time for this job, in seconds */
263 int
264 Job::remaining_time () const
265 {
266         return elapsed_time() / overall_progress() - elapsed_time();
267 }