Remove possibility of confusing blank error messages in TranscodeJobs when the transc...
[dcpomatic.git] / src / lib / transcode_job.cc
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/transcode_job.cc
21  *  @brief A job which transcodes from one format to another.
22  */
23
24 #include <iostream>
25 #include <iomanip>
26 #include "transcode_job.h"
27 #include "film.h"
28 #include "transcoder.h"
29 #include "log.h"
30
31 #include "i18n.h"
32
33 using std::string;
34 using std::stringstream;
35 using std::fixed;
36 using std::setprecision;
37 using std::cout;
38 using boost::shared_ptr;
39
40 /** @param s Film to use.
41  */
42 TranscodeJob::TranscodeJob (shared_ptr<const Film> f)
43         : Job (f)
44 {
45         
46 }
47
48 string
49 TranscodeJob::name () const
50 {
51         return String::compose (_("Transcode %1"), _film->name());
52 }
53
54 string
55 TranscodeJob::json_name () const
56 {
57         return N_("transcode");
58 }
59
60 void
61 TranscodeJob::run ()
62 {
63         try {
64
65                 _film->log()->log (N_("Transcode job starting"));
66
67                 _transcoder.reset (new Transcoder (_film, shared_from_this ()));
68                 _transcoder->go ();
69                 set_progress (1);
70                 set_state (FINISHED_OK);
71
72                 _film->log()->log (N_("Transcode job completed successfully"));
73                 _transcoder.reset ();
74
75         } catch (...) {
76                 _transcoder.reset ();
77                 throw;
78         }
79 }
80
81 string
82 TranscodeJob::status () const
83 {
84         if (!_transcoder) {
85                 return Job::status ();
86         }
87
88         float const fps = _transcoder->current_encoding_rate ();
89         if (fps == 0) {
90                 return Job::status ();
91         }
92
93         stringstream s;
94
95         s << Job::status ();
96
97         if (!finished () && !_transcoder->finishing ()) {
98                 s << "; " << fixed << setprecision (1) << fps << " " << _("frames per second");
99         }
100         
101         return s.str ();
102 }
103
104 /** @return Approximate remaining time in seconds */
105 int
106 TranscodeJob::remaining_time () const
107 {
108         /* _transcoder might be destroyed by the job-runner thread */
109         shared_ptr<Transcoder> t = _transcoder;
110         
111         if (!t) {
112                 return 0;
113         }
114         
115         float fps = t->current_encoding_rate ();
116
117         if (fps == 0) {
118                 return 0;
119         }
120
121         /* Compute approximate proposed length here, as it's only here that we need it */
122         return (_film->length().frames (_film->video_frame_rate ()) - t->video_frames_out()) / fps;
123 }