Small bits of pre-release tidying.
[libdcp.git] / tools / dcpdecryptmxf.cc
1 /*
2     Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp 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     libdcp 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 libdcp.  If not, see <http://www.gnu.org/licenses/>.
18
19     In addition, as a special exception, the copyright holders give
20     permission to link the code of portions of this program with the
21     OpenSSL library under certain conditions as described in each
22     individual source file, and distribute linked combinations
23     including the two.
24
25     You must obey the GNU General Public License in all respects
26     for all of the code used other than OpenSSL.  If you modify
27     file(s) with this exception, you may extend this exception to your
28     version of the file(s), but you are not obligated to do so.  If you
29     do not wish to do so, delete this exception statement from your
30     version.  If you delete this exception statement from all source
31     files in the program, then also delete it here.
32 */
33
34 #include "encrypted_kdm.h"
35 #include "decrypted_kdm.h"
36 #include "crypto_context.h"
37 #include "key.h"
38 #include "util.h"
39 #include "atmos_asset.h"
40 #include "atmos_frame.h"
41 #include "atmos_asset_reader.h"
42 #include "atmos_asset_writer.h"
43 #include "exceptions.h"
44 #include <asdcp/AS_DCP.h>
45 #include <getopt.h>
46 #include <string>
47
48 using std::string;
49 using std::cerr;
50 using std::cout;
51 using boost::optional;
52 using std::shared_ptr;
53
54 static void
55 help (string n)
56 {
57         cerr << "Syntax: " << n << " [OPTION] <MXF>]\n"
58              << "  -v, --version      show libdcp version\n"
59              << "  -h, --help         show this help\n"
60              << "  -o, --output       output filename\n"
61              << "  -k, --kdm          KDM file\n"
62              << "  -p, --private-key  private key file\n";
63 }
64
65 int
66 main (int argc, char* argv[])
67 {
68         dcp::init ();
69
70         optional<boost::filesystem::path> output_file;
71         optional<boost::filesystem::path> kdm_file;
72         optional<boost::filesystem::path> private_key_file;
73
74         int option_index = 0;
75         while (true) {
76                 struct option long_options[] = {
77                         { "version", no_argument, 0, 'v' },
78                         { "help", no_argument, 0, 'h' },
79                         { "output", required_argument, 0, 'o'},
80                         { "kdm", required_argument, 0, 'k'},
81                         { "private-key", required_argument, 0, 'p'},
82                         { 0, 0, 0, 0 }
83                 };
84
85                 int c = getopt_long (argc, argv, "vho:k:p:", long_options, &option_index);
86
87                 if (c == -1) {
88                         break;
89                 }
90
91                 switch (c) {
92                 case 'v':
93                         cout << "libdcp version " << LIBDCP_VERSION << "\n";
94                         exit (EXIT_SUCCESS);
95                 case 'h':
96                         help (argv[0]);
97                         exit (EXIT_SUCCESS);
98                 case 'o':
99                         output_file = optarg;
100                         break;
101                 case 'k':
102                         kdm_file = optarg;
103                         break;
104                 case 'p':
105                         private_key_file = optarg;
106                         break;
107                 }
108         }
109
110         if (optind >= argc) {
111                 help (argv[0]);
112                 exit (EXIT_FAILURE);
113         }
114
115         boost::filesystem::path input_file = argv[optind];
116
117         if (!output_file) {
118                 cerr << "You must specify -o or --output\n";
119                 exit (EXIT_FAILURE);
120         }
121
122         if (!kdm_file) {
123                 cerr << "You must specify -k or --kdm\n";
124                 exit (EXIT_FAILURE);
125         }
126
127         if (!private_key_file) {
128                 cerr << "You must specify -p or --private-key\n";
129                 exit (EXIT_FAILURE);
130         }
131
132         dcp::EncryptedKDM encrypted_kdm (dcp::file_to_string (kdm_file.get ()));
133         dcp::DecryptedKDM decrypted_kdm (encrypted_kdm, dcp::file_to_string (private_key_file.get()));
134
135         /* XXX: only works for Atmos! */
136
137         try {
138                 dcp::AtmosAsset in (input_file);
139                 shared_ptr<dcp::AtmosAssetReader> reader = in.start_read ();
140                 dcp::AtmosAsset out (
141                         in.edit_rate(),
142                         in.first_frame(),
143                         in.max_channel_count(),
144                         in.max_object_count(),
145                         in.atmos_version()
146                         );
147                 shared_ptr<dcp::AtmosAssetWriter> writer = out.start_write (output_file.get());
148                 for (int64_t i = 0; i < in.intrinsic_duration(); ++i) {
149                         shared_ptr<const dcp::AtmosFrame> f = reader->get_frame (i);
150                         writer->write (f->data(), f->size());
151                 }
152         } catch (dcp::ReadError& e) {
153                 cerr << "Unknown MXF format.\n";
154                 return EXIT_FAILURE;
155         }
156
157         return 0;
158 }