Move make_simple() into test.{cc,h}
[libdcp.git] / src / atmos_asset.cc
index a8a595c3465c228cc2ea125a0a72e454aea994d0..c31ac2d65c8374fbfc5ea54c98ae577b6f199d2a 100644 (file)
 */
 
 #include "atmos_asset.h"
+#include "atmos_asset_reader.h"
+#include "atmos_asset_writer.h"
 #include "exceptions.h"
 #include <asdcp/AS_DCP.h>
 
 using std::string;
+using boost::shared_ptr;
 using namespace dcp;
 
+AtmosAsset::AtmosAsset (Fraction edit_rate, int first_frame, int max_channel_count, int max_object_count, int atmos_version)
+       : MXF (SMPTE)
+       , _edit_rate (edit_rate)
+       , _intrinsic_duration (0)
+       , _first_frame (first_frame)
+       , _max_channel_count (max_channel_count)
+       , _max_object_count (max_object_count)
+       , _atmos_id (make_uuid())
+       , _atmos_version (atmos_version)
+{
+
+}
+
 AtmosAsset::AtmosAsset (boost::filesystem::path file)
        : Asset (file)
+       , MXF (SMPTE)
 {
        ASDCP::ATMOS::MXFReader reader;
        Kumu::Result_t r = reader.OpenRead (file.string().c_str());
@@ -49,7 +66,7 @@ AtmosAsset::AtmosAsset (boost::filesystem::path file)
 
        ASDCP::ATMOS::AtmosDescriptor desc;
        if (ASDCP_FAILURE (reader.FillAtmosDescriptor (desc))) {
-               boost::throw_exception (DCPReadError ("could not read Atmos MXF information"));
+               boost::throw_exception (ReadError ("could not read Atmos MXF information"));
        }
 
        _edit_rate = Fraction (desc.EditRate.Numerator, desc.EditRate.Denominator);
@@ -57,10 +74,35 @@ AtmosAsset::AtmosAsset (boost::filesystem::path file)
        _first_frame = desc.FirstFrame;
        _max_channel_count = desc.MaxChannelCount;
        _max_object_count = desc.MaxObjectCount;
+
+       char id[64];
+       Kumu::bin2UUIDhex (desc.AtmosID, ASDCP::UUIDlen, id, sizeof (id));
+       _atmos_id = id;
+
+       _atmos_version = desc.AtmosVersion;
+
+       ASDCP::WriterInfo info;
+       if (ASDCP_FAILURE (reader.FillWriterInfo (info))) {
+               boost::throw_exception (ReadError ("could not read audio MXF information"));
+       }
+
+       _id = read_writer_info (info);
 }
 
 string
-AtmosAsset::pkl_type (Standard) const
+AtmosAsset::static_pkl_type (Standard)
 {
        return "application/mxf";
 }
+
+shared_ptr<AtmosAssetReader>
+AtmosAsset::start_read () const
+{
+       return shared_ptr<AtmosAssetReader> (new AtmosAssetReader (this, key(), SMPTE));
+}
+
+shared_ptr<AtmosAssetWriter>
+AtmosAsset::start_write (boost::filesystem::path file)
+{
+       return shared_ptr<AtmosAssetWriter> (new AtmosAssetWriter (this, file));
+}