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