Properly remove JSON server; remove some unused usings; remove some unnecessary uses...
[dcpomatic.git] / src / lib / playlist.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 <libcxml/cxml.h>
21 #include <boost/shared_ptr.hpp>
22 #include "playlist.h"
23 #include "sndfile_content.h"
24 #include "sndfile_decoder.h"
25 #include "video_content.h"
26 #include "ffmpeg_decoder.h"
27 #include "ffmpeg_content.h"
28 #include "image_decoder.h"
29 #include "content_factory.h"
30 #include "job.h"
31 #include "config.h"
32 #include "util.h"
33 #include "md5_digester.h"
34
35 #include "i18n.h"
36
37 using std::list;
38 using std::cout;
39 using std::vector;
40 using std::min;
41 using std::max;
42 using std::string;
43 using std::pair;
44 using boost::optional;
45 using boost::shared_ptr;
46 using boost::weak_ptr;
47 using boost::dynamic_pointer_cast;
48
49 Playlist::Playlist ()
50         : _sequence_video (true)
51         , _sequencing_video (false)
52 {
53
54 }
55
56 Playlist::~Playlist ()
57 {
58         _content.clear ();
59         reconnect ();
60 }
61
62 void
63 Playlist::content_changed (weak_ptr<Content> content, int property, bool frequent)
64 {
65         if (property == ContentProperty::LENGTH || property == VideoContentProperty::VIDEO_FRAME_TYPE) {
66                 maybe_sequence_video ();
67         }
68         
69         ContentChanged (content, property, frequent);
70 }
71
72 void
73 Playlist::maybe_sequence_video ()
74 {
75         if (!_sequence_video || _sequencing_video) {
76                 return;
77         }
78         
79         _sequencing_video = true;
80         
81         ContentList cl = _content;
82         Time next_left = 0;
83         Time next_right = 0;
84         for (ContentList::iterator i = _content.begin(); i != _content.end(); ++i) {
85                 shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (*i);
86                 if (!vc) {
87                         continue;
88                 }
89         
90                 if (vc->video_frame_type() == VIDEO_FRAME_TYPE_3D_RIGHT) {
91                         vc->set_position (next_right);
92                         next_right = vc->end() + 1;
93                 } else {
94                         vc->set_position (next_left);
95                         next_left = vc->end() + 1;
96                 }
97         }
98
99         /* This won't change order, so it does not need a sort */
100         
101         _sequencing_video = false;
102 }
103
104 string
105 Playlist::video_identifier () const
106 {
107         string t;
108         
109         for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {
110                 shared_ptr<const VideoContent> vc = dynamic_pointer_cast<const VideoContent> (*i);
111                 if (vc) {
112                         t += vc->identifier ();
113                 }
114         }
115
116         MD5Digester digester;
117         digester.add (t.c_str(), t.length());
118         return digester.get ();
119 }
120
121 /** @param node <Playlist> node */
122 void
123 Playlist::set_from_xml (shared_ptr<const Film> film, shared_ptr<const cxml::Node> node, int version, list<string>& notes)
124 {
125         list<cxml::NodePtr> c = node->node_children ("Content");
126         for (list<cxml::NodePtr>::iterator i = c.begin(); i != c.end(); ++i) {
127                 _content.push_back (content_factory (film, *i, version, notes));
128         }
129
130         sort (_content.begin(), _content.end(), ContentSorter ());
131
132         reconnect ();
133 }
134
135 /** @param node <Playlist> node */
136 void
137 Playlist::as_xml (xmlpp::Node* node)
138 {
139         for (ContentList::iterator i = _content.begin(); i != _content.end(); ++i) {
140                 (*i)->as_xml (node->add_child ("Content"));
141         }
142 }
143
144 void
145 Playlist::add (shared_ptr<Content> c)
146 {
147         _content.push_back (c);
148         sort (_content.begin(), _content.end(), ContentSorter ());
149         reconnect ();
150         Changed ();
151 }
152
153 void
154 Playlist::remove (shared_ptr<Content> c)
155 {
156         ContentList::iterator i = _content.begin ();
157         while (i != _content.end() && *i != c) {
158                 ++i;
159         }
160         
161         if (i != _content.end ()) {
162                 _content.erase (i);
163                 Changed ();
164         }
165
166         /* This won't change order, so it does not need a sort */
167 }
168
169 void
170 Playlist::remove (ContentList c)
171 {
172         for (ContentList::iterator i = c.begin(); i != c.end(); ++i) {
173                 ContentList::iterator j = _content.begin ();
174                 while (j != _content.end() && *j != *i) {
175                         ++j;
176                 }
177         
178                 if (j != _content.end ()) {
179                         _content.erase (j);
180                 }
181         }
182
183         /* This won't change order, so it does not need a sort */
184         
185         Changed ();
186 }
187
188 bool
189 Playlist::has_subtitles () const
190 {
191         for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {
192                 shared_ptr<const FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (*i);
193                 if (fc && !fc->subtitle_streams().empty()) {
194                         return true;
195                 }
196         }
197
198         return false;
199 }
200
201 class FrameRateCandidate
202 {
203 public:
204         FrameRateCandidate (float source_, int dcp_)
205                 : source (source_)
206                 , dcp (dcp_)
207         {}
208
209         float source;
210         int dcp;
211 };
212
213 int
214 Playlist::best_dcp_frame_rate () const
215 {
216         list<int> const allowed_dcp_frame_rates = Config::instance()->allowed_dcp_frame_rates ();
217
218         /* Work out what rates we could manage, including those achieved by using skip / repeat. */
219         list<FrameRateCandidate> candidates;
220
221         /* Start with the ones without skip / repeat so they will get matched in preference to skipped/repeated ones */
222         for (list<int>::const_iterator i = allowed_dcp_frame_rates.begin(); i != allowed_dcp_frame_rates.end(); ++i) {
223                 candidates.push_back (FrameRateCandidate (*i, *i));
224         }
225
226         /* Then the skip/repeat ones */
227         for (list<int>::const_iterator i = allowed_dcp_frame_rates.begin(); i != allowed_dcp_frame_rates.end(); ++i) {
228                 candidates.push_back (FrameRateCandidate (float (*i) / 2, *i));
229                 candidates.push_back (FrameRateCandidate (float (*i) * 2, *i));
230         }
231
232         /* Pick the best one */
233         float error = std::numeric_limits<float>::max ();
234         optional<FrameRateCandidate> best;
235         list<FrameRateCandidate>::iterator i = candidates.begin();
236         while (i != candidates.end()) {
237
238                 float this_error = 0;
239                 for (ContentList::const_iterator j = _content.begin(); j != _content.end(); ++j) {
240                         shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (*j);
241                         if (!vc) {
242                                 continue;
243                         }
244
245                         /* Use the largest difference between DCP and source as the "error" */
246                         this_error = max (this_error, float (fabs (i->source - vc->video_frame_rate ())));
247                 }
248
249                 if (this_error < error) {
250                         error = this_error;
251                         best = *i;
252                 }
253
254                 ++i;
255         }
256
257         if (!best) {
258                 return 24;
259         }
260         
261         return best->dcp;
262 }
263
264 Time
265 Playlist::length () const
266 {
267         Time len = 0;
268         for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {
269                 len = max (len, (*i)->end() + 1);
270         }
271
272         return len;
273 }
274
275 void
276 Playlist::reconnect ()
277 {
278         for (list<boost::signals2::connection>::iterator i = _content_connections.begin(); i != _content_connections.end(); ++i) {
279                 i->disconnect ();
280         }
281
282         _content_connections.clear ();
283                 
284         for (ContentList::iterator i = _content.begin(); i != _content.end(); ++i) {
285                 _content_connections.push_back ((*i)->Changed.connect (bind (&Playlist::content_changed, this, _1, _2, _3)));
286         }
287 }
288
289 Time
290 Playlist::video_end () const
291 {
292         Time end = 0;
293         for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {
294                 if (dynamic_pointer_cast<const VideoContent> (*i)) {
295                         end = max (end, (*i)->end ());
296                 }
297         }
298
299         return end;
300 }
301
302 void
303 Playlist::set_sequence_video (bool s)
304 {
305         _sequence_video = s;
306 }
307
308 bool
309 ContentSorter::operator() (shared_ptr<Content> a, shared_ptr<Content> b)
310 {
311         return a->position() < b->position();
312 }
313
314 /** @return content in an undefined order */
315 ContentList
316 Playlist::content () const
317 {
318         return _content;
319 }
320
321 void
322 Playlist::repeat (ContentList c, int n)
323 {
324         pair<Time, Time> range (TIME_MAX, 0);
325         for (ContentList::iterator i = c.begin(); i != c.end(); ++i) {
326                 range.first = min (range.first, (*i)->position ());
327                 range.second = max (range.second, (*i)->position ());
328                 range.first = min (range.first, (*i)->end ());
329                 range.second = max (range.second, (*i)->end ());
330         }
331
332         Time pos = range.second;
333         for (int i = 0; i < n; ++i) {
334                 for (ContentList::iterator i = c.begin(); i != c.end(); ++i) {
335                         shared_ptr<Content> copy = (*i)->clone ();
336                         copy->set_position (pos + copy->position() - range.first);
337                         _content.push_back (copy);
338                 }
339                 pos += range.second - range.first;
340         }
341
342         sort (_content.begin(), _content.end(), ContentSorter ());
343         
344         reconnect ();
345         Changed ();
346 }
347
348 void
349 Playlist::move_earlier (shared_ptr<Content> c)
350 {
351         sort (_content.begin(), _content.end(), ContentSorter ());
352         
353         ContentList::iterator previous = _content.end ();
354         ContentList::iterator i = _content.begin();
355         while (i != _content.end() && *i != c) {
356                 previous = i;
357                 ++i;
358         }
359
360         assert (i != _content.end ());
361         if (previous == _content.end ()) {
362                 return;
363         }
364
365         
366         Time const p = (*previous)->position ();
367         (*previous)->set_position (p + c->length_after_trim ());
368         c->set_position (p);
369         sort (_content.begin(), _content.end(), ContentSorter ());
370 }
371
372 void
373 Playlist::move_later (shared_ptr<Content> c)
374 {
375         sort (_content.begin(), _content.end(), ContentSorter ());
376         
377         ContentList::iterator i = _content.begin();
378         while (i != _content.end() && *i != c) {
379                 ++i;
380         }
381
382         assert (i != _content.end ());
383
384         ContentList::iterator next = i;
385         ++next;
386
387         if (next == _content.end ()) {
388                 return;
389         }
390
391         (*next)->set_position (c->position ());
392         c->set_position (c->position() + c->length_after_trim ());
393         sort (_content.begin(), _content.end(), ContentSorter ());
394 }
395
396 FrameRateChange
397 Playlist::active_frame_rate_change (Time t, int dcp_video_frame_rate) const
398 {
399         for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {
400                 shared_ptr<const VideoContent> vc = dynamic_pointer_cast<const VideoContent> (*i);
401                 if (!vc) {
402                         continue;
403                 }
404
405                 if (vc->position() >= t && t < vc->end()) {
406                         return FrameRateChange (vc->video_frame_rate(), dcp_video_frame_rate);
407                 }
408         }
409
410         return FrameRateChange (dcp_video_frame_rate, dcp_video_frame_rate);
411 }