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