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