libdcp
mono_mpeg2_picture_asset_writer.cc
1 /*
2  Copyright (C) 2024 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 
35 #include "mono_mpeg2_picture_asset_writer.h"
36 #include "mpeg2_picture_asset.h"
37 #include "mpeg2_picture_asset_writer.h"
38 
39 
40 using std::string;
41 using namespace dcp;
42 
43 
44 struct MonoMPEG2PictureAssetWriter::ASDCPState : public ASDCPMPEG2StateBase
45 {
46  ASDCP::MPEG2::MXFWriter mxf_writer;
47 };
48 
49 
50 
51 
52 MonoMPEG2PictureAssetWriter::MonoMPEG2PictureAssetWriter(MPEG2PictureAsset* asset, boost::filesystem::path file, bool overwrite)
53  : MPEG2PictureAssetWriter(asset, file, overwrite)
54  , _state(new MonoMPEG2PictureAssetWriter::ASDCPState)
55 {
56  asset->set_file(file);
57 }
58 
59 
60 MonoMPEG2PictureAssetWriter::~MonoMPEG2PictureAssetWriter()
61 {
62  try {
63  /* Last-resort finalization to close the file, at least */
64  if (!_finalized) {
65  _state->mxf_writer.Finalize();
66  }
67  } catch (...) {}
68 }
69 
70 
71 void
72 MonoMPEG2PictureAssetWriter::start(uint8_t const * data, int size)
73 {
74  dcp::start(this, _state, _picture_asset, data, size);
75  _picture_asset->set_frame_rate (_picture_asset->edit_rate());
76 }
77 
78 
80 MonoMPEG2PictureAssetWriter::write(uint8_t const * data, int size)
81 {
82  DCP_ASSERT(!_finalized);
83 
84  if (!_started) {
85  start(data, size);
86  }
87 
88  ASDCP::MPEG2::FrameBuffer buffer;
89  buffer.SetData(const_cast<uint8_t*>(data), size);
90  buffer.Size(size);
91  buffer.PlaintextOffset(0);
92 
93  auto const before_offset = _state->mxf_writer.Tell();
94 
95  string hash;
96  auto const r = _state->mxf_writer.WriteFrame(buffer, _crypto_context->context(), _crypto_context->hmac(), &hash);
97  if (ASDCP_FAILURE(r)) {
98  boost::throw_exception(MXFFileError("error in writing video MXF", _file.string(), r));
99  }
100 
101  ++_frames_written;
102  return MPEG2FrameInfo(
103  before_offset,
104  _state->mxf_writer.Tell() - before_offset,
105  hash,
106  buffer.FrameType(),
107  buffer.GOPStart(),
108  buffer.ClosedGOP(),
109  buffer.TemporalOffset()
110  );
111 }
112 
113 
114 void
115 MonoMPEG2PictureAssetWriter::fake_write(MPEG2FrameInfo const& info)
116 {
117  DCP_ASSERT(_started);
118  DCP_ASSERT(!_finalized);
119 
120  DCP_ASSERT(false);
121 
122  auto r = _state->mxf_writer.FakeWriteFrame(info.size, info.type, info.gop_start, info.closed_gop, info.temporal_offset);
123  if (ASDCP_FAILURE(r)) {
124  boost::throw_exception(MXFFileError("error in writing video MXF", _file.string(), r));
125  }
126 
127  ++_frames_written;
128 }
129 
130 
131 bool
133 {
134  if (_started) {
135  auto r = _state->mxf_writer.Finalize();
136  if (ASDCP_FAILURE(r)) {
137  boost::throw_exception(MXFFileError("error in finalizing video MXF", _file.string(), r));
138  }
139  }
140 
141  _picture_asset->_intrinsic_duration = _frames_written;
143 }
144 
virtual bool finalize()
Definition: asset_writer.cc:65
boost::filesystem::path _file
Definition: asset_writer.h:81
int64_t _frames_written
Definition: asset_writer.h:85
void set_file(boost::filesystem::path file) const
Definition: asset.cc:163
An exception related to an MXF file.
Definition: exceptions.h:82
int64_t _intrinsic_duration
Definition: picture_asset.h:90
MPEG2PictureAsset class.
Namespace for everything in libdcp.
Definition: array_data.h:50