/* Copyright (C) 2013-2021 Carl Hetherington This file is part of DCP-o-matic. DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with DCP-o-matic. If not, see . */ /** @file src/lib/content.h * @brief Content class. */ #ifndef DCPOMATIC_CONTENT_H #define DCPOMATIC_CONTENT_H #include "change_signaller.h" #include "dcpomatic_time.h" #include "path_behaviour.h" #include "signaller.h" #include "user_property.h" #include "text_type.h" #include #include #include #include namespace xmlpp { class Node; } namespace cxml { class Node; } class Job; class Film; class AtmosContent; class AudioContent; class TextContent; class VideoContent; class ContentProperty { public: static int constexpr PATH = 400; static int constexpr POSITION = 401; static int constexpr LENGTH = 402; static int constexpr TRIM_START = 403; static int constexpr TRIM_END = 404; static int constexpr VIDEO_FRAME_RATE = 405; }; /** @class Content * @brief A piece of content represented by one or more files on disk. */ class Content : public std::enable_shared_from_this, public Signaller { public: Content() = default; explicit Content(dcpomatic::DCPTime); explicit Content(boost::filesystem::path); Content(cxml::ConstNodePtr, boost::optional directory); explicit Content(std::vector>); virtual ~Content() {} Content(Content const&) = delete; Content& operator=(Content const&) = delete; /** Examine the content to establish digest, frame rates and any other * useful metadata. * @param job Job to use to report progress, or 0. * @param tolerant true to try to carry on in the presence of problems with the content, * false to throw exceptions in these cases. */ virtual void examine(std::shared_ptr film, std::shared_ptr job, bool tolerant); virtual void take_settings_from(std::shared_ptr c); /** @return Quick one-line summary of the content, as will be presented in the * film editor. */ virtual std::string summary() const = 0; /** @return Technical details of this content; these are written to logs to * help with debugging. */ virtual std::string technical_summary() const; virtual void as_xml( xmlpp::Element* element, bool with_paths, PathBehaviour path_behaviour, boost::optional film_directory ) const; virtual dcpomatic::DCPTime full_length(std::shared_ptr) const = 0; virtual dcpomatic::DCPTime approximate_length() const = 0; virtual std::string identifier() const; /** @return points at which to split this content when * REELTYPE_BY_VIDEO_CONTENT is in use. */ virtual std::list reel_split_points(std::shared_ptr) const; std::shared_ptr clone() const; void set_paths(std::vector paths); std::string path_summary() const; std::vector paths() const { boost::mutex::scoped_lock lm(_mutex); return _paths; } size_t number_of_paths() const { boost::mutex::scoped_lock lm(_mutex); return _paths.size(); } boost::filesystem::path path(size_t i) const { boost::mutex::scoped_lock lm(_mutex); return _paths[i]; } std::vector font_paths() const; void replace_font_path(boost::filesystem::path old_path, boost::filesystem::path new_path); /** @return A path which summarises this content for the user */ virtual boost::filesystem::path path_for_display() const; std::time_t last_write_time(size_t i) const { boost::mutex::scoped_lock lm(_mutex); return _last_write_times[i]; } /** @return Digest of the content's file(s). This is a MD5 digest * of the first million bytes, the last million bytes, and the * size of the first file in ASCII. */ std::string digest() const { boost::mutex::scoped_lock lm(_mutex); return _digest; } void set_position(std::shared_ptr film, dcpomatic::DCPTime, bool force_emit = false); /** dcpomatic::DCPTime that this content starts; i.e. the time that the first * bit of the content (trimmed or not) will happen. */ dcpomatic::DCPTime position() const { boost::mutex::scoped_lock lm(_mutex); return _position; } void set_trim_start(std::shared_ptr film, dcpomatic::ContentTime); dcpomatic::ContentTime trim_start() const { boost::mutex::scoped_lock lm(_mutex); return _trim_start; } void set_trim_end(dcpomatic::ContentTime); dcpomatic::ContentTime trim_end() const { boost::mutex::scoped_lock lm(_mutex); return _trim_end; } /** @return Time immediately after the last thing in this content */ dcpomatic::DCPTime end(std::shared_ptr film) const { return position() + length_after_trim(film); } dcpomatic::DCPTimePeriod period(std::shared_ptr film) const { return { position(), end(film) }; } dcpomatic::DCPTime length_after_trim(std::shared_ptr film) const; boost::optional video_frame_rate() const { boost::mutex::scoped_lock lm(_mutex); return _video_frame_rate; } void set_video_frame_rate(std::shared_ptr film, double r); void unset_video_frame_rate(); double active_video_frame_rate(std::shared_ptr film) const; void set_change_signals_frequent(bool f) { _change_signals_frequent = f; } std::list user_properties(std::shared_ptr film) const; std::string calculate_digest() const; virtual bool can_be_played() const { return true; } bool has_mapped_audio() const; /* ChangeType::PENDING and ChangeType::CANCELLED may be emitted from any thread; ChangeType::DONE always from GUI thread. * Second parameter is the property * Third parameter is true if these signals are likely to occur frequently */ boost::signals2::signal Change; std::shared_ptr video; std::shared_ptr audio; std::vector> text; std::shared_ptr atmos; std::shared_ptr only_text() const; std::shared_ptr text_of_original_type(TextType type) const; /** @return true if this content has changed since it was last examined */ bool changed() const; protected: virtual void add_properties(std::shared_ptr film, std::list &) const; /** _mutex which should be used to protect accesses, as examine * jobs can update content state in threads other than the main one. */ mutable boost::mutex _mutex; void add_path(boost::filesystem::path p); private: friend struct ffmpeg_pts_offset_test; friend struct best_dcp_frame_rate_test_single; friend struct best_dcp_frame_rate_test_double; friend struct audio_sampling_rate_test; friend struct subtitle_font_id_change_test2; template friend class ChangeSignalDespatcher; void signal_change(ChangeType, int); /** Paths of our data files */ std::vector _paths; std::vector _last_write_times; std::string _digest; dcpomatic::DCPTime _position; dcpomatic::ContentTime _trim_start; dcpomatic::ContentTime _trim_end; /** The video frame rate that this content is or was prepared to be used with, * or empty if the effective rate of this content should be dictated by something * else (either some video happening at the same time, or the rate of the DCP). */ boost::optional _video_frame_rate; bool _change_signals_frequent = false; }; typedef ChangeSignaller ContentChangeSignaller; typedef ChangeSignalDespatcher ContentChangeSignalDespatcher; #endif