Replace CinemaKDMs class with a list<KDMWithMetadata>
[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 void make_zip_file (std::list<KDMWithMetadataPtr> kdms, boost::filesystem::path zip_file, dcp::NameFormat name_format, dcp::NameFormat::Map name_values);
28
29 std::list<std::list<KDMWithMetadataPtr> > collect (std::list<KDMWithMetadataPtr> kdms);
30
31 int write_directories (
32                 std::list<std::list<KDMWithMetadataPtr> > cinema_kdms,
33                 boost::filesystem::path directory,
34                 dcp::NameFormat container_name_format,
35                 dcp::NameFormat filename_format,
36                 dcp::NameFormat::Map name_values,
37                 boost::function<bool (boost::filesystem::path)> confirm_overwrite
38                 );
39
40 int write_zip_files (
41                 std::list<std::list<KDMWithMetadataPtr> > cinema_kdms,
42                 boost::filesystem::path directory,
43                 dcp::NameFormat container_name_format,
44                 dcp::NameFormat filename_format,
45                 dcp::NameFormat::Map name_values,
46                 boost::function<bool (boost::filesystem::path)> confirm_overwrite
47                 );
48
49 void email (
50                 std::list<std::list<KDMWithMetadataPtr> > cinema_kdms,
51                 dcp::NameFormat container_name_format,
52                 dcp::NameFormat filename_format,
53                 dcp::NameFormat::Map name_values,
54                 std::string cpl_name
55                 );
56