Remove all use of stringstream in an attempt to fix
[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 "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_enqueued() / (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         char buffer[256];
115         if (finished() || _transcoder->finishing()) {
116                 strncpy (buffer, Job::status().c_str(), 256);
117         } else {
118                 /// TRANSLATORS: fps here is an abbreviation for frames per second
119                 snprintf (
120                         buffer, sizeof(buffer), "%s; %d/%" PRId64 " frames; %.1f fps",
121                         Job::status().c_str(),
122                         _transcoder->video_frames_enqueued(),
123                         _film->length().frames_round (_film->video_frame_rate ()),
124                         fps
125                         );
126         }
127
128         return buffer;
129 }
130
131 /** @return Approximate remaining time in seconds */
132 int
133 TranscodeJob::remaining_time () const
134 {
135         /* _transcoder might be destroyed by the job-runner thread */
136         shared_ptr<Transcoder> t = _transcoder;
137
138         if (!t || t->finishing()) {
139                 /* We aren't doing any actual encoding so just use the job's guess */
140                 return Job::remaining_time ();
141         }
142
143         /* We're encoding so guess based on the current encoding rate */
144
145         float fps = t->current_encoding_rate ();
146
147         if (fps == 0) {
148                 return 0;
149         }
150
151         /* Compute approximate proposed length here, as it's only here that we need it */
152         return (_film->length().frames_round (_film->video_frame_rate ()) - t->video_frames_enqueued()) / fps;
153 }