BOOST_FOREACH.
[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 "piece.h"
29 #include <iostream>
30
31 using std::cout;
32 using std::list;
33 using std::shared_ptr;
34 using std::dynamic_pointer_cast;
35 using boost::function;
36 using namespace dcpomatic;
37
38 Empty::Empty (shared_ptr<const Film> film, shared_ptr<const Playlist> playlist, function<bool (shared_ptr<const Content>)> part, DCPTime length)
39 {
40         list<DCPTimePeriod> full;
41         for (auto i: playlist->content()) {
42                 if (part(i)) {
43                         full.push_back (DCPTimePeriod (i->position(), i->end(film)));
44                 }
45         }
46
47         _periods = subtract (DCPTimePeriod(DCPTime(), length), coalesce(full));
48
49         if (!_periods.empty ()) {
50                 _position = _periods.front().from;
51         }
52 }
53
54 void
55 Empty::set_position (DCPTime position)
56 {
57         _position = position;
58
59         for (auto i: _periods) {
60                 if (i.contains(_position)) {
61                         return;
62                 }
63         }
64
65         for (auto i: _periods) {
66                 if (i.from > _position) {
67                         _position = i.from;
68                         return;
69                 }
70         }
71 }
72
73 DCPTimePeriod
74 Empty::period_at_position () const
75 {
76         for (auto i: _periods) {
77                 if (i.contains(_position)) {
78                         return DCPTimePeriod (_position, i.to);
79                 }
80         }
81
82         DCPOMATIC_ASSERT (false);
83 }
84
85 bool
86 Empty::done () const
87 {
88         DCPTime latest;
89         for (auto i: _periods) {
90                 latest = max (latest, i.to);
91         }
92
93         return _position >= latest;
94 }