Merge branch 'master' of /home/carl/git/dvdomatic
[dcpomatic.git] / src / lib / job.h
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.h
21  *  @brief A parent class to represent long-running tasks which are run in their own thread.
22  */
23
24 #ifndef DVDOMATIC_JOB_H
25 #define DVDOMATIC_JOB_H
26
27 #include <string>
28 #include <boost/thread/mutex.hpp>
29 #include <boost/enable_shared_from_this.hpp>
30 #include <sigc++/sigc++.h>
31
32 class Log;
33 class FilmState;
34 class Options;
35
36 /** @class Job
37  *  @brief A parent class to represent long-running tasks which are run in their own thread.
38  */
39 class Job : public boost::enable_shared_from_this<Job>
40 {
41 public:
42         Job (boost::shared_ptr<const FilmState> s, boost::shared_ptr<const Options> o, Log* l);
43
44         /** @return user-readable name of this job */
45         virtual std::string name () const = 0;
46         /** Run this job in the current thread. */
47         virtual void run () = 0;
48         
49         void start ();
50
51         bool running () const;
52         bool finished () const;
53         bool finished_ok () const;
54         bool finished_in_error () const;
55
56         std::string error () const;
57
58         int elapsed_time () const;
59         virtual std::string status () const;
60
61         void set_progress_unknown ();
62         void set_progress (float);
63         void ascend ();
64         void descend (float);
65         float overall_progress () const;
66
67         void emit_finished ();
68
69         /** Emitted from the GUI thread */
70         sigc::signal0<void> Finished;
71
72 protected:
73
74         virtual int remaining_time () const;
75
76         /** Description of a job's state */
77         enum State {
78                 NEW,           ///< the job hasn't been started yet
79                 RUNNING,       ///< the job is running
80                 FINISHED_OK,   ///< the job has finished successfully
81                 FINISHED_ERROR ///< the job has finished in error
82         };
83         
84         void set_state (State);
85         void set_error (std::string e);
86
87         /** FilmState for this job */
88         boost::shared_ptr<const FilmState> _fs;
89         /** options in use for this job */
90         boost::shared_ptr<const Options> _opt;
91         /** a log that this job can write to */
92         Log* _log;
93
94 private:
95
96         void run_wrapper ();
97
98         /** mutex for _state and _error */
99         mutable boost::mutex _state_mutex;
100         /** current state of the job */
101         State _state;
102         /** message for an error that has occurred (when state == FINISHED_ERROR) */
103         std::string _error;
104
105         /** time that this job was started */
106         time_t _start_time;
107
108         /** mutex for _stack and _progress_unknown */
109         mutable boost::mutex _progress_mutex;
110
111         struct Level {
112                 Level (float a) : allocation (a), normalised (0) {}
113
114                 float allocation;
115                 float normalised;
116         };
117
118         std::list<Level> _stack;
119
120         /** true if this job's progress will always be unknown */
121         bool _progress_unknown;
122 };
123
124 #endif