Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[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         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         int elapsed_sub_time () const;
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 job was started */
125         time_t _start_time;
126         /** time that this sub-job was started */
127         time_t _sub_start_time;
128         std::string _sub_name;
129
130         /** mutex for _progress and _last_progress_update */
131         mutable boost::mutex _progress_mutex;
132         boost::optional<float> _progress;
133         boost::optional<struct timeval> _last_progress_update;
134
135         /** condition to signal changes to pause/resume so that we know when to wake;
136             this could be a general _state_change if it made more sense.
137         */
138         boost::condition_variable _pause_changed;
139
140         int _ran_for;
141 };
142
143 #endif