Trim some unused stream includes / usings.
[libdcp.git] / src / mono_picture_asset_writer.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp 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     libdcp 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 libdcp.  If not, see <http://www.gnu.org/licenses/>.
18
19     In addition, as a special exception, the copyright holders give
20     permission to link the code of portions of this program with the
21     OpenSSL library under certain conditions as described in each
22     individual source file, and distribute linked combinations
23     including the two.
24
25     You must obey the GNU General Public License in all respects
26     for all of the code used other than OpenSSL.  If you modify
27     file(s) with this exception, you may extend this exception to your
28     version of the file(s), but you are not obligated to do so.  If you
29     do not wish to do so, delete this exception statement from your
30     version.  If you delete this exception statement from all source
31     files in the program, then also delete it here.
32 */
33
34 /** @file  src/mono_picture_asset_writer.cc
35  *  @brief MonoPictureAssetWriter class
36  */
37
38 #include "mono_picture_asset_writer.h"
39 #include "exceptions.h"
40 #include "picture_asset.h"
41 #include "dcp_assert.h"
42 #include <asdcp/AS_DCP.h>
43 #include <asdcp/KM_fileio.h>
44
45 #include "picture_asset_writer_common.cc"
46
47 using std::string;
48 using boost::shared_ptr;
49 using namespace dcp;
50
51 struct MonoPictureAssetWriter::ASDCPState : public ASDCPStateBase
52 {
53         ASDCP::JP2K::MXFWriter mxf_writer;
54 };
55
56 /** @param a Asset to write to.  `a' must not be deleted while
57  *  this writer class still exists, or bad things will happen.
58  */
59 MonoPictureAssetWriter::MonoPictureAssetWriter (PictureAsset* asset, boost::filesystem::path file, Standard standard, bool overwrite)
60         : PictureAssetWriter (asset, file, standard, overwrite)
61         , _state (new MonoPictureAssetWriter::ASDCPState)
62 {
63
64 }
65
66 void
67 MonoPictureAssetWriter::start (uint8_t* data, int size)
68 {
69         dcp::start (this, _state, _standard, _picture_asset, data, size);
70         _picture_asset->set_frame_rate (_picture_asset->edit_rate());
71 }
72
73 FrameInfo
74 MonoPictureAssetWriter::write (uint8_t* data, int size)
75 {
76         DCP_ASSERT (!_finalized);
77
78         if (!_started) {
79                 start (data, size);
80         }
81
82         if (ASDCP_FAILURE (_state->j2k_parser.OpenReadFrame (data, size, _state->frame_buffer))) {
83                 boost::throw_exception (MiscError ("could not parse J2K frame"));
84         }
85
86         uint64_t const before_offset = _state->mxf_writer.Tell ();
87
88         string hash;
89         ASDCP::Result_t const r = _state->mxf_writer.WriteFrame (_state->frame_buffer, _encryption_context, _hmac_context, &hash);
90         if (ASDCP_FAILURE (r)) {
91                 boost::throw_exception (MXFFileError ("error in writing video MXF", _file.string(), r));
92         }
93
94         ++_frames_written;
95         return FrameInfo (before_offset, _state->mxf_writer.Tell() - before_offset, hash);
96 }
97
98 void
99 MonoPictureAssetWriter::fake_write (int size)
100 {
101         DCP_ASSERT (_started);
102         DCP_ASSERT (!_finalized);
103
104         Kumu::Result_t r = _state->mxf_writer.FakeWriteFrame (size);
105         if (ASDCP_FAILURE (r)) {
106                 boost::throw_exception (MXFFileError ("error in writing video MXF", _file.string(), r));
107         }
108
109         ++_frames_written;
110 }
111
112 bool
113 MonoPictureAssetWriter::finalize ()
114 {
115         if (_started) {
116                 Kumu::Result_t r = _state->mxf_writer.Finalize();
117                 if (ASDCP_FAILURE (r)) {
118                         boost::throw_exception (MXFFileError ("error in finalizing video MXF", _file.string(), r));
119                 }
120         }
121
122         _picture_asset->_intrinsic_duration = _frames_written;
123         return PictureAssetWriter::finalize ();
124 }