X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcontent.cc;h=9a7cb0f34f68e0837862bbc96bc36aca00ab6d27;hb=0a93237cb5e4642d3b698ff9b7d0cfae5401478c;hp=0c37d938637cd8af26ad8e9db32b5f7bce0f9409;hpb=cfdd68eb5fb0ef8423e860103ad4e5510994f1da;p=dcpomatic.git diff --git a/src/lib/content.cc b/src/lib/content.cc index 0c37d9386..9a7cb0f34 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -21,26 +21,26 @@ * @brief Content class. */ -#include -#include -#include #include "content.h" #include "util.h" #include "content_factory.h" -#include "ui_signaller.h" #include "exceptions.h" #include "film.h" +#include "safe_stringstream.h" +#include "job.h" +#include "raw_convert.h" +#include +#include +#include #include "i18n.h" using std::string; -using std::stringstream; -using std::set; using std::list; using std::cout; using std::vector; +using std::max; using boost::shared_ptr; -using boost::lexical_cast; int const ContentProperty::PATH = 400; int const ContentProperty::POSITION = 401; @@ -78,7 +78,7 @@ Content::Content (shared_ptr f, boost::filesystem::path p) _paths.push_back (p); } -Content::Content (shared_ptr f, shared_ptr node) +Content::Content (shared_ptr f, cxml::ConstNodePtr node) : _film (f) , _change_signals_frequent (false) { @@ -86,7 +86,7 @@ Content::Content (shared_ptr f, shared_ptr node) for (list::const_iterator i = path_children.begin(); i != path_children.end(); ++i) { _paths.push_back ((*i)->content ()); } - _digest = node->string_child ("Digest"); + _digest = node->optional_string_child ("Digest").get_value_or ("X"); _position = DCPTime (node->number_child ("Position")); _trim_start = DCPTime (node->number_child ("TrimStart")); _trim_end = DCPTime (node->number_child ("TrimEnd")); @@ -123,19 +123,27 @@ Content::as_xml (xmlpp::Node* node) const node->add_child("Path")->add_child_text (i->string ()); } node->add_child("Digest")->add_child_text (_digest); - node->add_child("Position")->add_child_text (lexical_cast (_position.get ())); - node->add_child("TrimStart")->add_child_text (lexical_cast (_trim_start.get ())); - node->add_child("TrimEnd")->add_child_text (lexical_cast (_trim_end.get ())); + node->add_child("Position")->add_child_text (raw_convert (_position.get ())); + node->add_child("TrimStart")->add_child_text (raw_convert (_trim_start.get ())); + node->add_child("TrimEnd")->add_child_text (raw_convert (_trim_end.get ())); } void Content::examine (shared_ptr job) { + if (job) { + job->sub (_("Computing digest")); + } + boost::mutex::scoped_lock lm (_mutex); vector p = _paths; lm.unlock (); - - string const d = md5_digest (p, job); + + /* Some content files are very big, so we use a poor man's + digest here: a MD5 of the first and last 1e6 bytes with the + size of the first file tacked on the end as a string. + */ + string const d = md5_digest_head_tail (p, 1000000) + raw_convert (boost::filesystem::file_size (p.front ())); lm.lock (); _digest = d; @@ -144,9 +152,7 @@ Content::examine (shared_ptr job) void Content::signal_changed (int p) { - if (ui_signaller) { - ui_signaller->emit (boost::bind (boost::ref (Changed), shared_from_this (), p, _change_signals_frequent)); - } + emit (boost::bind (boost::ref (Changed), shared_from_this (), p, _change_signals_frequent)); } void @@ -214,7 +220,7 @@ Content::technical_summary () const DCPTime Content::length_after_trim () const { - return full_length() - trim_start() - trim_end(); + return max (DCPTime (), full_length() - trim_start() - trim_end()); } /** @return string which includes everything about how this content affects @@ -223,7 +229,7 @@ Content::length_after_trim () const string Content::identifier () const { - stringstream s; + SafeStringStream s; s << Content::digest() << "_" << position().get() @@ -258,7 +264,7 @@ Content::path_summary () const { /* XXX: should handle multiple paths more gracefully */ - assert (number_of_paths ()); + DCPOMATIC_ASSERT (number_of_paths ()); string s = path(0).filename().string (); if (number_of_paths() > 1) {