const-correctness fix.
[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 "encryption_context.h"
43 #include <asdcp/AS_DCP.h>
44 #include <asdcp/KM_fileio.h>
45
46 #include "picture_asset_writer_common.cc"
47
48 using std::string;
49 using boost::shared_ptr;
50 using namespace dcp;
51
52 struct MonoPictureAssetWriter::ASDCPState : public ASDCPStateBase
53 {
54         ASDCP::JP2K::MXFWriter mxf_writer;
55 };
56
57 /** @param a Asset to write to.  `a' must not be deleted while
58  *  this writer class still exists, or bad things will happen.
59  */
60 MonoPictureAssetWriter::MonoPictureAssetWriter (PictureAsset* asset, boost::filesystem::path file, Standard standard, bool overwrite)
61         : PictureAssetWriter (asset, file, standard, overwrite)
62         , _state (new MonoPictureAssetWriter::ASDCPState)
63 {
64
65 }
66
67 void
68 MonoPictureAssetWriter::start (uint8_t const * data, int size)
69 {
70         dcp::start (this, _state, _standard, _picture_asset, data, size);
71         _picture_asset->set_frame_rate (_picture_asset->edit_rate());
72 }
73
74 FrameInfo
75 MonoPictureAssetWriter::write (uint8_t const * data, int size)
76 {
77         DCP_ASSERT (!_finalized);
78
79         if (!_started) {
80                 start (data, size);
81         }
82
83         if (ASDCP_FAILURE (_state->j2k_parser.OpenReadFrame (data, size, _state->frame_buffer))) {
84                 boost::throw_exception (MiscError ("could not parse J2K frame"));
85         }
86
87         uint64_t const before_offset = _state->mxf_writer.Tell ();
88
89         string hash;
90         ASDCP::Result_t const r = _state->mxf_writer.WriteFrame (_state->frame_buffer, _encryption_context->encryption(), _encryption_context->hmac(), &hash);
91         if (ASDCP_FAILURE (r)) {
92                 boost::throw_exception (MXFFileError ("error in writing video MXF", _file.string(), r));
93         }
94
95         ++_frames_written;
96         return FrameInfo (before_offset, _state->mxf_writer.Tell() - before_offset, hash);
97 }
98
99 void
100 MonoPictureAssetWriter::fake_write (int size)
101 {
102         DCP_ASSERT (_started);
103         DCP_ASSERT (!_finalized);
104
105         Kumu::Result_t r = _state->mxf_writer.FakeWriteFrame (size);
106         if (ASDCP_FAILURE (r)) {
107                 boost::throw_exception (MXFFileError ("error in writing video MXF", _file.string(), r));
108         }
109
110         ++_frames_written;
111 }
112
113 bool
114 MonoPictureAssetWriter::finalize ()
115 {
116         if (_started) {
117                 Kumu::Result_t r = _state->mxf_writer.Finalize();
118                 if (ASDCP_FAILURE (r)) {
119                         boost::throw_exception (MXFFileError ("error in finalizing video MXF", _file.string(), r));
120                 }
121         }
122
123         _picture_asset->_intrinsic_duration = _frames_written;
124         return PictureAssetWriter::finalize ();
125 }