Merge branch 'direct-mxf' of /home/carl/git/dvdomatic into direct-mxf
[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 <boost/signals2.hpp>
31
32 class Film;
33
34 /** @class Job
35  *  @brief A parent class to represent long-running tasks which are run in their own thread.
36  */
37 class Job : public boost::enable_shared_from_this<Job>
38 {
39 public:
40         Job (boost::shared_ptr<Film> s);
41         virtual ~Job() {}
42
43         /** @return user-readable name of this job */
44         virtual std::string name () const = 0;
45         /** Run this job in the current thread. */
46         virtual void run () = 0;
47         
48         void start ();
49
50         bool is_new () const;
51         bool running () const;
52         bool finished () const;
53         bool finished_ok () const;
54         bool finished_in_error () const;
55
56         std::string error_summary () const;
57         std::string error_details () const;
58
59         int elapsed_time () const;
60         virtual std::string status () const;
61
62         void set_progress_unknown ();
63         void set_progress (float);
64         void ascend ();
65         void descend (float);
66         float overall_progress () const;
67
68         boost::signals2::signal<void()> Finished;
69
70 protected:
71
72         virtual int remaining_time () const;
73
74         /** Description of a job's state */
75         enum State {
76                 NEW,           ///< the job hasn't been started yet
77                 RUNNING,       ///< the job is running
78                 FINISHED_OK,   ///< the job has finished successfully
79                 FINISHED_ERROR ///< the job has finished in error
80         };
81         
82         void set_state (State);
83         void set_error (std::string s, std::string d);
84
85         /** Film for this job */
86         boost::shared_ptr<Film> _film;
87
88 private:
89
90         void run_wrapper ();
91
92         /** mutex for _state and _error */
93         mutable boost::mutex _state_mutex;
94         /** current state of the job */
95         State _state;
96         /** summary of an error that has occurred (when state == FINISHED_ERROR) */
97         std::string _error_summary;
98         std::string _error_details;
99
100         /** time that this job was started */
101         time_t _start_time;
102
103         /** mutex for _stack and _progress_unknown */
104         mutable boost::mutex _progress_mutex;
105
106         struct Level {
107                 Level (float a) : allocation (a), normalised (0) {}
108
109                 float allocation;
110                 float normalised;
111         };
112
113         std::list<Level> _stack;
114
115         /** true if this job's progress will always be unknown */
116         bool _progress_unknown;
117
118         int _ran_for;
119 };
120
121 #endif