a61418e9fa789ae17b25bb1854110da31fea5a94
[dcpomatic.git] / src / lib / cinema_kdms.h
1 /*
2     Copyright (C) 2013-2015 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 #include "kdm_with_metadata.h"
22
23 class Cinema;
24 class Job;
25 class Log;
26
27 class CinemaKDMs
28 {
29 public:
30         void make_zip_file (boost::filesystem::path zip_file, dcp::NameFormat name_format, dcp::NameFormat::Map name_values) const;
31
32         boost::shared_ptr<Cinema> cinema;
33         std::list<KDMWithMetadataPtr > screen_kdms;
34 };
35
36
37 std::list<CinemaKDMs> collect (std::list<KDMWithMetadataPtr > kdms);
38
39 int write_directories (
40                 std::list<CinemaKDMs> cinema_kdms,
41                 boost::filesystem::path directory,
42                 dcp::NameFormat container_name_format,
43                 dcp::NameFormat filename_format,
44                 dcp::NameFormat::Map name_values,
45                 boost::function<bool (boost::filesystem::path)> confirm_overwrite
46                 );
47
48 int write_zip_files (
49                 std::list<CinemaKDMs> cinema_kdms,
50                 boost::filesystem::path directory,
51                 dcp::NameFormat container_name_format,
52                 dcp::NameFormat filename_format,
53                 dcp::NameFormat::Map name_values,
54                 boost::function<bool (boost::filesystem::path)> confirm_overwrite
55                 );
56
57 void email (
58                 std::list<CinemaKDMs> cinema_kdms,
59                 dcp::NameFormat container_name_format,
60                 dcp::NameFormat filename_format,
61                 dcp::NameFormat::Map name_values,
62                 std::string cpl_name
63                 );
64