e7b3c23bafa8675cf7e33c9a11fe1c56a72bac1a
[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
46         dcp::NameFormat::Map const& name_values () const {
47                 return _name_values;
48         }
49
50         boost::optional<std::string> get (char k) const;
51
52         boost::shared_ptr<Cinema> cinema () const {
53                 return _cinema;
54         }
55
56 private:
57         dcp::NameFormat::Map _name_values;
58         boost::shared_ptr<Cinema> _cinema;
59 };
60
61
62 typedef boost::shared_ptr<KDMWithMetadata> KDMWithMetadataPtr;
63
64
65 int write_files (
66         std::list<KDMWithMetadataPtr> screen_kdms, boost::filesystem::path directory,
67         dcp::NameFormat name_format, dcp::NameFormat::Map name_values,
68         boost::function<bool (boost::filesystem::path)> confirm_overwrite
69         );
70
71
72 void make_zip_file (std::list<KDMWithMetadataPtr> kdms, boost::filesystem::path zip_file, dcp::NameFormat name_format, dcp::NameFormat::Map name_values);
73
74
75 std::list<std::list<KDMWithMetadataPtr> > collect (std::list<KDMWithMetadataPtr> kdms);
76
77
78 int write_directories (
79                 std::list<std::list<KDMWithMetadataPtr> > cinema_kdms,
80                 boost::filesystem::path directory,
81                 dcp::NameFormat container_name_format,
82                 dcp::NameFormat filename_format,
83                 dcp::NameFormat::Map name_values,
84                 boost::function<bool (boost::filesystem::path)> confirm_overwrite
85                 );
86
87
88 int write_zip_files (
89                 std::list<std::list<KDMWithMetadataPtr> > cinema_kdms,
90                 boost::filesystem::path directory,
91                 dcp::NameFormat container_name_format,
92                 dcp::NameFormat filename_format,
93                 dcp::NameFormat::Map name_values,
94                 boost::function<bool (boost::filesystem::path)> confirm_overwrite
95                 );
96
97
98 void email (
99                 std::list<std::list<KDMWithMetadataPtr> > cinema_kdms,
100                 dcp::NameFormat container_name_format,
101                 dcp::NameFormat filename_format,
102                 dcp::NameFormat::Map name_values,
103                 std::string cpl_name
104                 );
105
106
107 class DCPKDMWithMetadata : public KDMWithMetadata
108 {
109 public:
110         DCPKDMWithMetadata (dcp::NameFormat::Map const& name_values, boost::shared_ptr<Cinema> cinema, dcp::EncryptedKDM k)
111                 : KDMWithMetadata (name_values, cinema)
112                 , kdm (k)
113         {}
114
115         std::string kdm_as_xml () const {
116                 return kdm.as_xml ();
117         }
118
119         void kdm_as_xml (boost::filesystem::path out) const {
120                 return kdm.as_xml (out);
121         }
122
123         dcp::EncryptedKDM kdm;
124 };
125
126 #ifdef DCPOMATIC_VARIANT_SWAROOP
127 class ECinemaKDMWithMetadata : public KDMWithMetadata
128 {
129 public:
130         ECinemaKDMWithMetadata (dcp::NameValues::Map const& name_values, boost::shared_ptr<Cinema> cinema, EncryptedECinemaKDM k)
131                 : KDMWithMetadata (name_values, cinema)
132                 , kdm (k)
133         {}
134
135         std::string kdm_as_xml () const {
136                 return kdm.as_xml ();
137         }
138
139         void kdm_as_xml (boost::filesystem::path out) const {
140                 return kdm.as_xml (out);
141         }
142
143         EncryptedECinemaKDM kdm;
144 };
145 #endif
146
147 #endif