fe7132699cdda7509b5b5420c3a0200957e13a9b
[dcpomatic.git] / src / lib / transcode_job.cc
1 /*
2     Copyright (C) 2012-2015 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/transcode_job.cc
22  *  @brief A job which transcodes from one format to another.
23  */
24
25 #include "transcode_job.h"
26 #include "upload_job.h"
27 #include "job_manager.h"
28 #include "film.h"
29 #include "transcoder.h"
30 #include "log.h"
31 #include "safe_stringstream.h"
32 #include "compose.hpp"
33 #include <iostream>
34 #include <iomanip>
35
36 #include "i18n.h"
37
38 #define LOG_GENERAL(...) _film->log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL);
39 #define LOG_GENERAL_NC(...) _film->log()->log (__VA_ARGS__, LogEntry::TYPE_GENERAL);
40 #define LOG_ERROR_NC(...)   _film->log()->log (__VA_ARGS__, LogEntry::TYPE_ERROR);
41
42 using std::string;
43 using std::fixed;
44 using std::setprecision;
45 using std::cout;
46 using boost::shared_ptr;
47
48 /** @param s Film to use.
49  */
50 TranscodeJob::TranscodeJob (shared_ptr<const Film> film)
51         : Job (film)
52 {
53
54 }
55
56 string
57 TranscodeJob::name () const
58 {
59         return String::compose (_("Transcode %1"), _film->name());
60 }
61
62 string
63 TranscodeJob::json_name () const
64 {
65         return N_("transcode");
66 }
67
68 void
69 TranscodeJob::run ()
70 {
71         try {
72                 struct timeval start;
73                 gettimeofday (&start, 0);
74                 LOG_GENERAL_NC (N_("Transcode job starting"));
75
76                 _transcoder.reset (new Transcoder (_film, shared_from_this ()));
77                 _transcoder->go ();
78                 set_progress (1);
79                 set_state (FINISHED_OK);
80
81                 struct timeval finish;
82                 gettimeofday (&finish, 0);
83
84                 float fps = 0;
85                 if (finish.tv_sec != start.tv_sec) {
86                         fps = _transcoder->video_frames_enqueued() / (finish.tv_sec - start.tv_sec);
87                 }
88
89                 LOG_GENERAL (N_("Transcode job completed successfully: %1 fps"), fps);
90                 _transcoder.reset ();
91
92                 if (_film->upload_after_make_dcp ()) {
93                         shared_ptr<Job> job (new UploadJob (_film));
94                         JobManager::instance()->add (job);
95                 }
96
97         } catch (...) {
98                 _transcoder.reset ();
99                 throw;
100         }
101 }
102
103 string
104 TranscodeJob::status () const
105 {
106         if (!_transcoder) {
107                 return Job::status ();
108         }
109
110         float const fps = _transcoder->current_encoding_rate ();
111         if (fps == 0) {
112                 return Job::status ();
113         }
114
115         SafeStringStream s;
116
117         s << Job::status ();
118
119         if (!finished () && !_transcoder->finishing ()) {
120                 /// TRANSLATORS: fps here is an abbreviation for frames per second
121                 s << "; " << _transcoder->video_frames_enqueued() << "/"
122                   << _film->length().frames_round (_film->video_frame_rate ()) << " " << _("frames") << "; "
123                   << fixed << setprecision (1) << fps << " " << _("fps");
124         }
125
126         return s.str ();
127 }
128
129 /** @return Approximate remaining time in seconds */
130 int
131 TranscodeJob::remaining_time () const
132 {
133         /* _transcoder might be destroyed by the job-runner thread */
134         shared_ptr<Transcoder> t = _transcoder;
135
136         if (!t || t->finishing()) {
137                 /* We aren't doing any actual encoding so just use the job's guess */
138                 return Job::remaining_time ();
139         }
140
141         /* We're encoding so guess based on the current encoding rate */
142
143         float fps = t->current_encoding_rate ();
144
145         if (fps == 0) {
146                 return 0;
147         }
148
149         /* Compute approximate proposed length here, as it's only here that we need it */
150         return (_film->length().frames_round (_film->video_frame_rate ()) - t->video_frames_enqueued()) / fps;
151 }