Move quite a lot of stuff out of Writer into a new class
[dcpomatic.git] / src / lib / reel_writer.h
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 #include "types.h"
21 #include "data.h"
22 #include "dcpomatic_time.h"
23 #include "referenced_reel_asset.h"
24 #include "player_subtitles.h"
25 #include <dcp/picture_asset_writer.h>
26 #include <boost/shared_ptr.hpp>
27
28 class Film;
29 class Job;
30 class Font;
31 class AudioBuffers;
32
33 namespace dcp {
34         class MonoPictureAsset;
35         class MonoPictureAssetWriter;
36         class StereoPictureAsset;
37         class StereoPictureAssetWriter;
38         class PictureAsset;
39         class PictureAssetWriter;
40         class SoundAsset;
41         class SoundAssetWriter;
42         class SubtitleAsset;
43         class ReelAsset;
44         class Reel;
45 }
46
47 class ReelWriter
48 {
49 public:
50         ReelWriter (boost::shared_ptr<const Film> film, DCPTimePeriod period, boost::shared_ptr<Job> job);
51
52         void write (boost::optional<Data> encoded, Frame frame, Eyes eyes);
53         void fake_write (Frame frame, Eyes eyes, int size);
54         void repeat_write (Frame frame, Eyes eyes);
55         void write (boost::shared_ptr<const AudioBuffers> audio);
56         void write (PlayerSubtitles subs);
57
58         void finish ();
59         boost::shared_ptr<dcp::Reel> create_reel (std::list<ReferencedReelAsset> const & refs, std::list<boost::shared_ptr<Font> > const & fonts);
60         void calculate_digests (boost::shared_ptr<Job> job);
61
62         Frame start () const;
63
64         DCPTimePeriod period () const {
65                 return _period;
66         }
67
68         int total_written_audio_frames () const {
69                 return _total_written_audio_frames;
70         }
71
72         int last_written_video_frame () const {
73                 return _last_written_video_frame;
74         }
75
76         Eyes last_written_eyes () const {
77                 return _last_written_eyes;
78         }
79
80         int first_nonexistant_frame () const {
81                 return _first_nonexistant_frame;
82         }
83
84         dcp::FrameInfo read_frame_info (FILE* file, Frame frame, Eyes eyes) const;
85
86 private:
87
88         void write_frame_info (Frame frame, Eyes eyes, dcp::FrameInfo info) const;
89         long frame_info_position (Frame frame, Eyes eyes) const;
90         void check_existing_picture_asset ();
91
92         boost::shared_ptr<const Film> _film;
93
94         DCPTimePeriod _period;
95         /** the first frame index that does not already exist in our MXF */
96         int _first_nonexistant_frame;
97         /** the data of the last written frame, if there is one */
98         boost::optional<Data> _last_written[EYES_COUNT];
99         /** the index of the last written video frame within the reel */
100         int _last_written_video_frame;
101         Eyes _last_written_eyes;
102         /** the number of audio frames that have been written to the reel */
103         int _total_written_audio_frames;
104
105         boost::shared_ptr<dcp::PictureAsset> _picture_asset;
106         boost::shared_ptr<dcp::PictureAssetWriter> _picture_asset_writer;
107         boost::shared_ptr<dcp::SoundAsset> _sound_asset;
108         boost::shared_ptr<dcp::SoundAssetWriter> _sound_asset_writer;
109         boost::shared_ptr<dcp::SubtitleAsset> _subtitle_asset;
110
111         static int const _info_size;
112 };