Fix a couple of errors in Interop XML
[libdcp.git] / src / cpl.h
index c04fd6addd5390c7c6f48828fff563e1d7554dd4..c50d8f903a790a9619c23c99f693c3363b3b3610 100644 (file)
--- a/src/cpl.h
+++ b/src/cpl.h
 
 */
 
+#ifndef LIBDCP_CPL_H
+#define LIBDCP_CPL_H
+
 #include <list>
 #include <boost/shared_ptr.hpp>
 #include <boost/function.hpp>
+#include <boost/date_time/posix_time/posix_time.hpp>
+#include <boost/optional.hpp>
+#include <boost/filesystem.hpp>
+#include <libxml++/libxml++.h>
 #include "types.h"
+#include "certificates.h"
+#include "key.h"
 
 namespace libdcp {
 
 namespace parse {
        class AssetMap;
+       class AssetMapAsset;
 }
        
 class Asset;
 class Reel;
 class XMLMetadata;
-
+class MXFMetadata;
+class Signer;
+class KDM;
+       
 /** @brief A CPL within a DCP */
 class CPL
 {
 public:
-       CPL (std::string directory, std::string name, ContentKind content_kind, int length, int frames_per_second);
-       CPL (std::string directory, std::string file, boost::shared_ptr<const parse::AssetMap> asset_map, bool require_mxfs = true);
+       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);
 
-       void add_reel (boost::shared_ptr<const Reel> reel);
+       void add_reel (boost::shared_ptr<Reel> reel);
        
        /** @return the length in frames */
        int length () const {
@@ -53,7 +66,7 @@ public:
                return _content_kind;
        }
 
-       std::list<boost::shared_ptr<const Reel> > reels () const {
+       std::list<boost::shared_ptr<Reel> > reels () const {
                return _reels;
        }
 
@@ -70,15 +83,27 @@ public:
        }
 
        std::list<boost::shared_ptr<const Asset> > 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 (XMLMetadata const &) const;
-       void write_to_assetmap (std::ostream& s) const;
-       void write_to_pkl (std::ostream& s) const;
+       void write_xml (bool, XMLMetadata const &, boost::shared_ptr<const Signer>) const;
+       void write_to_assetmap (xmlpp::Node *) const;
+       void write_to_pkl (xmlpp::Node *, bool) const;
+
+       void add_kdm (KDM const &);
        
 private:
-       std::string _directory;
+       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 */
@@ -88,12 +113,14 @@ private:
        /** frames per second */
        int _fps;
        /** reels */
-       std::list<boost::shared_ptr<const Reel> > _reels;
+       std::list<boost::shared_ptr<Reel> > _reels;
 
        /** our UUID */
-       std::string _uuid;
+       std::string _id;
        /** a SHA1 digest of our XML */
        mutable std::string _digest;
 };
 
 }
+
+#endif