Add EqualityOptions option to ignore differences in LoadFont nodes.
[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 <boost/foreach.hpp>
46 #include <getopt.h>
47 #include <string>
48
49 using std::string;
50 using std::cerr;
51 using std::cout;
52 using boost::optional;
53 using boost::shared_ptr;
54
55 static void
56 help (string n)
57 {
58         cerr << "Syntax: " << n << " [OPTION] <MXF>]\n"
59              << "  -v, --version      show libdcp version\n"
60              << "  -h, --help         show this help\n"
61              << "  -o, --output       output filename\n"
62              << "  -k, --kdm          KDM file\n"
63              << "  -p, --private-key  private key file\n";
64 }
65
66 int
67 main (int argc, char* argv[])
68 {
69         optional<boost::filesystem::path> output_file;
70         optional<boost::filesystem::path> kdm_file;
71         optional<boost::filesystem::path> private_key_file;
72
73         int option_index = 0;
74         while (true) {
75                 struct option long_options[] = {
76                         { "version", no_argument, 0, 'v' },
77                         { "help", no_argument, 0, 'h' },
78                         { "output", required_argument, 0, 'o'},
79                         { "kdm", required_argument, 0, 'k'},
80                         { "private-key", required_argument, 0, 'p'},
81                         { 0, 0, 0, 0 }
82                 };
83
84                 int c = getopt_long (argc, argv, "vho:k:p:", long_options, &option_index);
85
86                 if (c == -1) {
87                         break;
88                 }
89
90                 switch (c) {
91                 case 'v':
92                         cout << "libdcp version " << LIBDCP_VERSION << "\n";
93                         exit (EXIT_SUCCESS);
94                 case 'h':
95                         help (argv[0]);
96                         exit (EXIT_SUCCESS);
97                 case 'o':
98                         output_file = optarg;
99                         break;
100                 case 'k':
101                         kdm_file = optarg;
102                         break;
103                 case 'p':
104                         private_key_file = optarg;
105                         break;
106                 }
107         }
108
109         if (optind >= argc) {
110                 help (argv[0]);
111                 exit (EXIT_FAILURE);
112         }
113
114         boost::filesystem::path input_file = argv[optind];
115
116         if (!output_file) {
117                 cerr << "You must specify -o or --output\n";
118                 exit (EXIT_FAILURE);
119         }
120
121         if (!kdm_file) {
122                 cerr << "You must specify -k or --kdm\n";
123                 exit (EXIT_FAILURE);
124         }
125
126         if (!private_key_file) {
127                 cerr << "You must specify -p or --private-key\n";
128                 exit (EXIT_FAILURE);
129         }
130
131         dcp::EncryptedKDM encrypted_kdm (dcp::file_to_string (kdm_file.get ()));
132         dcp::DecryptedKDM decrypted_kdm (encrypted_kdm, dcp::file_to_string (private_key_file.get()));
133
134         /* XXX: only works for Atmos! */
135
136         try {
137                 dcp::AtmosAsset in (input_file);
138                 shared_ptr<dcp::AtmosAssetReader> reader = in.start_read ();
139                 dcp::AtmosAsset out (
140                         in.edit_rate(),
141                         in.first_frame(),
142                         in.max_channel_count(),
143                         in.max_object_count(),
144                         in.atmos_version()
145                         );
146                 shared_ptr<dcp::AtmosAssetWriter> writer = out.start_write (output_file.get());
147                 for (int64_t i = 0; i < in.intrinsic_duration(); ++i) {
148                         shared_ptr<const dcp::AtmosFrame> f = reader->get_frame (i);
149                         writer->write (f->data(), f->size());
150                 }
151         } catch (dcp::ReadError& e) {
152                 cerr << "Unknown MXF format.\n";
153                 return EXIT_FAILURE;
154         }
155
156         return 0;
157 }