Various work on certificate handling for screens; need XML config here, now.
[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 "film.h"
28 #include "format.h"
29 #include "transcoder.h"
30 #include "log.h"
31 #include "encoder.h"
32
33 using std::string;
34 using std::stringstream;
35 using std::fixed;
36 using std::setprecision;
37 using boost::shared_ptr;
38
39 /** @param s Film to use.
40  *  @param o Options.
41  *  @param req Job that must be completed before this job is run.
42  */
43 TranscodeJob::TranscodeJob (shared_ptr<Film> f, shared_ptr<const DecodeOptions> od, shared_ptr<const EncodeOptions> oe, shared_ptr<Job> req)
44         : Job (f, req)
45         , _decode_opt (od)
46         , _encode_opt (oe)
47 {
48         
49 }
50
51 string
52 TranscodeJob::name () const
53 {
54         return String::compose ("Transcode %1", _film->name());
55 }
56
57 void
58 TranscodeJob::run ()
59 {
60         try {
61
62                 _film->log()->log ("Transcode job starting");
63                 _film->log()->log (String::compose ("Audio delay is %1ms", _film->audio_delay()));
64
65                 _encoder.reset (new Encoder (_film, _encode_opt));
66                 Transcoder w (_film, _decode_opt, this, _encoder);
67                 w.go ();
68                 set_progress (1);
69                 set_state (FINISHED_OK);
70
71                 _film->log()->log ("Transcode job completed successfully");
72
73         } catch (std::exception& e) {
74
75                 set_progress (1);
76                 set_state (FINISHED_ERROR);
77                 _film->log()->log (String::compose ("Transcode job failed (%1)", e.what()));
78
79                 throw;
80         }
81 }
82
83 string
84 TranscodeJob::status () const
85 {
86         if (!_encoder) {
87                 return "0%";
88         }
89
90         if (_encoder->skipping () && !finished ()) {
91                 return "skipping already-encoded frames";
92         }
93                 
94         
95         float const fps = _encoder->current_frames_per_second ();
96         if (fps == 0) {
97                 return Job::status ();
98         }
99
100         stringstream s;
101
102         s << Job::status ();
103
104         if (!finished ()) {
105                 s << "; " << fixed << setprecision (1) << fps << " frames per second";
106         }
107         
108         return s.str ();
109 }
110
111 int
112 TranscodeJob::remaining_time () const
113 {
114         float fps = _encoder->current_frames_per_second ();
115         if (fps == 0) {
116                 return 0;
117         }
118
119         if (!_film->dcp_length()) {
120                 return 0;
121         }
122
123         /* We assume that dcp_length() is valid, if it is set */
124         SourceFrame const left = _film->dcp_trim_start() + _film->dcp_length().get() - _encoder->video_frame();
125         return left / fps;
126 }