X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fdcp_examiner.cc;h=ffdcad1c144fd0030a70eefc6215497fecc783f2;hp=b2034890b04eab8e58cc52824fd359143bce09e6;hb=a498b8819ab431ecc2aac058b1aadb9e15d396ac;hpb=df28b0e939bd0f12ae31e6f7ba94fa954496b3b8 diff --git a/src/lib/dcp_examiner.cc b/src/lib/dcp_examiner.cc index b2034890b..ffdcad1c1 100644 --- a/src/lib/dcp_examiner.cc +++ b/src/lib/dcp_examiner.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2014 Carl Hetherington + Copyright (C) 2014-2020 Carl Hetherington This file is part of DCP-o-matic. @@ -23,6 +23,7 @@ #include "exceptions.h" #include "image.h" #include "config.h" +#include "util.h" #include #include #include @@ -35,9 +36,14 @@ #include #include #include +#include +#include +#include +#include #include +#include +#include #include -#include #include #include "i18n.h" @@ -45,24 +51,25 @@ using std::list; using std::cout; using std::runtime_error; -using boost::shared_ptr; -using boost::dynamic_pointer_cast; - -DCPExaminer::DCPExaminer (shared_ptr content) - : DCP (content) - , _video_length (0) - , _audio_length (0) - , _has_subtitles (false) - , _encrypted (false) - , _needs_assets (false) - , _kdm_valid (false) - , _three_d (false) +using std::map; +using std::shared_ptr; +using std::string; +using std::dynamic_pointer_cast; +using boost::optional; + + +DCPExaminer::DCPExaminer (shared_ptr content, bool tolerant) + : DCP (content, tolerant) { shared_ptr cpl; + for (int i = 0; i < static_cast(TextType::COUNT); ++i) { + _text_count[i] = 0; + } + if (content->cpl ()) { /* Use the CPL that the content was using before */ - BOOST_FOREACH (shared_ptr i, cpls()) { + for (auto i: cpls()) { if (i->id() == content->cpl().get()) { cpl = i; } @@ -72,9 +79,9 @@ DCPExaminer::DCPExaminer (shared_ptr content) int least_unsatisfied = INT_MAX; - BOOST_FOREACH (shared_ptr i, cpls()) { + for (auto i: cpls()) { int unsatisfied = 0; - BOOST_FOREACH (shared_ptr j, i->reels()) { + for (auto j: i->reels()) { if (j->main_picture() && !j->main_picture()->asset_ref().resolved()) { ++unsatisfied; } @@ -84,6 +91,9 @@ DCPExaminer::DCPExaminer (shared_ptr content) if (j->main_subtitle() && !j->main_subtitle()->asset_ref().resolved()) { ++unsatisfied; } + if (j->atmos() && !j->atmos()->asset_ref().resolved()) { + ++unsatisfied; + } } if (unsatisfied < least_unsatisfied) { @@ -99,8 +109,18 @@ DCPExaminer::DCPExaminer (shared_ptr content) _cpl = cpl->id (); _name = cpl->content_title_text (); + _content_kind = cpl->content_kind (); + + auto try_to_parse_language = [](optional lang) -> boost::optional { + try { + if (lang) { + return dcp::LanguageTag (*lang); + } + } catch (...) {} + return boost::none; + }; - BOOST_FOREACH (shared_ptr i, cpl->reels()) { + for (auto i: cpl->reels()) { if (i->main_picture ()) { if (!i->main_picture()->asset_ref().resolved()) { @@ -109,7 +129,7 @@ DCPExaminer::DCPExaminer (shared_ptr content) return; } - dcp::Fraction const frac = i->main_picture()->edit_rate (); + auto const frac = i->main_picture()->edit_rate (); float const fr = float(frac.numerator) / frac.denominator; if (!_video_frame_rate) { _video_frame_rate = fr; @@ -117,14 +137,15 @@ DCPExaminer::DCPExaminer (shared_ptr content) throw DCPError (_("Mismatched frame rates in DCP")); } - shared_ptr asset = i->main_picture()->asset (); + _has_video = true; + auto asset = i->main_picture()->asset(); if (!_video_size) { _video_size = asset->size (); } else if (_video_size.get() != asset->size ()) { throw DCPError (_("Mismatched video sizes in DCP")); } - _video_length += i->main_picture()->duration(); + _video_length += i->main_picture()->actual_duration(); } if (i->main_sound ()) { @@ -134,7 +155,8 @@ DCPExaminer::DCPExaminer (shared_ptr content) return; } - shared_ptr asset = i->main_sound()->asset (); + _has_audio = true; + auto asset = i->main_sound()->asset(); if (!_audio_channels) { _audio_channels = asset->channels (); @@ -148,7 +170,8 @@ DCPExaminer::DCPExaminer (shared_ptr content) throw DCPError (_("Mismatched audio sample rates in DCP")); } - _audio_length += i->main_sound()->duration(); + _audio_length += i->main_sound()->actual_duration(); + _audio_language = try_to_parse_language (asset->language()); } if (i->main_subtitle ()) { @@ -158,39 +181,117 @@ DCPExaminer::DCPExaminer (shared_ptr content) return; } - _has_subtitles = true; + _text_count[static_cast(TextType::OPEN_SUBTITLE)] = 1; + _open_subtitle_language = try_to_parse_language (i->main_subtitle()->language()); + } + + for (auto j: i->closed_captions()) { + if (!j->asset_ref().resolved()) { + /* We are missing this asset so we can't continue; examination will be repeated later */ + _needs_assets = true; + return; + } + + _text_count[static_cast(TextType::CLOSED_CAPTION)]++; + _dcp_text_tracks.push_back (DCPTextTrack(j->annotation_text(), try_to_parse_language(j->language()))); + } + + if (i->main_markers ()) { + auto rm = i->main_markers()->get(); + _markers.insert (rm.begin(), rm.end()); + } + + if (i->atmos()) { + _has_atmos = true; + _atmos_length += i->atmos()->actual_duration(); + if (_atmos_edit_rate != dcp::Fraction()) { + DCPOMATIC_ASSERT (i->atmos()->edit_rate() == _atmos_edit_rate); + } + _atmos_edit_rate = i->atmos()->edit_rate(); + } + + if (i->main_picture()) { + _reel_lengths.push_back (i->main_picture()->actual_duration()); + } else if (i->main_sound()) { + _reel_lengths.push_back (i->main_sound()->actual_duration()); + } else if (i->main_subtitle()) { + _reel_lengths.push_back (i->main_subtitle()->actual_duration()); + } else if (!i->closed_captions().empty()) { + _reel_lengths.push_back (i->closed_captions().front()->actual_duration()); + } else if (!i->atmos()) { + _reel_lengths.push_back (i->atmos()->actual_duration()); } } - _encrypted = cpl->encrypted (); + _encrypted = cpl->any_encrypted (); _kdm_valid = true; - /* Check that we can read the first picture frame */ + /* Check first that anything encrypted has a key. We must do this, as if we try to + * read encrypted data with asdcplib without even offering a key it will just return + * the encrypted data. Secondly, check that we can read the first thing from each + * asset in each reel. This checks that when we do have a key it's the right one. + */ try { - if (!cpl->reels().empty ()) { - shared_ptr asset = cpl->reels().front()->main_picture()->asset (); - shared_ptr mono = dynamic_pointer_cast (asset); - shared_ptr stereo = dynamic_pointer_cast (asset); + for (auto i: cpl->reels()) { + auto pic = i->main_picture()->asset(); + if (pic->encrypted() && !pic->key()) { + _kdm_valid = false; + } + auto mono = dynamic_pointer_cast(pic); + auto stereo = dynamic_pointer_cast(pic); if (mono) { - mono->start_read()->get_frame(0)->xyz_image (); + auto reader = mono->start_read(); + reader->set_check_hmac (false); + reader->get_frame(0)->xyz_image(); } else { - stereo->start_read()->get_frame(0)->xyz_image (dcp::EYE_LEFT); + auto reader = stereo->start_read(); + reader->set_check_hmac (false); + reader->get_frame(0)->xyz_image(dcp::Eye::LEFT); + } + + if (i->main_sound()) { + auto sound = i->main_sound()->asset (); + if (sound->encrypted() && !sound->key()) { + _kdm_valid = false; + } + auto reader = i->main_sound()->asset()->start_read(); + reader->set_check_hmac (false); + reader->get_frame(0); } + if (i->main_subtitle()) { + auto sub = i->main_subtitle()->asset(); + auto mxf_sub = dynamic_pointer_cast(sub); + if (mxf_sub && mxf_sub->encrypted() && !mxf_sub->key()) { + _kdm_valid = false; + } + sub->subtitles (); + } + + if (i->atmos()) { + auto atmos = i->atmos()->asset(); + if (atmos->encrypted() && !atmos->key()) { + _kdm_valid = false; + } + auto reader = atmos->start_read(); + reader->set_check_hmac (false); + reader->get_frame(0); + } } - } catch (dcp::DCPReadError& e) { + } catch (dcp::ReadError& e) { + _kdm_valid = false; + } catch (dcp::MiscError& e) { _kdm_valid = false; - if (_encrypted && content->kdm ()) { - /* XXX: maybe don't use an exception for this */ - throw runtime_error (_("The KDM does not decrypt the DCP. Perhaps it is targeted at the wrong CPL.")); - } } - DCPOMATIC_ASSERT (cpl->standard ()); - _standard = cpl->standard().get(); + _standard = cpl->standard(); _three_d = !cpl->reels().empty() && cpl->reels().front()->main_picture() && dynamic_pointer_cast (cpl->reels().front()->main_picture()->asset()); + _ratings = cpl->ratings(); + for (auto i: cpl->content_versions()) { + _content_versions.push_back (i.label_text); + } _cpl = cpl->id (); }