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