libdcp
atmos_asset.cc
Go to the documentation of this file.
1 /*
2  Copyright (C) 2016-2021 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 
40 #include "atmos_asset.h"
41 #include "atmos_asset_reader.h"
42 #include "atmos_asset_writer.h"
43 #include "exceptions.h"
44 #include <asdcp/AS_DCP.h>
45 #include <asdcp/KM_fileio.h>
46 
47 
48 using std::string;
49 using std::shared_ptr;
50 using std::make_shared;
51 using namespace dcp;
52 
53 
54 AtmosAsset::AtmosAsset (Fraction edit_rate, int first_frame, int max_channel_count, int max_object_count, int atmos_version)
55  : MXF (Standard::SMPTE)
56  , _edit_rate (edit_rate)
57  , _first_frame (first_frame)
58  , _max_channel_count (max_channel_count)
59  , _max_object_count (max_object_count)
60  , _atmos_id (make_uuid())
61  , _atmos_version (atmos_version)
62 {
63 
64 }
65 
66 
67 AtmosAsset::AtmosAsset (boost::filesystem::path file)
68  : Asset (file)
69  , MXF (Standard::SMPTE)
70 {
71  Kumu::FileReaderFactory factory;
72  ASDCP::ATMOS::MXFReader reader(factory);
73  auto r = reader.OpenRead(dcp::filesystem::fix_long_path(file).string().c_str());
74  if (ASDCP_FAILURE (r)) {
75  boost::throw_exception (MXFFileError("could not open MXF file for reading", file.string(), r));
76  }
77 
78  ASDCP::ATMOS::AtmosDescriptor desc;
79  if (ASDCP_FAILURE (reader.FillAtmosDescriptor (desc))) {
80  boost::throw_exception (ReadError("could not read Atmos MXF information"));
81  }
82 
83  _edit_rate = Fraction (desc.EditRate.Numerator, desc.EditRate.Denominator);
84  _intrinsic_duration = desc.ContainerDuration;
85  _first_frame = desc.FirstFrame;
86  _max_channel_count = desc.MaxChannelCount;
87  _max_object_count = desc.MaxObjectCount;
88 
89  char id[64];
90  Kumu::bin2UUIDhex (desc.AtmosID, ASDCP::UUIDlen, id, sizeof(id));
91  _atmos_id = id;
92 
93  _atmos_version = desc.AtmosVersion;
94 
95  ASDCP::WriterInfo info;
96  if (ASDCP_FAILURE (reader.FillWriterInfo(info))) {
97  boost::throw_exception (ReadError ("could not read audio MXF information"));
98  }
99 
100  _id = read_writer_info (info);
101 }
102 
103 
104 string
105 AtmosAsset::static_pkl_type (Standard)
106 {
107  return "application/mxf";
108 }
109 
110 
111 shared_ptr<AtmosAssetReader>
112 AtmosAsset::start_read () const
113 {
114  /* Can't use make_shared here since the constructor is protected */
115  return shared_ptr<AtmosAssetReader>(new AtmosAssetReader(this, key(), Standard::SMPTE));
116 }
117 
118 
119 shared_ptr<AtmosAssetWriter>
120 AtmosAsset::start_write (boost::filesystem::path file)
121 {
122  /* Can't use make_shared here since the constructor is protected */
123  return shared_ptr<AtmosAssetWriter>(new AtmosAssetWriter(this, file));
124 }
AtmosAsset class.
AtmosAssetReader typedef.
AtmosAssetWriter class.
Parent class for DCP assets, i.e. picture, sound, subtitles, closed captions, CPLs,...
Definition: asset.h:73
boost::optional< boost::filesystem::path > file() const
Definition: asset.h:100
A helper class for writing to AtmosAssets.
A fraction (i.e. a thing with an integer numerator and an integer denominator).
Definition: types.h:168
An exception related to an MXF file.
Definition: exceptions.h:82
Parent for classes which represent MXF files.
Definition: mxf.h:74
boost::optional< Key > key() const
Definition: mxf.h:104
Any error that occurs when reading data from a DCP.
Definition: exceptions.h:106
Exceptions thrown by libdcp.
Namespace for everything in libdcp.
Definition: array_data.h:50