No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / transcode_job.cc
1 /*
2     Copyright (C) 2012-2015 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 #include "safe_stringstream.h"
31
32 #include "i18n.h"
33
34 #define LOG_GENERAL_NC(...) _film->log()->log (__VA_ARGS__, Log::TYPE_GENERAL);
35 #define LOG_ERROR_NC(...)   _film->log()->log (__VA_ARGS__, Log::TYPE_ERROR);
36
37 using std::string;
38 using std::fixed;
39 using std::setprecision;
40 using std::cout;
41 using boost::shared_ptr;
42
43 /** @param s Film to use.
44  */
45 TranscodeJob::TranscodeJob (shared_ptr<const Film> film)
46         : Job (film)
47 {
48
49 }
50
51 string
52 TranscodeJob::name () const
53 {
54         return String::compose (_("Transcode %1"), _film->name());
55 }
56
57 string
58 TranscodeJob::json_name () const
59 {
60         return N_("transcode");
61 }
62
63 void
64 TranscodeJob::run ()
65 {
66         try {
67
68                 LOG_GENERAL_NC (N_("Transcode job starting"));
69
70                 _transcoder.reset (new Transcoder (_film, shared_from_this ()));
71                 _transcoder->go ();
72                 set_progress (1);
73                 set_state (FINISHED_OK);
74
75                 LOG_GENERAL_NC (N_("Transcode job completed successfully"));
76                 _transcoder.reset ();
77
78         } catch (...) {
79                 _transcoder.reset ();
80                 throw;
81         }
82 }
83
84 string
85 TranscodeJob::status () const
86 {
87         if (!_transcoder) {
88                 return Job::status ();
89         }
90
91         float const fps = _transcoder->current_encoding_rate ();
92         if (fps == 0) {
93                 return Job::status ();
94         }
95
96         SafeStringStream s;
97
98         s << Job::status ();
99
100         if (!finished () && !_transcoder->finishing ()) {
101                 /// TRANSLATORS: fps here is an abbreviation for frames per second
102                 s << "; " << fixed << setprecision (1) << fps << " " << _("fps");
103         }
104
105         return s.str ();
106 }
107
108 /** @return Approximate remaining time in seconds */
109 int
110 TranscodeJob::remaining_time () const
111 {
112         /* _transcoder might be destroyed by the job-runner thread */
113         shared_ptr<Transcoder> t = _transcoder;
114
115         if (!t) {
116                 return 0;
117         }
118
119         float fps = t->current_encoding_rate ();
120
121         if (fps == 0) {
122                 return 0;
123         }
124
125         /* Compute approximate proposed length here, as it's only here that we need it */
126         return (_film->length().frames (_film->video_frame_rate ()) - t->video_frames_out()) / fps;
127 }