Fix the build for older macOS.
[dcpomatic.git] / src / lib / combine_dcp_job.cc
1 /*
2     Copyright (C) 2020 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
22 #include "combine_dcp_job.h"
23 #include "compose.hpp"
24 #include "config.h"
25 #include <dcp/combine.h>
26 #include <dcp/exceptions.h>
27
28 #include "i18n.h"
29
30
31 using std::string;
32 using std::vector;
33 using std::shared_ptr;
34
35
36 CombineDCPJob::CombineDCPJob (vector<boost::filesystem::path> inputs, boost::filesystem::path output, string annotation_text)
37         : Job (shared_ptr<Film>())
38         , _inputs (inputs)
39         , _output (output)
40         , _annotation_text (annotation_text)
41 {
42
43 }
44
45
46 string
47 CombineDCPJob::name () const
48 {
49         return _("Combine DCPs");
50 }
51
52
53 string
54 CombineDCPJob::json_name () const
55 {
56         return N_("combine_dcps");
57 }
58
59
60 void
61 CombineDCPJob::run ()
62 {
63         try {
64                 dcp::combine (
65                         _inputs,
66                         _output,
67                         String::compose("libdcp %1", dcp::version),
68                         String::compose("libdcp %1", dcp::version),
69                         dcp::LocalTime().as_string(),
70                         _annotation_text,
71                         Config::instance()->signer_chain()
72                         );
73         } catch (dcp::CombineError& e) {
74                 set_state (FINISHED_ERROR);
75                 set_error (e.what(), "");
76                 return;
77         } catch (dcp::ReadError& e) {
78                 set_state (FINISHED_ERROR);
79                 set_error (e.what(), e.detail().get_value_or(""));
80                 return;
81         }
82
83         set_progress (1);
84         set_state (FINISHED_OK);
85 }