Merge master.
[dcpomatic.git] / src / lib / content.h
1 /*
2     Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/lib/content.h
21  *  @brief Content class.
22  */
23
24 #ifndef DCPOMATIC_CONTENT_H
25 #define DCPOMATIC_CONTENT_H
26
27 #include <set>
28 #include <boost/filesystem.hpp>
29 #include <boost/signals2.hpp>
30 #include <boost/thread/mutex.hpp>
31 #include <boost/enable_shared_from_this.hpp>
32 #include <libxml++/libxml++.h>
33 #include <libcxml/cxml.h>
34 #include "types.h"
35 #include "dcpomatic_time.h"
36
37 namespace cxml {
38         class Node;
39 }
40
41 class Job;
42 class Film;
43
44 class ContentProperty
45 {
46 public:
47         static int const PATH;
48         static int const POSITION;
49         static int const LENGTH;
50         static int const TRIM_START;
51         static int const TRIM_END;
52 };
53
54 /** @class Content
55  *  @brief A piece of content represented by one or more files on disk.
56  */
57 class Content : public boost::enable_shared_from_this<Content>, public boost::noncopyable
58 {
59 public:
60         Content (boost::shared_ptr<const Film>);
61         Content (boost::shared_ptr<const Film>, DCPTime);
62         Content (boost::shared_ptr<const Film>, boost::filesystem::path);
63         Content (boost::shared_ptr<const Film>, cxml::ConstNodePtr);
64         Content (boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >);
65         virtual ~Content () {}
66
67         /** Examine the content to establish digest, frame rates and any other
68          *  useful metadata.
69          *  @param job Job to use to report progress, or 0.
70          */
71         virtual void examine (boost::shared_ptr<Job> job);
72         
73         /** @return Quick one-line summary of the content, as will be presented in the
74          *  film editor.
75          */
76         virtual std::string summary () const = 0;
77         
78         /** @return Technical details of this content; these are written to logs to
79          *  help with debugging.
80          */
81         virtual std::string technical_summary () const;
82         
83         virtual std::string information () const = 0;
84         virtual void as_xml (xmlpp::Node *) const;
85         virtual DCPTime full_length () const = 0;
86         virtual std::string identifier () const;
87
88         boost::shared_ptr<Content> clone () const;
89
90         void set_path (boost::filesystem::path);
91
92         std::string path_summary () const;
93
94         std::vector<boost::filesystem::path> paths () const {
95                 boost::mutex::scoped_lock lm (_mutex);
96                 return _paths;
97         }
98
99         size_t number_of_paths () const {
100                 boost::mutex::scoped_lock lm (_mutex);
101                 return _paths.size ();
102         }
103
104         boost::filesystem::path path (size_t i) const {
105                 boost::mutex::scoped_lock lm (_mutex);
106                 return _paths[i];
107         }
108         
109         bool paths_valid () const;
110
111         /** @return MD5 digest of the content's file(s) */
112         std::string digest () const {
113                 boost::mutex::scoped_lock lm (_mutex);
114                 return _digest;
115         }
116
117         void set_position (DCPTime);
118
119         /** DCPTime that this content starts; i.e. the time that the first
120          *  bit of the content (trimmed or not) will happen.
121          */
122         DCPTime position () const {
123                 boost::mutex::scoped_lock lm (_mutex);
124                 return _position;
125         }
126
127         void set_trim_start (DCPTime);
128
129         DCPTime trim_start () const {
130                 boost::mutex::scoped_lock lm (_mutex);
131                 return _trim_start;
132         }
133
134         void set_trim_end (DCPTime);
135         
136         DCPTime trim_end () const {
137                 boost::mutex::scoped_lock lm (_mutex);
138                 return _trim_end;
139         }
140         
141         DCPTime end () const {
142                 return position() + length_after_trim();
143         }
144
145         DCPTime length_after_trim () const;
146         
147         void set_change_signals_frequent (bool f) {
148                 _change_signals_frequent = f;
149         }
150
151         boost::shared_ptr<const Film> film () const {
152                 return _film.lock ();
153         }
154
155         boost::signals2::signal<void (boost::weak_ptr<Content>, int, bool)> Changed;
156
157 protected:
158         void signal_changed (int);
159
160         boost::weak_ptr<const Film> _film;
161
162         /** _mutex which should be used to protect accesses, as examine
163          *  jobs can update content state in threads other than the main one.
164          */
165         mutable boost::mutex _mutex;
166
167         /** Paths of our data files */
168         std::vector<boost::filesystem::path> _paths;
169         
170 private:
171         std::string _digest;
172         DCPTime _position;
173         DCPTime _trim_start;
174         DCPTime _trim_end;
175         bool _change_signals_frequent;
176 };
177
178 #endif