Remove use of Film in KDM stuff.
[dcpomatic.git] / src / lib / send_kdm_email_job.cc
1 /*
2     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "send_kdm_email_job.h"
21 #include "compose.hpp"
22 #include "film.h"
23 #include "cinema_kdms.h"
24
25 #include "i18n.h"
26
27 using std::string;
28 using std::list;
29 using boost::shared_ptr;
30
31 SendKDMEmailJob::SendKDMEmailJob (
32         shared_ptr<const Film> film,
33         list<shared_ptr<Screen> > screens,
34         boost::filesystem::path cpl,
35         boost::posix_time::ptime from,
36         boost::posix_time::ptime to,
37         dcp::Formulation formulation
38         )
39         : Job (film)
40         , _screens (screens)
41         , _cpl (cpl)
42         , _from (from)
43         , _to (to)
44         , _formulation (formulation)
45 {
46
47 }
48
49 string
50 SendKDMEmailJob::name () const
51 {
52         return String::compose (_("Email KDMs for %1"), _film->name());
53 }
54
55 string
56 SendKDMEmailJob::json_name () const
57 {
58         return N_("send_kdm_email");
59 }
60
61 void
62 SendKDMEmailJob::run ()
63 {
64         try {
65
66                 set_progress_unknown ();
67
68                 CinemaKDMs::email (
69                         _film->name(),
70                         _film->dcp_name(),
71                         CinemaKDMs::collect (_film->make_kdms (_screens, _cpl, _from, _to, _formulation)),
72                         _from,
73                         _to
74                         );
75
76                 set_progress (1);
77                 set_state (FINISHED_OK);
78
79         } catch (std::exception& e) {
80
81                 set_progress (1);
82                 set_state (FINISHED_ERROR);
83                 throw;
84         }
85 }