Hand-apply e30fd8d; resurrect JSON server code.
[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 DCPOMATIC_JOB_H
25 #define DCPOMATIC_JOB_H
26
27 #include <boost/thread/mutex.hpp>
28 #include <boost/enable_shared_from_this.hpp>
29 #include <boost/signals2.hpp>
30 #include <boost/thread.hpp>
31 #include <string>
32
33 class Film;
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 : public boost::enable_shared_from_this<Job>, public boost::noncopyable
39 {
40 public:
41         Job (boost::shared_ptr<const Film>);
42         virtual ~Job() {}
43
44         /** @return user-readable name of this job */
45         virtual std::string name () const = 0;
46         virtual std::string json_name () const = 0;
47         /** Run this job in the current thread. */
48         virtual void run () = 0;
49         
50         void start ();
51         void pause ();
52         void resume ();
53         void cancel ();
54
55         bool is_new () const;
56         bool running () const;
57         bool finished () const;
58         bool finished_ok () const;
59         bool finished_in_error () const;
60         bool finished_cancelled () const;
61         bool paused () const;
62
63         std::string error_summary () const;
64         std::string error_details () const;
65
66         int elapsed_time () const;
67         virtual std::string status () const;
68         std::string json_status () const;
69         std::string sub_name () const {
70                 return _sub_name;
71         }
72
73         void set_progress_unknown ();
74         void set_progress (float, bool force = false);
75         void sub (std::string);
76         boost::optional<float> progress () const;
77
78         boost::shared_ptr<const Film> film () const {
79                 return _film;
80         }
81
82         boost::signals2::signal<void()> Progress;
83         /** Emitted from the UI thread when the job is finished */
84         boost::signals2::signal<void()> Finished;
85
86 protected:
87
88         virtual int remaining_time () const;
89
90         /** Description of a job's state */
91         enum State {
92                 NEW,            ///< the job hasn't been started yet
93                 RUNNING,        ///< the job is running
94                 PAUSED,         ///< the job has been paused
95                 FINISHED_OK,    ///< the job has finished successfully
96                 FINISHED_ERROR, ///< the job has finished in error
97                 FINISHED_CANCELLED ///< the job was cancelled
98         };
99         
100         void set_state (State);
101         void set_error (std::string s, std::string d);
102
103         boost::shared_ptr<const Film> _film;
104
105 private:
106
107         void run_wrapper ();
108
109         boost::thread* _thread;
110
111         /** mutex for _state and _error */
112         mutable boost::mutex _state_mutex;
113         /** current state of the job */
114         State _state;
115         /** summary of an error that has occurred (when state == FINISHED_ERROR) */
116         std::string _error_summary;
117         std::string _error_details;
118
119         /** time that this sub-job was started */
120         time_t _start_time;
121         std::string _sub_name;
122
123         /** mutex for _progress */
124         mutable boost::mutex _progress_mutex;
125         boost::optional<float> _progress;
126
127         /** condition to signal changes to pause/resume so that we know when to wake;
128             this could be a general _state_change if it made more sense.
129         */
130         boost::condition_variable _pause_changed;
131
132         int _ran_for;
133 };
134
135 #endif