Don't overlap simultaneous video content in the timeline. Fix keep-aligned for separ...
[dcpomatic.git] / src / lib / content.cc
1 /*
2     Copyright (C) 2013 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 #include <boost/thread/mutex.hpp>
21 #include <libxml++/libxml++.h>
22 #include <libcxml/cxml.h>
23 #include "content.h"
24 #include "util.h"
25 #include "content_factory.h"
26 #include "ui_signaller.h"
27 #include "exceptions.h"
28 #include "film.h"
29
30 #include "i18n.h"
31
32 using std::string;
33 using std::stringstream;
34 using std::set;
35 using std::list;
36 using std::cout;
37 using std::vector;
38 using boost::shared_ptr;
39 using boost::lexical_cast;
40
41 int const ContentProperty::PATH = 400;
42 int const ContentProperty::POSITION = 401;
43 int const ContentProperty::LENGTH = 402;
44 int const ContentProperty::TRIM_START = 403;
45 int const ContentProperty::TRIM_END = 404;
46
47 Content::Content (shared_ptr<const Film> f)
48         : _film (f)
49         , _position (0)
50         , _trim_start (0)
51         , _trim_end (0)
52         , _change_signals_frequent (false)
53 {
54
55 }
56
57 Content::Content (shared_ptr<const Film> f, Time p)
58         : _film (f)
59         , _position (p)
60         , _trim_start (0)
61         , _trim_end (0)
62         , _change_signals_frequent (false)
63 {
64
65 }
66
67 Content::Content (shared_ptr<const Film> f, boost::filesystem::path p)
68         : _film (f)
69         , _position (0)
70         , _trim_start (0)
71         , _trim_end (0)
72         , _change_signals_frequent (false)
73 {
74         _paths.push_back (p);
75 }
76
77 Content::Content (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
78         : _film (f)
79         , _change_signals_frequent (false)
80 {
81         list<cxml::NodePtr> path_children = node->node_children ("Path");
82         for (list<cxml::NodePtr>::const_iterator i = path_children.begin(); i != path_children.end(); ++i) {
83                 _paths.push_back ((*i)->content ());
84         }
85         _digest = node->string_child ("Digest");
86         _position = node->number_child<Time> ("Position");
87         _trim_start = node->number_child<Time> ("TrimStart");
88         _trim_end = node->number_child<Time> ("TrimEnd");
89 }
90
91 Content::Content (shared_ptr<const Film> f, vector<shared_ptr<Content> > c)
92         : _film (f)
93         , _position (c.front()->position ())
94         , _trim_start (c.front()->trim_start ())
95         , _trim_end (c.back()->trim_end ())
96         , _change_signals_frequent (false)
97 {
98         for (size_t i = 0; i < c.size(); ++i) {
99                 if (i > 0 && c[i]->trim_start ()) {
100                         throw JoinError (_("Only the first piece of content to be joined can have a start trim."));
101                 }
102
103                 if (i < (c.size() - 1) && c[i]->trim_end ()) {
104                         throw JoinError (_("Only the last piece of content to be joined can have an end trim."));
105                 }
106
107                 for (size_t j = 0; j < c[i]->number_of_paths(); ++j) {
108                         _paths.push_back (c[i]->path (j));
109                 }
110         }
111 }
112
113 void
114 Content::as_xml (xmlpp::Node* node) const
115 {
116         boost::mutex::scoped_lock lm (_mutex);
117
118         for (vector<boost::filesystem::path>::const_iterator i = _paths.begin(); i != _paths.end(); ++i) {
119                 node->add_child("Path")->add_child_text (i->string ());
120         }
121         node->add_child("Digest")->add_child_text (_digest);
122         node->add_child("Position")->add_child_text (lexical_cast<string> (_position));
123         node->add_child("TrimStart")->add_child_text (lexical_cast<string> (_trim_start));
124         node->add_child("TrimEnd")->add_child_text (lexical_cast<string> (_trim_end));
125 }
126
127 void
128 Content::examine (shared_ptr<Job> job)
129 {
130         boost::mutex::scoped_lock lm (_mutex);
131         vector<boost::filesystem::path> p = _paths;
132         lm.unlock ();
133         
134         string const d = md5_digest (p, job);
135
136         lm.lock ();
137         _digest = d;
138 }
139
140 void
141 Content::signal_changed (int p)
142 {
143         if (ui_signaller) {
144                 ui_signaller->emit (boost::bind (boost::ref (Changed), shared_from_this (), p, _change_signals_frequent));
145         }
146 }
147
148 void
149 Content::set_position (Time p)
150 {
151         {
152                 boost::mutex::scoped_lock lm (_mutex);
153                 if (p == _position) {
154                         return;
155                 }
156                 
157                 _position = p;
158         }
159
160         signal_changed (ContentProperty::POSITION);
161 }
162
163 void
164 Content::set_trim_start (Time t)
165 {
166         {
167                 boost::mutex::scoped_lock lm (_mutex);
168                 _trim_start = t;
169         }
170
171         signal_changed (ContentProperty::TRIM_START);
172 }
173
174 void
175 Content::set_trim_end (Time t)
176 {
177         {
178                 boost::mutex::scoped_lock lm (_mutex);
179                 _trim_end = t;
180         }
181
182         signal_changed (ContentProperty::TRIM_END);
183 }
184
185
186 shared_ptr<Content>
187 Content::clone () const
188 {
189         shared_ptr<const Film> film = _film.lock ();
190         if (!film) {
191                 return shared_ptr<Content> ();
192         }
193         
194         /* This is a bit naughty, but I can't think of a compelling reason not to do it ... */
195         xmlpp::Document doc;
196         xmlpp::Node* node = doc.create_root_node ("Content");
197         as_xml (node);
198
199         /* notes is unused here (we assume) */
200         list<string> notes;
201         return content_factory (film, cxml::NodePtr (new cxml::Node (node)), Film::current_state_version, notes);
202 }
203
204 string
205 Content::technical_summary () const
206 {
207         return String::compose ("%1 %2 %3", path_summary(), digest(), position());
208 }
209
210 Time
211 Content::length_after_trim () const
212 {
213         return full_length() - trim_start() - trim_end();
214 }
215
216 /** @param t A time relative to the start of this content (not the position).
217  *  @return true if this time is trimmed by our trim settings.
218  */
219 bool
220 Content::trimmed (Time t) const
221 {
222         return (t < trim_start() || t > (full_length() - trim_end ()));
223 }
224
225 /** @return string which includes everything about how this content affects
226  *  its playlist.
227  */
228 string
229 Content::identifier () const
230 {
231         stringstream s;
232         
233         s << Content::digest()
234           << "_" << position()
235           << "_" << trim_start()
236           << "_" << trim_end();
237
238         return s.str ();
239 }
240
241 bool
242 Content::paths_valid () const
243 {
244         for (vector<boost::filesystem::path>::const_iterator i = _paths.begin(); i != _paths.end(); ++i) {
245                 if (!boost::filesystem::exists (*i)) {
246                         return false;
247                 }
248         }
249
250         return true;
251 }
252
253 void
254 Content::set_path (boost::filesystem::path path)
255 {
256         _paths.clear ();
257         _paths.push_back (path);
258         signal_changed (ContentProperty::PATH);
259 }
260
261 string
262 Content::path_summary () const
263 {
264         /* XXX: should handle multiple paths more gracefully */
265
266         assert (number_of_paths ());
267
268         string s = path(0).filename().string ();
269         if (number_of_paths() > 1) {
270                 s += " ...";
271         }
272
273         return s;
274 }