Merge branch 'master' into 2.0
[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, DCPTime 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<DCPTime> ("Position");
87         _trim_start = node->number_child<DCPTime> ("TrimStart");
88         _trim_end = node->number_child<DCPTime> ("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 (DCPTime 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 (DCPTime 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 (DCPTime 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         return content_factory (film, cxml::NodePtr (new cxml::Node (node)), Film::state_version);
199 }
200
201 string
202 Content::technical_summary () const
203 {
204         return String::compose ("%1 %2 %3", path_summary(), digest(), position());
205 }
206
207 DCPTime
208 Content::length_after_trim () const
209 {
210         return full_length() - trim_start() - trim_end();
211 }
212
213 /** @return string which includes everything about how this content affects
214  *  its playlist.
215  */
216 string
217 Content::identifier () const
218 {
219         stringstream s;
220         
221         s << Content::digest()
222           << "_" << position()
223           << "_" << trim_start()
224           << "_" << trim_end();
225
226         return s.str ();
227 }
228
229 bool
230 Content::paths_valid () const
231 {
232         for (vector<boost::filesystem::path>::const_iterator i = _paths.begin(); i != _paths.end(); ++i) {
233                 if (!boost::filesystem::exists (*i)) {
234                         return false;
235                 }
236         }
237
238         return true;
239 }
240
241 void
242 Content::set_path (boost::filesystem::path path)
243 {
244         _paths.clear ();
245         _paths.push_back (path);
246         signal_changed (ContentProperty::PATH);
247 }
248
249 string
250 Content::path_summary () const
251 {
252         /* XXX: should handle multiple paths more gracefully */
253
254         assert (number_of_paths ());
255
256         string s = path(0).filename().string ();
257         if (number_of_paths() > 1) {
258                 s += " ...";
259         }
260
261         return s;
262 }