Fix crashes when static linking due to tricky lifetime
[libdcp.git] / tools / dcpdiff.cc
1 /*
2     Copyright (C) 2012-2014 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 "dcp.h"
35 #include "exceptions.h"
36 #include "common.h"
37 #include "mxf.h"
38 #include <getopt.h>
39 #include <boost/optional.hpp>
40 #include <boost/shared_ptr.hpp>
41 #include <boost/filesystem.hpp>
42 #include <boost/foreach.hpp>
43 #include <iostream>
44 #include <list>
45
46 using std::list;
47 using std::cerr;
48 using std::cout;
49 using std::string;
50 using boost::shared_ptr;
51 using boost::optional;
52 using boost::dynamic_pointer_cast;
53 using namespace dcp;
54
55 static bool verbose = false;
56
57 static void
58 help (string n)
59 {
60         cerr << "Syntax: " << n << " [OPTION] <DCP> <DCP>\n"
61              << "  -V, --version                show libdcp version\n"
62              << "  -h, --help                   show this help\n"
63              << "  -v, --verbose                be verbose\n"
64              << "      --cpl-annotation-texts   allow differing CPL annotation texts\n"
65              << "      --reel-annotation-texts  allow differing reel annotation texts\n"
66              << "  -a, --annotation-texts       allow different CPL and reel annotation texts\n"
67              << "  -d, --issue-dates            allow different issue dates\n"
68              << "  -m, --mean-pixel             maximum allowed mean pixel error (default 5)\n"
69              << "  -s, --std-dev-pixel          maximum allowed standard deviation of pixel error (default 5)\n"
70              << "      --key                    hexadecimal key to use to decrypt MXFs\n"
71              << "      --ignore-missing-assets  ignore missing asset files\n"
72              << "\n"
73              << "The <DCP>s are the DCP directories to compare.\n"
74              << "Comparison is of metadata and content, ignoring timestamps\n"
75              << "and differing UUIDs.\n";
76 }
77
78 void
79 note (NoteType t, string n)
80 {
81         if (t == DCP_ERROR || verbose) {
82                 cout << " " << n << "\n";
83                 cout.flush ();
84         }
85 }
86
87 static
88 DCP *
89 load_dcp (boost::filesystem::path path, bool ignore_missing_assets, optional<string> key)
90 {
91         DCP* dcp = 0;
92         try {
93                 dcp = new DCP (path);
94                 list<dcp::VerificationNote> notes;
95                 dcp->read (&notes);
96                 filter_notes (notes, ignore_missing_assets);
97                 BOOST_FOREACH (dcp::VerificationNote i, notes) {
98                         cerr << dcp::note_to_string(i) << "\n";
99                 }
100
101                 if (key) {
102                         list<shared_ptr<Asset> > assets = dcp->assets ();
103                         for (list<shared_ptr<Asset> >::const_iterator i = assets.begin(); i != assets.end(); ++i) {
104                                 shared_ptr<MXF> mxf = dynamic_pointer_cast<MXF> (*i);
105                                 if (mxf) {
106                                         mxf->set_key (Key (key.get ()));
107                                 }
108                         }
109                 }
110
111         } catch (FileError& e) {
112                 cerr << "Could not read DCP " << path.string() << "; " << e.what() << " " << e.filename() << "\n";
113                 exit (EXIT_FAILURE);
114         }
115
116         return dcp;
117 }
118
119 int
120 main (int argc, char* argv[])
121 {
122         dcp::init ();
123
124         EqualityOptions options;
125         options.max_mean_pixel_error = 5;
126         options.max_std_dev_pixel_error = 5;
127         options.reel_hashes_can_differ = true;
128         options.reel_annotation_texts_can_differ = false;
129         bool ignore_missing_assets = false;
130         optional<string> key;
131
132         int option_index = 0;
133         while (1) {
134                 static struct option long_options[] = {
135                         { "version", no_argument, 0, 'V'},
136                         { "help", no_argument, 0, 'h'},
137                         { "verbose", no_argument, 0, 'v'},
138                         { "mean-pixel", required_argument, 0, 'm'},
139                         { "std-dev-pixel", required_argument, 0, 's'},
140                         { "annotation-texts", no_argument, 0, 'a'},
141                         { "issue-dates", no_argument, 0, 'd'},
142                         /* From here we're using random capital letters for the short option */
143                         { "ignore-missing-assets", no_argument, 0, 'A'},
144                         { "cpl-annotation-texts", no_argument, 0, 'C'},
145                         { "key", required_argument, 0, 'D'},
146                         { "reel-annotation-texts", no_argument, 0, 'E'},
147                         { 0, 0, 0, 0 }
148                 };
149
150                 int c = getopt_long (argc, argv, "Vhvm:s:adACD:E", long_options, &option_index);
151
152                 if (c == -1) {
153                         break;
154                 }
155
156                 switch (c) {
157                 case 'V':
158                         cout << "dcpdiff version " << LIBDCP_VERSION << "\n";
159                         exit (EXIT_SUCCESS);
160                 case 'h':
161                         help (argv[0]);
162                         exit (EXIT_SUCCESS);
163                 case 'v':
164                         verbose = true;
165                         break;
166                 case 'm':
167                         options.max_mean_pixel_error = atof (optarg);
168                         break;
169                 case 's':
170                         options.max_std_dev_pixel_error = atof (optarg);
171                         break;
172                 case 'a':
173                         options.cpl_annotation_texts_can_differ = options.reel_annotation_texts_can_differ = true;
174                         break;
175                 case 'd':
176                         options.issue_dates_can_differ = true;
177                         break;
178                 case 'A':
179                         ignore_missing_assets = true;
180                         break;
181                 case 'B':
182                 case 'C':
183                         options.cpl_annotation_texts_can_differ = true;
184                         break;
185                 case 'D':
186                         key = string (optarg);
187                         break;
188                 case 'E':
189                         options.reel_annotation_texts_can_differ = true;
190                         break;
191                 }
192         }
193
194         if (argc <= (optind + 1) || argc > (optind + 2)) {
195                 help (argv[0]);
196                 exit (EXIT_FAILURE);
197         }
198
199         if (!boost::filesystem::exists (argv[optind])) {
200                 cerr << argv[0] << ": DCP " << argv[optind] << " not found.\n";
201                 exit (EXIT_FAILURE);
202         }
203
204         if (!boost::filesystem::exists (argv[optind + 1])) {
205                 cerr << argv[0] << ": DCP " << argv[optind + 1] << " not found.\n";
206                 exit (EXIT_FAILURE);
207         }
208
209         DCP* a = load_dcp (argv[optind], ignore_missing_assets, key);
210         DCP* b = load_dcp (argv[optind + 1], ignore_missing_assets, key);
211
212         /* I think this is just below the LSB at 16-bits (ie the 8th most significant bit at 24-bit) */
213         options.max_audio_sample_error = 255;
214
215         bool const equals = a->equals (*b, options, boost::bind (note, _1, _2));
216
217         exit (equals ? EXIT_SUCCESS : EXIT_FAILURE);
218 }