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