Missing install file.
[libdcp.git] / src / sound_asset.cc
index e18441c68f60c08ac328a13d237da718ec1edcea..f59d82ad647b8f957b456a88e375f8d181433bb8 100644 (file)
@@ -46,7 +46,8 @@ SoundAsset::SoundAsset (
        string directory,
        string mxf_name,
        boost::signals2::signal<void (float)>* progress,
-       int fps, int intrinsic_duration
+       int fps, int intrinsic_duration,
+       MXFMetadata const & metadata
        )
        : MXFAsset (directory, mxf_name, progress, fps, intrinsic_duration)
        , _channels (files.size ())
@@ -54,7 +55,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), metadata);
 }
 
 SoundAsset::SoundAsset (
@@ -62,7 +63,8 @@ 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,
+       MXFMetadata const & metadata
        )
        : MXFAsset (directory, mxf_name, progress, fps, intrinsic_duration)
        , _channels (channels)
@@ -70,7 +72,7 @@ SoundAsset::SoundAsset (
 {
        assert (_channels);
        
-       construct (get_path);
+       construct (get_path, metadata);
 }
 
 SoundAsset::SoundAsset (string directory, string mxf_name)
@@ -111,7 +113,7 @@ 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, MXFMetadata const & metadata)
 {
        ASDCP::Rational asdcp_edit_rate (_edit_rate, 1);
 
@@ -164,7 +166,7 @@ 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, metadata);
 
        ASDCP::PCM::MXFWriter mxf_writer;
        if (ASDCP_FAILURE (mxf_writer.OpenWrite (path().string().c_str(), writer_info, audio_desc))) {
@@ -209,22 +211,21 @@ SoundAsset::construct (boost::function<string (Channel)> get_path)
 }
 
 void
-SoundAsset::write_to_cpl (ostream& s) const
+SoundAsset::write_to_cpl (xmlpp::Node* node) 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";
+       xmlpp::Node* ms = node->add_child ("MainSound");
+       ms->add_child ("Id")->add_child_text ("urn:uuid:" + _uuid);
+       ms->add_child ("AnnotationText")->add_child_text (_file_name);
+       ms->add_child ("EditRate")->add_child_text (lexical_cast<string> (_edit_rate) + " 1");
+       ms->add_child ("IntrinsicDuration")->add_child_text (lexical_cast<string> (_intrinsic_duration));
+       ms->add_child ("EntryPoint")->add_child_text (lexical_cast<string> (_entry_point));
+       ms->add_child ("Duration")->add_child_text (lexical_cast<string> (_duration));
 }
 
 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;
        }
                     
@@ -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;
        }
        
@@ -277,7 +278,7 @@ SoundAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, list<str
                }
                
                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;
                                }
                        }
@@ -303,10 +304,10 @@ SoundAsset::get_frame (int n) const
 }
 
 shared_ptr<SoundAssetWriter>
-SoundAsset::start_write ()
+SoundAsset::start_write (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, metadata));
 }
 
 struct SoundAssetWriter::ASDCPState
@@ -317,12 +318,13 @@ struct SoundAssetWriter::ASDCPState
        ASDCP::PCM::AudioDescriptor audio_desc;
 };
 
-SoundAssetWriter::SoundAssetWriter (SoundAsset* a)
+SoundAssetWriter::SoundAssetWriter (SoundAsset* a, MXFMetadata const & m)
        : _state (new SoundAssetWriter::ASDCPState)
        , _asset (a)
        , _finalized (false)
        , _frames_written (0)
        , _frame_buffer_offset (0)
+       , _metadata (m)
 {
        /* Derived from ASDCP::Wav::SimpleWaveHeader::FillADesc */
        _state->audio_desc.EditRate = ASDCP::Rational (_asset->edit_rate(), 1);
@@ -339,7 +341,7 @@ 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 ());
+       MXFAsset::fill_writer_info (&_state->writer_info, _asset->uuid (), _metadata);
        
        if (ASDCP_FAILURE (_state->mxf_writer.OpenWrite (_asset->path().string().c_str(), _state->writer_info, _state->audio_desc))) {
                boost::throw_exception (FileError ("could not open audio MXF for writing", _asset->path().string()));
@@ -398,8 +400,3 @@ SoundAssetWriter::finalize ()
        _asset->set_intrinsic_duration (_frames_written);
        _asset->set_duration (_frames_written);
 }
-
-SoundAssetWriter::~SoundAssetWriter ()
-{
-       assert (_finalized);
-}