Remove Screen pointer from KDMWithMetadata, preferring to
[dcpomatic.git] / src / lib / kdm_with_metadata.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_KDM_WITH_METADATA_H
22 #define DCPOMATIC_KDM_WITH_METADATA_H
23
24 #ifdef DCPOMATIC_VARIANT_SWAROOP
25 #include "encrypted_ecinema_kdm.h"
26 #endif
27 #include <dcp/encrypted_kdm.h>
28 #include <dcp/name_format.h>
29 #include <boost/shared_ptr.hpp>
30
31 class Cinema;
32
33 class KDMWithMetadata
34 {
35 public:
36         KDMWithMetadata (dcp::NameFormat::Map const& name_values, boost::shared_ptr<Cinema> cinema)
37                 : _name_values (name_values)
38                 , _cinema (cinema)
39         {}
40
41         virtual ~KDMWithMetadata () {}
42
43         virtual std::string kdm_as_xml () const = 0;
44         virtual void kdm_as_xml (boost::filesystem::path out) const = 0;
45         virtual std::string kdm_id () const = 0;
46
47         dcp::NameFormat::Map const& name_values () const {
48                 return _name_values;
49         }
50
51         boost::optional<std::string> get (char k) const;
52
53         boost::shared_ptr<Cinema> cinema () const {
54                 return _cinema;
55         }
56
57 private:
58         dcp::NameFormat::Map _name_values;
59         boost::shared_ptr<Cinema> _cinema;
60 };
61
62
63 typedef boost::shared_ptr<KDMWithMetadata> KDMWithMetadataPtr;
64
65
66 int write_files (
67         std::list<KDMWithMetadataPtr> screen_kdms, boost::filesystem::path directory,
68         dcp::NameFormat name_format, dcp::NameFormat::Map name_values,
69         boost::function<bool (boost::filesystem::path)> confirm_overwrite
70         );
71
72
73 class DCPKDMWithMetadata : public KDMWithMetadata
74 {
75 public:
76         DCPKDMWithMetadata (dcp::NameFormat::Map const& name_values, boost::shared_ptr<Cinema> cinema, dcp::EncryptedKDM k)
77                 : KDMWithMetadata (name_values, cinema)
78                 , kdm (k)
79         {}
80
81         std::string kdm_as_xml () const {
82                 return kdm.as_xml ();
83         }
84
85         void kdm_as_xml (boost::filesystem::path out) const {
86                 return kdm.as_xml (out);
87         }
88
89         std::string kdm_id () const {
90                 return kdm.cpl_id ();
91         }
92
93         dcp::EncryptedKDM kdm;
94 };
95
96 #ifdef DCPOMATIC_VARIANT_SWAROOP
97 class ECinemaKDMWithMetadata : public KDMWithMetadata
98 {
99 public:
100         ECinemaKDMWithMetadata (dcp::NameValues::Map const& name_values, boost::shared_ptr<Cinema> cinema, EncryptedECinemaKDM k)
101                 : KDMWithMetadata (name_values, cinema)
102                 , kdm (k)
103         {}
104
105         std::string kdm_as_xml () const {
106                 return kdm.as_xml ();
107         }
108
109         void kdm_as_xml (boost::filesystem::path out) const {
110                 return kdm.as_xml (out);
111         }
112
113         std::string kdm_id () const {
114                 return kdm.id ();
115         }
116
117         EncryptedECinemaKDM kdm;
118 };
119 #endif
120
121 #endif