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