No-op; fix GPL address and use the explicit-program-name version.
[dcpomatic.git] / src / lib / job.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file src/job.h
22  *  @brief A parent class to represent long-running tasks which are run in their own thread.
23  */
24
25 #ifndef DCPOMATIC_JOB_H
26 #define DCPOMATIC_JOB_H
27
28 #include "signaller.h"
29 #include <boost/thread/mutex.hpp>
30 #include <boost/enable_shared_from_this.hpp>
31 #include <boost/signals2.hpp>
32 #include <boost/thread.hpp>
33 #include <string>
34
35 class Film;
36
37 /** @class Job
38  *  @brief A parent class to represent long-running tasks which are run in their own thread.
39  */
40 class Job : public boost::enable_shared_from_this<Job>, public Signaller, public boost::noncopyable
41 {
42 public:
43         Job (boost::shared_ptr<const Film>);
44         virtual ~Job ();
45
46         /** @return user-readable name of this job */
47         virtual std::string name () const = 0;
48         virtual std::string json_name () const = 0;
49         /** Run this job in the current thread. */
50         virtual void run () = 0;
51
52         void start ();
53         void pause ();
54         void resume ();
55         void cancel ();
56
57         bool is_new () const;
58         bool running () const;
59         bool finished () const;
60         bool finished_ok () const;
61         bool finished_in_error () const;
62         bool finished_cancelled () const;
63         bool paused () const;
64
65         std::string error_summary () const;
66         std::string error_details () const;
67
68         int elapsed_time () const;
69         virtual std::string status () const;
70         std::string json_status () const;
71         std::string sub_name () const {
72                 return _sub_name;
73         }
74
75         void set_progress_unknown ();
76         void set_progress (float, bool force = false);
77         void sub (std::string);
78         boost::optional<float> progress () const;
79
80         boost::shared_ptr<const Film> film () const {
81                 return _film;
82         }
83
84         void when_finished (boost::signals2::connection& connection, boost::function<void()> finished);
85
86         boost::signals2::signal<void()> Progress;
87         /** Emitted from the UI thread when the job is finished */
88         boost::signals2::signal<void()> Finished;
89
90 protected:
91
92         virtual int remaining_time () const;
93
94         /** Description of a job's state */
95         enum State {
96                 NEW,            ///< the job hasn't been started yet
97                 RUNNING,        ///< the job is running
98                 PAUSED,         ///< the job has been paused
99                 FINISHED_OK,    ///< the job has finished successfully
100                 FINISHED_ERROR, ///< the job has finished in error
101                 FINISHED_CANCELLED ///< the job was cancelled
102         };
103
104         void set_state (State);
105         void set_error (std::string s, std::string d);
106
107         boost::shared_ptr<const Film> _film;
108
109 private:
110
111         void run_wrapper ();
112         void set_progress_common (boost::optional<float> p);
113
114         boost::thread* _thread;
115
116         /** mutex for _state and _error */
117         mutable boost::mutex _state_mutex;
118         /** current state of the job */
119         State _state;
120         /** summary of an error that has occurred (when state == FINISHED_ERROR) */
121         std::string _error_summary;
122         std::string _error_details;
123
124         /** time that this sub-job was started */
125         time_t _start_time;
126         std::string _sub_name;
127
128         /** mutex for _progress */
129         mutable boost::mutex _progress_mutex;
130         boost::optional<float> _progress;
131
132         /** condition to signal changes to pause/resume so that we know when to wake;
133             this could be a general _state_change if it made more sense.
134         */
135         boost::condition_variable _pause_changed;
136
137         int _ran_for;
138 };
139
140 #endif