Check content for changes on loading a project.
[dcpomatic.git] / src / lib / content.h
index d519dc52b49e964f7334fea59f0417d62696d6c4..2eaa738d2c72e3e88a9388cd7bfa28f2eb88d5b6 100644 (file)
@@ -99,7 +99,6 @@ public:
 
        boost::shared_ptr<Content> clone () const;
 
-       void set_path (boost::filesystem::path);
        void set_paths (std::vector<boost::filesystem::path> paths);
 
        std::string path_summary () const;
@@ -119,6 +118,11 @@ public:
                return _paths[i];
        }
 
+       std::time_t last_write_time (size_t i) const {
+               boost::mutex::scoped_lock lm (_mutex);
+               return _last_write_times[i];
+       }
+
        bool paths_valid () const;
 
        /** @return Digest of the content's file(s).  Note: this is
@@ -179,6 +183,8 @@ public:
 
        std::list<UserProperty> user_properties () const;
 
+       std::string calculate_digest () const;
+
        /* CHANGE_PENDING and CHANGE_CANCELLED may be emitted from any thread; CHANGE_DONE always from GUI thread */
        boost::signals2::signal<void (ChangeType, boost::weak_ptr<Content>, int, bool)> Change;
 
@@ -200,8 +206,7 @@ protected:
         */
        mutable boost::mutex _mutex;
 
-       /** Paths of our data files */
-       std::vector<boost::filesystem::path> _paths;
+       void add_path (boost::filesystem::path p);
 
 private:
        friend struct ffmpeg_pts_offset_test;
@@ -212,6 +217,10 @@ private:
 
        void signal_change (ChangeType, int);
 
+       /** Paths of our data files */
+       std::vector<boost::filesystem::path> _paths;
+       std::vector<std::time_t> _last_write_times;
+
        std::string _digest;
        DCPTime _position;
        ContentTime _trim_start;