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