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