It builds again.
[libdcp.git] / src / cpl.h
index aadc73478da7f6c4221edd1fa293934eb666963b..83fc4b9d552c63f528ebb6814492b29a2e586567 100644 (file)
--- a/src/cpl.h
+++ b/src/cpl.h
 #include "types.h"
 #include "certificates.h"
 #include "key.h"
+#include "asset.h"
 
-namespace libdcp {
-
-namespace parse {
-       class AssetMap;
-       class AssetMapAsset;
-}
+namespace dcp {
        
-class Asset;
+class Content;
 class Reel;
 class XMLMetadata;
 class MXFMetadata;
 class Signer;
 class KDM;
        
-/** @brief A CPL within a DCP */
-class CPL
+/** @class CPL
+ *  @brief A Composition Playlist.
+ */
+class CPL : public Asset
 {
 public:
-       CPL (boost::filesystem::path directory, std::string name, ContentKind content_kind, int length, int frames_per_second);
-       CPL (boost::filesystem::path, std::string file, std::list<PathAssetMap> asset_maps, bool require_mxfs = true);
+       CPL (std::string annotation_text, ContentKind content_kind);
+       CPL (boost::filesystem::path file);
 
-       void add_reel (boost::shared_ptr<Reel> reel);
-       
-       /** @return the length in frames */
-       int length () const {
-               return _length;
+       std::string pkl_type () const {
+               return "text/xml";
        }
 
+       void add (boost::shared_ptr<Reel> reel);
+
+       std::string annotation_text () const {
+               return _annotation_text;
+       }
+       
+       std::string content_title_text () const {
+               return _content_title_text;
+       }
+       
        /** @return the type of the content, used by media servers
         *  to categorise things (e.g. feature, trailer, etc.)
         */
@@ -70,55 +75,35 @@ public:
                return _reels;
        }
 
-       /** @return the CPL's name, as will be presented on projector
-        *  media servers and theatre management systems.
-        */
-       std::string name () const {
-               return _name;
-       }
-
-       /** @return the number of frames per second */
-       int frames_per_second () const {
-               return _fps;
-       }
-
-       std::list<boost::shared_ptr<const Asset> > assets () const;
+       std::list<boost::shared_ptr<const Content> > assets () const;
 
        bool encrypted () const;
 
        void set_mxf_keys (Key);
 
-       std::string id () const {
-               return _id;
-       }
-       
        bool equals (CPL const & other, EqualityOptions options, boost::function<void (NoteType, std::string)> note) const;
        
-       void write_xml (bool, XMLMetadata const &, boost::shared_ptr<const Signer>) const;
+       void write_xml (boost::filesystem::path file, Standard standard, XMLMetadata, boost::shared_ptr<const Signer>) const;
        void write_to_assetmap (xmlpp::Node *) const;
-       void write_to_pkl (xmlpp::Node *) const;
 
-       void add_kdm (KDM const &);
+       void add (KDM const &);
        
 private:
-       std::pair<std::string, boost::shared_ptr<const parse::AssetMapAsset> > asset_from_id (std::list<PathAssetMap>, std::string id) const;
        
-       boost::filesystem::path _directory;
-       /** the name of the DCP */
-       std::string _name;
-       /** the content kind of the CPL */
+       std::string _annotation_text;
+       std::string _issue_date;
+       std::string _creator;
+       std::string _content_title_text;
        ContentKind _content_kind;
-       /** length in frames */
-       mutable int _length;
-       /** frames per second */
-       int _fps;
+       std::string _content_version_id;
+       std::string _content_version_label_text;
        /** reels */
        std::list<boost::shared_ptr<Reel> > _reels;
 
-       /** our UUID */
-       std::string _id;
        /** a SHA1 digest of our XML */
        mutable std::string _digest;
+       /** length in bytes of the XML that we last wrote to disk */
+       mutable int64_t _length;
 };
 
 }