#include #include #include #include "dcp.h" #include "exceptions.h" using namespace std; using namespace boost; using namespace libdcp; static void help (string n) { cerr << "Syntax: " << n << " [OPTION] \n" << " -v, --version show libdcp version\n" << " -h, --help show this help\n" << "\n" << "The s are the DCP directories to compare.\n" << "Comparison is of metadata and content, ignoring timestamps\n" << "and differing UUIDs.\n"; } int main (int argc, char* argv[]) { EqualityOptions options; int option_index = 0; while (1) { static struct option long_options[] = { { "version", no_argument, 0, 'v'}, { "help", no_argument, 0, 'h'}, { 0, 0, 0, 0 } }; int c = getopt_long (argc, argv, "vh", long_options, &option_index); if (c == -1) { break; } switch (c) { case 'v': cout << "dcpdiff version " << LIBDCP_VERSION << "\n"; exit (EXIT_SUCCESS); case 'h': help (argv[0]); exit (EXIT_SUCCESS); } } 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]); a->read (); } 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]); b->read (); } 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; /* I think this is just below the LSB at 16-bits (ie the 8th most significant bit at 24-bit) */ options.max_audio_sample_error = 255; list notes; bool equals = a->equals (*b, options, notes); for (list::iterator i = notes.begin(); i != notes.end(); ++i) { cout << " " << *i << "\n"; } if (equals) { exit (EXIT_SUCCESS); } exit (EXIT_FAILURE); }