Tidying.
[libdcp.git] / src / atmos_asset.cc
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
35 /** @file  src/atmos_asset.cc
36  *  @brief AtmosAsset class
37  */
38
39
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
46
47 using std::string;
48 using std::shared_ptr;
49 using std::make_shared;
50 using namespace dcp;
51
52
53 AtmosAsset::AtmosAsset (Fraction edit_rate, int first_frame, int max_channel_count, int max_object_count, int atmos_version)
54         : MXF (Standard::SMPTE)
55         , _edit_rate (edit_rate)
56         , _first_frame (first_frame)
57         , _max_channel_count (max_channel_count)
58         , _max_object_count (max_object_count)
59         , _atmos_id (make_uuid())
60         , _atmos_version (atmos_version)
61 {
62
63 }
64
65
66 AtmosAsset::AtmosAsset (boost::filesystem::path file)
67         : Asset (file)
68         , MXF (Standard::SMPTE)
69 {
70         ASDCP::ATMOS::MXFReader reader;
71         auto r = reader.OpenRead (file.string().c_str());
72         if (ASDCP_FAILURE (r)) {
73                 boost::throw_exception (MXFFileError("could not open MXF file for reading", file.string(), r));
74         }
75
76         ASDCP::ATMOS::AtmosDescriptor desc;
77         if (ASDCP_FAILURE (reader.FillAtmosDescriptor (desc))) {
78                 boost::throw_exception (ReadError("could not read Atmos MXF information"));
79         }
80
81         _edit_rate = Fraction (desc.EditRate.Numerator, desc.EditRate.Denominator);
82         _intrinsic_duration = desc.ContainerDuration;
83         _first_frame = desc.FirstFrame;
84         _max_channel_count = desc.MaxChannelCount;
85         _max_object_count = desc.MaxObjectCount;
86
87         char id[64];
88         Kumu::bin2UUIDhex (desc.AtmosID, ASDCP::UUIDlen, id, sizeof(id));
89         _atmos_id = id;
90
91         _atmos_version = desc.AtmosVersion;
92
93         ASDCP::WriterInfo info;
94         if (ASDCP_FAILURE (reader.FillWriterInfo(info))) {
95                 boost::throw_exception (ReadError ("could not read audio MXF information"));
96         }
97
98         _id = read_writer_info (info);
99 }
100
101
102 string
103 AtmosAsset::static_pkl_type (Standard)
104 {
105         return "application/mxf";
106 }
107
108
109 shared_ptr<AtmosAssetReader>
110 AtmosAsset::start_read () const
111 {
112         /* Can't use make_shared here since the constructor is protected */
113         return shared_ptr<AtmosAssetReader>(new AtmosAssetReader(this, key(), Standard::SMPTE));
114 }
115
116
117 shared_ptr<AtmosAssetWriter>
118 AtmosAsset::start_write (boost::filesystem::path file)
119 {
120         /* Can't use make_shared here since the constructor is protected */
121         return shared_ptr<AtmosAssetWriter>(new AtmosAssetWriter(this, file));
122 }