Allow some error in audio when comparing.
[libdcp.git] / tools / dcpdiff.cc
1 #include <iostream>
2 #include <boost/filesystem.hpp>
3 #include <getopt.h>
4 #include "dcp.h"
5 #include "exceptions.h"
6
7 using namespace std;
8 using namespace boost;
9 using namespace libdcp;
10
11 static void
12 help (string n)
13 {
14         cerr << "Syntax: " << n << " [OPTION] <DCP> <DCP>\n"
15              << "  -v, --version      show libdcp version\n"
16              << "  -h, --help         show this help\n"
17              << "\n"
18              << "The <DCP>s are the DCP directories to compare.\n"
19              << "Comparison is of metadata and content, ignoring timestamps\n"
20              << "and differing UUIDs.\n";
21 }
22
23 int
24 main (int argc, char* argv[])
25 {
26         EqualityOptions options;
27         
28         int option_index = 0;
29         while (1) {
30                 static struct option long_options[] = {
31                         { "version", no_argument, 0, 'v'},
32                         { "help", no_argument, 0, 'h'},
33                         { 0, 0, 0, 0 }
34                 };
35
36                 int c = getopt_long (argc, argv, "vh", long_options, &option_index);
37
38                 if (c == -1) {
39                         break;
40                 }
41
42                 switch (c) {
43                 case 'v':
44                         cout << "dcpdiff version " << LIBDCP_VERSION << "\n";
45                         exit (EXIT_SUCCESS);
46                 case 'h':
47                         help (argv[0]);
48                         exit (EXIT_SUCCESS);
49                 }
50         }
51
52         if (argc <= optind || argc > (optind + 2)) {
53                 help (argv[0]);
54                 exit (EXIT_FAILURE);
55         }
56
57         if (!filesystem::exists (argv[optind])) {
58                 cerr << argv[0] << ": DCP " << argv[optind] << " not found.\n";
59                 exit (EXIT_FAILURE);
60         }
61
62         if (!filesystem::exists (argv[optind + 1])) {
63                 cerr << argv[0] << ": DCP " << argv[optind + 1] << " not found.\n";
64                 exit (EXIT_FAILURE);
65         }
66
67         DCP* a = 0;
68         try {
69                 a = new DCP (argv[optind]);
70                 a->read ();
71         } catch (FileError& e) {
72                 cerr << "Could not read DCP " << argv[optind] << "; " << e.what() << " " << e.filename() << "\n";
73                 exit (EXIT_FAILURE);
74         }
75
76         DCP* b = 0;
77         try {
78                 b = new DCP (argv[optind + 1]);
79                 b->read ();
80         } catch (FileError& e) {
81                 cerr << "Could not read DCP " << argv[optind + 1] << "; " << e.what() << " " << e.filename() << "\n";
82                 exit (EXIT_FAILURE);
83         }
84
85         options.max_mean_pixel_error = 5;
86         options.max_std_dev_pixel_error = 5;
87         /* I think this is just below the LSB at 16-bits (ie the 8th most significant bit at 24-bit) */
88         options.max_audio_sample_error = 255;
89
90         list<string> notes;
91         bool equals = a->equals (*b, options, notes);
92
93         for (list<string>::iterator i = notes.begin(); i != notes.end(); ++i) {
94                 cout << "  " << *i << "\n";
95         }
96
97         if (equals) {
98                 cout << "DCPs equal\n";
99                 exit (EXIT_SUCCESS);
100         }
101
102         exit (EXIT_FAILURE);
103 }