Merge master.
[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 "kdm.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> f,
33         list<shared_ptr<Screen> > screens,
34         boost::filesystem::path dcp,
35         boost::posix_time::ptime from,
36         boost::posix_time::ptime to,
37         dcp::Formulation formulation
38         )
39         : Job (f)
40         , _screens (screens)
41         , _dcp (dcp)
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 void
56 SendKDMEmailJob::run ()
57 {
58         try {
59                 
60                 set_progress_unknown ();
61                 email_kdms (_film, _screens, _dcp, _from, _to, _formulation);
62                 set_progress (1);
63                 set_state (FINISHED_OK);
64                 
65         } catch (std::exception& e) {
66
67                 set_progress (1);
68                 set_state (FINISHED_ERROR);
69                 throw;
70         }
71 }