Add KDMWithMetadataPtr typedef
[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 namespace dcpomatic {
32         class Screen;
33 }
34
35 /** Simple class to collect a screen and an encrypted KDM */
36 class KDMWithMetadata
37 {
38 public:
39         KDMWithMetadata (boost::shared_ptr<dcpomatic::Screen> s)
40                 : screen (s)
41         {}
42
43         virtual ~KDMWithMetadata () {}
44
45         virtual std::string kdm_as_xml () const = 0;
46         virtual void kdm_as_xml (boost::filesystem::path out) const = 0;
47         virtual std::string kdm_id () const = 0;
48
49         boost::shared_ptr<dcpomatic::Screen> screen;
50 };
51
52
53 typedef boost::shared_ptr<KDMWithMetadata> KDMWithMetadataPtr;
54
55
56 int write_files (
57         std::list<KDMWithMetadataPtr> screen_kdms, boost::filesystem::path directory,
58         dcp::NameFormat name_format, dcp::NameFormat::Map name_values,
59         boost::function<bool (boost::filesystem::path)> confirm_overwrite
60         );
61
62
63 class DCPKDMWithMetadata : public KDMWithMetadata
64 {
65 public:
66         DCPKDMWithMetadata (boost::shared_ptr<dcpomatic::Screen> s, dcp::EncryptedKDM k)
67                 : KDMWithMetadata (s)
68                 , kdm (k)
69         {}
70
71         std::string kdm_as_xml () const {
72                 return kdm.as_xml ();
73         }
74
75         void kdm_as_xml (boost::filesystem::path out) const {
76                 return kdm.as_xml (out);
77         }
78
79         std::string kdm_id () const {
80                 return kdm.cpl_id ();
81         }
82
83         dcp::EncryptedKDM kdm;
84 };
85
86 #ifdef DCPOMATIC_VARIANT_SWAROOP
87 class ECinemaKDMWithMetadata : public KDMWithMetadata
88 {
89 public:
90         ECinemaKDMWithMetadata (boost::shared_ptr<dcpomatic::Screen> s, EncryptedECinemaKDM k)
91                 : KDMWithMetadata (s)
92                 , kdm (k)
93         {}
94
95         std::string kdm_as_xml () const {
96                 return kdm.as_xml ();
97         }
98
99         void kdm_as_xml (boost::filesystem::path out) const {
100                 return kdm.as_xml (out);
101         }
102
103         std::string kdm_id () const {
104                 return kdm.id ();
105         }
106
107         EncryptedECinemaKDM kdm;
108 };
109 #endif
110
111 #endif