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