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