X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_content.cc;h=8cf44bda1fd870682575f9bc3a6410b59f92bc5b;hb=09063d5958cad17ce89935f38f12c4fcbaaedf4f;hp=e26eed3d021f4bcaf2bc415d97e17ac56f980f9c;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05;p=dcpomatic.git diff --git a/src/lib/image_content.cc b/src/lib/image_content.cc index e26eed3d0..8cf44bda1 100644 --- a/src/lib/image_content.cc +++ b/src/lib/image_content.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2015 Carl Hetherington + Copyright (C) 2013-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -26,7 +26,6 @@ #include "job.h" #include "frame_rate_change.h" #include "exceptions.h" -#include "safe_stringstream.h" #include "image_filename_sorter.h" #include #include @@ -37,35 +36,27 @@ using std::string; using std::cout; +using std::list; +using std::vector; using boost::shared_ptr; +using namespace dcpomatic; -ImageContent::ImageContent (shared_ptr film, boost::filesystem::path p) - : Content (film) +ImageContent::ImageContent (boost::filesystem::path p) { video.reset (new VideoContent (this)); if (boost::filesystem::is_regular_file (p) && valid_image_file (p)) { - _paths.push_back (p); + add_path (p); } else { - for (boost::filesystem::directory_iterator i(p); i != boost::filesystem::directory_iterator(); ++i) { - if (boost::filesystem::is_regular_file (i->path()) && valid_image_file (i->path())) { - _paths.push_back (i->path ()); - } - } - - if (_paths.empty()) { - throw FileError (_("No valid image files were found in the folder."), p); - } - - sort (_paths.begin(), _paths.end(), ImageFilenameSorter ()); + _path_to_scan = p; } set_default_colour_conversion (); } -ImageContent::ImageContent (shared_ptr film, cxml::ConstNodePtr node, int version) - : Content (film, node) +ImageContent::ImageContent (cxml::ConstNodePtr node, int version) + : Content (node) { video = VideoContent::from_xml (this, node, version); } @@ -100,10 +91,10 @@ ImageContent::technical_summary () const } void -ImageContent::as_xml (xmlpp::Node* node) const +ImageContent::as_xml (xmlpp::Node* node, bool with_paths) const { node->add_child("Type")->add_child_text ("Image"); - Content::as_xml (node); + Content::as_xml (node, with_paths); if (video) { video->as_xml (node); @@ -111,12 +102,31 @@ ImageContent::as_xml (xmlpp::Node* node) const } void -ImageContent::examine (shared_ptr job) +ImageContent::examine (shared_ptr film, shared_ptr job) { - Content::examine (job); + if (_path_to_scan) { + job->sub (_("Scanning image files")); + vector paths; + int n = 0; + for (boost::filesystem::directory_iterator i(*_path_to_scan); i != boost::filesystem::directory_iterator(); ++i) { + if (boost::filesystem::is_regular_file (i->path()) && valid_image_file (i->path())) { + paths.push_back (i->path()); + } + ++n; + if ((n % 1000) == 0) { + job->set_progress_unknown (); + } + } + + if (paths.empty()) { + throw FileError (_("No valid image files were found in the folder."), *_path_to_scan); + } + + sort (paths.begin(), paths.end(), ImageFilenameSorter()); + set_paths (paths); + } - shared_ptr film = _film.lock (); - DCPOMATIC_ASSERT (film); + Content::examine (film, job); shared_ptr examiner (new ImageExaminer (film, shared_from_this(), job)); video->take_from_examiner (examiner); @@ -124,22 +134,24 @@ ImageContent::examine (shared_ptr job) } DCPTime -ImageContent::full_length () const +ImageContent::full_length (shared_ptr film) const { - shared_ptr film = _film.lock (); - DCPOMATIC_ASSERT (film); - FrameRateChange const frc (active_video_frame_rate(), film->video_frame_rate()); - return DCPTime::from_frames (llrint (video->length_after_3d_combine() * frc.factor ()), film->video_frame_rate ()); + FrameRateChange const frc (film, shared_from_this()); + return DCPTime::from_frames (llrint(video->length_after_3d_combine() * frc.factor()), film->video_frame_rate()); +} + +DCPTime +ImageContent::approximate_length () const +{ + return DCPTime::from_frames (video->length_after_3d_combine(), 24); } string ImageContent::identifier () const { - SafeStringStream s; - s << Content::identifier(); - s << "_" << video->identifier (); - s << "_" << video->length(); - return s.str (); + char buffer[256]; + snprintf (buffer, sizeof(buffer), "%s_%s_%" PRId64, Content::identifier().c_str(), video->identifier().c_str(), video->length()); + return buffer; } bool @@ -151,7 +163,7 @@ ImageContent::still () const void ImageContent::set_default_colour_conversion () { - BOOST_FOREACH (boost::filesystem::path i, _paths) { + BOOST_FOREACH (boost::filesystem::path i, paths()) { if (valid_j2k_file (i)) { /* We default to no colour conversion if we have JPEG2000 files */ video->unset_colour_conversion (); @@ -169,3 +181,10 @@ ImageContent::set_default_colour_conversion () video->set_colour_conversion (PresetColourConversion::from_id ("rec709").conversion); } } + +void +ImageContent::add_properties (shared_ptr film, list& p) const +{ + Content::add_properties (film, p); + video->add_properties (p); +}