More master merge bits.
[libdcp.git] / src / cpl.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <list>
21 #include <boost/shared_ptr.hpp>
22 #include <boost/function.hpp>
23 #include <boost/date_time/posix_time/posix_time.hpp>
24 #include <libxml++/libxml++.h>
25 #include "types.h"
26 #include "certificates.h"
27
28 namespace libdcp {
29
30 namespace parse {
31         class AssetMap;
32 }
33         
34 class Asset;
35 class Reel;
36 class XMLMetadata;
37 class MXFMetadata;
38 class Encryption;
39         
40 /** @brief A CPL within a DCP */
41 class CPL
42 {
43 public:
44         CPL (std::string directory, std::string name, ContentKind content_kind, int length, int frames_per_second);
45         CPL (std::string directory, std::string file, boost::shared_ptr<const parse::AssetMap> asset_map, bool require_mxfs = true);
46
47         void add_reel (boost::shared_ptr<const Reel> reel);
48         
49         /** @return the length in frames */
50         int length () const {
51                 return _length;
52         }
53
54         /** @return the type of the content, used by media servers
55          *  to categorise things (e.g. feature, trailer, etc.)
56          */
57         ContentKind content_kind () const {
58                 return _content_kind;
59         }
60
61         std::list<boost::shared_ptr<const Reel> > reels () const {
62                 return _reels;
63         }
64
65         /** @return the CPL's name, as will be presented on projector
66          *  media servers and theatre management systems.
67          */
68         std::string name () const {
69                 return _name;
70         }
71
72         /** @return the number of frames per second */
73         int frames_per_second () const {
74                 return _fps;
75         }
76
77         std::list<boost::shared_ptr<const Asset> > assets () const;
78         
79         bool equals (CPL const & other, EqualityOptions options, boost::function<void (NoteType, std::string)> note) const;
80         
81         void write_xml (XMLMetadata const &, boost::shared_ptr<Encryption>) const;
82         void write_to_assetmap (xmlpp::Node *) const;
83         void write_to_pkl (xmlpp::Node *) const;
84
85         boost::shared_ptr<xmlpp::Document> make_kdm (
86                 CertificateChain const &,
87                 std::string const &,
88                 boost::shared_ptr<const Certificate>,
89                 boost::posix_time::ptime from,
90                 boost::posix_time::ptime until,
91                 MXFMetadata const &,
92                 XMLMetadata const &
93                 ) const;
94         
95 private:
96         std::string _directory;
97         /** the name of the DCP */
98         std::string _name;
99         /** the content kind of the CPL */
100         ContentKind _content_kind;
101         /** length in frames */
102         mutable int _length;
103         /** frames per second */
104         int _fps;
105         /** reels */
106         std::list<boost::shared_ptr<const Reel> > _reels;
107
108         /** our UUID */
109         std::string _uuid;
110         /** a SHA1 digest of our XML */
111         mutable std::string _digest;
112 };
113
114 }