Use exceptions to hold errors even in the keep_going case.
[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 DecryptedKDM;
50 class Asset;
51 class DCPReadError;
52
53 namespace parse {
54         class AssetMap;
55 }
56
57 /** @class DCP
58  *  @brief A class to create or read a DCP.
59  */
60         
61 class DCP : public boost::noncopyable
62 {
63 public:
64         /** Construct a DCP.  You can pass an existing DCP's directory
65          *  as the parameter, or a non-existant folder to create a new
66          *  DCP in.
67          *
68          *  @param directory Directory containing the DCP's files.
69          */
70         DCP (boost::filesystem::path directory);
71
72         /** Read the DCP's structure into this object.
73          *  @param keep_going true to try to keep going in the face of (some) errors.
74          *  @param errors List of errors that will be added to if keep_going is true.
75          */
76         void read (bool keep_going = false, std::list<boost::shared_ptr<DCPReadError> >* errors = 0);
77
78         /** Compare this DCP with another, according to various options.
79          *  @param other DCP to compare this one to.
80          *  @param options Options to define what "equality" means.
81          *  @param note Functor to handle notes made by the equality operation.
82          *  @return true if the DCPs are equal according to EqualityOptions, otherwise false.
83          */
84         bool equals (DCP const & other, EqualityOptions options, boost::function<void (NoteType, std::string)> note) const;
85
86         void add (boost::shared_ptr<Asset> asset);
87
88         std::list<boost::shared_ptr<CPL> > cpls () const;
89
90         /** @return All this DCP's assets (note that CPLs are assets) */
91         std::list<boost::shared_ptr<Asset> > assets () const {
92                 return _assets;
93         }
94
95         bool encrypted () const;
96
97         void add (DecryptedKDM const &);
98
99         void write_xml (
100                 Standard standard,
101                 XMLMetadata metadata = XMLMetadata (),
102                 boost::shared_ptr<const Signer> signer = boost::shared_ptr<const Signer> ()
103         );
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