95599bdbb65bf1dd1ca8bae44b4347ac5bb1015d
[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 <sigc++/sigc++.h>
30
31 class Log;
32 class FilmState;
33 class Options;
34
35 /** @class Job
36  *  @brief A parent class to represent long-running tasks which are run in their own thread.
37  */
38 class Job
39 {
40 public:
41         Job (boost::shared_ptr<const FilmState> s, boost::shared_ptr<const Options> o, Log* l);
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 running () const;
51         bool finished () const;
52         bool finished_ok () const;
53         bool finished_in_error () const;
54
55         std::string error () const;
56
57         int elapsed_time () const;
58         virtual std::string status () const;
59
60         void set_progress_unknown ();
61         void set_progress (float);
62         void ascend ();
63         void descend (float);
64         float overall_progress () const;
65
66         void emit_finished ();
67
68         /** Emitted from the GUI thread */
69         sigc::signal0<void> Finished;
70
71 protected:
72
73         virtual int remaining_time () const;
74
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 e);
84
85         boost::shared_ptr<const FilmState> _fs;
86         boost::shared_ptr<const Options> _opt;
87
88         /** A log that this job can write to */
89         Log* _log;
90
91 private:
92
93         void run_wrapper ();
94
95         /** mutex for _state and _error */
96         mutable boost::mutex _state_mutex;
97         State _state;
98         std::string _error;
99
100         time_t _start_time;
101         
102         mutable boost::mutex _progress_mutex;
103
104         struct Level {
105                 Level (float a) : allocation (a), normalised (0) {}
106
107                 float allocation;
108                 float normalised;
109         };
110
111         std::list<Level> _stack;
112
113         /** true if this job's progress will always be unknown */
114         bool _progress_unknown;
115 };
116
117 #endif