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