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