Tidying.
[libdcp.git] / src / reel.h
1 /*
2     Copyright (C) 2012-2021 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
35 #ifndef LIBDCP_REEL_H
36 #define LIBDCP_REEL_H
37
38
39 #include "key.h"
40 #include "types.h"
41 #include "ref.h"
42 #include <memory>
43 #include <boost/function.hpp>
44
45
46 namespace cxml {
47         class Node;
48 }
49
50
51 namespace xmlpp {
52         class Element;
53 }
54
55
56 namespace dcp {
57
58
59 class DecryptedKDM;
60 class ReelAsset;
61 class ReelPictureAsset;
62 class ReelSoundAsset;
63 class ReelSubtitleAsset;
64 class ReelMarkersAsset;
65 class ReelClosedCaptionAsset;
66 class ReelAtmosAsset;
67 class Content;
68
69
70 /** @brief A reel within a DCP; the part which actually refers to picture, sound, subtitle, marker and Atmos data */
71 class Reel : public Object
72 {
73 public:
74         Reel () {}
75
76         Reel (
77                 std::shared_ptr<ReelPictureAsset> picture,
78                 std::shared_ptr<ReelSoundAsset> sound = std::shared_ptr<ReelSoundAsset> (),
79                 std::shared_ptr<ReelSubtitleAsset> subtitle = std::shared_ptr<ReelSubtitleAsset> (),
80                 std::shared_ptr<ReelMarkersAsset> markers = std::shared_ptr<ReelMarkersAsset> (),
81                 std::shared_ptr<ReelAtmosAsset> atmos = std::shared_ptr<ReelAtmosAsset> ()
82                 )
83                 : _main_picture (picture)
84                 , _main_sound (sound)
85                 , _main_subtitle (subtitle)
86                 , _main_markers (markers)
87                 , _atmos (atmos)
88         {}
89
90         explicit Reel (std::shared_ptr<const cxml::Node>);
91
92         std::shared_ptr<ReelPictureAsset> main_picture () const {
93                 return _main_picture;
94         }
95
96         std::shared_ptr<ReelSoundAsset> main_sound () const {
97                 return _main_sound;
98         }
99
100         std::shared_ptr<ReelSubtitleAsset> main_subtitle () const {
101                 return _main_subtitle;
102         }
103
104         std::shared_ptr<ReelMarkersAsset> main_markers () const {
105                 return _main_markers;
106         }
107
108         std::vector<std::shared_ptr<ReelClosedCaptionAsset>> closed_captions () const {
109                 return _closed_captions;
110         }
111
112         std::shared_ptr<ReelAtmosAsset> atmos () const {
113                 return _atmos;
114         }
115
116         int64_t duration () const;
117
118         void add (std::shared_ptr<ReelAsset> asset);
119
120         std::vector<std::shared_ptr<ReelAsset>> assets () const;
121
122         xmlpp::Element* write_to_cpl (xmlpp::Element* node, Standard standard) const;
123
124         bool any_encrypted () const;
125         bool all_encrypted () const;
126
127         bool equals (std::shared_ptr<const Reel> other, EqualityOptions opt, NoteHandler notes) const;
128
129         void add (DecryptedKDM const &);
130
131         void resolve_refs (std::vector<std::shared_ptr<Asset>>);
132
133 private:
134         std::shared_ptr<ReelPictureAsset> _main_picture;
135         std::shared_ptr<ReelSoundAsset> _main_sound;
136         std::shared_ptr<ReelSubtitleAsset> _main_subtitle;
137         std::shared_ptr<ReelMarkersAsset> _main_markers;
138         std::vector<std::shared_ptr<ReelClosedCaptionAsset>> _closed_captions;
139         std::shared_ptr<ReelAtmosAsset> _atmos;
140 };
141
142 }
143
144 #endif