std::shared_ptr
[dcpomatic.git] / src / lib / screen.h
1 /*
2     Copyright (C) 2013-2019 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic 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     DCP-o-matic 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 DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #ifndef DCPOMATIC_SCREEN_H
22 #define DCPOMATIC_SCREEN_H
23
24 #include "kdm_with_metadata.h"
25 #include "kdm_recipient.h"
26 #include "trusted_device.h"
27 #include <dcp/certificate.h>
28 #include <libcxml/cxml.h>
29 #include <boost/optional.hpp>
30 #include <string>
31
32 class Cinema;
33 class Film;
34
35 namespace dcpomatic {
36
37 /** @class Screen
38  *  @brief A representation of a Screen for KDM generation.
39  *
40  *  This is the name of the screen, the certificate of its
41  *  `recipient' (i.e. the mediablock) and the certificates/thumbprints
42  *  of any trusted devices.
43  */
44 class Screen : public KDMRecipient
45 {
46 public:
47         Screen (std::string const & name_, std::string const & notes_, boost::optional<dcp::Certificate> recipient_, std::vector<TrustedDevice> trusted_devices_)
48                 : KDMRecipient (name_, notes_, recipient_)
49                 , trusted_devices (trusted_devices_)
50         {}
51
52         explicit Screen (cxml::ConstNodePtr);
53
54         void as_xml (xmlpp::Element *) const;
55         std::vector<std::string> trusted_device_thumbprints () const;
56
57         std::shared_ptr<Cinema> cinema;
58         std::vector<TrustedDevice> trusted_devices;
59 };
60
61 }
62
63 KDMWithMetadataPtr
64 kdm_for_screen (
65         std::shared_ptr<const Film> film,
66         boost::filesystem::path cpl,
67         std::shared_ptr<const dcpomatic::Screen> screen,
68         boost::posix_time::ptime valid_from,
69         boost::posix_time::ptime valid_to,
70         dcp::Formulation formulation,
71         bool disable_forensic_marking_picture,
72         boost::optional<int> disable_forensic_marking_audio
73         );
74
75
76 #endif