1e6e1c3fb51d21e76b1d7f2c8b058bb97040a2e1
[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
38 Empty::Empty (list<shared_ptr<Piece> > pieces, DCPTime length, function<bool (shared_ptr<Piece>)> part)
39 {
40         list<DCPTimePeriod> full;
41         BOOST_FOREACH (shared_ptr<Piece> i, pieces) {
42                 if (part(i)) {
43                         full.push_back (DCPTimePeriod (i->content->position(), i->content->end()));
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         BOOST_FOREACH (DCPTimePeriod i, _periods) {
60                 if (i.contains(_position)) {
61                         return;
62                 }
63         }
64
65         BOOST_FOREACH (DCPTimePeriod 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         BOOST_FOREACH (DCPTimePeriod 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         BOOST_FOREACH (DCPTimePeriod i, _periods) {
90                 latest = max (latest, i.to);
91         }
92
93         return _position >= latest;
94 }