Cleanup: header sorting.
[libdcp.git] / tools / dcpdumpsub.cc
1 /*
2     Copyright (C) 2015 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
35 #include "decrypted_kdm.h"
36 #include "decrypted_kdm_key.h"
37 #include "encrypted_kdm.h"
38 #include "file.h"
39 #include "smpte_subtitle_asset.h"
40 #include "util.h"
41 #include <getopt.h>
42 #include <cstdlib>
43 #include <iostream>
44 #include <string>
45
46
47 using std::cerr;
48 using std::cout;
49 using std::map;
50 using std::string;
51 using boost::optional;
52
53
54 static void
55 help (string n)
56 {
57         cerr << "Syntax: " << n << " [OPTION] <MXF>\n"
58              << "  -h, --help         show this help\n"
59              << "  -n, --no-fonts     don't extract fonts\n"
60              << "  -k, --kdm          KDM file\n"
61              << "  -p, --private-key  private key file\n";
62 }
63
64 int
65 main (int argc, char* argv[])
66 {
67         dcp::init ();
68
69         bool extract_fonts = true;
70         optional<boost::filesystem::path> kdm_file;
71         optional<boost::filesystem::path> private_key_file;
72
73         int option_index = 0;
74         while (1) {
75                 static struct option long_options[] = {
76                         { "help", no_argument, 0, 'h'},
77                         { "no-fonts", no_argument, 0, 'n'},
78                         { "kdm", required_argument, 0, 'k'},
79                         { "private-key", required_argument, 0, 'p'},
80                         { 0, 0, 0, 0 }
81                 };
82
83                 int c = getopt_long (argc, argv, "hnk:p:", long_options, &option_index);
84
85                 if (c == -1) {
86                         break;
87                 }
88
89                 switch (c) {
90                 case 'h':
91                         help (argv[0]);
92                         exit (EXIT_SUCCESS);
93                 case 'n':
94                         extract_fonts = false;
95                         break;
96                 case 'k':
97                         kdm_file = optarg;
98                         break;
99                 case 'p':
100                         private_key_file = optarg;
101                         break;
102                 }
103         }
104
105         if (argc <= optind || argc > (optind + 2)) {
106                 help (argv[0]);
107                 exit (EXIT_FAILURE);
108         }
109
110         dcp::SMPTESubtitleAsset sub (argv[optind]);
111
112         if (sub.key_id() && (!kdm_file || !private_key_file)) {
113                 cerr << "Subtitle MXF is encrypted so you must provide a KDM and private key.\n";
114                 exit (EXIT_FAILURE);
115         }
116
117         if (sub.key_id()) {
118                 dcp::EncryptedKDM encrypted_kdm (dcp::file_to_string (kdm_file.get ()));
119                 dcp::DecryptedKDM decrypted_kdm (encrypted_kdm, dcp::file_to_string (private_key_file.get()));
120                 bool done = false;
121                 for (auto const& i: decrypted_kdm.keys()) {
122                         if (i.id() == *sub.key_id()) {
123                                 sub.set_key (i.key ());
124                                 done = true;
125                         }
126                 }
127                 if (!done) {
128                         cerr << "Could not find required key in KDM.\n";
129                         exit (EXIT_FAILURE);
130                 }
131         }
132
133         cout << sub.xml_as_string() << "\n";
134
135         if (extract_fonts) {
136                 for (auto const& i: sub.font_data()) {
137                         dcp::File f(i.first + ".ttf", "wb");
138                         if (!f) {
139                                 cerr << "Could not open font file " << i.first << ".ttf for writing";
140                                 exit (EXIT_FAILURE);
141                         }
142                         f.write(i.second.data(), 1, i.second.size());
143                 }
144         }
145 }