From da2f0d96f3c5ffa73bfecd9df613b23200e862f7 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 31 Jul 2012 01:01:19 +0100 Subject: Bitwise MXF comparison. --- src/asset.cc | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) (limited to 'src/asset.cc') diff --git a/src/asset.cc b/src/asset.cc index 740dc592..86bd54c5 100644 --- a/src/asset.cc +++ b/src/asset.cc @@ -22,6 +22,7 @@ */ #include +#include #include #include "AS_DCP.h" #include "KM_util.h" @@ -93,3 +94,45 @@ Asset::mxf_path () const p /= _mxf_name; return p; } + +list +Asset::equals (Asset const & other, EqualityFlags flags) const +{ + list notes; + + switch (flags) { + case LIBDCP_METADATA: + break; + case MXF_BITWISE: + if (filesystem::file_size (mxf_path()) != filesystem::file_size (other.mxf_path())) { + notes.push_back (mxf_path().string() + " and " + other.mxf_path().string() + " sizes differ"); + return notes; + } + + ifstream a (mxf_path().c_str(), ios::binary); + ifstream b (other.mxf_path().c_str(), ios::binary); + + int buffer_size = 65536; + char abuffer[buffer_size]; + char bbuffer[buffer_size]; + + int n = filesystem::file_size (mxf_path ()); + + while (n) { + int const t = min (n, buffer_size); + a.read (abuffer, t); + b.read (bbuffer, t); + + for (int i = 0; i < t; ++i) { + if (abuffer[i] != bbuffer[i]) { + notes.push_back (mxf_path().string() + " and " + other.mxf_path().string() + " content differs"); + return notes; + } + } + + n -= t; + } + } + + return notes; +} -- cgit v1.2.3