Add Certificate::not_{before,after}
[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         bool extract_fonts = true;
65         optional<boost::filesystem::path> kdm_file;
66         optional<boost::filesystem::path> private_key_file;
67
68         int option_index = 0;
69         while (1) {
70                 static struct option long_options[] = {
71                         { "help", no_argument, 0, 'h'},
72                         { "no-fonts", no_argument, 0, 'n'},
73                         { "kdm", required_argument, 0, 'k'},
74                         { "private-key", required_argument, 0, 'p'},
75                         { 0, 0, 0, 0 }
76                 };
77
78                 int c = getopt_long (argc, argv, "hnk:p:", long_options, &option_index);
79
80                 if (c == -1) {
81                         break;
82                 }
83
84                 switch (c) {
85                 case 'h':
86                         help (argv[0]);
87                         exit (EXIT_SUCCESS);
88                 case 'n':
89                         extract_fonts = false;
90                         break;
91                 case 'k':
92                         kdm_file = optarg;
93                         break;
94                 case 'p':
95                         private_key_file = optarg;
96                         break;
97                 }
98         }
99
100         if (argc <= optind || argc > (optind + 2)) {
101                 help (argv[0]);
102                 exit (EXIT_FAILURE);
103         }
104
105         dcp::SMPTESubtitleAsset sub (argv[optind]);
106
107         if (sub.key_id() && (!kdm_file || !private_key_file)) {
108                 cerr << "Subtitle MXF is encrypted so you must provide a KDM and private key.\n";
109                 exit (EXIT_FAILURE);
110         }
111
112         if (sub.key_id()) {
113                 dcp::EncryptedKDM encrypted_kdm (dcp::file_to_string (kdm_file.get ()));
114                 dcp::DecryptedKDM decrypted_kdm (encrypted_kdm, dcp::file_to_string (private_key_file.get()));
115                 bool done = false;
116                 BOOST_FOREACH (dcp::DecryptedKDMKey const & i, decrypted_kdm.keys()) {
117                         if (i.id() == *sub.key_id()) {
118                                 sub.set_key (i.key ());
119                                 done = true;
120                         }
121                 }
122                 if (!done) {
123                         cerr << "Could not find required key in KDM.\n";
124                         exit (EXIT_FAILURE);
125                 }
126         }
127
128         cout << sub.xml_as_string() << "\n";
129
130         if (extract_fonts) {
131                 map<string, dcp::Data> fonts = sub.fonts_with_load_ids ();
132                 for (map<string, dcp::Data>::const_iterator i = fonts.begin(); i != fonts.end(); ++i) {
133                         FILE* f = dcp::fopen_boost (i->first + ".ttf", "wb");
134                         if (!f) {
135                                 cerr << "Could not open font file " << i->first << ".ttf for writing";
136                                 exit (EXIT_FAILURE);
137                         }
138                         fwrite (i->second.data().get(), 1, i->second.size(), f);
139                         fclose (f);
140                 }
141         }
142 }