68a153b0755d39a4869781847f12451fe042a4f8
[dcpomatic.git] / src / lib / empty.cc
1 /*
2     Copyright (C) 2017 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 #include "empty.h"
22 #include "film.h"
23 #include "playlist.h"
24 #include "content.h"
25 #include "content_part.h"
26 #include "dcp_content.h"
27 #include "dcpomatic_time_coalesce.h"
28 #include <boost/foreach.hpp>
29 #include <iostream>
30
31 using std::cout;
32 using std::list;
33 using boost::shared_ptr;
34 using boost::dynamic_pointer_cast;
35 using boost::function;
36
37 Empty::Empty (ContentList content, DCPTime length, function<shared_ptr<ContentPart> (Content *)> part)
38 {
39         list<DCPTimePeriod> full;
40         BOOST_FOREACH (shared_ptr<Content> i, content) {
41                 if (part (i.get())) {
42                         full.push_back (DCPTimePeriod (i->position(), i->end()));
43                 }
44         }
45
46         _periods = subtract (DCPTimePeriod(DCPTime(), length), coalesce(full));
47
48         if (!_periods.empty ()) {
49                 _position = _periods.front().from;
50         }
51 }
52
53 void
54 Empty::set_position (DCPTime position)
55 {
56         _position = position;
57
58         BOOST_FOREACH (DCPTimePeriod i, _periods) {
59                 if (i.contains(_position)) {
60                         return;
61                 }
62         }
63
64         BOOST_FOREACH (DCPTimePeriod i, _periods) {
65                 if (i.from > _position) {
66                         _position = i.from;
67                         return;
68                 }
69         }
70 }
71
72 DCPTimePeriod
73 Empty::period_at_position () const
74 {
75         BOOST_FOREACH (DCPTimePeriod i, _periods) {
76                 if (i.contains(_position)) {
77                         return DCPTimePeriod (_position, i.to);
78                 }
79         }
80
81         DCPOMATIC_ASSERT (false);
82 }
83
84 bool
85 Empty::done () const
86 {
87         DCPTime latest;
88         BOOST_FOREACH (DCPTimePeriod i, _periods) {
89                 latest = max (latest, i.to);
90         }
91
92         return _position >= latest;
93 }