Add edit_rate accessor.
[libdcp.git] / src / reel.h
index 666e235e86ed9976251a35eda7860d9d380185b0..010322c2a37a0ae87748de2f2acb0a1b0670b523 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #ifndef LIBDCP_REEL_H
 #define LIBDCP_REEL_H
 
-#include <list>
-#include <boost/shared_ptr.hpp>
-#include <boost/function.hpp>
-#include <libxml++/libxml++.h>
 #include "key.h"
 #include "types.h"
+#include "ref.h"
+#include <libxml++/libxml++.h>
+#include <boost/shared_ptr.hpp>
+#include <boost/function.hpp>
+#include <list>
 
-namespace xmlpp {
+namespace cxml {
        class Node;
 }
 
 namespace dcp {
 
-class PictureAsset;
-class SoundAsset;
-class SubtitleAsset;
-class KDM;     
+class DecryptedKDM;
+class ReelAsset;
+class ReelPictureAsset;
+class ReelSoundAsset;
+class ReelSubtitleAsset;
+class Content;
 
-/** @brief A reel within a DCP; the part which actually contains picture, sound and subtitle data */   
-class Reel
+/** @brief A reel within a DCP; the part which actually refers to picture, sound and subtitle data */
+class Reel : public Object
 {
 public:
+       Reel () {}
+
        Reel (
-               boost::shared_ptr<PictureAsset> picture,
-               boost::shared_ptr<SoundAsset> sound,
-               boost::shared_ptr<SubtitleAsset> subtitle
+               boost::shared_ptr<ReelPictureAsset> picture,
+               boost::shared_ptr<ReelSoundAsset> sound,
+               boost::shared_ptr<ReelSubtitleAsset> subtitle
                )
                : _main_picture (picture)
                , _main_sound (sound)
                , _main_subtitle (subtitle)
        {}
-       
-       boost::shared_ptr<const PictureAsset> main_picture () const {
+
+       Reel (boost::shared_ptr<const cxml::Node>);
+
+       boost::shared_ptr<ReelPictureAsset> main_picture () const {
                return _main_picture;
        }
 
-       boost::shared_ptr<const SoundAsset> main_sound () const {
+       boost::shared_ptr<ReelSoundAsset> main_sound () const {
                return _main_sound;
        }
-       
-       boost::shared_ptr<const SubtitleAsset> main_subtitle () const {
+
+       boost::shared_ptr<ReelSubtitleAsset> main_subtitle () const {
                return _main_subtitle;
        }
 
-       void write_to_cpl (xmlpp::Element *) const;
+       void add (boost::shared_ptr<ReelAsset> asset);
+
+       void write_to_cpl (xmlpp::Element* node, Standard standard) const;
 
        bool encrypted () const;
 
-       void set_mxf_keys (dcp::Key);
-       
-       bool equals (boost::shared_ptr<const Reel> other, EqualityOptions opt, boost::function<void (NoteType, std::string)> notes) const;
+       bool equals (boost::shared_ptr<const Reel> other, EqualityOptions opt, NoteHandler notes) const;
+
+       void add (DecryptedKDM const &);
 
-       void add_kdm (KDM const &);
+       void resolve_refs (std::list<boost::shared_ptr<Object> >);
 
 private:
-       boost::shared_ptr<PictureAsset> _main_picture;
-       boost::shared_ptr<SoundAsset> _main_sound;
-       boost::shared_ptr<SubtitleAsset> _main_subtitle;
+       boost::shared_ptr<ReelPictureAsset> _main_picture;
+       boost::shared_ptr<ReelSoundAsset> _main_sound;
+       boost::shared_ptr<ReelSubtitleAsset> _main_subtitle;
 };
 
 }