Give a message when changed files are re-examined.
[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         explicit Job (boost::shared_ptr<const Film> 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         bool pause_by_user ();
54         void pause_by_priority ();
55         void resume ();
56         void cancel ();
57
58         bool is_new () const;
59         bool running () const;
60         bool finished () const;
61         bool finished_ok () const;
62         bool finished_in_error () const;
63         bool finished_cancelled () const;
64         bool paused_by_user () const;
65         bool paused_by_priority () const;
66
67         std::string error_summary () const;
68         std::string error_details () const;
69
70         boost::optional<std::string> message () const;
71
72         virtual std::string status () const;
73         std::string json_status () const;
74         std::string sub_name () const {
75                 return _sub_name;
76         }
77
78         void set_progress_unknown ();
79         void set_progress (float, bool force = false);
80         void sub (std::string);
81         boost::optional<float> progress () const;
82
83         boost::shared_ptr<const Film> film () const {
84                 return _film;
85         }
86
87         void when_finished (boost::signals2::connection& connection, boost::function<void()> finished);
88
89         boost::signals2::signal<void()> Progress;
90         /** Emitted from the UI thread when the job is finished */
91         boost::signals2::signal<void()> Finished;
92
93 protected:
94
95         virtual int remaining_time () const;
96
97         /** Description of a job's state */
98         enum State {
99                 NEW,            ///< the job hasn't been started yet
100                 RUNNING,        ///< the job is running
101                 PAUSED_BY_USER, ///< the job has been paused
102                 PAUSED_BY_PRIORITY, ///< the job has been paused
103                 FINISHED_OK,    ///< the job has finished successfully
104                 FINISHED_ERROR, ///< the job has finished in error
105                 FINISHED_CANCELLED ///< the job was cancelled
106         };
107
108         void set_state (State);
109         void set_error (std::string s, std::string d);
110         void set_message (std::string m);
111         int elapsed_sub_time () const;
112         void check_for_interruption_or_pause ();
113
114         boost::shared_ptr<const Film> _film;
115
116 private:
117
118         void run_wrapper ();
119         void set_progress_common (boost::optional<float> p);
120
121         boost::thread* _thread;
122
123         /** mutex for _state, _error*, _message */
124         mutable boost::mutex _state_mutex;
125         /** current state of the job */
126         State _state;
127         /** summary of an error that has occurred (when state == FINISHED_ERROR) */
128         std::string _error_summary;
129         std::string _error_details;
130         /** a message that should be given to the user when the job finishes */
131         boost::optional<std::string> _message;
132
133         /** time that this job was started */
134         time_t _start_time;
135         /** time that this sub-job was started */
136         time_t _sub_start_time;
137         std::string _sub_name;
138
139         /** mutex for _progress and _last_progress_update */
140         mutable boost::mutex _progress_mutex;
141         boost::optional<float> _progress;
142         boost::optional<struct timeval> _last_progress_update;
143
144         /** condition to signal changes to pause/resume so that we know when to wake;
145             this could be a general _state_change if it made more sense.
146         */
147         boost::condition_variable _pause_changed;
148
149         int _ran_for;
150 };
151
152 #endif