Pass options only to jobs that need them.
[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 "j2k_wav_encoder.h"
28 #include "film.h"
29 #include "format.h"
30 #include "transcoder.h"
31 #include "film_state.h"
32 #include "log.h"
33 #include "encoder_factory.h"
34
35 using namespace std;
36 using namespace boost;
37
38 /** @param s FilmState to use.
39  *  @param o Options.
40  *  @param l A log that we can write to.
41  */
42 TranscodeJob::TranscodeJob (shared_ptr<const FilmState> s, shared_ptr<const Options> o, Log* l, shared_ptr<Job> req)
43         : Job (s, l, req)
44         , _opt (o)
45 {
46         
47 }
48
49 string
50 TranscodeJob::name () const
51 {
52         return String::compose ("Transcode %1", _fs->name());
53 }
54
55 void
56 TranscodeJob::run ()
57 {
58         try {
59
60                 _log->log ("Transcode job starting");
61
62                 _encoder = encoder_factory (_fs, _opt, _log);
63                 Transcoder w (_fs, _opt, this, _log, _encoder);
64                 w.go ();
65                 set_progress (1);
66                 set_state (FINISHED_OK);
67
68                 _log->log ("Transcode job completed successfully");
69
70         } catch (std::exception& e) {
71
72                 set_progress (1);
73                 set_state (FINISHED_ERROR);
74                 _log->log (String::compose ("Transcode job failed (%1)", e.what()));
75
76                 throw;
77         }
78 }
79
80 string
81 TranscodeJob::status () const
82 {
83         if (!_encoder) {
84                 return "0%";
85         }
86
87         if (_encoder->skipping () && !finished ()) {
88                 return "skipping already-encoded frames";
89         }
90                 
91         
92         float const fps = _encoder->current_frames_per_second ();
93         if (fps == 0) {
94                 return Job::status ();
95         }
96
97         stringstream s;
98
99         s << Job::status () << "; " << fixed << setprecision (1) << fps << " frames per second";
100         return s.str ();
101 }
102
103 int
104 TranscodeJob::remaining_time () const
105 {
106         float fps = _encoder->current_frames_per_second ();
107         if (fps == 0) {
108                 return 0;
109         }
110
111         return ((_fs->dcp_length() - _encoder->last_frame()) / fps);
112 }