Various tinkerings.
[libdcp.git] / src / dcp.h
1 /*
2     Copyright (C) 2012-2014 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 DCP class.
22  */
23
24 #ifndef LIBDCP_DCP_H
25 #define LIBDCP_DCP_H
26
27 #include "types.h"
28 #include "certificates.h"
29 #include "metadata.h"
30 #include <boost/shared_ptr.hpp>
31 #include <boost/signals2.hpp>
32 #include <string>
33 #include <vector>
34
35 namespace xmlpp {
36         class Document;
37         class Element;
38 }
39
40 /** @brief Namespace for everything in libdcp */
41 namespace dcp
42 {
43
44 class Content;  
45 class Reel;
46 class CPL;
47 class XMLMetadata;
48 class Signer;
49 class KDM;
50 class Asset;
51
52 namespace parse {
53         class AssetMap;
54 }
55
56 /** @class DCP
57  *  @brief A class to create or read a DCP.
58  */
59         
60 class DCP : public boost::noncopyable
61 {
62 public:
63         /** Construct a DCP.  You can pass an existing DCP's directory
64          *  as the parameter, or a non-existant folder to create a new
65          *  DCP in.
66          *
67          *  @param directory Directory containing the DCP's files.
68          */
69         DCP (boost::filesystem::path directory);
70
71         void read ();
72
73         /** Compare this DCP with another, according to various options.
74          *  @param other DCP to compare this one to.
75          *  @param options Options to define what "equality" means.
76          *  @param note Functor to handle notes made by the equality operation.
77          *  @return true if the DCPs are equal according to EqualityOptions, otherwise false.
78          */
79         bool equals (DCP const & other, EqualityOptions options, boost::function<void (NoteType, std::string)> note) const;
80
81         void add (boost::shared_ptr<Asset> asset);
82
83         std::list<boost::shared_ptr<CPL> > cpls () const;
84
85         /** @return All this DCP's assets (note that CPLs are assets) */
86         std::list<boost::shared_ptr<Asset> > assets () const {
87                 return _assets;
88         }
89
90         bool encrypted () const;
91
92         void add (KDM const &);
93
94         void write_xml (
95                 Standard standard,
96                 XMLMetadata metadata = XMLMetadata (),
97                 boost::shared_ptr<const Signer> signer = boost::shared_ptr<const Signer> ()
98         );
99
100         /** Emitted with a parameter between 0 and 1 to indicate progress
101          *  for long jobs.
102          */
103         boost::signals2::signal<void (float)> Progress;
104
105 private:
106
107         /** Write the PKL file.
108          *  @param pkl_uuid UUID to use.
109          */
110         boost::filesystem::path write_pkl (
111                 Standard standard,
112                 std::string pkl_uuid,
113                 XMLMetadata metadata,
114                 boost::shared_ptr<const Signer> signer
115                 ) const;
116         
117         void write_volindex (Standard standard) const;
118
119         /** Write the ASSETMAP file.
120          *  @param pkl_uuid UUID of our PKL.
121          *  @param pkl_length Length of our PKL in bytes.
122          */
123         void write_assetmap (Standard standard, std::string pkl_uuid, int pkl_length, XMLMetadata metadata) const;
124
125         /** the directory that we are writing to */
126         boost::filesystem::path _directory;
127         /** the assets that make up this DCP */
128         std::list<boost::shared_ptr<Asset> > _assets;
129 };
130
131 }
132
133 #endif