Merge.
[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 #define LOG_GENERAL_NC(...) _film->log()->log (__VA_ARGS__, Log::TYPE_GENERAL);
34 #define LOG_ERROR_NC(...)   _film->log()->log (__VA_ARGS__, Log::TYPE_ERROR);
35
36 using std::string;
37 using std::stringstream;
38 using std::fixed;
39 using std::setprecision;
40 using boost::shared_ptr;
41
42 /** @param s Film to use.
43  */
44 TranscodeJob::TranscodeJob (shared_ptr<const Film> f)
45         : Job (f)
46 {
47         
48 }
49
50 string
51 TranscodeJob::name () const
52 {
53         return String::compose (_("Transcode %1"), _film->name());
54 }
55
56 string
57 TranscodeJob::json_name () const
58 {
59         return N_("transcode");
60 }
61
62 void
63 TranscodeJob::run ()
64 {
65         try {
66
67                 LOG_GENERAL_NC (N_("Transcode job starting"));
68
69                 _transcoder.reset (new Transcoder (_film, shared_from_this ()));
70                 _transcoder->go ();
71                 set_progress (1);
72                 set_state (FINISHED_OK);
73
74                 LOG_GENERAL_NC (N_("Transcode job completed successfully"));
75                 _transcoder.reset ();
76
77         } catch (...) {
78                 set_progress (1);
79                 set_state (FINISHED_ERROR);
80                 LOG_ERROR_NC (N_("Transcode job failed or cancelled"));
81                 _transcoder.reset ();
82                 throw;
83         }
84 }
85
86 string
87 TranscodeJob::status () const
88 {
89         if (!_transcoder) {
90                 return Job::status ();
91         }
92
93         float const fps = _transcoder->current_encoding_rate ();
94         if (fps == 0) {
95                 return Job::status ();
96         }
97
98         stringstream s;
99
100         s << Job::status ();
101
102         if (!finished () && !_transcoder->finishing ()) {
103                 s << "; " << fixed << setprecision (1) << fps << " " << _("frames per second");
104         }
105         
106         return s.str ();
107 }
108
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         OutputVideoFrame const left = _film->time_to_video_frames (_film->length ()) - t->video_frames_out();
127         return left / fps;
128 }