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