ca011c360cf9c5e212100896b11c0383844d8b80
[libdcp.git] / src / dcp.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 /** @file  src/dcp.h
21  *  @brief A class to create a DCP.
22  */
23
24 #ifndef LIBDCP_DCP_H
25 #define LIBDCP_DCP_H
26
27 #include <string>
28 #include <vector>
29 #include <boost/shared_ptr.hpp>
30 #include <boost/signals2.hpp>
31 #include "types.h"
32 #include "certificates.h"
33
34 namespace xmlpp {
35         class Node;
36 }
37
38 /** @brief Namespace for everything in libdcp */
39 namespace libdcp
40 {
41
42 class Asset;    
43 class PictureAsset;
44 class SoundAsset;
45 class SubtitleAsset;
46 class Reel;
47 class AssetMap;
48
49 class CPL
50 {
51 public:
52         CPL (std::string directory, std::string name, ContentKind content_kind, int length, int frames_per_second);
53         CPL (std::string directory, std::string file, boost::shared_ptr<const AssetMap> asset_map, bool require_mxfs = true);
54
55         void add_reel (boost::shared_ptr<const Reel> reel);
56         
57         /** @return the length in frames */
58         int length () const {
59                 return _length;
60         }
61
62         /** @return the type of the content, used by media servers
63          *  to categorise things (e.g. feature, trailer, etc.)
64          */
65         ContentKind content_kind () const {
66                 return _content_kind;
67         }
68
69         std::list<boost::shared_ptr<const Reel> > reels () const {
70                 return _reels;
71         }
72
73         /** @return the CPL's name, as will be presented on projector
74          *  media servers and theatre management systems.
75          */
76         std::string name () const {
77                 return _name;
78         }
79
80         /** @return the number of frames per second */
81         int frames_per_second () const {
82                 return _fps;
83         }
84
85         std::list<boost::shared_ptr<const Asset> > assets () const;
86         
87         bool equals (CPL const & other, EqualityOptions options, std::list<std::string>& notes) const;
88         
89         void write_xml (bool, CertificateChain const &) const;
90         void write_to_assetmap (std::ostream& s) const;
91         void write_to_pkl (std::ostream& s) const;
92         
93 private:
94         std::string _directory;
95         /** the name of the DCP */
96         std::string _name;
97         /** the content kind of the CPL */
98         ContentKind _content_kind;
99         /** length in frames */
100         mutable int _length;
101         /** frames per second */
102         int _fps;
103         /** reels */
104         std::list<boost::shared_ptr<const Reel> > _reels;
105
106         std::string _uuid;
107         mutable std::string _digest;
108 };
109
110 /** @class DCP dcp.h libdcp/dcp.h
111  *  @brief A class to create or read a DCP.
112  */
113         
114 class DCP
115 {
116 public:
117         /** Construct a DCP.  You can pass an existing DCP's directory
118          *  as the parameter, or a non-existant folder to create a new
119          *  DCP in.
120          *
121          *  @param directory Directory containing the DCP's files.
122          */
123         DCP (std::string directory);
124
125         /** Read an existing DCP's data.
126          *
127          *  The DCP's XML metadata will be examined, and you can then look at the contents
128          *  of the DCP.
129          *
130          *  @param require_mxfs true to throw an exception if MXF files are missing; setting to false
131          *  can be useful for testing, but normally it should be set to true.
132          */
133         void read (bool require_mxfs = true);
134
135         /** Write the required XML files to the directory that was
136          *  passed into the constructor.
137          */
138         void write_xml () const;
139
140         /** Compare this DCP with another, according to various options.
141          *  @param other DCP to compare this one to.
142          *  @param options Options to define just what "equality" means.
143          *  @param notes Filled in with notes about differences.
144          *  @return true if the DCPs are equal according to EqualityOptions, otherwise false.
145          */
146         bool equals (DCP const & other, EqualityOptions options, std::list<std::string>& notes) const;
147
148         void add_cpl (boost::shared_ptr<CPL> cpl);
149
150         std::list<boost::shared_ptr<const CPL> > cpls () const {
151                 return _cpls;
152         }
153
154         /** Emitted with a parameter between 0 and 1 to indicate progress
155          *  for long jobs.
156          */
157         boost::signals2::signal<void (float)> Progress;
158
159 private:
160
161         /** Write the PKL file.
162          *  @param pkl_uuid UUID to use.
163          */
164         std::string write_pkl (std::string pkl_uuid) const;
165         
166         /** Write the VOLINDEX file */
167         void write_volindex () const;
168
169         /** Write the ASSETMAP file.
170          *  @param pkl_uuid UUID of our PKL.
171          *  @param pkl_length Length of our PKL in bytes.
172          */
173         void write_assetmap (std::string pkl_uuid, int pkl_length) const;
174
175         std::list<boost::shared_ptr<const Asset> > assets () const;
176
177         struct Files {
178                 std::list<std::string> cpls;
179                 std::string pkl;
180                 std::string asset_map;
181         };
182
183         /** the directory that we are writing to */
184         std::string _directory;
185         std::list<boost::shared_ptr<const CPL> > _cpls;
186
187         bool _encrypted;
188         CertificateChain _certificates;
189 };
190
191 }
192
193 #endif