Move raw_convert into libdcp.
[dcpomatic.git] / src / lib / content.cc
1 /*
2     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/lib/content.cc
22  *  @brief Content class.
23  */
24
25 #include "content.h"
26 #include "util.h"
27 #include "content_factory.h"
28 #include "exceptions.h"
29 #include "film.h"
30 #include "job.h"
31 #include "compose.hpp"
32 #include <dcp/raw_convert.h>
33 #include <libcxml/cxml.h>
34 #include <libxml++/libxml++.h>
35 #include <boost/thread/mutex.hpp>
36 #include <iostream>
37
38 #include "i18n.h"
39
40 using std::string;
41 using std::list;
42 using std::cout;
43 using std::vector;
44 using std::max;
45 using std::pair;
46 using boost::shared_ptr;
47 using dcp::raw_convert;
48
49 int const ContentProperty::PATH = 400;
50 int const ContentProperty::POSITION = 401;
51 int const ContentProperty::LENGTH = 402;
52 int const ContentProperty::TRIM_START = 403;
53 int const ContentProperty::TRIM_END = 404;
54 int const ContentProperty::VIDEO_FRAME_RATE = 405;
55
56 Content::Content (shared_ptr<const Film> film)
57         : _film (film)
58         , _position (0)
59         , _trim_start (0)
60         , _trim_end (0)
61         , _change_signals_frequent (false)
62 {
63
64 }
65
66 Content::Content (shared_ptr<const Film> film, DCPTime p)
67         : _film (film)
68         , _position (p)
69         , _trim_start (0)
70         , _trim_end (0)
71         , _change_signals_frequent (false)
72 {
73
74 }
75
76 Content::Content (shared_ptr<const Film> film, boost::filesystem::path p)
77         : _film (film)
78         , _position (0)
79         , _trim_start (0)
80         , _trim_end (0)
81         , _change_signals_frequent (false)
82 {
83         _paths.push_back (p);
84 }
85
86 Content::Content (shared_ptr<const Film> film, cxml::ConstNodePtr node)
87         : _film (film)
88         , _change_signals_frequent (false)
89 {
90         list<cxml::NodePtr> path_children = node->node_children ("Path");
91         for (list<cxml::NodePtr>::const_iterator i = path_children.begin(); i != path_children.end(); ++i) {
92                 _paths.push_back ((*i)->content ());
93         }
94         _digest = node->optional_string_child ("Digest").get_value_or ("X");
95         _position = DCPTime (node->number_child<DCPTime::Type> ("Position"));
96         _trim_start = ContentTime (node->number_child<ContentTime::Type> ("TrimStart"));
97         _trim_end = ContentTime (node->number_child<ContentTime::Type> ("TrimEnd"));
98         _video_frame_rate = node->optional_number_child<double> ("VideoFrameRate");
99 }
100
101 Content::Content (shared_ptr<const Film> film, vector<shared_ptr<Content> > c)
102         : _film (film)
103         , _position (c.front()->position ())
104         , _trim_start (c.front()->trim_start ())
105         , _trim_end (c.back()->trim_end ())
106         , _video_frame_rate (c.front()->video_frame_rate())
107         , _change_signals_frequent (false)
108 {
109         for (size_t i = 0; i < c.size(); ++i) {
110                 if (i > 0 && c[i]->trim_start() > ContentTime ()) {
111                         throw JoinError (_("Only the first piece of content to be joined can have a start trim."));
112                 }
113
114                 if (i < (c.size() - 1) && c[i]->trim_end () > ContentTime ()) {
115                         throw JoinError (_("Only the last piece of content to be joined can have an end trim."));
116                 }
117
118                 if (
119                         (_video_frame_rate && !c[i]->_video_frame_rate) ||
120                         (!_video_frame_rate && c[i]->_video_frame_rate)
121                         ) {
122                         throw JoinError (_("Content to be joined must have the same video frame rate"));
123                 }
124
125                 if (_video_frame_rate && fabs (_video_frame_rate.get() - c[i]->_video_frame_rate.get()) > VIDEO_FRAME_RATE_EPSILON) {
126                         throw JoinError (_("Content to be joined must have the same video frame rate"));
127                 }
128
129                 for (size_t j = 0; j < c[i]->number_of_paths(); ++j) {
130                         _paths.push_back (c[i]->path (j));
131                 }
132         }
133 }
134
135 void
136 Content::as_xml (xmlpp::Node* node) const
137 {
138         boost::mutex::scoped_lock lm (_mutex);
139
140         for (vector<boost::filesystem::path>::const_iterator i = _paths.begin(); i != _paths.end(); ++i) {
141                 node->add_child("Path")->add_child_text (i->string ());
142         }
143         node->add_child("Digest")->add_child_text (_digest);
144         node->add_child("Position")->add_child_text (raw_convert<string> (_position.get ()));
145         node->add_child("TrimStart")->add_child_text (raw_convert<string> (_trim_start.get ()));
146         node->add_child("TrimEnd")->add_child_text (raw_convert<string> (_trim_end.get ()));
147         if (_video_frame_rate) {
148                 node->add_child("VideoFrameRate")->add_child_text (raw_convert<string> (_video_frame_rate.get()));
149         }
150 }
151
152 void
153 Content::examine (shared_ptr<Job> job)
154 {
155         if (job) {
156                 job->sub (_("Computing digest"));
157         }
158
159         boost::mutex::scoped_lock lm (_mutex);
160         vector<boost::filesystem::path> p = _paths;
161         lm.unlock ();
162
163         /* Some content files are very big, so we use a poor man's
164            digest here: a digest of the first and last 1e6 bytes with the
165            size of the first file tacked on the end as a string.
166         */
167         string const d = digest_head_tail (p, 1000000) + raw_convert<string> (boost::filesystem::file_size (p.front ()));
168
169         lm.lock ();
170         _digest = d;
171 }
172
173 void
174 Content::signal_changed (int p)
175 {
176         try {
177                 emit (boost::bind (boost::ref (Changed), shared_from_this (), p, _change_signals_frequent));
178         } catch (boost::bad_weak_ptr) {
179                 /* This must be during construction; never mind */
180         }
181 }
182
183 void
184 Content::set_position (DCPTime p)
185 {
186         {
187                 boost::mutex::scoped_lock lm (_mutex);
188                 if (p == _position) {
189                         return;
190                 }
191
192                 _position = p;
193         }
194
195         signal_changed (ContentProperty::POSITION);
196 }
197
198 void
199 Content::set_trim_start (ContentTime t)
200 {
201         {
202                 boost::mutex::scoped_lock lm (_mutex);
203                 _trim_start = t;
204         }
205
206         signal_changed (ContentProperty::TRIM_START);
207 }
208
209 void
210 Content::set_trim_end (ContentTime t)
211 {
212         {
213                 boost::mutex::scoped_lock lm (_mutex);
214                 _trim_end = t;
215         }
216
217         signal_changed (ContentProperty::TRIM_END);
218 }
219
220
221 shared_ptr<Content>
222 Content::clone () const
223 {
224         shared_ptr<const Film> film = _film.lock ();
225         if (!film) {
226                 return shared_ptr<Content> ();
227         }
228
229         /* This is a bit naughty, but I can't think of a compelling reason not to do it ... */
230         xmlpp::Document doc;
231         xmlpp::Node* node = doc.create_root_node ("Content");
232         as_xml (node);
233
234         /* notes is unused here (we assume) */
235         list<string> notes;
236         return content_factory (film, cxml::NodePtr (new cxml::Node (node)), Film::current_state_version, notes);
237 }
238
239 string
240 Content::technical_summary () const
241 {
242         return String::compose ("%1 %2 %3", path_summary(), digest(), position().seconds());
243 }
244
245 DCPTime
246 Content::length_after_trim () const
247 {
248         return max (DCPTime (), full_length() - DCPTime (trim_start() + trim_end(), film()->active_frame_rate_change (position ())));
249 }
250
251 /** @return string which changes when something about this content changes which affects
252  *  the appearance of its video.
253  */
254 string
255 Content::identifier () const
256 {
257         char buffer[256];
258         snprintf (
259                 buffer, sizeof(buffer), "%s_%" PRId64 "_%" PRId64 "_%" PRId64,
260                 Content::digest().c_str(), position().get(), trim_start().get(), trim_end().get()
261                 );
262         return buffer;
263 }
264
265 bool
266 Content::paths_valid () const
267 {
268         for (vector<boost::filesystem::path>::const_iterator i = _paths.begin(); i != _paths.end(); ++i) {
269                 if (!boost::filesystem::exists (*i)) {
270                         return false;
271                 }
272         }
273
274         return true;
275 }
276
277 void
278 Content::set_path (boost::filesystem::path path)
279 {
280         _paths.clear ();
281         _paths.push_back (path);
282         signal_changed (ContentProperty::PATH);
283 }
284
285 string
286 Content::path_summary () const
287 {
288         /* XXX: should handle multiple paths more gracefully */
289
290         DCPOMATIC_ASSERT (number_of_paths ());
291
292         string s = path(0).filename().string ();
293         if (number_of_paths() > 1) {
294                 s += " ...";
295         }
296
297         return s;
298 }
299
300 /** @return a list of properties that might be interesting to the user */
301 list<UserProperty>
302 Content::user_properties () const
303 {
304         list<UserProperty> p;
305         add_properties (p);
306         return p;
307 }
308
309 shared_ptr<const Film>
310 Content::film () const
311 {
312         shared_ptr<const Film> film = _film.lock ();
313         DCPOMATIC_ASSERT (film);
314         return film;
315 }
316
317 /** @return DCP times of points within this content where a reel split could occur */
318 list<DCPTime>
319 Content::reel_split_points () const
320 {
321         list<DCPTime> t;
322         /* XXX: this is questionable; perhaps the position itself should be forced to be on a frame boundary */
323         t.push_back (position().round_up (film()->video_frame_rate()));
324         return t;
325 }
326
327 void
328 Content::set_video_frame_rate (double r)
329 {
330         {
331                 boost::mutex::scoped_lock lm (_mutex);
332                 _video_frame_rate = r;
333         }
334
335         signal_changed (ContentProperty::VIDEO_FRAME_RATE);
336 }
337
338 double
339 Content::active_video_frame_rate () const
340 {
341         {
342                 boost::mutex::scoped_lock lm (_mutex);
343                 if (_video_frame_rate) {
344                         return _video_frame_rate.get ();
345                 }
346         }
347
348         /* No frame rate specified, so assume this content has been
349            prepared for any concurrent video content or perhaps
350            just the DCP rate.
351         */
352         shared_ptr<const Film> film = _film.lock ();
353         DCPOMATIC_ASSERT (film);
354         return film->active_frame_rate_change(position()).source;
355 }
356
357 void
358 Content::add_properties (list<UserProperty>& p) const
359 {
360         p.push_back (UserProperty (UserProperty::GENERAL, _("Filename"), path(0).string ()));
361
362         if (_video_frame_rate) {
363                 if (video) {
364                         p.push_back (
365                                 UserProperty (
366                                         UserProperty::VIDEO,
367                                         _("Frame rate"),
368                                         raw_convert<string> (_video_frame_rate.get(), 5),
369                                         _("frames per second")
370                                         )
371                                 );
372                 } else {
373                         p.push_back (
374                                 UserProperty (
375                                         UserProperty::GENERAL,
376                                         _("Prepared for video frame rate"),
377                                         raw_convert<string> (_video_frame_rate.get(), 5),
378                                         _("frames per second")
379                                         )
380                                 );
381                 }
382         }
383 }