Support CPL metadata.
[libdcp.git] / src / reel.h
1 /*
2     Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     libdcp is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with libdcp.  If not, see <http://www.gnu.org/licenses/>.
18
19     In addition, as a special exception, the copyright holders give
20     permission to link the code of portions of this program with the
21     OpenSSL library under certain conditions as described in each
22     individual source file, and distribute linked combinations
23     including the two.
24
25     You must obey the GNU General Public License in all respects
26     for all of the code used other than OpenSSL.  If you modify
27     file(s) with this exception, you may extend this exception to your
28     version of the file(s), but you are not obligated to do so.  If you
29     do not wish to do so, delete this exception statement from your
30     version.  If you delete this exception statement from all source
31     files in the program, then also delete it here.
32 */
33
34 #ifndef LIBDCP_REEL_H
35 #define LIBDCP_REEL_H
36
37 #include "key.h"
38 #include "types.h"
39 #include "ref.h"
40 #include <boost/shared_ptr.hpp>
41 #include <boost/function.hpp>
42 #include <list>
43
44 namespace cxml {
45         class Node;
46 }
47
48 namespace xmlpp {
49         class Element;
50 }
51
52 namespace dcp {
53
54 class DecryptedKDM;
55 class ReelAsset;
56 class ReelPictureAsset;
57 class ReelSoundAsset;
58 class ReelSubtitleAsset;
59 class ReelMarkersAsset;
60 class ReelClosedCaptionAsset;
61 class ReelAtmosAsset;
62 class Content;
63
64 /** @brief A reel within a DCP; the part which actually refers to picture, sound, subtitle, marker and Atmos data */
65 class Reel : public Object
66 {
67 public:
68         Reel () {}
69
70         Reel (
71                 boost::shared_ptr<ReelPictureAsset> picture,
72                 boost::shared_ptr<ReelSoundAsset> sound = boost::shared_ptr<ReelSoundAsset> (),
73                 boost::shared_ptr<ReelSubtitleAsset> subtitle = boost::shared_ptr<ReelSubtitleAsset> (),
74                 boost::shared_ptr<ReelMarkersAsset> markers = boost::shared_ptr<ReelMarkersAsset> (),
75                 boost::shared_ptr<ReelAtmosAsset> atmos = boost::shared_ptr<ReelAtmosAsset> ()
76                 )
77                 : _main_picture (picture)
78                 , _main_sound (sound)
79                 , _main_subtitle (subtitle)
80                 , _main_markers (markers)
81                 , _atmos (atmos)
82         {}
83
84         explicit Reel (boost::shared_ptr<const cxml::Node>);
85
86         boost::shared_ptr<ReelPictureAsset> main_picture () const {
87                 return _main_picture;
88         }
89
90         boost::shared_ptr<ReelSoundAsset> main_sound () const {
91                 return _main_sound;
92         }
93
94         boost::shared_ptr<ReelSubtitleAsset> main_subtitle () const {
95                 return _main_subtitle;
96         }
97
98         boost::shared_ptr<ReelMarkersAsset> main_markers () const {
99                 return _main_markers;
100         }
101
102         std::list<boost::shared_ptr<ReelClosedCaptionAsset> > closed_captions () const {
103                 return _closed_captions;
104         }
105
106         boost::shared_ptr<ReelAtmosAsset> atmos () const {
107                 return _atmos;
108         }
109
110         int64_t duration () const;
111
112         void add (boost::shared_ptr<ReelAsset> asset);
113
114         std::list<boost::shared_ptr<ReelAsset> > assets () const;
115
116         xmlpp::Element* write_to_cpl (xmlpp::Element* node, Standard standard) const;
117
118         bool encrypted () const;
119
120         bool equals (boost::shared_ptr<const Reel> other, EqualityOptions opt, NoteHandler notes) const;
121
122         void add (DecryptedKDM const &);
123
124         void resolve_refs (std::list<boost::shared_ptr<Asset> >);
125
126 private:
127         boost::shared_ptr<ReelPictureAsset> _main_picture;
128         boost::shared_ptr<ReelSoundAsset> _main_sound;
129         boost::shared_ptr<ReelSubtitleAsset> _main_subtitle;
130         boost::shared_ptr<ReelMarkersAsset> _main_markers;
131         std::list<boost::shared_ptr<ReelClosedCaptionAsset> > _closed_captions;
132         boost::shared_ptr<ReelAtmosAsset> _atmos;
133 };
134
135 }
136
137 #endif