Actually encrypt AuthenticatedPrivate section of KDM.
[libdcp.git] / src / sound_asset.cc
index 4d76a2fd696dae7cce5152479b4e3fe7dae1a360..026c44ef2bc46783276aeca4871b12d72ecfaa30 100644 (file)
@@ -25,6 +25,7 @@
 #include <stdexcept>
 #include <boost/filesystem.hpp>
 #include <boost/lexical_cast.hpp>
+#include <libxml++/nodes/element.h>
 #include "KM_fileio.h"
 #include "AS_DCP.h"
 #include "sound_asset.h"
@@ -46,7 +47,10 @@ SoundAsset::SoundAsset (
        string directory,
        string mxf_name,
        boost::signals2::signal<void (float)>* progress,
-       int fps, int intrinsic_duration
+       int fps,
+       int intrinsic_duration,
+       bool interop,
+       MXFMetadata const & metadata
        )
        : MXFAsset (directory, mxf_name, progress, fps, intrinsic_duration)
        , _channels (files.size ())
@@ -54,7 +58,7 @@ SoundAsset::SoundAsset (
 {
        assert (_channels);
        
-       construct (boost::bind (&SoundAsset::path_from_channel, this, _1, files));
+       construct (boost::bind (&SoundAsset::path_from_channel, this, _1, files), interop, metadata);
 }
 
 SoundAsset::SoundAsset (
@@ -62,7 +66,11 @@ SoundAsset::SoundAsset (
        string directory,
        string mxf_name,
        boost::signals2::signal<void (float)>* progress,
-       int fps, int intrinsic_duration, int channels
+       int fps,
+       int intrinsic_duration,
+       int channels,
+       bool interop,
+       MXFMetadata const & metadata
        )
        : MXFAsset (directory, mxf_name, progress, fps, intrinsic_duration)
        , _channels (channels)
@@ -70,7 +78,7 @@ SoundAsset::SoundAsset (
 {
        assert (_channels);
        
-       construct (get_path);
+       construct (get_path, interop, metadata);
 }
 
 SoundAsset::SoundAsset (string directory, string mxf_name)
@@ -79,12 +87,12 @@ SoundAsset::SoundAsset (string directory, string mxf_name)
 {
        ASDCP::PCM::MXFReader reader;
        if (ASDCP_FAILURE (reader.OpenRead (path().string().c_str()))) {
-               throw MXFFileError ("could not open MXF file for reading", path().string());
+               boost::throw_exception (MXFFileError ("could not open MXF file for reading", path().string()));
        }
 
        ASDCP::PCM::AudioDescriptor desc;
        if (ASDCP_FAILURE (reader.FillAudioDescriptor (desc))) {
-               throw DCPReadError ("could not read audio MXF information");
+               boost::throw_exception (DCPReadError ("could not read audio MXF information"));
        }
 
        _sampling_rate = desc.AudioSamplingRate.Numerator / desc.AudioSamplingRate.Denominator;
@@ -111,13 +119,13 @@ SoundAsset::path_from_channel (Channel channel, vector<string> const & files)
 }
 
 void
-SoundAsset::construct (boost::function<string (Channel)> get_path)
+SoundAsset::construct (boost::function<string (Channel)> get_path, bool interop, MXFMetadata const & metadata)
 {
        ASDCP::Rational asdcp_edit_rate (_edit_rate, 1);
 
        ASDCP::PCM::WAVParser pcm_parser_channel[_channels];
        if (pcm_parser_channel[0].OpenRead (get_path(LEFT).c_str(), asdcp_edit_rate)) {
-               throw FileError ("could not open WAV file for reading", get_path(LEFT));
+               boost::throw_exception (FileError ("could not open WAV file for reading", get_path(LEFT)));
        }
        
        ASDCP::PCM::AudioDescriptor audio_desc;
@@ -149,7 +157,7 @@ SoundAsset::construct (boost::function<string (Channel)> get_path)
                string const path = get_path (channels[i]);
                
                if (ASDCP_FAILURE (pcm_parser_channel[i].OpenRead (path.c_str(), asdcp_edit_rate))) {
-                       throw FileError ("could not open WAV file for reading", path);
+                       boost::throw_exception (FileError ("could not open WAV file for reading", path));
                }
 
                pcm_parser_channel[i].FillAudioDescriptor (audio_desc_channel[i]);
@@ -164,11 +172,11 @@ SoundAsset::construct (boost::function<string (Channel)> get_path)
        frame_buffer.Size (ASDCP::PCM::CalcFrameBufferSize (audio_desc));
 
        ASDCP::WriterInfo writer_info;
-       MXFAsset::fill_writer_info (&writer_info, _uuid);
+       MXFAsset::fill_writer_info (&writer_info, _uuid, interop, metadata);
 
        ASDCP::PCM::MXFWriter mxf_writer;
        if (ASDCP_FAILURE (mxf_writer.OpenWrite (path().string().c_str(), writer_info, audio_desc))) {
-               throw FileError ("could not open audio MXF for writing", path().string());
+               boost::throw_exception (FileError ("could not open audio MXF for writing", path().string()));
        }
        
        for (int i = 0; i < _intrinsic_duration; ++i) {
@@ -176,7 +184,7 @@ SoundAsset::construct (boost::function<string (Channel)> get_path)
                for (int j = 0; j < _channels; ++j) {
                        memset (frame_buffer_channel[j].Data(), 0, frame_buffer_channel[j].Capacity());
                        if (ASDCP_FAILURE (pcm_parser_channel[j].ReadFrame (frame_buffer_channel[j]))) {
-                               throw MiscError ("could not read audio frame");
+                               boost::throw_exception (MiscError ("could not read audio frame"));
                        }
                }
 
@@ -194,8 +202,8 @@ SoundAsset::construct (boost::function<string (Channel)> get_path)
                        offset += sample_size;
                }
 
-               if (ASDCP_FAILURE (mxf_writer.WriteFrame (frame_buffer, 0, 0))) {
-                       throw MiscError ("could not write audio MXF frame");
+               if (ASDCP_FAILURE (mxf_writer.WriteFrame (frame_buffer, _encryption_context, 0))) {
+                       boost::throw_exception (MiscError ("could not write audio MXF frame"));
                }
 
                if (_progress) {
@@ -204,47 +212,40 @@ SoundAsset::construct (boost::function<string (Channel)> get_path)
        }
 
        if (ASDCP_FAILURE (mxf_writer.Finalize())) {
-               throw MiscError ("could not finalise audio MXF");
+               boost::throw_exception (MiscError ("could not finalise audio MXF"));
        }
 }
 
-void
-SoundAsset::write_to_cpl (ostream& s) const
+string
+SoundAsset::cpl_node_name () const
 {
-       s << "        <MainSound>\n"
-         << "          <Id>urn:uuid:" << _uuid << "</Id>\n"
-         << "          <AnnotationText>" << _file_name << "</AnnotationText>\n"
-         << "          <EditRate>" << _edit_rate << " 1</EditRate>\n"
-         << "          <IntrinsicDuration>" << _intrinsic_duration << "</IntrinsicDuration>\n"
-         << "          <EntryPoint>" << _entry_point << "</EntryPoint>\n"
-         << "          <Duration>" << _duration << "</Duration>\n"
-         << "        </MainSound>\n";
+       return "MainSound";
 }
 
 bool
-SoundAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, list<string>& notes) const
+SoundAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, boost::function<void (NoteType, string)> note) const
 {
-       if (!MXFAsset::equals (other, opt, notes)) {
+       if (!MXFAsset::equals (other, opt, note)) {
                return false;
        }
                     
        ASDCP::PCM::MXFReader reader_A;
        if (ASDCP_FAILURE (reader_A.OpenRead (path().string().c_str()))) {
-               throw MXFFileError ("could not open MXF file for reading", path().string());
+               boost::throw_exception (MXFFileError ("could not open MXF file for reading", path().string()));
        }
 
        ASDCP::PCM::MXFReader reader_B;
        if (ASDCP_FAILURE (reader_B.OpenRead (other->path().string().c_str()))) {
-               throw MXFFileError ("could not open MXF file for reading", path().string());
+               boost::throw_exception (MXFFileError ("could not open MXF file for reading", path().string()));
        }
 
        ASDCP::PCM::AudioDescriptor desc_A;
        if (ASDCP_FAILURE (reader_A.FillAudioDescriptor (desc_A))) {
-               throw DCPReadError ("could not read audio MXF information");
+               boost::throw_exception (DCPReadError ("could not read audio MXF information"));
        }
        ASDCP::PCM::AudioDescriptor desc_B;
        if (ASDCP_FAILURE (reader_B.FillAudioDescriptor (desc_B))) {
-               throw DCPReadError ("could not read audio MXF information");
+               boost::throw_exception (DCPReadError ("could not read audio MXF information"));
        }
        
        if (
@@ -260,7 +261,7 @@ SoundAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, list<str
 //             desc_A.ChannelFormat != desc_B.ChannelFormat ||
                ) {
                
-               notes.push_back ("audio MXF picture descriptors differ");
+               note (ERROR, "audio MXF picture descriptors differ");
                return false;
        }
        
@@ -269,15 +270,15 @@ SoundAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, list<str
        
        for (int i = 0; i < _intrinsic_duration; ++i) {
                if (ASDCP_FAILURE (reader_A.ReadFrame (i, buffer_A))) {
-                       throw DCPReadError ("could not read audio frame");
+                       boost::throw_exception (DCPReadError ("could not read audio frame"));
                }
                
                if (ASDCP_FAILURE (reader_B.ReadFrame (i, buffer_B))) {
-                       throw DCPReadError ("could not read audio frame");
+                       boost::throw_exception (DCPReadError ("could not read audio frame"));
                }
                
                if (buffer_A.Size() != buffer_B.Size()) {
-                       notes.push_back ("sizes of audio data for frame " + lexical_cast<string>(i) + " differ");
+                       note (ERROR, "sizes of audio data for frame " + lexical_cast<string>(i) + " differ");
                        return false;
                }
                
@@ -285,7 +286,7 @@ SoundAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, list<str
                        for (uint32_t i = 0; i < buffer_A.Size(); ++i) {
                                int const d = abs (buffer_A.RoData()[i] - buffer_B.RoData()[i]);
                                if (d > opt.max_audio_sample_error) {
-                                       notes.push_back ("PCM data difference of " + lexical_cast<string> (d));
+                                       note (ERROR, "PCM data difference of " + lexical_cast<string> (d));
                                        return false;
                                }
                        }
@@ -298,14 +299,15 @@ SoundAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, list<str
 shared_ptr<const SoundFrame>
 SoundAsset::get_frame (int n) const
 {
-       return shared_ptr<const SoundFrame> (new SoundFrame (path().string(), n + _entry_point));
+       /* XXX: should add on entry point here? */
+       return shared_ptr<const SoundFrame> (new SoundFrame (path().string(), n, _decryption_context));
 }
 
 shared_ptr<SoundAssetWriter>
-SoundAsset::start_write ()
+SoundAsset::start_write (bool interop, MXFMetadata const & metadata)
 {
        /* XXX: can't we use a shared_ptr here? */
-       return shared_ptr<SoundAssetWriter> (new SoundAssetWriter (this));
+       return shared_ptr<SoundAssetWriter> (new SoundAssetWriter (this, interop, metadata));
 }
 
 struct SoundAssetWriter::ASDCPState
@@ -314,15 +316,19 @@ struct SoundAssetWriter::ASDCPState
        ASDCP::PCM::FrameBuffer frame_buffer;
        ASDCP::WriterInfo writer_info;
        ASDCP::PCM::AudioDescriptor audio_desc;
+       ASDCP::AESEncContext* encryption_context;
 };
 
-SoundAssetWriter::SoundAssetWriter (SoundAsset* a)
+SoundAssetWriter::SoundAssetWriter (SoundAsset* a, bool interop, MXFMetadata const & m)
        : _state (new SoundAssetWriter::ASDCPState)
        , _asset (a)
        , _finalized (false)
        , _frames_written (0)
        , _frame_buffer_offset (0)
+       , _metadata (m)
 {
+       _state->encryption_context = a->encryption_context ();
+       
        /* Derived from ASDCP::Wav::SimpleWaveHeader::FillADesc */
        _state->audio_desc.EditRate = ASDCP::Rational (_asset->edit_rate(), 1);
        _state->audio_desc.AudioSamplingRate = ASDCP::Rational (_asset->sampling_rate(), 1);
@@ -338,10 +344,10 @@ SoundAssetWriter::SoundAssetWriter (SoundAsset* a)
        _state->frame_buffer.Size (ASDCP::PCM::CalcFrameBufferSize (_state->audio_desc));
        memset (_state->frame_buffer.Data(), 0, _state->frame_buffer.Capacity());
        
-       MXFAsset::fill_writer_info (&_state->writer_info, _asset->uuid ());
+       _asset->fill_writer_info (&_state->writer_info, _asset->uuid (), interop, _metadata);
        
        if (ASDCP_FAILURE (_state->mxf_writer.OpenWrite (_asset->path().string().c_str(), _state->writer_info, _state->audio_desc))) {
-               throw FileError ("could not open audio MXF for writing", _asset->path().string());
+               boost::throw_exception (FileError ("could not open audio MXF for writing", _asset->path().string()));
        }
 }
 
@@ -375,8 +381,8 @@ SoundAssetWriter::write (float const * const * data, int frames)
 void
 SoundAssetWriter::write_current_frame ()
 {
-       if (ASDCP_FAILURE (_state->mxf_writer.WriteFrame (_state->frame_buffer, 0, 0))) {
-               throw MiscError ("could not write audio MXF frame");
+       if (ASDCP_FAILURE (_state->mxf_writer.WriteFrame (_state->frame_buffer, _state->encryption_context, 0))) {
+               boost::throw_exception (MiscError ("could not write audio MXF frame"));
        }
 
        ++_frames_written;
@@ -390,7 +396,7 @@ SoundAssetWriter::finalize ()
        }
        
        if (ASDCP_FAILURE (_state->mxf_writer.Finalize())) {
-               throw MiscError ("could not finalise audio MXF");
+               boost::throw_exception (MiscError ("could not finalise audio MXF"));
        }
 
        _finalized = true;
@@ -398,7 +404,8 @@ SoundAssetWriter::finalize ()
        _asset->set_duration (_frames_written);
 }
 
-SoundAssetWriter::~SoundAssetWriter ()
+string
+SoundAsset::key_type () const
 {
-       assert (_finalized);
+       return "MDAK";
 }