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