Pull methods out of CinemaKDMs.
[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         boost::shared_ptr<Cinema> cinema;
31         std::list<KDMWithMetadataPtr > screen_kdms;
32 };
33
34 void make_zip_file (CinemaKDMs kdms, boost::filesystem::path zip_file, dcp::NameFormat name_format, dcp::NameFormat::Map name_values);
35
36 std::list<CinemaKDMs> collect (std::list<KDMWithMetadataPtr > kdms);
37
38 int write_directories (
39                 std::list<CinemaKDMs> cinema_kdms,
40                 boost::filesystem::path directory,
41                 dcp::NameFormat container_name_format,
42                 dcp::NameFormat filename_format,
43                 dcp::NameFormat::Map name_values,
44                 boost::function<bool (boost::filesystem::path)> confirm_overwrite
45                 );
46
47 int write_zip_files (
48                 std::list<CinemaKDMs> cinema_kdms,
49                 boost::filesystem::path directory,
50                 dcp::NameFormat container_name_format,
51                 dcp::NameFormat filename_format,
52                 dcp::NameFormat::Map name_values,
53                 boost::function<bool (boost::filesystem::path)> confirm_overwrite
54                 );
55
56 void email (
57                 std::list<CinemaKDMs> cinema_kdms,
58                 dcp::NameFormat container_name_format,
59                 dcp::NameFormat filename_format,
60                 dcp::NameFormat::Map name_values,
61                 std::string cpl_name
62                 );
63